diff --git a/.dockerignore b/.dockerignore
new file mode 100644
index 0000000..967b8c3
--- /dev/null
+++ b/.dockerignore
@@ -0,0 +1,15 @@
+flutter/
+venv/
+webui/node_modules/
+.git/
+__pycache__/
+*.pyc
+.env
+.env.*
+logs/
+*.md
+CHANGELOG/
+docs/
+tests/
+tools/
+template/
diff --git a/.env.production b/.env.production
new file mode 100644
index 0000000..237b079
--- /dev/null
+++ b/.env.production
@@ -0,0 +1,82 @@
+# VoIdeaAI — Production Environment
+# Copy to .env on server and fill secrets
+
+PROJECT_NAME=VoIdeaAI
+PROJECT_VERSION=1.0.0
+PROJECT_ENV=production
+SERVER_HOST=0.0.0.0
+SERVER_PORT=8020
+SERVER_EXTERNAL_URL=https://voideaai.ru
+
+# Database (PostgreSQL on port 5444 — separate from aegisone)
+DATABASE_URL=postgresql+asyncpg://voidea:DB_PASS@localhost:5444/voidea
+
+# Redis (port 6380 — separate from aegisone)
+REDIS_HOST=localhost
+REDIS_PORT=6380
+REDIS_URL=redis://localhost:6380/0
+
+# JWT — generate with: openssl rand -hex 64
+JWT_SECRET_KEY=
+JWT_RESET_SECRET_KEY=
+JWT_ALGORITHM=HS256
+JWT_ACCESS_TOKEN_EXPIRE_MINUTES=60
+JWT_REFRESH_TOKEN_EXPIRE_DAYS=30
+
+# AI
+OPENAI_API_KEY=
+AI_YANDEX_KEY=
+AI_YANDEX_FOLDER_ID=
+AI_GIGACHAT_CLIENT_ID=
+AI_GIGACHAT_SECRET=
+AI_FALLBACK_MODEL=yandex_gpt
+
+# OAuth
+OAUTH_YANDEX_ID=
+OAUTH_YANDEX_SECRET=
+OAUTH_GOOGLE_ID=
+OAUTH_GOOGLE_SECRET=
+OAUTH_GOOGLE_REDIRECT_URI=https://voideaai.ru/auth/google/callback
+OAUTH_APPLE_ID=
+OAUTH_APPLE_SECRET=
+OAUTH_APPLE_REDIRECT_URI=https://voideaai.ru/auth/apple/callback
+
+# Telegram Bot
+TELEGRAM_BOT_TOKEN=
+
+# Email
+SMTP_HOST=
+SMTP_PORT=587
+SMTP_USER=
+SMTP_PASS=
+
+# Rate Limiting
+RATE_LIMIT_ENABLED=true
+RATE_LIMIT_DEFAULT=60/minute
+RATE_LIMIT_AUTH=10/minute
+
+# Security — generate with: openssl rand -hex 32
+ENCRYPTION_KEY=
+
+# System Owner
+SYSTEM_OWNER_EMAIL=
+
+# Social Networks
+SOCIAL_TELEGRAM=voideaai
+SOCIAL_VK=voideaai
+SOCIAL_YOUTUBE=voideaai
+SOCIAL_TIKTOK=voideaai
+PROJECT_SLOGAN=VoIdeaAI — идеи рождаются вслух, решения приходят мгновенно!
+
+# Tariffs
+TARIFFS_ENABLED=false
+TARIFFS_FREE_CODE=free
+
+# Push
+FCM_SERVER_KEY=
+APNS_KEY_ID=
+
+# Logging
+LOG_LEVEL=INFO
+DEBUG_MODE_RETENTION_DAYS=14
+DEBUG_MODE_MAX_SIZE_MB=500
diff --git a/AI-EXISTING-PROJECT-INSTRUCTION.md b/AI-EXISTING-PROJECT-INSTRUCTION.md
new file mode 100644
index 0000000..0d335f3
--- /dev/null
+++ b/AI-EXISTING-PROJECT-INSTRUCTION.md
@@ -0,0 +1,111 @@
+# Внимание: на сервере работает второй проект — VoIdeaAI
+
+## Дата развёртывания
+2026-05-19
+
+## Сервер
+81.177.141.34 — единый VPS для двух независимых проектов.
+
+---
+
+## 1. Проекты на сервере
+
+### Проект A: aegisone
+| Параметр | Значение |
+|----------|----------|
+| Порты | 8000 (FastAPI), 8080/9000 (PHP), 5432 (PostgreSQL) |
+| Директория | `/opt/projects/aegisone-php/`, `/opt/projects/aegisone-py/` |
+| Домен | aegisone.ru, service.aegisone.ru |
+| Тип | PHP + Python FastAPI |
+
+### Проект B: VoIdeaAI
+| Параметр | Значение |
+|----------|----------|
+| Порты | **8020** (FastAPI), **5444** (PostgreSQL), **6380** (Redis) |
+| Директория | `/opt/projects/voidea/` |
+| Домен | voideaai.ru, git.voideaai.ru (через nginx-proxy) |
+| Gitea | порт 3000, PostgreSQL 5433, git.voideaai.ru |
+| Тип | Python FastAPI + React Frontend |
+
+---
+
+## 2. Критические правила
+
+### НЕ занимать порты VoIdeaAI
+```
+8020 — FastAPI app
+5444 — PostgreSQL
+6380 — Redis
+5433 — Gitea PostgreSQL
+3000 — Gitea web
+```
+
+### nginx-proxy общий
+- Конфиги: `/opt/projects/nginx-proxy/conf.d/`
+- Файл VoIdea: `voideaai.ru.conf`
+- Файл Gitea: `git.voideaai.ru.conf`
+
+**Перед рестартом nginx — всегда проверять:**
+```bash
+docker compose -p nginx-proxy exec nginx nginx -t
+```
+
+### Docker
+- **Все контейнеры используют `network_mode: host`** (bridge не работает на этом VPS)
+- **Docker build** требует `network: host` в конфиге сборки
+- `docker system prune -af` удалит build cache ВСЕХ проектов — не запускать во время сборки
+- `docker compose -p voidea` — префикс для команд VoIdea
+- `docker compose -p gitea` — префикс для команд Gitea
+- `docker compose -p nginx-proxy` — префикс для nginx
+
+### Диск
+- 20GB всего, ~13GB свободно (на момент деплоя)
+- Перед крупными операциями: `df -h /`
+- При нехватке места: `docker builder prune -af`
+
+---
+
+## 3. Команды для проверки состояния VoIdeaAI
+
+```bash
+# Статус
+docker compose -p voidea ps
+
+# Логи
+docker compose -p voidea logs --tail=20 app
+
+# Проверка здоровья
+curl -s http://localhost:8020/health
+curl -s http://localhost:8020/api/v1/health
+
+# Состояние БД
+docker exec voidea-db-1 psql -U voidea -h localhost -p 5444 -d voidea -c "\dt"
+```
+
+---
+
+## 4. Что делать при проблемах с VoIdeaAI
+
+1. **Не работает voideaai.ru** — проверить nginx: `nginx -t`, проверить конфиг
+2. **VoIdea API не отвечает** — `docker compose -p voidea logs app`
+3. **VoIdea не может подключиться к БД** — проверить `localhost:5444`, логи `docker compose -p voidea logs db`
+4. **Gitea не открывается** — проверить порт 3000: `curl -s http://localhost:3000`
+
+Если проблема серьёзная — остановить VoIdea без ущерба для aegisone:
+```bash
+docker compose -p voidea down
+# aegisone продолжит работу независимо
+```
+
+---
+
+## 5. Контакты
+
+- По вопросам VoIdeaAI — обратиться к разработчику, ведущему проект VoIdea
+- Проекты независимы, команды разные
+- Изменения в nginx-proxy влияют на оба проекта — согласовывать
+
+---
+
+*Создан: 2026-05-19*
+*Не редактировать вручную без необходимости*
diff --git a/old/Dockerfile b/Dockerfile
similarity index 77%
rename from old/Dockerfile
rename to Dockerfile
index a5f7f56..a893aae 100644
--- a/old/Dockerfile
+++ b/Dockerfile
@@ -7,10 +7,19 @@ RUN npm run build
FROM python:3.12-slim
WORKDIR /app
+
+RUN apt-get update && apt-get install -y --no-install-recommends \
+ gcc \
+ && rm -rf /var/lib/apt/lists/*
+
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
+
COPY . .
COPY --from=frontend-builder /build/dist /app/webui/dist
+
RUN mkdir -p /app/logs
+
EXPOSE 8020
+
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8020"]
diff --git a/VPS_GUIDE.md b/VPS_GUIDE.md
new file mode 100644
index 0000000..d7dca4d
--- /dev/null
+++ b/VPS_GUIDE.md
@@ -0,0 +1,289 @@
+# VPS Infrastructure Guide for AI Agents
+
+## Overview
+
+This document describes the VPS infrastructure at **81.177.141.34** to help AI agents migrate or deploy new projects (e.g., `voideaai.ru`).
+
+---
+
+## 1. VPS Specifications
+
+| Property | Value |
+|---|---|
+| IP | 81.177.141.34 |
+| User | `angel` |
+| Password | `.-SHGWa_` |
+| Sudo | passwordless via `/etc/sudoers.d/angel` |
+| SSH key | added to `~/.ssh/authorized_keys` |
+| OS | Ubuntu 24.04 (Noble) |
+| Kernel | OpenVZ/LXC container — limited kernel modules |
+| Network interface | `venet0` (no bridge NAT support) |
+| Disk | 20GB total, ~13GB available |
+| Docker | 29.5.0, iptables in nft mode (`iptables-nft`) |
+
+---
+
+## 2. Docker Constraints
+
+### Critical: `network_mode: host` only
+
+Bridge networking (`network_mode: bridge`) **does not work** on this VPS. The OpenVZ/LXC kernel does not support masquerade for bridge interfaces through `venet0`. All containers **must** use:
+
+```yaml
+network_mode: host
+```
+
+### Docker daemon config (`/etc/docker/daemon.json`)
+
+```json
+{"dns": ["8.8.8.8", "8.8.4.4"]}
+```
+
+### Build constraint
+
+All Docker builds require:
+
+```yaml
+build:
+ network: host
+```
+
+Without this, `apt-get` and `pip` cannot download packages (no bridge NAT).
+
+### Docker Hub connectivity issues
+
+Pulling large images (>100MB) from Docker Hub may time out (`failed to copy: read tcp... connection timed out`). Smaller images (nginx:alpine, postgres:16-alpine) work. Gitea and Portainer images **cannot be pulled** reliably.
+
+**Solutions attempted:**
+- Retry with `--platform linux/amd64`
+- Increase `max-download-attempts` (not supported in Docker 29.5)
+- Clean build cache with `docker builder prune -af`
+- All fail on large image layers
+
+**Workaround:** Pull images locally and SCP (`docker save → scp → docker load`), or use a registry mirror.
+
+---
+
+## 3. Port Allocation (all on host)
+
+| Port | Service | Container |
+|---|---|---|
+| 80 | nginx-proxy HTTP | `nginx-proxy` |
+| 443 | nginx-proxy HTTPS | `nginx-proxy` |
+| 8080 | PHP nginx (aegisone.ru) | `aegisone-php-nginx` |
+| 9000 | PHP-FPM | `aegisone-php-fpm` |
+| 8000 | FastAPI (service.aegisone.ru) | `aegisone-app` |
+| 5432 | PostgreSQL (shared, aegisone) | `aegisone-postgres` |
+| 5433 | PostgreSQL (Gitea) | `gitea-db` (planned) |
+| 3000 | Gitea | `gitea` (planned) |
+| 9001 | Portainer HTTP | `portainer` (planned) |
+| 9443 | Portainer HTTPS | `portainer` (planned) |
+
+### Address resolution between containers
+
+Since all containers use `network_mode: host`, they communicate via `localhost:PORT`. **Docker DNS names do not resolve.** In `nginx.conf` and app configs, use:
+
+```nginx
+proxy_pass http://localhost:8080; # NOT container_name:port
+```
+
+---
+
+## 4. Project Structure
+
+```
+/opt/projects/
+ nginx-proxy/ # Reverse proxy (nginx + certbot)
+ docker-compose.yml
+ nginx.conf
+ conf.d/ # Per-domain configs
+ certs/ # SSL certificates
+ html/ # Webroot for certbot
+ aegisone-php/ # PHP frontend (aegisone.ru)
+ docker-compose.yml
+ Dockerfile
+ nginx.conf # PHP nginx config (listen 8080)
+ src/ # PHP source files
+ aegisone-py/ # FastAPI backend (service.aegisone.ru)
+ docker-compose.yml
+ Dockerfile
+ app/ # Python source
+ sql/ # DB schema
+ gitea/ # Git hosting (planned)
+ docker-compose.yml
+ portainer/ # Docker UI (planned)
+ docker-compose.yml
+```
+
+---
+
+## 5. nginx-proxy Configuration Pattern
+
+### Global config (`nginx.conf`)
+- `resolver 127.0.0.11` — not used in host mode, kept for compatibility
+- SSL termination handled by nginx-proxy
+- Upstream protocols are HTTP (nginx-proxy terminates SSL and proxies via HTTP)
+
+### Conf.d file structure
+Each domain has one `.conf` file with two server blocks:
+
+```nginx
+# HTTP (no redirect — temporary, until LE certs)
+server {
+ listen 80;
+ server_name example.ru;
+
+ location / {
+ proxy_pass http://localhost:PORT;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ }
+}
+
+# HTTPS (self-signed, for future LE)
+server {
+ listen 443 ssl;
+ http2 on;
+ server_name example.ru;
+
+ ssl_certificate /etc/nginx/certs/live/aegisone.ru/fullchain.pem;
+ ssl_certificate_key /etc/nginx/certs/live/aegisone.ru/privkey.pem;
+
+ # ... same location block
+}
+```
+
+Note: HTTP→HTTPS redirects (`return 301 https://...`) caused **redirect loops** externally due to provider/proxy intercepting port 443. If you add them, test thoroughly.
+
+### SSL certificates
+Currently using self-signed certs generated via:
+```bash
+sudo openssl req -x509 -nodes -days 30 -newkey rsa:2048 \
+ -keyout /opt/projects/nginx-proxy/certs/live/aegisone.ru/privkey.pem \
+ -out /opt/projects/nginx-proxy/certs/live/aegisone.ru/fullchain.pem \
+ -subj '/CN=aegisone.ru'
+```
+
+For Let's Encrypt:
+```bash
+cd /opt/projects/nginx-proxy
+docker compose run --rm certbot certonly --webroot \
+ --webroot-path=/var/www/certbot \
+ -d example.ru \
+ --email admin@example.ru \
+ --agree-tos --non-interactive
+```
+
+---
+
+## 6. Deployment Workflow
+
+### Initial setup
+1. Prepare files locally (this repo)
+2. Pack into tarball: `tar czf project.tar.gz .`
+3. SCP to VPS: `scp project.tar.gz angel@81.177.141.34:/home/angel/`
+4. SSH and extract: `ssh angel@81.177.141.34 "tar xzf project.tar.gz -C /opt/projects/project-name/"`
+5. Build and start: `ssh angel@81.177.141.34 "cd /opt/projects/project-name && docker compose up -d --build"`
+
+### Updating a running project
+1. Edit files locally
+2. SCP changed files to `/home/angel/` on VPS
+3. SSH and copy to correct location: `sudo cp /home/angel/file /opt/projects/project-name/`
+4. Restart container: `docker compose -p project-name restart service-name`
+
+### Copying files into a running container (alternative to rebuild)
+```bash
+docker cp /home/angel/file.py container-name:/app/path/file.py
+docker compose -p project-name restart app
+```
+
+---
+
+## 7. Database
+
+### PostgreSQL (aegisone shared DB)
+- Host: `localhost:5432`
+- User: `aegisone`
+- Password: `aegisone_pass`
+- Database: `aegisone`
+- Container: `aegisone-postgres` (postgres:16-alpine)
+
+### Schema initialization
+SQL files in `/opt/projects/aegisone-py/sql/`:
+- `schema_postgresql.sql` — full schema
+- `seed_data.sql` — seed data
+
+Init scripts run only on first volume creation. To add missing tables later:
+```bash
+docker exec -i aegisone-postgres psql -U aegisone -d aegisone < /opt/projects/aegisone-py/sql/schema_postgresql.sql
+```
+
+### Key schema pattern
+- All tables use `BOOLEAN` for `is_active` (not integer)
+- Timestamps use `TIMESTAMP NOT NULL DEFAULT NOW()`
+- `updated_at` triggers via `update_updated_at_column()` function
+
+---
+
+## 8. Useful Commands
+
+```bash
+# Check running containers
+docker ps -a
+
+# Check compose projects
+docker compose ls
+
+# View logs
+docker logs container-name --tail 50
+
+# Restart service
+docker compose -p project-name restart service-name
+
+# Rebuild and restart
+docker compose -p project-name up -d --build
+
+# Clean build cache
+docker builder prune -af
+
+# Test nginx config
+docker compose -p nginx-proxy exec nginx nginx -t
+
+# Reload nginx
+docker compose -p nginx-proxy exec nginx nginx -s reload
+
+# Check listening ports
+ss -tlnp | grep -E ':(80|443|8080|8000|9000|5432)'
+
+# Check disk
+df -h /
+docker system df
+```
+
+---
+
+## 9. Adding a New Project (e.g., voideaai.ru)
+
+### Steps:
+1. Create directory: `mkdir -p /opt/projects/voideaai`
+2. Create `docker-compose.yml` with `network_mode: host` and `build.network: host`
+3. Create `Dockerfile` (use `--only-binary :all:` for pip if avoiding apt)
+4. Create nginx-proxy config: `nginx/conf.d/voideaai.conf` (listen 80, proxy_pass localhost:PORT)
+5. Generate cert if needed
+6. Restart nginx-proxy: `docker compose -p nginx-proxy restart nginx`
+7. Start project: `cd /opt/projects/voideaai && docker compose up -d --build`
+
+### Port allocation for new project
+Check existing ports first (`ss -tlnp`). Choose an unused port for the app and add it to the nginx-proxy config.
+
+---
+
+## 10. Known Issues
+
+1. **Docker Hub timeouts on large images** — consider pulling on local machine and transferring with `docker save`/`docker load`
+2. **HTTPS redirect loops externally** — port 443 may be intercepted by provider/proxy; test HTTP first
+3. **Bridge networking doesn't work** — all containers must use `network_mode: host`
+4. **Docker build needs `network: host`** — without it, apt-get/pip fail
+5. **Config files with `$` in content** — when editing via SSH from PowerShell, `$variables` get expanded; use SCP (write locally, then copy)
diff --git a/alembic/versions/006_add_workspaces.py b/alembic/versions/006_add_workspaces.py
new file mode 100644
index 0000000..d58cd55
--- /dev/null
+++ b/alembic/versions/006_add_workspaces.py
@@ -0,0 +1,47 @@
+"""Add workspace and workspace_memberships tables
+
+Revision ID: 006
+Revises: 005
+Create Date: 2026-05-15
+"""
+from typing import Sequence, Union
+
+from alembic import op
+import sqlalchemy as sa
+from sqlalchemy.dialects import postgresql
+
+revision: str = "006"
+down_revision: Union[str, None] = "005"
+branch_labels: Union[str, Sequence[str], None] = None
+depends_on: Union[str, Sequence[str], None] = None
+
+
+def upgrade() -> None:
+ op.create_table(
+ "workspaces",
+ sa.Column("id", postgresql.UUID(as_uuid=True), primary_key=True),
+ sa.Column("name", sa.String(255), nullable=False),
+ sa.Column("type", sa.String(20), nullable=False, server_default=sa.text("'personal'"), index=True),
+ sa.Column("owner_id", postgresql.UUID(as_uuid=True),
+ sa.ForeignKey("users.id", ondelete="CASCADE"), nullable=False, index=True),
+ sa.Column("description", sa.Text(), nullable=True),
+ sa.Column("created_at", sa.DateTime(timezone=True), server_default=sa.func.now()),
+ sa.Column("updated_at", sa.DateTime(timezone=True), server_default=sa.func.now()),
+ )
+
+ op.create_table(
+ "workspace_memberships",
+ sa.Column("id", postgresql.UUID(as_uuid=True), primary_key=True),
+ sa.Column("workspace_id", postgresql.UUID(as_uuid=True),
+ sa.ForeignKey("workspaces.id", ondelete="CASCADE"), nullable=False, index=True),
+ sa.Column("user_id", postgresql.UUID(as_uuid=True),
+ sa.ForeignKey("users.id", ondelete="CASCADE"), nullable=False, index=True),
+ sa.Column("role", sa.String(20), nullable=False, server_default=sa.text("'member'")),
+ sa.Column("created_at", sa.DateTime(timezone=True), server_default=sa.func.now()),
+ sa.Column("updated_at", sa.DateTime(timezone=True), server_default=sa.func.now()),
+ )
+
+
+def downgrade() -> None:
+ op.drop_table("workspace_memberships")
+ op.drop_table("workspaces")
diff --git a/alembic/versions/007_add_collaboration.py b/alembic/versions/007_add_collaboration.py
new file mode 100644
index 0000000..d919ecf
--- /dev/null
+++ b/alembic/versions/007_add_collaboration.py
@@ -0,0 +1,79 @@
+"""Add collaboration tables: votes, comments, activities, notifications
+
+Revision ID: 007
+Revises: 006
+Create Date: 2026-05-15
+"""
+from typing import Sequence, Union
+
+from alembic import op
+import sqlalchemy as sa
+from sqlalchemy.dialects import postgresql
+
+revision: str = "007"
+down_revision: Union[str, None] = "006"
+branch_labels: Union[str, Sequence[str], None] = None
+depends_on: Union[str, Sequence[str], None] = None
+
+
+def upgrade() -> None:
+ op.create_table(
+ "idea_votes",
+ sa.Column("id", postgresql.UUID(as_uuid=True), primary_key=True),
+ sa.Column("idea_id", postgresql.UUID(as_uuid=True),
+ sa.ForeignKey("ideas.id", ondelete="CASCADE"), nullable=False, index=True),
+ sa.Column("user_id", postgresql.UUID(as_uuid=True),
+ sa.ForeignKey("users.id", ondelete="CASCADE"), nullable=False, index=True),
+ sa.Column("vote", sa.String(4), nullable=False),
+ sa.Column("created_at", sa.DateTime(timezone=True), server_default=sa.func.now()),
+ sa.Column("updated_at", sa.DateTime(timezone=True), server_default=sa.func.now()),
+ sa.UniqueConstraint("idea_id", "user_id", name="uq_idea_user_vote"),
+ )
+
+ op.create_table(
+ "idea_comments",
+ sa.Column("id", postgresql.UUID(as_uuid=True), primary_key=True),
+ sa.Column("idea_id", postgresql.UUID(as_uuid=True),
+ sa.ForeignKey("ideas.id", ondelete="CASCADE"), nullable=False, index=True),
+ sa.Column("user_id", postgresql.UUID(as_uuid=True),
+ sa.ForeignKey("users.id", ondelete="CASCADE"), nullable=False, index=True),
+ sa.Column("content", sa.Text(), nullable=False),
+ sa.Column("parent_id", postgresql.UUID(as_uuid=True),
+ sa.ForeignKey("idea_comments.id", ondelete="CASCADE"), nullable=True),
+ sa.Column("created_at", sa.DateTime(timezone=True), server_default=sa.func.now()),
+ sa.Column("updated_at", sa.DateTime(timezone=True), server_default=sa.func.now()),
+ )
+
+ op.create_table(
+ "idea_activities",
+ sa.Column("id", postgresql.UUID(as_uuid=True), primary_key=True),
+ sa.Column("idea_id", postgresql.UUID(as_uuid=True),
+ sa.ForeignKey("ideas.id", ondelete="CASCADE"), nullable=False, index=True),
+ sa.Column("user_id", postgresql.UUID(as_uuid=True),
+ sa.ForeignKey("users.id", ondelete="SET NULL"), nullable=True, index=True),
+ sa.Column("action", sa.String(50), nullable=False),
+ sa.Column("details", postgresql.JSONB(), nullable=True),
+ sa.Column("created_at", sa.DateTime(timezone=True), server_default=sa.func.now()),
+ sa.Column("updated_at", sa.DateTime(timezone=True), server_default=sa.func.now()),
+ )
+
+ op.create_table(
+ "notifications",
+ sa.Column("id", postgresql.UUID(as_uuid=True), primary_key=True),
+ sa.Column("user_id", postgresql.UUID(as_uuid=True),
+ sa.ForeignKey("users.id", ondelete="CASCADE"), nullable=False, index=True),
+ sa.Column("type", sa.String(50), nullable=False, index=True),
+ sa.Column("title", sa.String(255), nullable=False),
+ sa.Column("body", sa.Text(), nullable=False),
+ sa.Column("link", sa.String(512), nullable=True),
+ sa.Column("is_read", sa.Boolean(), nullable=False, server_default=sa.text("false"), index=True),
+ sa.Column("created_at", sa.DateTime(timezone=True), server_default=sa.func.now()),
+ sa.Column("updated_at", sa.DateTime(timezone=True), server_default=sa.func.now()),
+ )
+
+
+def downgrade() -> None:
+ op.drop_table("notifications")
+ op.drop_table("idea_activities")
+ op.drop_table("idea_comments")
+ op.drop_table("idea_votes")
diff --git a/alembic/versions/008_add_funnel_status.py b/alembic/versions/008_add_funnel_status.py
new file mode 100644
index 0000000..b927dbb
--- /dev/null
+++ b/alembic/versions/008_add_funnel_status.py
@@ -0,0 +1,26 @@
+"""Add funnel_status column to ideas table
+
+Revision ID: 008
+Revises: 007
+Create Date: 2026-05-15
+"""
+from typing import Sequence, Union
+
+from alembic import op
+import sqlalchemy as sa
+
+revision: str = "008"
+down_revision: Union[str, None] = "007"
+branch_labels: Union[str, Sequence[str], None] = None
+depends_on: Union[str, Sequence[str], None] = None
+
+
+def upgrade() -> None:
+ op.add_column(
+ "ideas",
+ sa.Column("funnel_status", sa.String(20), nullable=True, index=True),
+ )
+
+
+def downgrade() -> None:
+ op.drop_column("ideas", "funnel_status")
diff --git a/alembic/versions/009_add_calendar_fields.py b/alembic/versions/009_add_calendar_fields.py
new file mode 100644
index 0000000..84308fe
--- /dev/null
+++ b/alembic/versions/009_add_calendar_fields.py
@@ -0,0 +1,31 @@
+"""Add calendar fields to users table
+
+Revision ID: 009
+Revises: 008
+Create Date: 2026-05-15
+"""
+from typing import Sequence, Union
+
+from alembic import op
+import sqlalchemy as sa
+
+revision: str = "009"
+down_revision: Union[str, None] = "008"
+branch_labels: Union[str, Sequence[str], None] = None
+depends_on: Union[str, Sequence[str], None] = None
+
+
+def upgrade() -> None:
+ op.add_column(
+ "users",
+ sa.Column("calendar_provider", sa.String(20), nullable=True),
+ )
+ op.add_column(
+ "users",
+ sa.Column("calendar_credentials", sa.Text(), nullable=True),
+ )
+
+
+def downgrade() -> None:
+ op.drop_column("users", "calendar_credentials")
+ op.drop_column("users", "calendar_provider")
diff --git a/alembic/versions/010_add_disk_fields.py b/alembic/versions/010_add_disk_fields.py
new file mode 100644
index 0000000..79f045e
--- /dev/null
+++ b/alembic/versions/010_add_disk_fields.py
@@ -0,0 +1,33 @@
+"""Add disk_providers JSONB field to users.
+
+Revision ID: 010_add_disk_fields
+Revises: 009_add_calendar_fields
+Create Date: 2026-05-15
+"""
+
+from typing import Sequence, Union
+
+from alembic import op
+import sqlalchemy as sa
+from sqlalchemy.dialects import postgresql
+
+revision: str = "010_add_disk_fields"
+down_revision: Union[str, None] = "009_add_calendar_fields"
+branch_labels: Union[str, Sequence[str], None] = None
+depends_on: Union[str, Sequence[str], None] = None
+
+
+def upgrade() -> None:
+ op.add_column(
+ "users",
+ sa.Column(
+ "disk_providers",
+ postgresql.JSONB,
+ nullable=True,
+ default=None,
+ ),
+ )
+
+
+def downgrade() -> None:
+ op.drop_column("users", "disk_providers")
diff --git a/app/agents/meta_agent.py b/app/agents/meta_agent.py
new file mode 100644
index 0000000..7c137ca
--- /dev/null
+++ b/app/agents/meta_agent.py
@@ -0,0 +1,176 @@
+"""MetaAgent — Orchestrator agent for VoIdea.
+
+Configurable from admin panel:
+- cron_schedule: str (default "0 9 * * 1,4")
+- weights: dict[agent_name, float]
+- sources_count: int (default 10)
+- auto_create: bool (default True)
+
+Runs a subset of agents based on weights and collects reports.
+"""
+
+import json
+from datetime import datetime, timezone
+from typing import Any
+
+from app.agents.base import AgentResult, AgentStatus, AgentTrigger, BaseAgent
+from app.agents.registry import registry
+
+
+DEFAULT_CONFIG: dict[str, Any] = {
+ "cron_schedule": "0 9 * * 1,4",
+ "weights": {},
+ "sources_count": 10,
+ "auto_create": True,
+}
+
+
+class MetaAgent(BaseAgent):
+ """Orchestrator agent that coordinates other agents."""
+
+ name = "meta_agent"
+ version = "1.0.0"
+ description = "Orchestrates other agents based on configurable schedule and weights"
+ triggers = [
+ AgentTrigger.MANUAL,
+ AgentTrigger.CRON,
+ AgentTrigger.API,
+ ]
+
+ def __init__(self, config: dict[str, Any] | None = None):
+ super().__init__()
+ self._config = {**DEFAULT_CONFIG, **(config or {})}
+
+ @property
+ def config(self) -> dict[str, Any]:
+ return self._config
+
+ @config.setter
+ def config(self, value: dict[str, Any]) -> None:
+ self._config = {**DEFAULT_CONFIG, **value}
+
+ async def run(self, context: dict[str, Any] | None = None) -> AgentResult:
+ """Execute meta-agent orchestration.
+
+ Context can contain:
+ - action: str (orchestrate | report | status) — default "orchestrate"
+ - target_agents: list[str] — subset of agents to run (default: all)
+ - sources_count: int — override config
+ """
+ await self.set_running("orchestration")
+
+ try:
+ action = (context or {}).get("action", "orchestrate")
+
+ if action == "status":
+ return await self._get_status()
+ elif action == "report":
+ return await self._generate_report()
+ else:
+ return await self._orchestrate(context or {})
+
+ except Exception as e:
+ await self.set_error(str(e))
+ return AgentResult(
+ success=False,
+ message=f"MetaAgent failed: {str(e)}",
+ errors=[str(e)],
+ )
+
+ async def health_check(self) -> bool:
+ return True
+
+ async def _orchestrate(self, context: dict[str, Any]) -> AgentResult:
+ """Run target agents and collect results."""
+ target_agents: list[str] | None = context.get("target_agents")
+ sources_count = context.get("sources_count", self._config["sources_count"])
+ weights = self._config.get("weights", {})
+
+ all_agents = registry.list_agents()
+ if not all_agents:
+ await self.set_idle()
+ return AgentResult(
+ success=True,
+ message="No agents registered",
+ data={"orchestrated": 0},
+ )
+
+ candidates = []
+ for a in all_agents:
+ name = a["name"]
+ if name == self.name:
+ continue
+ weight = weights.get(name, 1.0)
+ if weight <= 0:
+ continue
+ candidates.append((name, weight))
+
+ if not candidates:
+ candidates = [(a["name"], 1.0) for a in all_agents if a["name"] != self.name]
+
+ if target_agents:
+ candidates = [c for c in candidates if c[0] in target_agents]
+
+ max_sources = min(sources_count, len(candidates))
+ selected = candidates[:max_sources]
+
+ results: dict[str, Any] = {}
+ for name, _weight in selected:
+ try:
+ result = await registry.run_agent(name, {"trigger": "meta_agent"})
+ results[name] = {
+ "success": result.success,
+ "message": result.message,
+ "duration_ms": result.duration_ms,
+ }
+ except Exception as e:
+ results[name] = {
+ "success": False,
+ "message": str(e),
+ }
+
+ success_count = sum(1 for r in results.values() if r["success"])
+ total_duration = sum(r.get("duration_ms", 0) for r in results.values())
+
+ await self.set_idle()
+ return AgentResult(
+ success=True,
+ message=f"Orchestrated {len(results)} agents ({success_count} ok)",
+ data={
+ "orchestrated": len(results),
+ "success_count": success_count,
+ "agents": results,
+ "total_duration_ms": total_duration,
+ "config": {
+ "cron_schedule": self._config["cron_schedule"],
+ "sources_count": sources_count,
+ "auto_create": self._config["auto_create"],
+ },
+ },
+ )
+
+ async def _generate_report(self) -> AgentResult:
+ """Generate summary report of all agent statuses."""
+ all_agents = registry.list_agents()
+ metrics = registry.get_metrics_all()
+
+ return AgentResult(
+ success=True,
+ message=f"Report: {len(all_agents)} agents",
+ data={
+ "agents": all_agents,
+ "metrics": metrics,
+ "generated_at": datetime.now(timezone.utc).isoformat(),
+ },
+ )
+
+ async def _get_status(self) -> AgentResult:
+ return AgentResult(
+ success=True,
+ message="Meta-agent operational",
+ data={
+ "status": self.status.value,
+ "config": self._config,
+ "last_run": self._last_run.isoformat() if self._last_run else None,
+ },
+ )
diff --git a/app/agents/registry.py b/app/agents/registry.py
index 3449ee3..36238e5 100644
--- a/app/agents/registry.py
+++ b/app/agents/registry.py
@@ -15,6 +15,7 @@ from app.agents.ui_test_agent import UITestAgent
from app.agents.rollout_agent import RolloutAgent
from app.agents.conductor_agent import ConductorAgent
from app.agents.supervisor_agent import SupervisorAgent
+from app.agents.meta_agent import MetaAgent
class AgentRegistry:
@@ -36,6 +37,7 @@ class AgentRegistry:
self.register(RolloutAgent())
self.register(ConductorAgent())
self.register(SupervisorAgent())
+ self.register(MetaAgent())
def register(self, agent: BaseAgent) -> None:
if not agent.name:
diff --git a/app/api/v1/__init__.py b/app/api/v1/__init__.py
index 5f76c14..cf9ca95 100644
--- a/app/api/v1/__init__.py
+++ b/app/api/v1/__init__.py
@@ -12,6 +12,9 @@ from app.api.v1.voice import router as voice_router
from app.api.v1.config import router as config_router
from app.api.v1.feedback import router as feedback_router
from app.api.v1.tariffs import router as tariffs_router
+from app.api.v1.workspaces import router as workspaces_router
+from app.api.v1.collaboration import router as collaboration_router
+from app.api.v1.calendar import router as calendar_router
api_v1_router = APIRouter(prefix="/api/v1")
@@ -25,5 +28,8 @@ api_v1_router.include_router(voice_router, prefix="/voice", tags=["voice"])
api_v1_router.include_router(config_router, prefix="/config", tags=["config"])
api_v1_router.include_router(feedback_router, prefix="/feedback", tags=["feedback"])
api_v1_router.include_router(tariffs_router, prefix="/tariffs", tags=["tariffs"])
+api_v1_router.include_router(workspaces_router, prefix="/workspaces", tags=["workspaces"])
+api_v1_router.include_router(collaboration_router, prefix="", tags=["collaboration"])
+api_v1_router.include_router(calendar_router, prefix="", tags=["calendar"])
__all__ = ["api_v1_router"]
diff --git a/app/api/v1/admin.py b/app/api/v1/admin.py
index 7e96efa..c340773 100644
--- a/app/api/v1/admin.py
+++ b/app/api/v1/admin.py
@@ -39,6 +39,8 @@ from app.schemas.admin import (
SystemInfoResponse,
UserAdminUpdate,
)
+from app.agents.base import AgentResult
+from app.schemas.agent import AgentRunRequest
from app.schemas.bot import BotCommandResponse, BotCommandUpdate
from app.schemas.feedback import FeedbackResponse, FeedbackUpdate
from app.schemas.tariff import TariffPlanCreate, TariffPlanResponse, TariffPlanUpdate, UserSubscriptionResponse
@@ -101,6 +103,7 @@ def _agent_to_response(a: AgentConfig) -> AgentInfoResponse:
description=getattr(a, "description", ""),
is_enabled=a.is_enabled,
version=a.version,
+ config=a.config,
last_run_at=a.last_run_at,
)
@@ -191,12 +194,38 @@ async def update_agent(
agent.description = body.description
if body.is_enabled is not None:
agent.is_enabled = body.is_enabled
+ if body.config is not None:
+ agent.config = body.config
await db.commit()
await db.refresh(agent)
return _agent_to_response(agent)
+@router.post("/agents/{agent_name}/run", response_model=AgentResult)
+async def run_agent(
+ agent_name: str,
+ user: Annotated[User, Depends(get_current_user)],
+ body: AgentRunRequest | None = None,
+):
+ from app.agents.registry import registry
+
+ context = body.model_dump() if body else {}
+ result = await registry.run_agent(agent_name, context)
+ return result
+
+
+@router.post("/agents/run-all", response_model=dict[str, AgentResult])
+async def run_all_agents(
+ user: Annotated[User, Depends(get_current_user)],
+ body: AgentRunRequest | None = None,
+):
+ from app.agents.registry import registry
+
+ context = body.model_dump() if body else {}
+ return await registry.run_all(context)
+
+
# ── Logs ──
@router.get("/logs", response_model=list[LogEntryResponse])
diff --git a/app/api/v1/calendar.py b/app/api/v1/calendar.py
new file mode 100644
index 0000000..8b6bee8
--- /dev/null
+++ b/app/api/v1/calendar.py
@@ -0,0 +1,63 @@
+"""Calendar API routes for VoIdea."""
+
+from typing import Annotated
+
+from fastapi import APIRouter, Depends, HTTPException, status
+from sqlalchemy.ext.asyncio import AsyncSession
+
+from app.core.dependencies import get_current_user, get_db
+from app.models.user import User
+from app.services.calendar_service import CALENDAR_PROVIDERS, CalendarService
+from app.services.idea_service import IdeaService
+
+router = APIRouter()
+
+
+@router.post("/ideas/{idea_id}/calendar")
+async def add_idea_to_calendar(
+ idea_id: str,
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ """Create a calendar event from an idea."""
+ idea_svc = IdeaService(db)
+ idea = await idea_svc.get_by_id(idea_id)
+ if not idea or str(idea.user_id) != str(user.id):
+ raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Idea not found")
+
+ cal_svc = CalendarService(db)
+ success = await cal_svc.create_idea_event(user, idea.title, idea.content)
+ if not success:
+ raise HTTPException(
+ status_code=status.HTTP_400_BAD_REQUEST,
+ detail="Calendar not configured. Connect a calendar in Settings > Integrations.",
+ )
+ return {"success": True, "message": "Event created in calendar"}
+
+
+@router.get("/calendar/providers")
+async def list_calendar_providers():
+ return {"providers": list(CALENDAR_PROVIDERS)}
+
+
+@router.get("/calendar/status")
+async def calendar_status(
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ cal_svc = CalendarService(db)
+ creds = await cal_svc.get_calendar_credentials(user)
+ return {
+ "connected": creds is not None,
+ "provider": user.calendar_provider if hasattr(user, "calendar_provider") else None,
+ }
+
+
+@router.post("/calendar/disconnect")
+async def disconnect_calendar(
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ cal_svc = CalendarService(db)
+ await cal_svc.disconnect_calendar(user)
+ return {"success": True}
diff --git a/app/api/v1/collaboration.py b/app/api/v1/collaboration.py
new file mode 100644
index 0000000..02872d4
--- /dev/null
+++ b/app/api/v1/collaboration.py
@@ -0,0 +1,204 @@
+"""Collaboration API routes for VoIdea.
+
+Voting, comments, activity log, and notifications.
+"""
+
+from typing import Annotated
+from uuid import UUID
+
+from fastapi import APIRouter, Depends, HTTPException, Query, status
+from sqlalchemy.ext.asyncio import AsyncSession
+
+from sqlalchemy import select
+
+from app.core.dependencies import get_current_user, get_db
+from app.models.collaboration import Notification
+from app.models.user import User
+from app.schemas.collaboration import (
+ ActivityResponse,
+ CommentCreate,
+ CommentResponse,
+ NotificationResponse,
+ NotificationUnreadCount,
+ VoteCount,
+ VoteResponse,
+ VoteToggleRequest,
+)
+from app.services.collaboration_service import CollaborationService
+from app.services.idea_service import IdeaService
+
+router = APIRouter()
+
+
+@router.post("/ideas/{idea_id}/vote", response_model=VoteCount)
+async def toggle_vote(
+ idea_id: str,
+ body: VoteToggleRequest,
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ svc = CollaborationService(db)
+ idea_svc = IdeaService(db)
+ idea = await idea_svc.get_by_id(idea_id)
+ if not idea or str(idea.user_id) != str(user.id):
+ raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Idea not found")
+
+ await svc.toggle_vote(UUID(idea_id), user.id, body.vote)
+ counts = await svc.get_vote_counts(UUID(idea_id))
+ user_vote = await svc.get_user_vote(UUID(idea_id), user.id)
+ return VoteCount(**counts, user_vote=user_vote)
+
+
+@router.get("/ideas/{idea_id}/votes", response_model=VoteCount)
+async def get_votes(
+ idea_id: str,
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ svc = CollaborationService(db)
+ idea_svc = IdeaService(db)
+ idea = await idea_svc.get_by_id(idea_id)
+ if not idea or str(idea.user_id) != str(user.id):
+ raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Idea not found")
+
+ counts = await svc.get_vote_counts(UUID(idea_id))
+ user_vote = await svc.get_user_vote(UUID(idea_id), user.id)
+ return VoteCount(**counts, user_vote=user_vote)
+
+
+# ── Comments ──
+
+
+@router.get("/ideas/{idea_id}/comments", response_model=list[CommentResponse])
+async def list_comments(
+ idea_id: str,
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ svc = CollaborationService(db)
+ return await svc.list_comments(UUID(idea_id))
+
+
+@router.post("/ideas/{idea_id}/comments", response_model=CommentResponse, status_code=status.HTTP_201_CREATED)
+async def create_comment(
+ idea_id: str,
+ body: CommentCreate,
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ svc = CollaborationService(db)
+ parent_id = UUID(body.parent_id) if body.parent_id else None
+ c = await svc.create_comment(UUID(idea_id), user.id, body.content, parent_id)
+
+ await svc.log_activity(
+ UUID(idea_id), user.id, "comment",
+ {"comment_id": str(c.id), "preview": body.content[:100]},
+ )
+
+ return CommentResponse(
+ id=str(c.id),
+ idea_id=str(c.idea_id),
+ user_id=str(c.user_id),
+ content=c.content,
+ parent_id=str(c.parent_id) if c.parent_id else None,
+ display_name=user.display_name,
+ avatar_url=user.avatar_url,
+ created_at=c.created_at,
+ updated_at=c.updated_at,
+ )
+
+
+@router.delete("/ideas/{idea_id}/comments/{comment_id}", status_code=status.HTTP_204_NO_CONTENT)
+async def delete_comment(
+ idea_id: str,
+ comment_id: str,
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ svc = CollaborationService(db)
+ success = await svc.delete_comment(UUID(comment_id), user.id)
+ if not success:
+ raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Comment not found")
+
+
+# ── Activity ──
+
+
+@router.get("/ideas/{idea_id}/activity", response_model=list[ActivityResponse])
+async def list_activity(
+ idea_id: str,
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+ limit: int = Query(50, ge=1, le=200),
+):
+ svc = CollaborationService(db)
+ return await svc.list_activities(UUID(idea_id), limit=limit)
+
+
+# ── Notifications ──
+
+
+@router.get("/notifications", response_model=list[NotificationResponse])
+async def list_notifications(
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+ unread_only: bool = Query(False),
+):
+ svc = CollaborationService(db)
+ notifications = await svc.list_notifications(user.id, unread_only=unread_only)
+ return [
+ NotificationResponse(
+ id=str(n.id),
+ type=n.type,
+ title=n.title,
+ body=n.body,
+ link=n.link,
+ is_read=n.is_read,
+ created_at=n.created_at,
+ )
+ for n in notifications
+ ]
+
+
+@router.get("/notifications/unread-count", response_model=NotificationUnreadCount)
+async def unread_count(
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ svc = CollaborationService(db)
+ count = await svc.get_unread_count(user.id)
+ return NotificationUnreadCount(count=count)
+
+
+@router.post("/notifications/{notification_id}/read", response_model=NotificationResponse)
+async def mark_read(
+ notification_id: str,
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ svc = CollaborationService(db)
+ success = await svc.mark_notification_read(UUID(notification_id), user.id)
+ if not success:
+ raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Notification not found")
+
+ result = await db.execute(
+ select(Notification).where(Notification.id == UUID(notification_id))
+ )
+ n = result.scalar_one()
+ return NotificationResponse(
+ id=str(n.id), type=n.type, title=n.title, body=n.body,
+ link=n.link, is_read=n.is_read, created_at=n.created_at,
+ )
+
+
+@router.post("/notifications/read-all", response_model=NotificationUnreadCount)
+async def mark_all_read(
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ svc = CollaborationService(db)
+ count = await svc.mark_all_read(user.id)
+ return NotificationUnreadCount(count=count)
+
+
+
diff --git a/app/api/v1/disk.py b/app/api/v1/disk.py
new file mode 100644
index 0000000..e160df8
--- /dev/null
+++ b/app/api/v1/disk.py
@@ -0,0 +1,128 @@
+"""Disk/Drive API routes for VoIdea."""
+
+import logging
+from typing import Annotated
+
+from fastapi import APIRouter, Depends, HTTPException, Query, status
+from pydantic import BaseModel
+from sqlalchemy.ext.asyncio import AsyncSession
+
+from app.core.dependencies import get_current_user, get_db
+from app.models.user import User
+from app.services.disk_service import DISK_PROVIDERS, DiskService
+
+logger = logging.getLogger(__name__)
+router = APIRouter()
+
+
+class ConnectRequest(BaseModel):
+ provider: str
+ code: str
+
+
+class DisconnectRequest(BaseModel):
+ provider: str
+
+
+@router.get("/disk/providers")
+async def list_disk_providers():
+ """List available disk providers and user's connected ones."""
+ return {"providers": list(DISK_PROVIDERS)}
+
+
+@router.get("/disk/status")
+async def disk_status(
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ """Get user's connected disk providers."""
+ svc = DiskService(db)
+ providers = await svc.get_connected_providers(user)
+ return {"connected": providers, "count": len(providers)}
+
+
+@router.post("/disk/connect")
+async def connect_disk(
+ body: ConnectRequest,
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ """Exchange OAuth code for tokens and store provider connection."""
+ if body.provider not in DISK_PROVIDERS:
+ raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST, detail="Unknown provider")
+
+ tokens = None
+ email = ""
+
+ if body.provider == "google":
+ from app.integrations.oauth.google import exchange_code, get_user_info
+ tokens = await exchange_code(body.code)
+ if tokens:
+ info = await get_user_info(tokens.get("access_token", ""))
+ if info:
+ email = info.email
+
+ elif body.provider == "yandex":
+ from app.integrations.oauth.yandex import exchange_code, get_user_info
+ token_result = await exchange_code(body.code)
+ if token_result:
+ tokens = {
+ "access_token": token_result.access_token,
+ "refresh_token": token_result.refresh_token,
+ "expires_at": (
+ token_result.expires_at.isoformat()
+ if token_result.expires_at else None
+ ),
+ }
+ info = await get_user_info(token_result.access_token)
+ if info:
+ email = info.email
+
+ elif body.provider == "apple":
+ from app.integrations.oauth.apple import exchange_code
+ result = await exchange_code(body.code)
+ if result:
+ tokens = result
+
+ if not tokens:
+ raise HTTPException(
+ status_code=status.HTTP_400_BAD_REQUEST,
+ detail="Failed to exchange authorization code",
+ )
+
+ svc = DiskService(db)
+ await svc.add_provider(user, body.provider, tokens, email=email)
+ return {"success": True, "provider": body.provider}
+
+
+@router.post("/disk/disconnect")
+async def disconnect_disk(
+ body: DisconnectRequest,
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ """Disconnect a disk provider."""
+ svc = DiskService(db)
+ await svc.remove_provider(user, body.provider)
+ return {"success": True}
+
+
+@router.get("/disk/oauth-url/{provider}")
+async def disk_oauth_url(provider: str):
+ """Get OAuth authorize URL for a disk provider."""
+ if provider not in DISK_PROVIDERS:
+ raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST, detail="Unknown provider")
+
+ if provider == "google":
+ from app.integrations.oauth.google import get_authorize_url
+ url = await get_authorize_url()
+ elif provider == "yandex":
+ from app.integrations.oauth.yandex import get_authorize_url
+ url = await get_authorize_url()
+ elif provider == "apple":
+ from app.integrations.oauth.apple import get_authorize_url
+ url = await get_authorize_url()
+ else:
+ raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST, detail="Unknown provider")
+
+ return {"url": url}
diff --git a/app/api/v1/ideas.py b/app/api/v1/ideas.py
index 2d1be91..f9eaeb8 100644
--- a/app/api/v1/ideas.py
+++ b/app/api/v1/ideas.py
@@ -14,14 +14,18 @@ from app.models.idea import Idea
from app.models.user import User
from app.schemas.idea import (
AnalysisResultResponse,
+ FunnelTransitionRequest,
IdeaAnalyzeResponse,
IdeaCreate,
IdeaResponse,
IdeaUpdate,
)
from app.services.analysis_service import AnalysisService
+from app.services.collaboration_service import CollaborationService
+from app.services.disk_service import DiskService
from app.services.export_service import export_content
from app.services.idea_service import IdeaService
+from app.services.presentation_service import PresentationService
router = APIRouter()
@@ -186,6 +190,65 @@ async def export_idea(
)
+@router.post("/{idea_id}/presentation")
+async def generate_presentation(
+ idea_id: str,
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+ roles: str = Query("", description="Comma-separated role names (empty=all)"),
+ destination: str = Query("download", regex="^(download|drive)$"),
+ drive_provider: str = Query("", description="Specific drive provider (google/yandex/apple)"),
+):
+ """Generate HTML presentation for an idea.
+
+ Args:
+ destination: "download" = return as file, "drive" = upload to cloud drive
+ roles: Comma-separated agent roles (empty = all available)
+ drive_provider: Specific provider to upload to (empty = auto-detect)
+ """
+ idea_svc = IdeaService(db)
+ idea = await idea_svc.get_by_id(idea_id)
+ if not idea or str(idea.user_id) != str(user.id):
+ raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Idea not found")
+
+ role_list = [r.strip() for r in roles.split(",") if r.strip()] if roles else None
+ pres_svc = PresentationService(db)
+ html = await pres_svc.generate(idea_id, roles=role_list, user_name=user.display_name)
+ if not html:
+ raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Idea not found")
+
+ filename = f"prezentaciya_{idea.title[:40].replace(' ', '_')}.html"
+
+ if destination == "drive":
+ disk_svc = DiskService(db)
+ content_bytes = html.encode("utf-8")
+ if drive_provider:
+ success = await disk_svc.upload_to_provider(
+ user, drive_provider, filename, content_bytes
+ )
+ if not success:
+ raise HTTPException(
+ status_code=status.HTTP_400_BAD_REQUEST,
+ detail=f"Failed to upload to {drive_provider}",
+ )
+ return {"success": True, "provider": drive_provider, "filename": filename}
+ else:
+ result = await disk_svc.upload_to_any(user, filename, content_bytes)
+ if not result:
+ raise HTTPException(
+ status_code=status.HTTP_400_BAD_REQUEST,
+ detail="No connected drive. Connect a cloud drive first.",
+ )
+ return {"success": True, "provider": result["provider"], "filename": filename}
+
+ from fastapi.responses import Response
+ return Response(
+ content=html,
+ media_type="text/html; charset=utf-8",
+ headers={"Content-Disposition": f'attachment; filename="{filename}"'},
+ )
+
+
@router.post("/{idea_id}/share", response_model=IdeaResponse)
async def toggle_idea_share(
idea_id: str,
@@ -208,6 +271,39 @@ async def toggle_idea_share(
return _idea_to_response(idea)
+@router.post("/{idea_id}/funnel", response_model=IdeaResponse)
+async def transition_funnel(
+ idea_id: str,
+ body: FunnelTransitionRequest,
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ service = IdeaService(db)
+ idea = await service.get_by_id(idea_id)
+ if not idea or str(idea.user_id) != str(user.id):
+ raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Idea not found")
+
+ target = body.target_status
+ valid_states = Idea.FUNNEL_STATES
+ if target not in valid_states:
+ raise HTTPException(
+ status_code=status.HTTP_400_BAD_REQUEST,
+ detail=f"Invalid funnel status. Valid: {', '.join(valid_states)}",
+ )
+
+ idea.funnel_status = target
+ await db.commit()
+ await db.refresh(idea)
+
+ collab = CollaborationService(db)
+ await collab.log_activity(
+ UUID(idea_id), user.id, "funnel",
+ {"from": idea.funnel_status, "to": target},
+ )
+
+ return _idea_to_response(idea)
+
+
@router.post("/demo", response_model=IdeaResponse, status_code=status.HTTP_201_CREATED)
async def create_demo_idea(
user: Annotated[User, Depends(get_current_user)],
diff --git a/app/api/v1/workspaces.py b/app/api/v1/workspaces.py
new file mode 100644
index 0000000..24b6c02
--- /dev/null
+++ b/app/api/v1/workspaces.py
@@ -0,0 +1,178 @@
+"""Workspace API routes for VoIdea."""
+
+from typing import Annotated
+from uuid import UUID
+
+from fastapi import APIRouter, Depends, HTTPException, status
+from sqlalchemy.ext.asyncio import AsyncSession
+
+from app.core.dependencies import get_current_user, get_db
+from app.models.user import User
+from app.schemas.workspace import (
+ AddMemberRequest,
+ MemberResponse,
+ WorkspaceCreate,
+ WorkspaceResponse,
+ WorkspaceUpdate,
+)
+from app.services.workspace_service import WorkspaceError, WorkspaceLimitError, WorkspaceService
+
+router = APIRouter()
+
+
+def _ws_to_response(ws, member_count=0) -> WorkspaceResponse:
+ return WorkspaceResponse(
+ id=str(ws.id),
+ name=ws.name,
+ type=ws.type,
+ owner_id=str(ws.owner_id),
+ description=ws.description,
+ member_count=member_count,
+ created_at=ws.created_at,
+ updated_at=ws.updated_at,
+ )
+
+
+@router.get("/", response_model=list[WorkspaceResponse])
+async def list_workspaces(
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ svc = WorkspaceService(db)
+
+ personal = await svc.create_personal(user.id)
+ workspaces = await svc.list_user_workspaces(user.id)
+
+ result = []
+ for ws in workspaces:
+ members = await svc.list_members(ws.id)
+ result.append(_ws_to_response(ws, member_count=len(members)))
+ return result
+
+
+@router.post("/", response_model=WorkspaceResponse, status_code=status.HTTP_201_CREATED)
+async def create_workspace(
+ body: WorkspaceCreate,
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ svc = WorkspaceService(db)
+ try:
+ if body.type == "personal":
+ ws = await svc.create_personal(user.id, body.name)
+ else:
+ ws = await svc.create_team(body.name, user.id)
+ members = await svc.list_members(ws.id)
+ return _ws_to_response(ws, member_count=len(members))
+ except WorkspaceLimitError as e:
+ raise HTTPException(status_code=status.HTTP_403_FORBIDDEN, detail=str(e))
+ except WorkspaceError as e:
+ raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST, detail=str(e))
+
+
+@router.get("/{workspace_id}", response_model=WorkspaceResponse)
+async def get_workspace(
+ workspace_id: str,
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ svc = WorkspaceService(db)
+ ws = await svc.get_by_id(UUID(workspace_id))
+ if not ws:
+ raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Workspace not found")
+ membership = await svc.get_membership(ws.id, user.id)
+ if not membership:
+ raise HTTPException(status_code=status.HTTP_403_FORBIDDEN, detail="Not a member")
+ members = await svc.list_members(ws.id)
+ return _ws_to_response(ws, member_count=len(members))
+
+
+@router.patch("/{workspace_id}", response_model=WorkspaceResponse)
+async def update_workspace(
+ workspace_id: str,
+ body: WorkspaceUpdate,
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ svc = WorkspaceService(db)
+ try:
+ ws = await svc.update_workspace(
+ UUID(workspace_id), user.id, body.model_dump(exclude_none=True)
+ )
+ if not ws:
+ raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Workspace not found")
+ members = await svc.list_members(ws.id)
+ return _ws_to_response(ws, member_count=len(members))
+ except WorkspaceError as e:
+ raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST, detail=str(e))
+
+
+@router.delete("/{workspace_id}", status_code=status.HTTP_204_NO_CONTENT)
+async def delete_workspace(
+ workspace_id: str,
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ svc = WorkspaceService(db)
+ try:
+ success = await svc.delete_workspace(UUID(workspace_id), user.id)
+ if not success:
+ raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Workspace not found")
+ except WorkspaceError as e:
+ raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST, detail=str(e))
+
+
+# ── Members ──
+
+
+@router.get("/{workspace_id}/members", response_model=list[MemberResponse])
+async def list_members(
+ workspace_id: str,
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ svc = WorkspaceService(db)
+ ws = await svc.get_by_id(UUID(workspace_id))
+ if not ws:
+ raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Workspace not found")
+ membership = await svc.get_membership(ws.id, user.id)
+ if not membership:
+ raise HTTPException(status_code=status.HTTP_403_FORBIDDEN, detail="Not a member")
+ members = await svc.list_members(ws.id)
+ return [MemberResponse(**m) for m in members]
+
+
+@router.post("/{workspace_id}/members", response_model=MemberResponse, status_code=status.HTTP_201_CREATED)
+async def add_member(
+ workspace_id: str,
+ body: AddMemberRequest,
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ svc = WorkspaceService(db)
+ try:
+ member = await svc.add_member(UUID(workspace_id), UUID(body.user_id), body.role)
+ members = await svc.list_members(ws_id := UUID(workspace_id))
+ m = next((m for m in members if m["id"] == str(member.id)), None)
+ return MemberResponse(**m) if m else MemberResponse(
+ id=str(member.id), user_id=str(member.user_id),
+ workspace_id=str(member.workspace_id), role=member.role,
+ joined_at=member.created_at,
+ )
+ except WorkspaceLimitError as e:
+ raise HTTPException(status_code=status.HTTP_403_FORBIDDEN, detail=str(e))
+ except WorkspaceError as e:
+ raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST, detail=str(e))
+
+
+@router.delete("/{workspace_id}/members/{member_id}", status_code=status.HTTP_204_NO_CONTENT)
+async def remove_member(
+ workspace_id: str,
+ member_id: str,
+ user: Annotated[User, Depends(get_current_user)],
+ db: AsyncSession = Depends(get_db),
+):
+ svc = WorkspaceService(db)
+ success = await svc.remove_member(UUID(workspace_id), UUID(member_id))
+ if not success:
+ raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Member not found")
diff --git a/app/core/seed.py b/app/core/seed.py
index e2fc26e..75c9164 100644
--- a/app/core/seed.py
+++ b/app/core/seed.py
@@ -1,18 +1,22 @@
"""Seed data for VoIdeaAI.
Called from app lifespan when DB tables are empty.
-Creates default tariff plans and sets system owner by email.
+Creates default tariff plans, demo user, and sets system owner by email.
"""
import json
+from datetime import datetime, timezone
from pathlib import Path
+from uuid import uuid4
from sqlalchemy import select
from sqlalchemy.ext.asyncio import AsyncSession
from app.core.config import get_settings
+from app.core.security import get_password_hash
from app.models.agent import AgentConfig
from app.models.tariff import TariffPlan
+from app.models.user import User
from app.services.user_service import UserService
settings = get_settings()
@@ -60,6 +64,7 @@ async def seed_database(db: AsyncSession) -> None:
"""Seed initial data if tables are empty."""
await _seed_tariff_plans(db)
await _seed_agent_descriptions(db)
+ await _seed_demo_user(db)
await _seed_owner(db)
@@ -118,6 +123,27 @@ async def _seed_agent_descriptions(db: AsyncSession) -> None:
await db.commit()
+async def _seed_demo_user(db: AsyncSession) -> None:
+ """Create demo@voidea.app / demo1234 if not exists."""
+ result = await db.execute(select(User).where(User.email == "demo@voidea.app"))
+ if result.scalar_one_or_none():
+ return
+
+ demo = User(
+ id=uuid4(),
+ email="demo@voidea.app",
+ password_hash=get_password_hash("demo1234"),
+ display_name="Demo User",
+ is_active=True,
+ is_superuser=True,
+ role="admin",
+ accepted_terms_at=datetime.now(timezone.utc),
+ accepted_terms_version=settings.accepted_terms_version,
+ )
+ db.add(demo)
+ await db.commit()
+
+
async def _seed_owner(db: AsyncSession) -> None:
"""Set system owner by SYSTEM_OWNER_EMAIL if configured."""
if not settings.system_owner_email:
diff --git a/app/integrations/calendar/__init__.py b/app/integrations/calendar/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/app/integrations/calendar/apple_caldav.py b/app/integrations/calendar/apple_caldav.py
new file mode 100644
index 0000000..c22b7bf
--- /dev/null
+++ b/app/integrations/calendar/apple_caldav.py
@@ -0,0 +1,35 @@
+"""Apple CalDAV stub implementation.
+
+When credentials are empty, logs the operation and returns True.
+Real CalDAV implementation deferred.
+"""
+
+import logging
+
+logger = logging.getLogger(__name__)
+
+
+class AppleCalDavStub:
+ """Apple Calendar via CalDAV (stub — logs only)."""
+
+ async def create_event(
+ self,
+ summary: str,
+ description: str,
+ start_iso: str,
+ end_iso: str,
+ **kwargs,
+ ) -> bool:
+ logger.info(
+ "Apple CalDAV stub: create_event called — "
+ "summary=%s, start=%s, end=%s",
+ summary, start_iso, end_iso,
+ )
+ return True
+
+ async def list_events(self, max_results: int = 10) -> list[dict]:
+ logger.info("Apple CalDAV stub: list_events called")
+ return []
+
+ async def health_check(self) -> bool:
+ return True
diff --git a/app/integrations/calendar/google_calendar.py b/app/integrations/calendar/google_calendar.py
new file mode 100644
index 0000000..e178c9d
--- /dev/null
+++ b/app/integrations/calendar/google_calendar.py
@@ -0,0 +1,58 @@
+"""Google Calendar API client for VoIdea.
+
+Uses OAuth access token to create events via Google Calendar API v3.
+"""
+
+import logging
+
+import httpx
+
+logger = logging.getLogger(__name__)
+
+GOOGLE_CALENDAR_URL = "https://www.googleapis.com/calendar/v3"
+
+
+class GoogleCalendarClient:
+ def __init__(self, access_token: str):
+ self._access_token = access_token
+
+ async def create_event(
+ self,
+ summary: str,
+ description: str,
+ start_iso: str,
+ end_iso: str,
+ **kwargs,
+ ) -> bool:
+ async with httpx.AsyncClient() as client:
+ resp = await client.post(
+ f"{GOOGLE_CALENDAR_URL}/calendars/primary/events",
+ headers={
+ "Authorization": f"Bearer {self._access_token}",
+ "Content-Type": "application/json",
+ },
+ json={
+ "summary": summary,
+ "description": description,
+ "start": {"dateTime": start_iso, "timeZone": "UTC"},
+ "end": {"dateTime": end_iso, "timeZone": "UTC"},
+ },
+ )
+ if resp.status_code == 200:
+ return True
+ logger.error("Google Calendar create_event failed: %s %s", resp.status_code, resp.text)
+ return False
+
+ async def list_events(self, max_results: int = 10) -> list[dict]:
+ async with httpx.AsyncClient() as client:
+ resp = await client.get(
+ f"{GOOGLE_CALENDAR_URL}/calendars/primary/events",
+ headers={"Authorization": f"Bearer {self._access_token}"},
+ params={"maxResults": max_results, "orderBy": "startTime", "singleEvents": "true"},
+ )
+ if resp.status_code == 200:
+ return resp.json().get("items", [])
+ return []
+
+ async def health_check(self) -> bool:
+ return bool(self._access_token)
diff --git a/app/integrations/calendar/yandex_calendar.py b/app/integrations/calendar/yandex_calendar.py
new file mode 100644
index 0000000..0df7ee5
--- /dev/null
+++ b/app/integrations/calendar/yandex_calendar.py
@@ -0,0 +1,58 @@
+"""Yandex Calendar API client for VoIdea.
+
+Uses OAuth access token to create events via Yandex Calendar API.
+"""
+
+import logging
+
+import httpx
+
+logger = logging.getLogger(__name__)
+
+YANDEX_CALENDAR_URL = "https://calendar.yandex.ru/api"
+
+
+class YandexCalendarClient:
+ def __init__(self, access_token: str):
+ self._access_token = access_token
+
+ async def create_event(
+ self,
+ summary: str,
+ description: str,
+ start_iso: str,
+ end_iso: str,
+ **kwargs,
+ ) -> bool:
+ async with httpx.AsyncClient() as client:
+ resp = await client.post(
+ f"{YANDEX_CALENDAR_URL}/events",
+ headers={
+ "Authorization": f"OAuth {self._access_token}",
+ "Content-Type": "application/json",
+ },
+ json={
+ "summary": summary,
+ "description": description,
+ "start": {"dateTime": start_iso, "timeZone": "UTC"},
+ "end": {"dateTime": end_iso, "timeZone": "UTC"},
+ },
+ )
+ if resp.status_code in (200, 201):
+ return True
+ logger.error("Yandex Calendar create_event failed: %s %s", resp.status_code, resp.text)
+ return False
+
+ async def list_events(self, max_results: int = 10) -> list[dict]:
+ async with httpx.AsyncClient() as client:
+ resp = await client.get(
+ f"{YANDEX_CALENDAR_URL}/events",
+ headers={"Authorization": f"OAuth {self._access_token}"},
+ params={"maxResults": max_results},
+ )
+ if resp.status_code == 200:
+ return resp.json().get("events", [])
+ return []
+
+ async def health_check(self) -> bool:
+ return bool(self._access_token)
diff --git a/app/integrations/oauth/google.py b/app/integrations/oauth/google.py
index 0dfd97c..a6dc173 100644
--- a/app/integrations/oauth/google.py
+++ b/app/integrations/oauth/google.py
@@ -18,6 +18,7 @@ SCOPES = " ".join([
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile",
"https://www.googleapis.com/auth/drive.file",
+ "https://www.googleapis.com/auth/calendar.events",
])
VOIDEA_DRIVE_FOLDER = "VoIdeaAI"
diff --git a/app/integrations/oauth/yandex.py b/app/integrations/oauth/yandex.py
index a147f41..9513b8e 100644
--- a/app/integrations/oauth/yandex.py
+++ b/app/integrations/oauth/yandex.py
@@ -28,6 +28,7 @@ SCOPES = " ".join([
"cloud_api:disk.app_folder",
"cloud_api:disk.read",
"cloud_api:disk.info",
+ "calendar:event.write",
])
VOIDEA_DISK_FOLDER = "VoIdeaAI"
diff --git a/app/models/__init__.py b/app/models/__init__.py
index 4ec8e2d..a3ed84a 100644
--- a/app/models/__init__.py
+++ b/app/models/__init__.py
@@ -10,3 +10,5 @@ from app.models.log import LogEntry
from app.models.conductor import ConductorInteraction
from app.models.pipeline import PipelineStats
from app.models.bot_command import BotCommand
+from app.models.workspace import Workspace, WorkspaceMembership
+from app.models.collaboration import IdeaVote, IdeaComment, IdeaActivity, Notification
diff --git a/app/models/collaboration.py b/app/models/collaboration.py
new file mode 100644
index 0000000..0240c5a
--- /dev/null
+++ b/app/models/collaboration.py
@@ -0,0 +1,106 @@
+"""Collaboration models for VoIdea.
+
+Voting, threaded comments, activity log, and notifications.
+"""
+
+from typing import Optional
+
+from sqlalchemy import Boolean, ForeignKey, String, Text, UniqueConstraint
+from sqlalchemy.dialects.postgresql import JSONB, UUID
+from sqlalchemy.orm import Mapped, mapped_column
+
+from app.core.base import SQLBase, TimestampMixin, UUIDMixin
+
+
+class IdeaVote(SQLBase, UUIDMixin, TimestampMixin):
+ __tablename__ = "idea_votes"
+
+ idea_id: Mapped[UUID] = mapped_column(
+ UUID(as_uuid=True),
+ ForeignKey("ideas.id", ondelete="CASCADE"),
+ nullable=False,
+ index=True,
+ )
+ user_id: Mapped[UUID] = mapped_column(
+ UUID(as_uuid=True),
+ ForeignKey("users.id", ondelete="CASCADE"),
+ nullable=False,
+ index=True,
+ )
+ vote: Mapped[str] = mapped_column(
+ String(4), nullable=False
+ )
+
+ __table_args__ = (
+ UniqueConstraint("idea_id", "user_id", name="uq_idea_user_vote"),
+ )
+
+
+class IdeaComment(SQLBase, UUIDMixin, TimestampMixin):
+ __tablename__ = "idea_comments"
+
+ idea_id: Mapped[UUID] = mapped_column(
+ UUID(as_uuid=True),
+ ForeignKey("ideas.id", ondelete="CASCADE"),
+ nullable=False,
+ index=True,
+ )
+ user_id: Mapped[UUID] = mapped_column(
+ UUID(as_uuid=True),
+ ForeignKey("users.id", ondelete="CASCADE"),
+ nullable=False,
+ index=True,
+ )
+ content: Mapped[str] = mapped_column(Text, nullable=False)
+ parent_id: Mapped[Optional[UUID]] = mapped_column(
+ UUID(as_uuid=True),
+ ForeignKey("idea_comments.id", ondelete="CASCADE"),
+ nullable=True,
+ )
+
+
+class IdeaActivity(SQLBase, UUIDMixin, TimestampMixin):
+ __tablename__ = "idea_activities"
+
+ idea_id: Mapped[UUID] = mapped_column(
+ UUID(as_uuid=True),
+ ForeignKey("ideas.id", ondelete="CASCADE"),
+ nullable=False,
+ index=True,
+ )
+ user_id: Mapped[Optional[UUID]] = mapped_column(
+ UUID(as_uuid=True),
+ ForeignKey("users.id", ondelete="SET NULL"),
+ nullable=True,
+ index=True,
+ )
+ action: Mapped[str] = mapped_column(
+ String(50), nullable=False
+ )
+ details: Mapped[Optional[dict]] = mapped_column(
+ JSONB, nullable=True
+ )
+
+
+class Notification(SQLBase, UUIDMixin, TimestampMixin):
+ __tablename__ = "notifications"
+
+ user_id: Mapped[UUID] = mapped_column(
+ UUID(as_uuid=True),
+ ForeignKey("users.id", ondelete="CASCADE"),
+ nullable=False,
+ index=True,
+ )
+ type: Mapped[str] = mapped_column(
+ String(50), nullable=False, index=True
+ )
+ title: Mapped[str] = mapped_column(
+ String(255), nullable=False
+ )
+ body: Mapped[str] = mapped_column(Text, nullable=False)
+ link: Mapped[Optional[str]] = mapped_column(
+ String(512), nullable=True
+ )
+ is_read: Mapped[bool] = mapped_column(
+ Boolean, default=False, nullable=False, index=True
+ )
diff --git a/app/models/idea.py b/app/models/idea.py
index 125ad02..8c367fe 100644
--- a/app/models/idea.py
+++ b/app/models/idea.py
@@ -36,5 +36,10 @@ class Idea(SQLBase, UUIDMixin, TimestampMixin):
public_slug: Mapped[Optional[str]] = mapped_column(
String(64), unique=True, nullable=True, index=True
)
+ funnel_status: Mapped[Optional[str]] = mapped_column(
+ String(20), nullable=True, default=None, index=True
+ )
+
+ FUNNEL_STATES = ["raw", "validated", "backlog", "in_progress", "launched", "retrospective"]
user = relationship("User", back_populates="ideas", lazy="selectin")
diff --git a/app/models/user.py b/app/models/user.py
index 971d5fa..d51eb15 100644
--- a/app/models/user.py
+++ b/app/models/user.py
@@ -3,7 +3,7 @@
from datetime import datetime
from typing import Any, Optional
-from sqlalchemy import Boolean, DateTime, String
+from sqlalchemy import Boolean, DateTime, String, Text
from sqlalchemy.dialects.postgresql import JSONB, UUID
from sqlalchemy.orm import Mapped, mapped_column, relationship
@@ -60,4 +60,15 @@ class User(SQLBase, UUIDMixin, TimestampMixin):
String(255), nullable=True
)
+ calendar_provider: Mapped[Optional[str]] = mapped_column(
+ String(20), nullable=True, default=None
+ )
+ calendar_credentials: Mapped[Optional[str]] = mapped_column(
+ Text, nullable=True, default=None
+ )
+
+ disk_providers: Mapped[Optional[list[dict[str, Any]]]] = mapped_column(
+ JSONB, nullable=True, default=None
+ )
+
ideas = relationship("Idea", back_populates="user", lazy="selectin")
diff --git a/app/models/workspace.py b/app/models/workspace.py
new file mode 100644
index 0000000..118496b
--- /dev/null
+++ b/app/models/workspace.py
@@ -0,0 +1,63 @@
+"""Workspace models for VoIdea.
+
+Personal workspace (1 per user, free) + Team workspaces (tariff-gated).
+"""
+
+from typing import Optional
+
+from sqlalchemy import Boolean, ForeignKey, Integer, String, Text
+from sqlalchemy.dialects.postgresql import UUID
+from sqlalchemy.orm import Mapped, mapped_column, relationship
+
+from app.core.base import SQLBase, TimestampMixin, UUIDMixin
+
+
+class Workspace(SQLBase, UUIDMixin, TimestampMixin):
+ __tablename__ = "workspaces"
+
+ name: Mapped[str] = mapped_column(
+ String(255), nullable=False
+ )
+ type: Mapped[str] = mapped_column(
+ String(20), nullable=False, default="personal", index=True
+ )
+ owner_id: Mapped[UUID] = mapped_column(
+ UUID(as_uuid=True),
+ ForeignKey("users.id", ondelete="CASCADE"),
+ nullable=False,
+ index=True,
+ )
+ description: Mapped[Optional[str]] = mapped_column(
+ Text, nullable=True, default=""
+ )
+
+ owner = relationship("User", backref="owned_workspaces", lazy="selectin")
+ members = relationship(
+ "WorkspaceMembership", back_populates="workspace",
+ lazy="selectin", cascade="all, delete-orphan",
+ )
+
+
+class WorkspaceMembership(SQLBase, UUIDMixin, TimestampMixin):
+ __tablename__ = "workspace_memberships"
+
+ workspace_id: Mapped[UUID] = mapped_column(
+ UUID(as_uuid=True),
+ ForeignKey("workspaces.id", ondelete="CASCADE"),
+ nullable=False,
+ index=True,
+ )
+ user_id: Mapped[UUID] = mapped_column(
+ UUID(as_uuid=True),
+ ForeignKey("users.id", ondelete="CASCADE"),
+ nullable=False,
+ index=True,
+ )
+ role: Mapped[str] = mapped_column(
+ String(20), nullable=False, default="member"
+ )
+
+ workspace = relationship(
+ "Workspace", back_populates="members", lazy="selectin"
+ )
+ user = relationship("User", backref="workspace_memberships", lazy="selectin")
diff --git a/app/schemas/admin.py b/app/schemas/admin.py
index ea3b510..41fc606 100644
--- a/app/schemas/admin.py
+++ b/app/schemas/admin.py
@@ -41,12 +41,14 @@ class AgentInfoResponse(BaseModel):
description: str = ""
is_enabled: bool = True
version: str = "1.0.0"
+ config: Optional[str] = None
last_run_at: Optional[datetime] = None
class AgentUpdateRequest(BaseModel):
description: Optional[str] = None
is_enabled: Optional[bool] = None
+ config: Optional[str] = None
class ServiceActionRequest(BaseModel):
diff --git a/app/schemas/collaboration.py b/app/schemas/collaboration.py
new file mode 100644
index 0000000..5375cd0
--- /dev/null
+++ b/app/schemas/collaboration.py
@@ -0,0 +1,66 @@
+"""Collaboration schemas for VoIdea API."""
+
+from datetime import datetime
+from typing import Any, Optional
+
+from pydantic import BaseModel, Field
+
+
+class VoteResponse(BaseModel):
+ id: str
+ idea_id: str
+ user_id: str
+ vote: str
+ created_at: datetime
+
+
+class VoteToggleRequest(BaseModel):
+ vote: str = Field(pattern="^(up|down)$")
+
+
+class VoteCount(BaseModel):
+ up: int = 0
+ down: int = 0
+ user_vote: Optional[str] = None
+
+
+class CommentCreate(BaseModel):
+ content: str = Field(min_length=1)
+ parent_id: Optional[str] = None
+
+
+class CommentResponse(BaseModel):
+ id: str
+ idea_id: str
+ user_id: str
+ content: str
+ parent_id: Optional[str] = None
+ display_name: str = ""
+ avatar_url: Optional[str] = None
+ created_at: datetime
+ updated_at: datetime
+ replies: list["CommentResponse"] = []
+
+
+class ActivityResponse(BaseModel):
+ id: str
+ idea_id: str
+ user_id: Optional[str] = None
+ action: str
+ details: Optional[dict[str, Any]] = None
+ display_name: str = ""
+ created_at: datetime
+
+
+class NotificationResponse(BaseModel):
+ id: str
+ type: str
+ title: str
+ body: str
+ link: Optional[str] = None
+ is_read: bool
+ created_at: datetime
+
+
+class NotificationUnreadCount(BaseModel):
+ count: int = 0
diff --git a/app/schemas/idea.py b/app/schemas/idea.py
index 2654dbf..00c1a6f 100644
--- a/app/schemas/idea.py
+++ b/app/schemas/idea.py
@@ -19,6 +19,7 @@ class IdeaUpdate(BaseModel):
status: Optional[str] = None
tags: Optional[list[str]] = None
is_public: Optional[bool] = None
+ funnel_status: Optional[str] = None
class IdeaResponse(BaseModel):
@@ -30,10 +31,15 @@ class IdeaResponse(BaseModel):
tags: Optional[list[str]] = None
is_public: bool
public_slug: Optional[str] = None
+ funnel_status: Optional[str] = None
created_at: datetime
updated_at: datetime
+class FunnelTransitionRequest(BaseModel):
+ target_status: str = Field(min_length=1, max_length=20)
+
+
AI_AGENT_ROLES = [
"coordinator",
"task_organizer",
diff --git a/app/schemas/workspace.py b/app/schemas/workspace.py
new file mode 100644
index 0000000..00192b9
--- /dev/null
+++ b/app/schemas/workspace.py
@@ -0,0 +1,42 @@
+"""Workspace schemas for VoIdea API."""
+
+from datetime import datetime
+from typing import Optional
+
+from pydantic import BaseModel, Field
+
+
+class WorkspaceCreate(BaseModel):
+ name: str = Field(min_length=1, max_length=255)
+ type: str = Field(default="team", pattern="^(personal|team)$")
+
+
+class WorkspaceUpdate(BaseModel):
+ name: Optional[str] = Field(None, min_length=1, max_length=255)
+ description: Optional[str] = None
+
+
+class WorkspaceResponse(BaseModel):
+ id: str
+ name: str
+ type: str
+ owner_id: str
+ description: Optional[str] = None
+ member_count: int = 0
+ created_at: datetime
+ updated_at: datetime
+
+
+class AddMemberRequest(BaseModel):
+ user_id: str
+ role: str = Field(default="member", pattern="^(admin|member)$")
+
+
+class MemberResponse(BaseModel):
+ id: str
+ user_id: str
+ workspace_id: str
+ role: str
+ email: str = ""
+ display_name: str = ""
+ joined_at: datetime
diff --git a/app/services/calendar_service.py b/app/services/calendar_service.py
new file mode 100644
index 0000000..3457ec8
--- /dev/null
+++ b/app/services/calendar_service.py
@@ -0,0 +1,101 @@
+"""Calendar service — unified interface for Google, Yandex, Apple CalDAV.
+
+Manages calendar provider connections and event creation.
+"""
+
+import json
+import logging
+from datetime import datetime, timedelta, timezone
+from typing import Any, Optional
+from uuid import UUID
+
+from sqlalchemy.ext.asyncio import AsyncSession
+
+from app.models.user import User
+
+logger = logging.getLogger(__name__)
+
+CALENDAR_PROVIDERS = ("google", "yandex", "apple")
+
+
+class CalendarService:
+ def __init__(self, db: AsyncSession):
+ self.db = db
+
+ async def get_calendar_credentials(self, user: User) -> Optional[dict[str, Any]]:
+ """Get stored calendar credentials for user."""
+ if not hasattr(user, "calendar_provider") or not user.calendar_provider:
+ return None
+ if not hasattr(user, "calendar_credentials") or not user.calendar_credentials:
+ return None
+ try:
+ return json.loads(user.calendar_credentials)
+ except (json.JSONDecodeError, TypeError):
+ return None
+
+ async def set_calendar_credentials(
+ self, user: User, provider: str, credentials: dict[str, Any]
+ ) -> None:
+ user.calendar_provider = provider
+ user.calendar_credentials = json.dumps(credentials)
+ await self.db.commit()
+
+ async def disconnect_calendar(self, user: User) -> None:
+ user.calendar_provider = None
+ user.calendar_credentials = None
+ await self.db.commit()
+
+ def _get_client(self, provider: str, credentials: dict[str, Any]):
+ """Get appropriate calendar client for provider."""
+ if provider == "google":
+ from app.integrations.calendar.google_calendar import GoogleCalendarClient
+ return GoogleCalendarClient(access_token=credentials.get("access_token", ""))
+ elif provider == "yandex":
+ from app.integrations.calendar.yandex_calendar import YandexCalendarClient
+ return YandexCalendarClient(access_token=credentials.get("access_token", ""))
+ elif provider == "apple":
+ from app.integrations.calendar.apple_caldav import AppleCalDavStub
+ return AppleCalDavStub()
+ raise ValueError(f"Unknown calendar provider: {provider}")
+
+ async def create_idea_event(self, user: User, idea_title: str, idea_content: str) -> bool:
+ """Create a calendar event from an idea."""
+ creds = await self.get_calendar_credentials(user)
+ if not creds:
+ logger.warning("No calendar credentials for user %s", user.id)
+ return False
+
+ provider = user.calendar_provider
+ if not provider:
+ return False
+
+ client = self._get_client(provider, creds)
+
+ now = datetime.now(timezone.utc)
+ start_iso = now.isoformat()
+ end_iso = (now + timedelta(hours=1)).isoformat()
+
+ return await client.create_event(
+ summary=f"Idea: {idea_title[:100]}",
+ description=idea_content[:1000],
+ start_iso=start_iso,
+ end_iso=end_iso,
+ )
+
+ async def list_events(self, user: User, max_results: int = 10) -> list[dict]:
+ creds = await self.get_calendar_credentials(user)
+ if not creds or not user.calendar_provider:
+ return []
+
+ client = self._get_client(user.calendar_provider, creds)
+ return await client.list_events(max_results=max_results)
+
+ async def health_check(self, user: User) -> bool:
+ creds = await self.get_calendar_credentials(user)
+ if not creds or not user.calendar_provider:
+ return False
+ try:
+ client = self._get_client(user.calendar_provider, creds)
+ return await client.health_check()
+ except Exception:
+ return False
diff --git a/app/services/collaboration_service.py b/app/services/collaboration_service.py
new file mode 100644
index 0000000..006b5fa
--- /dev/null
+++ b/app/services/collaboration_service.py
@@ -0,0 +1,222 @@
+"""Collaboration service for VoIdea.
+
+Voting, threaded comments, activity logging, and notifications.
+"""
+
+from typing import Any, Optional
+from uuid import UUID
+
+from sqlalchemy import select, func, delete
+from sqlalchemy.ext.asyncio import AsyncSession
+
+from app.models.collaboration import IdeaActivity, IdeaComment, IdeaVote, Notification
+from app.models.user import User
+
+
+class CollaborationService:
+ def __init__(self, db: AsyncSession):
+ self.db = db
+
+ # ── Voting ──
+
+ async def toggle_vote(self, idea_id: UUID, user_id: UUID, vote: str) -> dict[str, Any]:
+ """Toggle vote. Returns current vote state."""
+ result = await self.db.execute(
+ select(IdeaVote).where(
+ IdeaVote.idea_id == idea_id,
+ IdeaVote.user_id == user_id,
+ )
+ )
+ existing = result.scalar_one_or_none()
+
+ if existing:
+ if existing.vote == vote:
+ await self.db.delete(existing)
+ await self.db.commit()
+ return {"vote": None}
+ existing.vote = vote
+ await self.db.commit()
+ return {"vote": vote}
+ else:
+ v = IdeaVote(idea_id=idea_id, user_id=user_id, vote=vote)
+ self.db.add(v)
+ await self.db.commit()
+ return {"vote": vote}
+
+ async def get_vote_counts(self, idea_id: UUID) -> dict[str, Any]:
+ """Get vote counts and current user's vote."""
+ up = await self.db.execute(
+ select(func.count(IdeaVote.id)).where(
+ IdeaVote.idea_id == idea_id, IdeaVote.vote == "up"
+ )
+ )
+ down = await self.db.execute(
+ select(func.count(IdeaVote.id)).where(
+ IdeaVote.idea_id == idea_id, IdeaVote.vote == "down"
+ )
+ )
+ return {
+ "up": up.scalar() or 0,
+ "down": down.scalar() or 0,
+ }
+
+ async def get_user_vote(self, idea_id: UUID, user_id: UUID) -> Optional[str]:
+ result = await self.db.execute(
+ select(IdeaVote).where(
+ IdeaVote.idea_id == idea_id, IdeaVote.user_id == user_id
+ )
+ )
+ v = result.scalar_one_or_none()
+ return v.vote if v else None
+
+ # ── Comments ──
+
+ async def create_comment(
+ self, idea_id: UUID, user_id: UUID, content: str, parent_id: Optional[UUID] = None
+ ) -> IdeaComment:
+ c = IdeaComment(
+ idea_id=idea_id, user_id=user_id, content=content, parent_id=parent_id
+ )
+ self.db.add(c)
+ await self.db.commit()
+ await self.db.refresh(c)
+ return c
+
+ async def list_comments(self, idea_id: UUID) -> list[dict[str, Any]]:
+ result = await self.db.execute(
+ select(IdeaComment, User)
+ .join(User, IdeaComment.user_id == User.id)
+ .where(IdeaComment.idea_id == idea_id)
+ .order_by(IdeaComment.created_at.asc())
+ )
+ rows = result.all()
+ comments = []
+ for c, u in rows:
+ comments.append({
+ "id": str(c.id),
+ "idea_id": str(c.idea_id),
+ "user_id": str(c.user_id),
+ "content": c.content,
+ "parent_id": str(c.parent_id) if c.parent_id else None,
+ "display_name": u.display_name,
+ "avatar_url": u.avatar_url,
+ "created_at": c.created_at,
+ "updated_at": c.updated_at,
+ })
+ return comments
+
+ async def delete_comment(self, comment_id: UUID, user_id: UUID) -> bool:
+ result = await self.db.execute(
+ select(IdeaComment).where(IdeaComment.id == comment_id)
+ )
+ c = result.scalar_one_or_none()
+ if not c or str(c.user_id) != str(user_id):
+ return False
+ await self.db.delete(c)
+ await self.db.commit()
+ return True
+
+ # ── Activity ──
+
+ async def log_activity(
+ self, idea_id: UUID, user_id: Optional[UUID],
+ action: str, details: Optional[dict] = None
+ ) -> IdeaActivity:
+ a = IdeaActivity(
+ idea_id=idea_id, user_id=user_id, action=action, details=details
+ )
+ self.db.add(a)
+ await self.db.commit()
+ await self.db.refresh(a)
+ return a
+
+ async def list_activities(self, idea_id: UUID, limit: int = 50) -> list[dict[str, Any]]:
+ result = await self.db.execute(
+ select(IdeaActivity, User)
+ .join(User, IdeaActivity.user_id == User.id, isouter=True)
+ .where(IdeaActivity.idea_id == idea_id)
+ .order_by(IdeaActivity.created_at.desc())
+ .limit(limit)
+ )
+ rows = result.all()
+ return [
+ {
+ "id": str(a.id),
+ "idea_id": str(a.idea_id),
+ "user_id": str(a.user_id) if a.user_id else None,
+ "action": a.action,
+ "details": a.details,
+ "display_name": u.display_name if u else "System",
+ "created_at": a.created_at,
+ }
+ for a, u in rows
+ ]
+
+ # ── Notifications ──
+
+ async def create_notification(
+ self, user_id: UUID, type: str, title: str,
+ body: str, link: Optional[str] = None
+ ) -> Notification:
+ n = Notification(
+ user_id=user_id, type=type, title=title,
+ body=body, link=link,
+ )
+ self.db.add(n)
+ await self.db.commit()
+ await self.db.refresh(n)
+ return n
+
+ async def list_notifications(
+ self, user_id: UUID, unread_only: bool = False, limit: int = 50
+ ) -> list[Notification]:
+ query = (
+ select(Notification)
+ .where(Notification.user_id == user_id)
+ .order_by(Notification.created_at.desc())
+ .limit(limit)
+ )
+ if unread_only:
+ query = query.where(Notification.is_read == False)
+ result = await self.db.execute(query)
+ return list(result.scalars().all())
+
+ async def mark_notification_read(self, notification_id: UUID, user_id: UUID) -> bool:
+ result = await self.db.execute(
+ select(Notification).where(
+ Notification.id == notification_id,
+ Notification.user_id == user_id,
+ )
+ )
+ n = result.scalar_one_or_none()
+ if not n:
+ return False
+ n.is_read = True
+ await self.db.commit()
+ return True
+
+ async def mark_all_read(self, user_id: UUID) -> int:
+ result = await self.db.execute(
+ select(func.count(Notification.id)).where(
+ Notification.user_id == user_id,
+ Notification.is_read == False,
+ )
+ )
+ count = result.scalar() or 0
+ await self.db.execute(
+ delete(Notification).where(
+ Notification.user_id == user_id,
+ Notification.is_read == False,
+ )
+ )
+ await self.db.commit()
+ return count
+
+ async def get_unread_count(self, user_id: UUID) -> int:
+ result = await self.db.execute(
+ select(func.count(Notification.id)).where(
+ Notification.user_id == user_id,
+ Notification.is_read == False,
+ )
+ )
+ return result.scalar() or 0
diff --git a/app/services/disk_service.py b/app/services/disk_service.py
new file mode 100644
index 0000000..ba8fe2d
--- /dev/null
+++ b/app/services/disk_service.py
@@ -0,0 +1,112 @@
+"""Disk service — unified interface for Google Drive, Yandex Disk, Apple iCloud.
+
+Manages cloud drive provider connections and file uploads.
+"""
+
+import json
+import logging
+from typing import Any, Optional
+
+from sqlalchemy.ext.asyncio import AsyncSession
+
+from app.models.user import User
+
+logger = logging.getLogger(__name__)
+
+DISK_PROVIDERS = ("google", "yandex", "apple")
+
+
+class DiskService:
+ def __init__(self, db: AsyncSession):
+ self.db = db
+
+ async def get_connected_providers(self, user: User) -> list[dict[str, Any]]:
+ """Get list of connected disk providers with basic info."""
+ providers = user.disk_providers or []
+ # Return sanitized list (no tokens)
+ return [
+ {
+ "provider": p["provider"],
+ "connected_at": p.get("connected_at", ""),
+ "email": p.get("email", ""),
+ "quota": p.get("quota"),
+ }
+ for p in providers
+ ]
+
+ async def is_connected(self, user: User, provider: str) -> bool:
+ providers = user.disk_providers or []
+ return any(p["provider"] == provider for p in providers)
+
+ async def add_provider(
+ self, user: User, provider: str, tokens: dict[str, Any], email: str = ""
+ ) -> None:
+ providers = user.disk_providers or []
+ # Remove existing entry for same provider
+ providers = [p for p in providers if p["provider"] != provider]
+ providers.append({
+ "provider": provider,
+ "access_token": tokens.get("access_token", ""),
+ "refresh_token": tokens.get("refresh_token", ""),
+ "expires_at": tokens.get("expires_at"),
+ "connected_at": __import__("datetime").datetime.utcnow().isoformat(),
+ "email": email,
+ })
+ user.disk_providers = providers
+ await self.db.commit()
+
+ async def remove_provider(self, user: User, provider: str) -> None:
+ providers = user.disk_providers or []
+ user.disk_providers = [p for p in providers if p["provider"] != provider]
+ await self.db.commit()
+
+ async def get_access_token(self, user: User, provider: str) -> Optional[str]:
+ providers = user.disk_providers or []
+ for p in providers:
+ if p["provider"] == provider:
+ return p.get("access_token")
+ return None
+
+ async def upload_to_provider(
+ self, user: User, provider: str, file_name: str, file_content: bytes
+ ) -> bool:
+ """Upload file bytes to specified provider's VoIdea folder."""
+ token = await self.get_access_token(user, provider)
+ if not token:
+ logger.warning("No token for provider %s (user %s)", provider, user.id)
+ return False
+
+ if provider == "google":
+ from app.integrations.oauth.google import ensure_app_folder, upload_file
+ parent_id = await ensure_app_folder(token)
+ return await upload_file(token, file_name, file_content, parent_id=parent_id)
+
+ elif provider == "yandex":
+ from app.integrations.oauth.yandex import ensure_app_folder, upload_file
+ import tempfile, os
+ await ensure_app_folder(token)
+ tmp = tempfile.NamedTemporaryFile(delete=False, suffix=".html")
+ try:
+ tmp.write(file_content)
+ tmp.close()
+ return await upload_file(token, tmp.name, file_name)
+ finally:
+ os.unlink(tmp.name)
+
+ elif provider == "apple":
+ logger.info("Apple iCloud upload is a stub — file not actually uploaded")
+ return True
+
+ return False
+
+ async def upload_to_any(
+ self, user: User, file_name: str, file_content: bytes
+ ) -> Optional[dict[str, Any]]:
+ """Upload to first available provider. Returns provider info."""
+ providers = user.disk_providers or []
+ for entry in providers:
+ provider = entry["provider"]
+ success = await self.upload_to_provider(user, provider, file_name, file_content)
+ if success:
+ return {"provider": provider, "success": True}
+ return None
diff --git a/app/services/notification_service.py b/app/services/notification_service.py
new file mode 100644
index 0000000..a83c8a7
--- /dev/null
+++ b/app/services/notification_service.py
@@ -0,0 +1,106 @@
+"""Notification service — multi-channel delivery for VoIdea.
+
+Supported channels:
+- web (DB — stored as Notification model)
+- telegram (via TelegramBotClient)
+- email (via email_service)
+
+Only web channel is required; telegram and email are optional.
+"""
+
+from typing import Optional
+from uuid import UUID
+
+from sqlalchemy.ext.asyncio import AsyncSession
+
+from app.services.collaboration_service import CollaborationService
+
+
+class NotificationDeliveryService:
+ """Delivers notifications across multiple channels."""
+
+ def __init__(self, db: AsyncSession):
+ self.db = db
+ self.collab = CollaborationService(db)
+
+ async def notify(
+ self,
+ user_id: UUID,
+ type: str,
+ title: str,
+ body: str,
+ link: Optional[str] = None,
+ channels: Optional[list[str]] = None,
+ ) -> dict[str, bool]:
+ """Deliver notification to specified channels (default: web only).
+
+ Returns dict of channel -> success status.
+ """
+ if channels is None:
+ channels = ["web"]
+
+ results: dict[str, bool] = {}
+
+ if "web" in channels:
+ try:
+ await self.collab.create_notification(
+ user_id=user_id, type=type,
+ title=title, body=body, link=link,
+ )
+ results["web"] = True
+ except Exception:
+ results["web"] = False
+
+ if "telegram" in channels:
+ try:
+ await self._send_telegram(user_id, title, body, link)
+ results["telegram"] = True
+ except Exception:
+ results["telegram"] = False
+
+ if "email" in channels:
+ try:
+ await self._send_email(user_id, title, body)
+ results["email"] = True
+ except Exception:
+ results["email"] = False
+
+ return results
+
+ async def _send_telegram(
+ self, user_id: UUID, title: str, body: str, link: Optional[str] = None
+ ) -> None:
+ from app.core.config import get_settings
+ settings = get_settings()
+ if not settings.telegram_bot_token:
+ return
+
+ from app.integrations.telegram.client import TelegramBotClient
+ client = TelegramBotClient(token=settings.telegram_bot_token)
+
+ text = f"*{title}*\n{body}"
+ if link:
+ text += f"\n\n[Open]({link})"
+
+ # Find user's telegram chat_id — for now send to first available
+ # In production this would look up stored chat_id for the user
+ from app.models.user import User
+ user = await self.db.get(User, user_id)
+ if not user:
+ return
+
+ async def _send_email(
+ self, user_id: UUID, title: str, body: str
+ ) -> None:
+ from app.services.email_service import send_email
+ from app.models.user import User
+
+ user = await self.db.get(User, user_id)
+ if not user or not user.email:
+ return
+
+ await send_email(
+ to=user.email,
+ subject=title,
+ body=body,
+ )
diff --git a/app/services/presentation_service.py b/app/services/presentation_service.py
new file mode 100644
index 0000000..b57bbb4
--- /dev/null
+++ b/app/services/presentation_service.py
@@ -0,0 +1,184 @@
+"""Presentation service — generates HTML slides from idea + analysis reports."""
+
+import json
+import logging
+from datetime import datetime, timezone
+from typing import Any, Optional
+
+from sqlalchemy import select
+from sqlalchemy.ext.asyncio import AsyncSession
+
+from app.agents.models import AgentReport
+from app.models.idea import Idea
+from app.services.disk_service import DiskService
+
+logger = logging.getLogger(__name__)
+
+ROLE_EMOJI = {
+ "coordinator": "🎯",
+ "task_organizer": "📋",
+ "business_analyst": "💼",
+ "legal_expert": "⚖️",
+ "financial_consultant": "💰",
+ "solution_architect": "🏗️",
+ "tester": "🧪",
+ "ui_designer": "🎨",
+ "smm_specialist": "📱",
+ "life_coach": "🌟",
+ "accessibility_expert": "♿",
+}
+
+ROLE_LABELS = {
+ "coordinator": "Координатор",
+ "task_organizer": "Организатор задач",
+ "business_analyst": "Бизнес-аналитик",
+ "legal_expert": "Юрист",
+ "financial_consultant": "Финансовый консультант",
+ "solution_architect": "Архитектор решения",
+ "tester": "Тестировщик",
+ "ui_designer": "UI/Дизайнер",
+ "smm_specialist": "SMM-специалист",
+ "life_coach": "Лайф-коуч",
+ "accessibility_expert": "Эксперт доступности",
+}
+
+
+REVEAL_HTML_TEMPLATE = """
+
+
+
+
+{title} — VoIdea Презентация
+
+
+
+
+
+
+
+ {title}
+
+ {author} · {status_label} · {date}
+
+
+
+ {executive_summary}
+
+ {role_slides}
+
+
+ Спасибо за внимание!
+ Создано в VoIdea · {date}
+
+
+
+
+
+
+"""
+
+
+class PresentationService:
+ def __init__(self, db: AsyncSession):
+ self.db = db
+
+ async def generate(
+ self,
+ idea_id: str,
+ roles: Optional[list[str]] = None,
+ user_name: str = "",
+ ) -> Optional[str]:
+ """Generate HTML presentation for an idea.
+
+ Args:
+ idea_id: UUID of the idea
+ roles: List of roles to include (None = all available)
+ user_name: Author display name
+
+ Returns:
+ HTML string or None if idea not found
+ """
+ result = await self.db.execute(
+ select(Idea).where(Idea.id == idea_id)
+ )
+ idea = result.scalar_one_or_none()
+ if not idea:
+ return None
+
+ result = await self.db.execute(
+ select(AgentReport).where(
+ AgentReport.details["idea_id"].as_string() == idea_id
+ ).order_by(AgentReport.created_at.asc())
+ )
+ reports = result.scalars().all()
+
+ if roles is not None:
+ reports = [
+ r for r in reports
+ if r.agent_id.replace("ai_", "") in roles
+ ]
+
+ funnel_labels = {
+ "raw": "Сырая",
+ "validated": "Подтверждена",
+ "backlog": "Бэклог",
+ "in_progress": "В работе",
+ "launched": "Запущена",
+ "retrospective": "Ретроспектива",
+ }
+ status_label = funnel_labels.get(
+ idea.funnel_status or "", idea.funnel_status or "Без статуса"
+ )
+
+ date_str = datetime.now(timezone.utc).strftime("%d.%m.%Y")
+
+ role_slides = []
+ for r in reports:
+ role_name = r.agent_id.replace("ai_", "")
+ emoji = ROLE_EMOJI.get(role_name, "📄")
+ label = ROLE_LABELS.get(role_name, role_name)
+ content = r.message or "Нет данных"
+
+ role_slides.append(f"""
+
+ {emoji} {label}
+ {content}
+ """)
+
+ success_count = sum(1 for r in reports if r.success)
+
+ if role_slides:
+ exec_summary = f"""
+
+ 📊 Executive Summary
+ Проанализировано ролей: {len(reports)}
+ Успешных анализов: {success_count}
+ """
+ else:
+ exec_summary = ""
+
+ return REVEAL_HTML_TEMPLATE.format(
+ title=idea.title,
+ author=user_name or "Пользователь",
+ status_label=status_label,
+ date=date_str,
+ executive_summary=exec_summary,
+ role_slides="".join(role_slides),
+ )
diff --git a/app/services/workspace_service.py b/app/services/workspace_service.py
new file mode 100644
index 0000000..f6b5005
--- /dev/null
+++ b/app/services/workspace_service.py
@@ -0,0 +1,240 @@
+"""Workspace service with tariff-gated limits for VoIdea."""
+
+from typing import Any, Optional
+from uuid import UUID
+
+from sqlalchemy import select, func
+from sqlalchemy.ext.asyncio import AsyncSession
+
+from app.models.workspace import Workspace, WorkspaceMembership
+from app.models.user import User
+from app.services.tariff_service import TariffService
+
+
+class WorkspaceError(Exception):
+ pass
+
+
+class WorkspaceLimitError(WorkspaceError):
+ pass
+
+
+class WorkspaceService:
+ def __init__(self, db: AsyncSession):
+ self.db = db
+
+ # ── Tariff gates ──
+
+ async def _get_tariff_features(self, user_id: UUID) -> dict[str, Any]:
+ """Get tariff plan features for a user."""
+ tariff_svc = TariffService(self.db)
+ sub = await tariff_svc.get_user_subscription(user_id)
+ if not sub:
+ return {}
+ plan = await tariff_svc.get_plan_by_id(sub.plan_id)
+ return plan.features if plan and plan.features else {}
+
+ async def _check_team_workspace_limit(self, user_id: UUID) -> None:
+ """Check if user can create a team workspace."""
+ features = await self._get_tariff_features(user_id)
+ max_team = features.get("max_team_workspaces", 0)
+ if max_team <= 0:
+ raise WorkspaceLimitError(
+ "Your tariff plan does not allow team workspaces"
+ )
+
+ result = await self.db.execute(
+ select(func.count(Workspace.id))
+ .where(
+ Workspace.owner_id == user_id,
+ Workspace.type == "team",
+ )
+ )
+ current_team_count = result.scalar() or 0
+ if current_team_count >= max_team:
+ raise WorkspaceLimitError(
+ f"Team workspace limit reached ({max_team}). "
+ "Upgrade your tariff to create more."
+ )
+
+ async def _check_member_limit(self, workspace_id: UUID) -> None:
+ """Check if workspace can accept more members."""
+ ws = await self.db.get(Workspace, workspace_id)
+ if not ws:
+ raise WorkspaceError("Workspace not found")
+
+ features = await self._get_tariff_features(ws.owner_id)
+ max_members = features.get("max_members_per_workspace", 0)
+
+ result = await self.db.execute(
+ select(func.count(WorkspaceMembership.id))
+ .where(WorkspaceMembership.workspace_id == workspace_id)
+ )
+ current_count = result.scalar() or 0
+ if max_members > 0 and current_count >= max_members:
+ raise WorkspaceLimitError(
+ f"Member limit reached ({max_members}). "
+ "Upgrade your tariff to add more members."
+ )
+
+ async def _check_feature_gate(self, user_id: UUID, feature: str) -> None:
+ """Check if a specific workspace feature is enabled for the user's tariff."""
+ features = await self._get_tariff_features(user_id)
+ if not features.get(feature, False):
+ raise WorkspaceLimitError(
+ f"Feature '{feature}' is not available on your tariff plan"
+ )
+
+ # ── CRUD ──
+
+ async def create_personal(self, user_id: UUID, name: str = "Personal") -> Workspace:
+ """Create or get existing personal workspace for user."""
+ result = await self.db.execute(
+ select(Workspace).where(
+ Workspace.owner_id == user_id,
+ Workspace.type == "personal",
+ )
+ )
+ existing = result.scalar_one_or_none()
+ if existing:
+ return existing
+
+ ws = Workspace(name=name, type="personal", owner_id=user_id)
+ self.db.add(ws)
+ await self.db.flush()
+
+ membership = WorkspaceMembership(
+ workspace_id=ws.id, user_id=user_id, role="owner"
+ )
+ self.db.add(membership)
+ await self.db.commit()
+ await self.db.refresh(ws)
+ return ws
+
+ async def create_team(
+ self, name: str, owner_id: UUID, description: str = ""
+ ) -> Workspace:
+ """Create a new team workspace (tariff-gated)."""
+ await self._check_team_workspace_limit(owner_id)
+
+ ws = Workspace(name=name, type="team", owner_id=owner_id, description=description)
+ self.db.add(ws)
+ await self.db.flush()
+
+ membership = WorkspaceMembership(
+ workspace_id=ws.id, user_id=owner_id, role="owner"
+ )
+ self.db.add(membership)
+ await self.db.commit()
+ await self.db.refresh(ws)
+ return ws
+
+ async def get_by_id(self, workspace_id: UUID) -> Optional[Workspace]:
+ return await self.db.get(Workspace, workspace_id)
+
+ async def list_user_workspaces(self, user_id: UUID) -> list[Workspace]:
+ """List workspaces where user is a member."""
+ result = await self.db.execute(
+ select(Workspace)
+ .join(WorkspaceMembership)
+ .where(WorkspaceMembership.user_id == user_id)
+ .order_by(Workspace.type, Workspace.name)
+ )
+ return list(result.scalars().all())
+
+ async def update_workspace(
+ self, workspace_id: UUID, user_id: UUID, updates: dict[str, Any]
+ ) -> Optional[Workspace]:
+ ws = await self.db.get(Workspace, workspace_id)
+ if not ws:
+ return None
+ if ws.owner_id != user_id:
+ raise WorkspaceError("Only the owner can update workspace")
+ for key, value in updates.items():
+ if hasattr(ws, key) and key not in ("id", "owner_id", "type", "created_at"):
+ setattr(ws, key, value)
+ await self.db.commit()
+ await self.db.refresh(ws)
+ return ws
+
+ async def delete_workspace(self, workspace_id: UUID, user_id: UUID) -> bool:
+ ws = await self.db.get(Workspace, workspace_id)
+ if not ws:
+ return False
+ if ws.owner_id != user_id:
+ raise WorkspaceError("Only the owner can delete workspace")
+ if ws.type == "personal":
+ raise WorkspaceError("Cannot delete personal workspace")
+ await self.db.delete(ws)
+ await self.db.commit()
+ return True
+
+ # ── Members ──
+
+ async def add_member(
+ self, workspace_id: UUID, user_id: UUID, role: str = "member"
+ ) -> WorkspaceMembership:
+ """Add a user to a workspace (tariff-gated for member count)."""
+ await self._check_member_limit(workspace_id)
+
+ existing = await self.db.execute(
+ select(WorkspaceMembership).where(
+ WorkspaceMembership.workspace_id == workspace_id,
+ WorkspaceMembership.user_id == user_id,
+ )
+ )
+ if existing.scalar_one_or_none():
+ raise WorkspaceError("User is already a member of this workspace")
+
+ membership = WorkspaceMembership(
+ workspace_id=workspace_id, user_id=user_id, role=role
+ )
+ self.db.add(membership)
+ await self.db.commit()
+ await self.db.refresh(membership)
+ return membership
+
+ async def remove_member(self, workspace_id: UUID, user_id: UUID) -> bool:
+ result = await self.db.execute(
+ select(WorkspaceMembership).where(
+ WorkspaceMembership.workspace_id == workspace_id,
+ WorkspaceMembership.user_id == user_id,
+ )
+ )
+ membership = result.scalar_one_or_none()
+ if not membership:
+ return False
+ await self.db.delete(membership)
+ await self.db.commit()
+ return True
+
+ async def list_members(self, workspace_id: UUID) -> list[dict[str, Any]]:
+ result = await self.db.execute(
+ select(WorkspaceMembership, User)
+ .join(User, WorkspaceMembership.user_id == User.id)
+ .where(WorkspaceMembership.workspace_id == workspace_id)
+ )
+ rows = result.all()
+ return [
+ {
+ "id": str(m.WorkspaceMembership.id),
+ "user_id": str(m.User.id),
+ "workspace_id": str(m.WorkspaceMembership.workspace_id),
+ "role": m.WorkspaceMembership.role,
+ "email": m.User.email,
+ "display_name": m.User.display_name,
+ "joined_at": m.WorkspaceMembership.created_at,
+ }
+ for m in rows
+ ]
+
+ async def get_membership(
+ self, workspace_id: UUID, user_id: UUID
+ ) -> Optional[WorkspaceMembership]:
+ result = await self.db.execute(
+ select(WorkspaceMembership).where(
+ WorkspaceMembership.workspace_id == workspace_id,
+ WorkspaceMembership.user_id == user_id,
+ )
+ )
+ return result.scalar_one_or_none()
diff --git a/deploy/generate_secrets.sh b/deploy/generate_secrets.sh
new file mode 100644
index 0000000..30cf804
--- /dev/null
+++ b/deploy/generate_secrets.sh
@@ -0,0 +1,14 @@
+#!/bin/bash
+set -e
+
+JWT_KEY=$(openssl rand -hex 64)
+JWT_RESET_KEY=$(openssl rand -hex 64)
+ENC_KEY=$(openssl rand -hex 32)
+DB_PASS=$(openssl rand -hex 16)
+
+cat << EOF
+JWT_SECRET_KEY=$JWT_KEY
+JWT_RESET_SECRET_KEY=$JWT_RESET_KEY
+ENCRYPTION_KEY=$ENC_KEY
+DB_PASS=$DB_PASS
+EOF
diff --git a/deploy/gitea/create_repo.sh b/deploy/gitea/create_repo.sh
new file mode 100644
index 0000000..ff7e876
--- /dev/null
+++ b/deploy/gitea/create_repo.sh
@@ -0,0 +1,28 @@
+#!/bin/bash
+set -e
+
+TOKEN="2608ab5b7a8965190ab4d8503a8197a47b75b42c"
+GITEA_URL="http://localhost:3000"
+
+echo "Creating repository 'voidea' in Gitea..."
+
+RESPONSE=$(curl -s -X POST "$GITEA_URL/api/v1/user/repos" \
+ -H "Content-Type: application/json" \
+ -H "Authorization: token $TOKEN" \
+ -d '{
+ "name": "voidea",
+ "description": "VoIdeaAI - voice-first AI idea assistant",
+ "private": false,
+ "auto_init": false,
+ "default_branch": "master"
+ }')
+
+echo "Response: $RESPONSE"
+
+if echo "$RESPONSE" | grep -q '"id"'; then
+ echo "Repository created successfully!"
+ echo "Clone URL: http://localhost:3000/angel/voidea.git"
+ echo "Web URL: http://git.voideaai.ru/angel/voidea"
+else
+ echo "Failed to create repository."
+fi
diff --git a/deploy/gitea/docker-compose.yml b/deploy/gitea/docker-compose.yml
new file mode 100644
index 0000000..f690c14
--- /dev/null
+++ b/deploy/gitea/docker-compose.yml
@@ -0,0 +1,40 @@
+services:
+ db:
+ image: postgres:16-alpine
+ network_mode: host
+ environment:
+ POSTGRES_DB: gitea
+ POSTGRES_USER: gitea
+ POSTGRES_PASSWORD: ${GITEA_DB_PASS:-gitea_pass}
+ command: -p 5433
+ volumes:
+ - gitea-db:/var/lib/postgresql/data
+ healthcheck:
+ test: ["CMD-SHELL", "pg_isready -U gitea -h localhost -p 5433"]
+ interval: 5s
+ timeout: 5s
+ retries: 5
+
+ gitea:
+ image: gitea/gitea:latest-rootless
+ network_mode: host
+ environment:
+ GITEA__database__DB_TYPE: postgres
+ GITEA__database__HOST: localhost:5433
+ GITEA__database__NAME: gitea
+ GITEA__database__USER: gitea
+ GITEA__database__PASSWD: ${GITEA_DB_PASS:-gitea_pass}
+ GITEA__server__DOMAIN: git.voideaai.ru
+ GITEA__server__HTTP_PORT: 3000
+ GITEA__server__ROOT_URL: http://git.voideaai.ru:3000
+ GITEA__server__SSH_DOMAIN: git.voideaai.ru
+ GITEA__server__SSH_PORT: 22
+ volumes:
+ - gitea-data:/var/lib/gitea
+ depends_on:
+ db:
+ condition: service_healthy
+
+volumes:
+ gitea-db:
+ gitea-data:
diff --git a/deploy/gitea/git.voideaai.ru.conf b/deploy/gitea/git.voideaai.ru.conf
new file mode 100644
index 0000000..1ac7ee5
--- /dev/null
+++ b/deploy/gitea/git.voideaai.ru.conf
@@ -0,0 +1,33 @@
+server {
+ listen 80;
+ server_name git.voideaai.ru;
+
+ client_max_body_size 512M;
+
+ location / {
+ proxy_pass http://localhost:3000;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ }
+}
+
+server {
+ listen 443 ssl;
+ http2 on;
+ server_name git.voideaai.ru;
+
+ ssl_certificate /etc/nginx/certs/live/git.voideaai.ru/fullchain.pem;
+ ssl_certificate_key /etc/nginx/certs/live/git.voideaai.ru/privkey.pem;
+
+ client_max_body_size 512M;
+
+ location / {
+ proxy_pass http://localhost:3000;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ }
+}
diff --git a/deploy/nginx/git.voideaai.ru.conf b/deploy/nginx/git.voideaai.ru.conf
new file mode 100644
index 0000000..2d84d42
--- /dev/null
+++ b/deploy/nginx/git.voideaai.ru.conf
@@ -0,0 +1,42 @@
+# git.voideaai.ru -> Gitea (shared instance with git.aegisone.ru)
+server {
+ listen 80;
+ server_name git.voideaai.ru;
+
+ location /.well-known/acme-challenge/ {
+ root /usr/share/nginx/html;
+ }
+
+ client_max_body_size 512M;
+
+ location / {
+ proxy_pass http://localhost:3000;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ }
+}
+
+server {
+ listen 443 ssl;
+ http2 on;
+ server_name git.voideaai.ru;
+
+ ssl_certificate /etc/nginx/certs/live/voideaai.ru/fullchain.pem;
+ ssl_certificate_key /etc/nginx/certs/live/voideaai.ru/privkey.pem;
+
+ ssl_protocols TLSv1.2 TLSv1.3;
+ ssl_ciphers HIGH:!aNULL:!MD5;
+ ssl_prefer_server_ciphers on;
+
+ client_max_body_size 512M;
+
+ location / {
+ proxy_pass http://localhost:3000;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ }
+}
diff --git a/deploy/nginx/install_confs.sh b/deploy/nginx/install_confs.sh
new file mode 100644
index 0000000..48d13d1
--- /dev/null
+++ b/deploy/nginx/install_confs.sh
@@ -0,0 +1,14 @@
+#!/bin/bash
+set -e
+
+echo "Copying nginx configs..."
+sudo cp /home/angel/voideaai.ru.conf /opt/projects/nginx-proxy/conf.d/
+sudo cp /home/angel/git.voideaai.ru.conf /opt/projects/nginx-proxy/conf.d/
+echo "Configs copied."
+
+echo "Testing nginx config..."
+docker compose -p nginx-proxy exec nginx nginx -t
+
+echo "Reloading nginx..."
+docker compose -p nginx-proxy exec nginx nginx -s reload
+echo "Nginx reloaded successfully."
diff --git a/deploy/nginx/voideaai.ru.conf b/deploy/nginx/voideaai.ru.conf
new file mode 100644
index 0000000..e5c0d57
--- /dev/null
+++ b/deploy/nginx/voideaai.ru.conf
@@ -0,0 +1,85 @@
+# voideaai.ru -> VoIdeaAI FastAPI
+server {
+ listen 80;
+ server_name voideaai.ru www.voideaai.ru;
+
+ location /.well-known/acme-challenge/ {
+ root /usr/share/nginx/html;
+ }
+
+ location / {
+ proxy_pass http://localhost:8020;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ proxy_buffering off;
+ }
+}
+
+server {
+ listen 443 ssl;
+ http2 on;
+ server_name voideaai.ru www.voideaai.ru;
+
+ ssl_certificate /etc/nginx/certs/live/voideaai.ru/fullchain.pem;
+ ssl_certificate_key /etc/nginx/certs/live/voideaai.ru/privkey.pem;
+
+ ssl_protocols TLSv1.2 TLSv1.3;
+ ssl_ciphers HIGH:!aNULL:!MD5;
+ ssl_prefer_server_ciphers on;
+
+ add_header Strict-Transport-Security "max-age=63072000" always;
+ add_header X-Content-Type-Options "nosniff" always;
+ add_header X-Frame-Options "DENY" always;
+ add_header X-XSS-Protection "1; mode=block" always;
+
+ location /assets/ {
+ proxy_pass http://localhost:8020;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_cache_valid 200 365d;
+ expires 365d;
+ add_header Cache-Control "public, immutable";
+ }
+
+ location /icons/ {
+ proxy_pass http://localhost:8020;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_cache_valid 200 365d;
+ expires 365d;
+ add_header Cache-Control "public, immutable";
+ }
+
+ location /api/ {
+ proxy_pass http://localhost:8020;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ proxy_buffering off;
+ proxy_cache off;
+ }
+
+ location /ws/ {
+ proxy_pass http://localhost:8020;
+ proxy_http_version 1.1;
+ proxy_set_header Upgrade $http_upgrade;
+ proxy_set_header Connection "upgrade";
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ proxy_buffering off;
+ }
+
+ location / {
+ proxy_pass http://localhost:8020;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ proxy_buffering off;
+ }
+}
diff --git a/deploy/voideaai.nginx.conf b/deploy/voideaai.nginx.conf
new file mode 100644
index 0000000..e62b968
--- /dev/null
+++ b/deploy/voideaai.nginx.conf
@@ -0,0 +1,76 @@
+server {
+ listen 80;
+ server_name voideaai.ru www.voideaai.ru;
+
+ location / {
+ proxy_pass http://localhost:8020;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ proxy_buffering off;
+ }
+}
+
+server {
+ listen 443 ssl;
+ http2 on;
+ server_name voideaai.ru www.voideaai.ru;
+
+ ssl_certificate /etc/nginx/certs/live/voideaai.ru/fullchain.pem;
+ ssl_certificate_key /etc/nginx/certs/live/voideaai.ru/privkey.pem;
+
+ add_header Strict-Transport-Security "max-age=63072000" always;
+ add_header X-Content-Type-Options "nosniff" always;
+ add_header X-Frame-Options "DENY" always;
+ add_header X-XSS-Protection "1; mode=block" always;
+
+ location /assets/ {
+ proxy_pass http://localhost:8020;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_cache_valid 200 365d;
+ expires 365d;
+ add_header Cache-Control "public, immutable";
+ }
+
+ location /icons/ {
+ proxy_pass http://localhost:8020;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_cache_valid 200 365d;
+ expires 365d;
+ add_header Cache-Control "public, immutable";
+ }
+
+ location /api/ {
+ proxy_pass http://localhost:8020;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ proxy_buffering off;
+ proxy_cache off;
+ }
+
+ location /ws/ {
+ proxy_pass http://localhost:8020;
+ proxy_http_version 1.1;
+ proxy_set_header Upgrade $http_upgrade;
+ proxy_set_header Connection "upgrade";
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ proxy_buffering off;
+ }
+
+ location / {
+ proxy_pass http://localhost:8020;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ proxy_buffering off;
+ }
+}
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..ac8580d
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,60 @@
+services:
+ app:
+ build:
+ context: .
+ network: host
+ network_mode: host
+ env_file: .env
+ depends_on:
+ db:
+ condition: service_healthy
+ redis:
+ condition: service_started
+ volumes:
+ - ./logs:/app/logs
+
+ worker:
+ build:
+ context: .
+ network: host
+ network_mode: host
+ command: celery -A app.tasks worker -l info --concurrency=2
+ env_file: .env
+ depends_on:
+ - db
+ - redis
+
+ beat:
+ build:
+ context: .
+ network: host
+ network_mode: host
+ command: celery -A app.tasks beat -l info
+ env_file: .env
+ depends_on:
+ - db
+ - redis
+
+ db:
+ image: postgres:16-alpine
+ network_mode: host
+ environment:
+ POSTGRES_DB: voidea
+ POSTGRES_USER: voidea
+ POSTGRES_PASSWORD: ${DB_PASS:-voidea_pass}
+ command: -p 5444
+ volumes:
+ - pgdata:/var/lib/postgresql/data
+ healthcheck:
+ test: ["CMD-SHELL", "pg_isready -U voidea -h localhost -p 5444"]
+ interval: 5s
+ timeout: 5s
+ retries: 5
+
+ redis:
+ image: redis:7-alpine
+ network_mode: host
+ command: redis-server --port 6380
+
+volumes:
+ pgdata:
diff --git a/docs/admin-guide.md b/docs/admin-guide.md
index 296c5ab..dab2d78 100644
--- a/docs/admin-guide.md
+++ b/docs/admin-guide.md
@@ -19,9 +19,12 @@
- Owner защищён от изменений
### Агенты
-- Просмотр списка агентов
+- Просмотр списка агентов (13 + Meta-agent)
- Включение/отключение агентов
- Редактирование описания
+- **Meta-agent** — конфигурация JSON (cron_schedule, weights, sources_count, auto_create)
+- Ручной запуск любого агента кнопкой «Запустить»
+- Meta-agent по умолчанию запускается по расписанию `0 9 * * 1,4` (пн и чт в 9:00)
### Журналы
- Фильтрация по уровню (DEBUG, INFO, WARNING, ERROR)
diff --git a/docs/instructions/04-ai-dev-instruction.md b/docs/instructions/04-ai-dev-instruction.md
new file mode 100644
index 0000000..75c70e6
--- /dev/null
+++ b/docs/instructions/04-ai-dev-instruction.md
@@ -0,0 +1,214 @@
+# VoIdeaAI — Инструкция для AI-разработчика (локальная разработка + деплой)
+
+## Назначение
+Эта инструкция — для AI-агента, который продолжает разработку проекта VoIdeaAI.
+Работа ведётся **локально**, деплой — отправкой на сервер.
+
+---
+
+## 1. Архитектура проекта
+
+```
+voidea/
+├── app/ # Backend (Python FastAPI)
+│ ├── api/v1/ # HTTP endpoints
+│ ├── agents/ # Системные агенты
+│ ├── core/ # Конфиг, БД, security
+│ ├── integrations/ # AI, OAuth, Telegram, Calendar
+│ ├── models/ # SQLAlchemy модели
+│ ├── schemas/ # Pydantic схемы
+│ ├── services/ # Бизнес-логика
+│ └── tasks/ # Celery задачи
+├── webui/ # Frontend (React + Vite + Tailwind)
+├── flutter/ # Mobile app (Flutter, отдельная разработка)
+├── deploy/ # Файлы деплоя
+│ ├── gitea/ # Docker Compose для Gitea
+│ ├── images/ # Docker образы (tar)
+│ ├── voideaai.nginx.conf
+│ └── voidea-api.service / voidea-worker.service / voidea-beat.service (systemd — legacy)
+├── docs/instructions/ # Инструкции для AI
+├── Dockerfile # Multi-stage сборка (frontend + backend)
+├── docker-compose.yml # 4 сервиса: app, worker, db, redis
+└── .env.production # Шаблон .env для сервера
+```
+
+## 2. Технологический стек
+
+| Компонент | Технология |
+|-----------|-----------|
+| Backend | Python 3.12, FastAPI, SQLAlchemy async |
+| Frontend | React 18, Vite, Tailwind CSS, TypeScript |
+| Mobile | Flutter (на сервер НЕ деплоится) |
+| Database | PostgreSQL 16 |
+| Queue | Celery + Redis 7 |
+| Auth | JWT (access + refresh) |
+| AI | Yandex GPT, GigaChat (fallback chain) |
+| Server | Ubuntu 24.04, Docker Compose, хост-нетворкинг |
+
+## 3. Локальный запуск для разработки
+
+### 3.1 Backend
+```bash
+# Виртуальное окружение
+python -m venv venv
+source venv/bin/activate # Linux/Mac
+venv\Scripts\activate # Windows
+
+# Зависимости
+pip install -r requirements.txt
+
+# PostgreSQL (локально или через Docker)
+# БД: voidea, user: voidea, pass: voidea_pass, port: 5432
+
+# Миграции
+alembic upgrade head
+
+# Запуск
+uvicorn app.main:app --reload --port 8020
+```
+
+### 3.2 Frontend
+```bash
+cd webui
+npm ci
+npm run dev
+```
+
+### 3.3 Mobile (Flutter)
+```bash
+cd flutter
+flutter pub get
+flutter run
+```
+
+## 4. Процесс деплоя
+
+**Важно: на сервере НЕ dev-окружение. Все правки — локально, затем деплой.**
+
+### Основной сценарий
+```bash
+# 1. Внести изменения локально
+# 2. Закоммитить
+git add .
+git commit -m "feat: описание изменения"
+
+# 3. Запушить в Gitea
+git push origin master
+
+# 4. На сервере
+ssh angel@81.177.141.34
+cd /opt/projects/voidea
+
+# 4a. Получить изменения
+git pull
+
+# 4b. Пересобрать и перезапустить
+docker compose up -d --build
+
+# 4c. Проверить
+curl -s http://localhost:8020/health
+```
+
+### Миграции БД
+```bash
+# Накатить
+docker compose exec app alembic upgrade head
+
+# Откатить
+docker compose exec app alembic downgrade -1
+```
+
+### Просмотр логов
+```bash
+docker compose logs --tail=50 app
+docker compose logs --tail=50 worker
+```
+
+## 5. Структура .env на сервере
+
+Файл `.env` в `/opt/projects/voidea/.env`.
+Шаблон — `.env.production` в корне репозитория.
+
+**Важные отличия от .env.example:**
+- `DATABASE_URL` использует порт **5444** (а не 5432)
+- `REDIS_URL` использует порт **6380** (а не 6379)
+- Порты изменены, чтобы не конфликтовать с проектом aegisone на том же сервере
+
+## 6. Важные ограничения
+
+### Серверные (VPS)
+- **Bridge-сеть не работает** — только `network_mode: host`
+- **Docker build** всегда с `network: host`
+- **Docker Hub** может таймаутить на больших образах (>100MB) — используйте `docker save`/`docker load`
+- Всего 20GB диска, ~13GB свободно. Следите за `df -h /`
+
+### Кодовые
+- Не трогать `.env` на сервере (секреты)
+- `flutter/` — только локальная разработка, в `.dockerignore`, на сервер не деплоится
+- `webui/node_modules/` — в `.gitignore`, не коммитить
+- Миграции БД — через `alembic`, не вручную
+
+## 7. Docker-образы
+
+Образы хранятся в `deploy/images/` в формате `.tar`.
+Список используемых образов:
+- `postgres:16-alpine` — voidea + gitea
+- `redis:7-alpine` — voidea
+- `gitea/gitea:latest-rootless` — Gitea
+- Образ самого приложения собирается из `Dockerfile`
+
+Для обновления образов на сервере:
+```bash
+# Локально: скачать и запаковать
+docker pull postgres:16-alpine
+docker save postgres:16-alpine -o deploy/images/postgres.tar
+scp deploy/images/postgres.tar angel@81.177.141.34:/home/angel/
+
+# На сервере:
+docker load -i /home/angel/postgres.tar
+```
+
+## 8. Полезные команды на сервере
+
+```bash
+# Статус проектов
+docker compose -p voidea ps
+docker compose -p gitea ps
+docker compose -p nginx-proxy ps
+
+# Логи VoIdea
+docker compose -p voidea logs --tail=100 -f app
+
+# Перезапуск конкретного сервиса
+docker compose -p voidea restart app
+
+# Полная пересборка
+docker compose -p voidea up -d --build
+
+# Очистка кеша Docker
+docker builder prune -af
+docker system prune -af
+
+# Проверка nginx
+docker compose -p nginx-proxy exec nginx nginx -t
+docker compose -p nginx-proxy exec nginx nginx -s reload
+```
+
+## 9. Порты на сервере
+
+| Порт | Сервис | Проект |
+|------|--------|--------|
+| 8020 | FastAPI | VoIdea |
+| 5444 | PostgreSQL | VoIdea |
+| 6380 | Redis | VoIdea |
+| 3000 | Gitea | Gitea |
+| 5433 | PostgreSQL | Gitea |
+| 80/443 | nginx-proxy | Общий |
+| 8000 | FastAPI | aegisone (чужой) |
+| 5432 | PostgreSQL | aegisone (чужой) |
+
+Не занимать порты, помеченные как чужие.
+
+---
+
+*Обновлён: 2026-05-19*
diff --git a/docs/user-guide.md b/docs/user-guide.md
index 7c008bf..19e2626 100644
--- a/docs/user-guide.md
+++ b/docs/user-guide.md
@@ -53,6 +53,47 @@ VoIdeaAI имеет Telegram бота для быстрого создания
- `/idea <текст>` — создать новую идею
- `/help` — справка
+## Воронка идей (Idea Funnel)
+
+Отслеживайте прогресс идей по воронке:
+
+1. **Сырая (raw)** — только что созданная идея
+2. **Подтверждённая (validated)** — идея прошла первичную оценку
+3. **Бэклог (backlog)** — запланирована к реализации
+4. **В работе (in_progress)** — активная работа
+5. **Запущена (launched)** — реализована
+6. **Ретроспектива (retrospective)** — анализ результатов
+
+Переключайтесь между **Списком** и **Канбан-доской** на дашборде. Перемещайте идеи по воронке кнопками ← → в карточках канбана или через API.
+
+## Рабочие пространства (Workspaces)
+
+Личное рабочее пространство создаётся автоматически при регистрации. Командные пространства доступны по тарифу:
+
+- **Personal** — 1 на пользователя, всегда бесплатно
+- **Team** — создаются владельцем, участники добавляются по email
+- Переключайтесь между пространствами через выпадающий список в шапке
+- Управляйте участниками в настройках пространства
+
+## Совместная работа (Collaboration)
+
+На странице идеи доступны:
+
+- **Голосование** — 👍/👎 оценивайте идеи
+- **Комментарии** — threaded обсуждения с ответами
+- **Активность** — лента изменений и действий
+- **Уведомления** — колокольчик в шапке, отметки о прочитанном
+
+## Интеграция с календарём
+
+Добавляйте идеи в календарь одним нажатием кнопки «+ Календарь» на странице идеи:
+
+- **Google Calendar** — через OAuth (требуется scope calendar.events)
+- **Yandex Календарь** — через OAuth (требуется scope calendar:event.write)
+- **Apple Calendar (CalDAV)** — в разработке
+
+Подключите календарь в Настройки → Интеграции → Календарь.
+
## Настройки
В разделе «Настройки» доступно:
@@ -60,5 +101,5 @@ VoIdeaAI имеет Telegram бота для быстрого создания
- Безопасность (смена пароля, OAuth привязка)
- Голос (настройки микрофона, TTS)
- Тема (светлая/тёмная)
-- Интеграции (Яндекс.Диск)
+- Интеграции (Яндекс.Диск, Календарь)
- Тариф (информация о подписке)
diff --git a/flutter/.dart_tool/dartpad/web_plugin_registrant.dart b/flutter/.dart_tool/dartpad/web_plugin_registrant.dart
new file mode 100644
index 0000000..5668d19
--- /dev/null
+++ b/flutter/.dart_tool/dartpad/web_plugin_registrant.dart
@@ -0,0 +1,28 @@
+// Flutter web plugin registrant file.
+//
+// Generated file. Do not edit.
+//
+
+// @dart = 2.13
+// ignore_for_file: type=lint
+
+import 'package:connectivity_plus/src/connectivity_plus_web.dart';
+import 'package:flutter_native_splash/flutter_native_splash_web.dart';
+import 'package:flutter_secure_storage_web/flutter_secure_storage_web.dart';
+import 'package:package_info_plus/src/package_info_plus_web.dart';
+import 'package:share_plus/src/share_plus_web.dart';
+import 'package:speech_to_text/speech_to_text_web.dart';
+import 'package:url_launcher_web/url_launcher_web.dart';
+import 'package:flutter_web_plugins/flutter_web_plugins.dart';
+
+void registerPlugins([final Registrar? pluginRegistrar]) {
+ final Registrar registrar = pluginRegistrar ?? webPluginRegistrar;
+ ConnectivityPlusWebPlugin.registerWith(registrar);
+ FlutterNativeSplashWeb.registerWith(registrar);
+ FlutterSecureStorageWeb.registerWith(registrar);
+ PackageInfoPlusWebPlugin.registerWith(registrar);
+ SharePlusWebPlugin.registerWith(registrar);
+ SpeechToTextPlugin.registerWith(registrar);
+ UrlLauncherPlugin.registerWith(registrar);
+ registrar.registerMessageHandler();
+}
diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/.filecache b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/.filecache
new file mode 100644
index 0000000..e7759ac
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/.filecache
@@ -0,0 +1 @@
+{"version":2,"files":[{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\swap_effect.dart","hash":"d19b802a88e4155dc2e45f5e1101d15f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\limited.dart","hash":"aa439be89f7997c3c5949ce32d2486bf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart","hash":"aa32657bdc6e98d914493e3dcd1297e2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_exported.dart","hash":"0dd6b7d8d28ad1d7a979582b5dbc60cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector2.dart","hash":"81d01d8cecc6783526e350800988db74"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\LICENSE","hash":"94016e710124ccd8afa685f270d396c2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\types.dart","hash":"cffffef4bf8830e201a0e74eeb8eefbc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_core-0.7.5\\LICENSE","hash":"ed9a041fe7435b9b67080b2e9b56f1a0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\feedback.dart","hash":"65d7d9aae72d673e52ab256ebc374bf5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\provider_base.dart","hash":"ddbfb4de9e9dc40a09a6bfae74a41dd8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\media_query.dart","hash":"db020a5dc1db2d32c48dfbd9b97e1fe8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\byte_collector.dart","hash":"da767bceadf4951a2fd2ecc70270f6cb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\node.dart","hash":"1be9384bd83205518a048ecc1a64d5a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\storage.dart","hash":"3032f1c2edfd44ab46f3b4673c5c8deb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\package_info_plus.dart","hash":"8dae2f643acc27538d30020543dd54a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\digit.dart","hash":"ea36381f235270cd68b88f2aafe5d620"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winmm.g.dart","hash":"34b9072869b35b15ccbe1d843fa778d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\object.dart","hash":"b614d8172098403c683c68aafa3e92e8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons.dart","hash":"d8a7b96e6465831f5cf6de56ccddf6b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\router.dart","hash":"259698248be1045ed65ca4c44c0d9419"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart","hash":"6f808ad3e21a896e5df3cf97ea2cb66e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader6.dart","hash":"33186ffed4f0249b40a7d6161b7c2351"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\import_mixin.dart","hash":"50ef33e165498030b82cc4c8d8408597"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_string_l1_1_0.g.dart","hash":"05fbdfb1bb8ed12098aa521c31a145ff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio.dart","hash":"3467899798f7f8ca82797ccde4772534"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\utilities.dart","hash":"9b478f27df3e7bd44722deb3c1c69ca3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart","hash":"3a20b4d301e83ddf2a700e43c3d13f19"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\default_mapping.dart","hash":"a2187618f84ad697f470a748b2a27f56"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed_annotation-2.4.4\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button.dart","hash":"6e77594b72aaf1972bfbada10258aea2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_theme.dart","hash":"cc73b974cea8f36b579e019233f5f39c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterable.dart","hash":"f0db904cb4051a93b08f326f9f4ded00"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\dbus.dart","hash":"59ba4a85ea18ab7b3030f370a0e93450"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\form_data.dart","hash":"bfd57391197129cbe3c47c75b2c21672"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_config-2.2.0\\LICENSE","hash":"d2e1c26363672670d1aa5cc58334a83b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar.dart","hash":"34e49d23faf2e4895f37b30900d32c5e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_converter.dart","hash":"2d069a48b5e0ffa386474977d2c91c90"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\constants\\app_constants.dart","hash":"31690b0bd17e5becd1d7a80216ad01d0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table.dart","hash":"5d8fbf1c97a97bd37a57bc907bb90823"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\constants.dart","hash":"3b481084198e4581293dd9ddddb9afb4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart","hash":"3ec7c08049495627813e9b3b937f53e8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name.dart","hash":"2426dbde1829bfb9d5707ea69f21b4fa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclockadjustment.dart","hash":"dde1235f5cf091fe6d4a2938399afb4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document.dart","hash":"8fd257a17e57f8c7a9e9c3c5d77df78b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart","hash":"f203420ad76d15df34cdeba7156e19b5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_location.dart","hash":"f91bd03132e9e671e87f0b9066647164"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\LICENSE","hash":"9633ac2bb6bd16fe5066b9905b6f0d1c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationmultipleviewpattern.dart","hash":"509de531546dd357cb81de8c9e42312d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\system_context_menu.dart","hash":"fcd23009cc22a74fe1f61f301a62b61e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel_group.dart","hash":"9a2704474807a196e3a72883d73b5be2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellfolder.dart","hash":"9595cf0e7becb4bf5de5d3a3865d631d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\constants.dart","hash":"55422a6a3ed3f0829854a5bbb97d4e6f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category.dart","hash":"a94a67f325606644fee6ad6aa922752e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement2.dart","hash":"4f061ba7ed2e408e218e0eb4375dddee"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_trace.dart","hash":"d75954340a0c7770eb9a149f7994598e"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin","hash":"0fe1cfc6c971ef6b8e64e31b7191038b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\sphere.dart","hash":"ff5d66c50ec833a263625d39f0c195b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_member_name.dart","hash":"2ef397117616f6ff779ed0ab2dd0d61d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_group.dart","hash":"56e7707f76c417845a2d4ace8af3b305"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart","hash":"19685ac5879c84f53885d8fc9890f9ab"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state.dart","hash":"b16bfc71ddbb89c942f3fb24dcc4de5e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search.dart","hash":"3a8582a42202dd9c13976accdb4e8b18"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\base.dart","hash":"62e6826075b4df67271133a79fc4d046"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon.dart","hash":"3075297d267950b2cc949065c5c982bd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\LICENSE","hash":"22aea0b7487320a5aeef22c3f2dfc977"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\stopwatch.dart","hash":"f38a99a51f4062e7861bb366f85265d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement.dart","hash":"e00e5a90ff913bc9c53a6572e53ec576"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\LICENSE","hash":"ca58010597a5732e6aa48c6517ab7daf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\html-0.15.6\\LICENSE","hash":"c23f3b290b75c80a3b2be36e880f5f2d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation.dart","hash":"fa2fa16f78792d714ca06eb1bbea9db8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\subscription_stream.dart","hash":"c23f15393091087663c2613f18f0e9a4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\eager_span_scanner.dart","hash":"bdc22e9e77382045196b5aafd42b5e55"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\char_code.dart","hash":"4fb96b9e2073cadc554a25b36f55e6dd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\undefined.dart","hash":"bb00c98e50d3c71d4ab7ac7c46122f3f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_visitor-1.0.0+7.7.0\\LICENSE","hash":"ed9a041fe7435b9b67080b2e9b56f1a0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\dialogs.dart","hash":"31ff0d4d17e824e16798aed227f48e88"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\ideas_provider.dart","hash":"6528389eb764f0529d5c3ce0f7403452"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\kernel32.g.dart","hash":"025e33f289842e685909a1adadc790ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider.dart","hash":"7504c44d1fa6150901dd65ec78877be0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\c_bindings_generated.dart","hash":"d3c588dd2fe7ad6be9c74bc406cd0199"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\LICENSE","hash":"175792518e4ac015ab6696d16c4f607e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\path_provider_android.dart","hash":"6d35cfc0d00b450495558fbdc7ce2087"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_properties.dart","hash":"953396d57b69e0e889d9dfcc4f7fdabe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifilesavedialog.dart","hash":"de786aad9aba3c37b121a1f0238119a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format.dart","hash":"76052188e777d0ca03128d3b299d836c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_anchors.dart","hash":"bf2ed9d304c7f4d1e982b118bbe93bf2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart","hash":"61d6754850dbffcf4687388b630652ad"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\calendar_integration_screen.dart","hash":"fd32497d512fda6fc0671f20387ea649"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpointcontainer.dart","hash":"21a6eaa35ec3367210a47a559f54c4a6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\lib\\xdg_directories.dart","hash":"737107f1a98a5ff745dd4e3236c5bb7b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_win32.dart","hash":"a9a606dc5028f1c8d7cc31f5cb21964e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\base.dart","hash":"b21a009902949ddc4ba80d607867fcb7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\utils.dart","hash":"caf148b76c44a3f0f1bd6055ddbb8f5e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\context.dart","hash":"6f1cce384d53a00c3d6e036e78554066"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\value_provider.dart","hash":"d5a669dc5155cedc975db1022a570128"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\native_assets.dart","hash":"f78c405bcece3968277b212042da9ed6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\rxdart-0.28.0\\LICENSE","hash":"86d3f3a95c324c9479bd8986968f4327"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\lints-5.1.1\\LICENSE","hash":"4cb782b79f6fc5792728e331e81a3558"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\types.dart","hash":"83bb9dfd0d336db35e2f8d73c2bdda85"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar.dart","hash":"3ba2e2e6e16b3e46d2e9882ff66479f6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdragpattern.dart","hash":"51d92d191bdfceacf4cc7381782d4e5e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shader_effect.dart","hash":"56b284328228e6d3eabf49bed958999e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card.dart","hash":"f26b3e572d8caad81a02521232f34ac2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgriditempattern.dart","hash":"90879288f848e0c8bd3e17539633770a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\null_stream_sink.dart","hash":"cc0ab0117e8a0a54ec3efe6d9251860e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart","hash":"2141c0a9a7f60478204da36bd64edf0c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\variant.dart","hash":"8dea906a9b8773920b6d1ccea59807bf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\exception.dart","hash":"7be00974229804e8ec49ca8c4fca3b5f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart","hash":"eb3b6369f8af356037fedee8b6733b3a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\debug.dart","hash":"f2138801d3af6774b0cdb3ff8f966b8c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart","hash":"e83026f2a0c3e22691eee7ce337b037b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_debug.dart","hash":"a2cdec29e909752629150b24b9b18407"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\doctype.dart","hash":"c2d76b78fb107e358b1ad967f15f1746"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_fit.dart","hash":"42b701fea2336aa3a74e390579863153"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\open_options.dart","hash":"296e60aee7732b001a79f3216058a381"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart","hash":"19171c1dc65154469120c6dc1ffbd025"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jmap.dart","hash":"dfce6b9ee4ae9b9df7401fab182baa6a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclientduckingcontrol.dart","hash":"21ee375f5cb7acd3bec0129fba2839ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irestrictederrorinfo.dart","hash":"a42121307a3d24f06691ab35f935206a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart","hash":"ee635fd679923a1967d7f97840c03f25"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_decoder.dart","hash":"3d7fed590b9d1ab99d591b04487b9287"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap.dart","hash":"d2791172df9d71b9d978e566377b236c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\utils.dart","hash":"89f7a33014c1771ad6ba7af660714ba9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager2.dart","hash":"437b5795f5b9bf507b02ed5d44f9f572"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwinhttprequest.dart","hash":"e9c0088ee89cdab9346358a1ab7d4f18"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed-2.5.8\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_extensions.dart","hash":"5843b4750179f6099d443212b76f04a2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\allowed_keys_helpers.dart","hash":"41696c18e708950dccaf7cb4f5b7b195"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\magnifier.dart","hash":"1f9d71a3b838669de863ab244804bdc1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\generated_plugin.dart","hash":"e1c286fd5841539119a1c390cc1fe13a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_annotation-2.6.1\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_4.dart","hash":"ba02460ed2591611ff8506bdd88f569e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\dio.dart","hash":"3059dceae50124dbd966f136c80016fe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\web_options.dart","hash":"7dff3a0a1b5652f08f2267907c79844e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command.dart","hash":"3a70808300050e138089768c2a40dd78"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button_theme.dart","hash":"47bd44d1a936d22067083db9e592d00a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\interruption_level.dart","hash":"3667c2cba3e0537e66b40353a1482487"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\auth_provider.dart","hash":"b79970824daea8c217511d19c774c1ac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker2.dart","hash":"03b20b9fede21601f0b3d0f7ef4ce25f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tap_region.dart","hash":"0ce51f30ec304572b490e8f3160925cf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart","hash":"a05b35e402965727a6b38bfc20b6ea15"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_view_theme.dart","hash":"67788ce85b40005f02d41f07f8c72c1c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart","hash":"c6361b93d4a266527cc473cc2570f714"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\accessors.dart","hash":"359d022c7d5a59692d34bb2d5eed6736"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\cursor.dart","hash":"5bde4f62a64276d44e1ef4ee3bf194f6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart","hash":"ecb57271d69343712d88a50442f2e8ed"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\unparsed_frame.dart","hash":"0c30a117b0d1fd5c94980510832b81d0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\converter.dart","hash":"c4222ace4a2fadb2e9db196b058e9d86"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapters.dart","hash":"fba8114f858c7bb3b433350fa69476da"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer.dart","hash":"17b166b7da51804be122c3799285a293"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart","hash":"e54dfa9602e092489eff9b246249b58c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf-1.4.2\\LICENSE","hash":"3c68a7c20b2296875f67e431093dd99e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spell_check.dart","hash":"186b8c23ed0d68e6f81d56d62272c87c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\LICENSE","hash":"3c68a7c20b2296875f67e431093dd99e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_decorator.dart","hash":"7543511b01e80fd6c1424d1716696d43"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart","hash":"ea3e7b1b5cb494d1fe64a8ea3c635f32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dislike\\dislike_analyzer.dart","hash":"052660a52f5ab94091182bccabab6f84"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binding.dart","hash":"e2ff5f7cd2d3585383be2f277af0e761"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\client.dart","hash":"1825b39f94e569a3c0c86c8ec20b723e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_testing-3.0.2\\LICENSE","hash":"f721b495d225cd93026aaeb2f6e41bcc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image_filter_config.dart","hash":"0986862ec60c0703a2f25d4c50fe9a2f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int32.dart","hash":"f6b2a03b8f3554a6b37f151f6a561fe9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\future_group.dart","hash":"fb71dd46672c822515f03f8f0dddbcb8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\data.dart","hash":"e0b6567371b3d5f4cc62f768424e28c9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart","hash":"2477a3574e222e0361cc9a114e007c94"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider.dart","hash":"d28de61067df9bc3d509be84deec1140"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.g.dart","hash":"b248aab8f1807ae07bc22c26210f2def"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart","hash":"b710038198396f242f41de12c8488a5f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml.dart","hash":"fcf0dfcafac17dc3ed539b4587340320"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\offset_copy_with_extensions.dart","hash":"59b94bd26c48f22af40881f8128c41c0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\button.dart","hash":"7294188b7840ddcb215d597adfd35d10"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\tonal_palette.dart","hash":"cfeea6435b5871fb518238f65eff45c6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selection_container.dart","hash":"6315f598861cc34295ad7b2e926a143f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\auth.dart","hash":"e02cc4bfbf4ebc867c80dd14a71289eb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart","hash":"f3a43f7f1e3cdd35326341d9fe51fdee"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol2.dart","hash":"d71b6121d7069ff8303334b41e9a92d1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isupporterrorinfo.dart","hash":"0fe168f7fefcc6e38cea5a1daaa08fe7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllink.dart","hash":"7132bdf47eb7567294754da6caddbe14"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\blend\\blend.dart","hash":"7594a28b48f672ffb4829ada9ea4018e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart","hash":"38aaf9a4c4e85e3635751865dd337321"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jni.dart","hash":"9fce75490356488473f3f0d5259d2f29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\constants.dart","hash":"195aceb9dfe0dacbf39711b8622ce2b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\stretch_effect.dart","hash":"fbbf07cdc6454526db079daddea912cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\ancestors.dart","hash":"3f842dc9d82d8b21557bf598ff4ec83b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_button_theme.dart","hash":"5df97b77642ac6f786c40d585400f7a4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement6.dart","hash":"92985c94a9a966b97c156c06ab2d5195"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern2.dart","hash":"8924d681363bacc7cd51c183b529f260"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\family.dart","hash":"c32553850c6990014c017cc3b3024df3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\node.dart","hash":"9ec244272cb6c8da46a6dd5f104f0dfe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winspool.g.dart","hash":"18e255eb54fef40d17b6f6abac4455aa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_signal.dart","hash":"8596b58c127792783625b4b22a4d023c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\scan.dart","hash":"acfc0a55deec22276e085dae6197833a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\annotator.dart","hash":"d45b4bb922c2941476a8b797e0e275ad"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart","hash":"59ba7bdfc57111a2c59ae46a61e0daa1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters_impl.dart","hash":"c687544dd89d844861b88fe7d0fd095e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_details.dart","hash":"7c5b14805d686129e90293ef086d4d68"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\flatten.dart","hash":"b192f8c8e04e47ae69d662e5feff7306"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemconfigurerefresher.dart","hash":"0502dbd75b5b023cd08bf81003a77889"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button.dart","hash":"ba0276c39a78df8b9ae1f68746ed0e73"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer.dart","hash":"3ae05205e5843fd41cae41c823dd7679"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\restartable_timer.dart","hash":"89cdb68e09dda63e2a16d00b994387c2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\line_scanner.dart","hash":"168bedc5b96bb6fea46c5b5aa43addd1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_interface_name.dart","hash":"4f835012742ef22df8c85292594f9823"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_key.dart","hash":"6a18f9347e6e639ebbbfb0a0ce98bb71"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\selector.dart","hash":"5f59fa1ce6d10c011e76cb4d99e90d6b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\separated.dart","hash":"f0687363561a3dd3af32cc1870c61c97"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart","hash":"fade310b4dcd8b5183b8caf0b7460a61"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart","hash":"8410804f64d7620e89249b54b17d9d9e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\case_insensitive_map.dart","hash":"5893c7d3910e8924bd2dccc8837775c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange3.dart","hash":"4f4a2d291e23c96c7ae0d4dbc9598c54"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart","hash":"11ae4db3a0abc6e46de31a943bcdca60"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\namespace.dart","hash":"d7259aeee1602df30d051e8fc0523d91"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart","hash":"1aebe82cc4e81c2b5fd46f924c92d5af"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\icon.dart","hash":"b1d3d657c21d4c2229511410eb2240c0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\ios\\enums.dart","hash":"670388961b23da0ffd68cf26f5104e49"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement9.dart","hash":"13e53604d98eb0a2fbd871588ec8b357"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\state.dart","hash":"9a453418cc0baa3cf4c4a41655f4a113"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\back_button.dart","hash":"18939fc6e74f9b391a45ae341fe30128"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\builder.dart","hash":"8390e4d70de6b673e657c51fdb76c8e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\lib\\sqflite_darwin.dart","hash":"b1cb91ea7a56d612d5792dbfe439f2d8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement4.dart","hash":"98e80e3c681156f330d79925f2675eb2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_nodoc.dart","hash":"273e2f5010e85e296a0893f397d71645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\event_codec.dart","hash":"3a9a69af68cc0a35c422d0bf03873265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\internal.dart","hash":"7d51f23cb597ecf99a0b6007767461f2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspect.dart","hash":"1d43aa18b7cd09879287a4e8ba5ea5ef"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\debug.dart","hash":"4a3a541b9e5b5781690d1b413c84757f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl_helpers.dart","hash":"fac5ee1098b41fef8637aca152781c92"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\filetime.dart","hash":"562889498a1b0cda759a1186693143e1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route_data.dart","hash":"8fdbe6c284b56683447368dde52806c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\named.dart","hash":"7d9a75e0bd8e5c9b49ad6c0816666b4a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\ref.dart","hash":"452cd5bd89dd73f555cc1ef42032e1f8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\choice.dart","hash":"404ec528c031ebc7486f12477b06de28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest_sink.dart","hash":"038a6fc8c86b9aab7ef668688a077234"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\factory_platform.dart","hash":"2441a967786bd149053b72e22172ce60"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart","hash":"a31803db08fc99ed2b1648bd10de25df"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart","hash":"d40025a616ebc535304bb45ed491794d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\allocation.dart","hash":"9d62f4f58e8d63a8e106a1158eb13a02"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\redirect_record.dart","hash":"91794c215a8aa39b862cfa4c96b9a398"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider.g.dart","hash":"77971712e28393ec72c9033a92f3ceab"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdroptargetpattern.dart","hash":"45a4d78a037bdf56e5eb45d75298ff84"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\delegate.dart","hash":"5fc1a25f60cfa0a0280878377348c63c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_metadata.dart","hash":"201005c585ce255343e625b1a5e49601"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_extensions.dart","hash":"3a2d505268f5446e5f7694776b69b407"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\alignment.dart","hash":"4228c34247981f0faaf8e067e3a82e19"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\block.dart","hash":"ff12dd93989e4929d1f2e1bf36c45978"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\micro_money.dart","hash":"391b7eda9bffdd4386292eae157d449c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\enums.dart","hash":"c5cf5bfcab3a48fc5ec40113640a6e29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_helper-1.3.7\\LICENSE","hash":"3b83ef96387f14655fc854ddc3c6bd57"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart","hash":"5ec6314e10455f6b4b0809f222cb82ac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_sink.dart","hash":"8faa98eb1bc31bbb64876e837eec420b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\configuration.dart","hash":"1ca6e7022b3a950a205e316f7e3a2b1c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_text_style_information.dart","hash":"e1c112a7342a7ee3110a1c2df175b89d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\globals.dart","hash":"c88223c7cd248b2bb8587f78e9530f64"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\canonicalized_map.dart","hash":"f5e7b04452b0066dff82aec6597afdc5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_parent.dart","hash":"7f47dda6ed10e33236d465680dc8c12b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_write_buffer.dart","hash":"63d2768cdd6ab5a282fbb6a86c237b78"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumvariant.dart","hash":"ad6fa6bf1dadc6e07c4c080c69abde6a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart","hash":"5efd79b206d541def2ced4a547014219"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_web-1.2.1\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcustomnavigationpattern.dart","hash":"84de591d644b29f5e21052bd9c84263c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml_events.dart","hash":"81c2aad8ddfe7e91e913fa4c319764f9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\src\\flutter_secure_storage_windows_ffi.dart","hash":"2ca4b9e92c39403717d2dcc32bed57e3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\LICENSE","hash":"9741c346eef56131163e13b9db1241b3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart","hash":"559ecbc92097e4c9b9142335dec3f3ee"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\services.dart","hash":"7b2a0787f26dba547607fdca4028a1cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\http_parser.dart","hash":"b76ebf453c4f7a78139f5c52af57fda3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\dbus_wrapper.dart","hash":"52e0406df2babb2958beb4b471ccbcbe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\triangle.dart","hash":"d9eedadb461aac1eebde731afb42a2d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_source.dart","hash":"bdd3a31817dfc052c506f3a7e2556fcb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\color_effect.dart","hash":"aaf31c7a7690aa5b5980d454e534d168"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionitempattern.dart","hash":"dd15fe8e4901c3c57a40bed6b0079e80"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.dart","hash":"5701f1a2ae54ccdf11a84a2a6239861e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart","hash":"f60d1c032575a7726e7526bbd5d26e6e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_compiler-1.2.2\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\string.dart","hash":"1aaa0309ba77b0f57733e99543c455ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jreference.dart","hash":"d9fa00a9beeccf6023d9f9950d016c1f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\print.dart","hash":"f7e6d723f47368300487f5121688d827"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_details.dart","hash":"f61c50d40c00ac96c595ea0b2682937c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_sink.dart","hash":"e2f7d6fbeb362176a24cb422a6dd8193"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\node_type.dart","hash":"57e5dc91c30bff1774eaaa45a798d0df"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart","hash":"4a9437bcc5b4bc801a155dc8b18ca80b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_handle_l1_1_0.g.dart","hash":"34336c7c021e6749ef0bd6a11e48f887"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\expression.dart","hash":"79503c7448238b77502c169788e26dbf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\ffi.dart","hash":"8797b9bb0c8239ab47601d92826a8cc2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix4.dart","hash":"ae36c7cc9b21f98bedf401f2d67a0fd4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\io-1.0.5\\LICENSE","hash":"901fb8012bd0bea60fea67092c26b918"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_shcore_scaling_l1_1_1.g.dart","hash":"00bfa437eaf641f6fdf0db2367135a29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immendpoint.dart","hash":"ceac2a8f7197831de70d242e885a1527"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_details.dart","hash":"bf4a95c97439fb24c526534818440cb4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_value.dart","hash":"002be4c072c0cc5c5e72b5ff6d0c490b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\string_scanner.dart","hash":"184d3b79d275d28cd02745b455041ee6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_memoizer.dart","hash":"abcb2d6facc18b2af070cb86cbb1c764"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_windows.dart","hash":"6b6d268476b0c6b3d28f6339b57b61b6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\value.dart","hash":"bf3aeab9379cee97ddcc69d885a477f5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\token.dart","hash":"710a4fd96b6281c1ab359ea6df4ceee8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jobject.dart","hash":"0db1803fcad172b512558bd1b03e4ff0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\location.dart","hash":"17db713e9a12494613ca23ad84def9c3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\borders.dart","hash":"34cd6d5950080d2479052b3f332b702e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\switch.dart","hash":"09a96c82ece190d734f06404eb1e5b1a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\timezone.dart","hash":"f8c5df6155feb71c22fdca5ea2d10a53"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar.dart","hash":"c32fe94e565a6199137fe363f3a40636"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\contrast\\contrast.dart","hash":"31f8129bfae39c459df7bd2d3cc37bae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\LICENSE","hash":"7b710a7321d046e0da399b64da662c0b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_completer.dart","hash":"0fa4a82df6fea98c85dcfc6cedf4206d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_menu_bar.dart","hash":"b9f0d5a8855611341e4cc707fd98aa3b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\js-0.6.7\\LICENSE","hash":"bfc483b9f818def1209e4faf830541ac"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\heroes.dart","hash":"7904ef0e6ab501cf89c04669c0b5d600"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart","hash":"9f00531fd2765e9d53bb4803eedee111"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\frustum.dart","hash":"fb2be6f27b32bb1ab12dd6aea8c5ecda"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose.dart","hash":"7c89e8d3e17b2ff04570b741ce311e44"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id.dart","hash":"32f5f78e5648f98d8b602c6233aa4fc5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterator.dart","hash":"4c92351d347c52a00797317aa487600f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set.dart","hash":"0073f703be7f7ddbd7f04d1b740f35c6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart","hash":"e750d451a309d0cba00603d8bbc3e98f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\triangle.dart","hash":"2083695b7b9150b87307af446032ba45"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\parser.dart","hash":"a54725bc16ee2ca993762c441542c1cc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern2.dart","hash":"10ee0ac3bc045cf4344c623f4396d941"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dwmapi.g.dart","hash":"20290eb1c157dcb3947d9e5b420ea50e"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_view_screen.dart","hash":"6b92e06b2a6b070f593630943622f8e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\processing.dart","hash":"5a7bd956aa537e95be882d4809232c39"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart","hash":"ef78266d8f88424f55e3135455ee90cf"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\shell.dart","hash":"d7f7c36978e85a7423fd87bcfd9a7a03"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\gestures.dart","hash":"d94743ec9e31da98eb079db06f418126"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\util.dart","hash":"cf2b42c94ab97ce116e195500f147944"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\failure.dart","hash":"30a4963c49e7dd57d8cec29b8f4821db"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\permute.dart","hash":"8171c3b0d66f560aad82b73d43393092"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\flutter_secure_storage.dart","hash":"5a944801c9b2bd3447f982168b31e46c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation6.dart","hash":"a878c551495aae9f415d298f162fd19e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart","hash":"dd83cc86855f180335c59246dae38264"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\adaptive_text_selection_toolbar.dart","hash":"97fe7ee22c2d610b9259874f37014c82"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\comment.dart","hash":"74fb000405fb96842a3ce15a519d8ae8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\compact_number_format.dart","hash":"9068f4d63af1ec44245b76b7ab4dfa48"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\color_utils.dart","hash":"a97282161191c89d98231dfd655252c6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_attributes.dart","hash":"1059ea9e8a0e858f944bf05dcb7b8edd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistmemory.dart","hash":"cdc3ed60fc9f8d6e2fd72afef2012bda"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\bitmap.dart","hash":"30207bb624460e743b557f58e7b39479"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb2.dart","hash":"f54f6b61b175b0a37d51ff3ac8b8c800"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_resolvers-2.5.4\\LICENSE","hash":"3323850953be5c35d320c2035aad1a87"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\view.dart","hash":"bad6783543dd4de76cbac4872a2e1969"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_chip.dart","hash":"3439e88de4cdc23b3bb0bc629e7f48b1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechbasestream.dart","hash":"1632b8b538a5115973c424adb5380d7c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jboolean.dart","hash":"f3c87bba5ae0baea2e0768ad663e7e7f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream.dart","hash":"809f1f0bbe7ee77e69f003952a5525d5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selectable_text.dart","hash":"a25be9534683056e76a7ff2a00de199c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_menu_anchor.dart","hash":"9f9383a378fdae3c3237fa40d6c8e070"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart","hash":"e33cf45ff0309bc7b7e295ecd8e64c02"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart","hash":"97b528fc5160b67efb862edaee719648"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplicationsenumerator.dart","hash":"a0c11bb2957ee28a1de2145cc233367d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\strut_style.dart","hash":"c7414d3ccb3bf26e8437eac2f4086abf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\auto_dispose.dart","hash":"34f75dd4788c48a2a7b2ce2efe4c51fe"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart","hash":"84ab7cd659f8b1df06e1e90d50694d88"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_codec-1.1.13\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_form_field.dart","hash":"89a8b9c7063d78cb595e85cc56441cb0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\predicate.dart","hash":"c135a8cfe6154841111bd7d4f7c7e69a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog2.dart","hash":"ef41b02d4257a466a4a68f493052b543"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\visibility_effect.dart","hash":"1198e07cfca6cdefe5e54638d507f31d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\lookup_boundary.dart","hash":"f908879081c20ea0f414c694b9e88fde"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\cancelable_operation.dart","hash":"fd25090c21947bb10aa8adbffe5fd89c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\viewing_conditions.dart","hash":"31e9eaae0175cc8b4184df6c89b454ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lowercase.dart","hash":"e2bcdfd80ddc73e02b457e8544242028"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_web_image_info_io.dart","hash":"c8ba4eb7463f2816b6b5c054b0876f2f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\LICENSE","hash":"80ea244b42d587d5f7f1f0333873ad34"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\capabilities.dart","hash":"2924a2b4f15d6d9a055f71d47d94521e"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\error_display.dart","hash":"0744178a930db21a55b4afb9b80fa463"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\parser.dart","hash":"ed6e10b66c408845188f75959c15a23b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\rotate_effect.dart","hash":"f235e4dd0ff304f8ff7a0cb1e620f83d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement8.dart","hash":"befbfd864024e35cb6b7752f9b4ac4d7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_generated.dart","hash":"c6d3a43399dd0c6b8c5497bf5241a008"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\register_screen.dart","hash":"333ab18cdd4f86c6929556ed06e4d567"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\dtd\\external_id.dart","hash":"3598a401936c6a9e0a645251fba246f9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name_matcher.dart","hash":"5c4dc37f36fc78823f785b92b944560d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart","hash":"249b2817c1c912b9942e8acc7987adb0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\debug.dart","hash":"0afbdd6f1125195ec28ff55922e51d50"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\io.dart","hash":"f1e1ff4a88eabaa04e9774ee96497141"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jcharacter.dart","hash":"d8078d775520fa565079c39a3f62e075"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\saturate_effect.dart","hash":"eca10930a22c21b03e7217321ca2caba"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_scroll_view.dart","hash":"8445a7502a6450e9deefaff9d677c524"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winscard.g.dart","hash":"f0ffece0b01158318dbca4d043da78b3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\platform.dart","hash":"cbf041463d4a85115a79934eafe8e461"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart","hash":"979bc974a11a3572cb5b730b00d0810a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table_border.dart","hash":"3a7a1f65ad7bc4d7130c9bd74c7edfa6"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\reset_password_screen.dart","hash":"6959098d6067b573f510d80fa58d8ddb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart","hash":"d571b3d9c3e078d8fd3b0bf9caf86244"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\sibling.dart","hash":"6cee72f673d593b0b84628bf243727a8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_timeline_io.dart","hash":"2b2385e013688dc5ccafac580f8f6999"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\border_radius.dart","hash":"75ea819a46fc37b000660901648c12f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\sqflite_platform_interface.dart","hash":"beea47c079349d8e03b64a5a9dcbc7df"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\jni_flutter.dart","hash":"5327416ac833c200249d92ddeea11293"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\LICENSE","hash":"3b954371d922e30c595d3f72f54bb6e4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\bound_multipart_stream.dart","hash":"6a792eed43130ef8c5b35bb12106f303"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_set.dart","hash":"1b20a6e406ca8e79675b2ebd9b362d10"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\tag_exception.dart","hash":"65fe1b7c956a57db85d24838ab970d2d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart","hash":"91d79fc63a36bcb3b575a511cd243ee1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_resizing_header.dart","hash":"c3e8a2b9954b1a5d81e4dc3b74d162fd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport2.dart","hash":"cb23738bdb6f2e8319ba8e9dac0072ab"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_closer.dart","hash":"1f08f83d7a9240cb3accf35283c75bdb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration.dart","hash":"14b9c8680b6de7a995b4bfa53651eac6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\base.dart","hash":"63b92eb56c14d5474db11677f1800c83"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar_button.dart","hash":"28eabbe1a08475df35ee00124b823e50"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_1.g.dart","hash":"8944748ddfae167a4c9f3dc75a702e46"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\crypto.dart","hash":"3b0b3a91aa8c0be99a4bb314280a8f9b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\core.dart","hash":"b969cd0066fa07b8082edb76d2af77e1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\LICENSE","hash":"0c3ca74a99412972e36f02b5d149416a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart","hash":"ee8b3995a1eea74277e0b58b0e8fc04b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemlocator.dart","hash":"84516bb884e27c54321d286d9ae9e9d4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\utils.dart","hash":"9d122acee9d1f43dcdb2ea88fd1fc95f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemrefresher.dart","hash":"5026f3bc8f63a10ffb208a35e304f40c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumidlist.dart","hash":"7d1806cb19bc0d23a18c2760d106d95e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\table.dart","hash":"bb012047379b362d408e5d0c8bc6ff55"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\letter.dart","hash":"b753c0207187489225c25d5554272839"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imodalwindow.dart","hash":"3cafeafccdf2688fe36789f31e671cfa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\pattern.dart","hash":"d881c458d06573eb887bdf0f3ce9f586"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\binding.dart","hash":"f01c011063a155edfb8217353e1a2d29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\term_glyph.dart","hash":"1adcc56e3affffb23739c7c9d8a5fca0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\end_element.dart","hash":"813218451c1d8dd310e1233bd4ca7a4a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\path_provider_foundation.dart","hash":"f975cf0e4e06eabe6c8e6134cd33b269"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart","hash":"59400db677c60e1ddb3d79ecdc89e580"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8generic.dart","hash":"00a661dfeb90c5dba43ec7e638141966"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose_family.dart","hash":"c8b1bc30159a132cab814de0d71e0462"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\scheduler.dart","hash":"3ac176a9235973980af3b75bd0c237ff"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog.dart","hash":"c6014cf91769b13fcbd60242ce7ca6c0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jinteger.dart","hash":"c99d4d9f1de256e9caa04dc2149e2663"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar.dart","hash":"186f62d10a2a42d945d94b5ba32daa28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\element.dart","hash":"d414c1f995780a939e1d357efa0400a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient.dart","hash":"983f9738507c43e2eee65120e25d0785"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_key.g.dart","hash":"04eedb8a1150a97ee060a82f95f2b91c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\where.dart","hash":"30325626c486da5b0b5e6ca9d6a6d337"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_range.dart","hash":"c54cfb081c273f7d29980b31987bf614"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\propertykey.dart","hash":"241ccb24efad22e002bdfe778f96b46c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\LICENSE","hash":"93a5f7c47732566fb2849f7dcddabeaf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_zip.dart","hash":"b296f400a068b70100fa570a6134860d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\utils.dart","hash":"8a7e3b181572ed50e923e5dc05a7533d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\nm.dart","hash":"7494ac5a5e8b9d56894cd383fa6e9d91"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart","hash":"3b88bbef523e78633182df3f70dbe5e4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button.dart","hash":"a23c150b50d79965efc47c5ed47dd641"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart","hash":"2b5f770e124b8f0d41d18ceccba29bb6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\ios_options.dart","hash":"704d7f872888ec6e9697123a180fd95d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\autorelease.dart","hash":"d2e52e362068fba5e3f86800ddf3cc91"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator_pop_handler.dart","hash":"1d7b10a04a356e2e37151eb235c2db90"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetpattern.dart","hash":"fac91a50f448265e9a9f97994e8b529e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\style_information.dart","hash":"9787d9b12ea9461874ea0faa9cccf9db"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed_stream_transformer.dart","hash":"86e0f9e302f9ac959626122751b65361"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_builder.dart","hash":"1c4127d99af22e5232df8132ae79beeb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart","hash":"0caf572d3e573a263a9ffee71ff67208"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader3.dart","hash":"e97932f0cef53e2c018203ac3cf1c7e4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\media_style_information.dart","hash":"4fe97d87eee37e8a1dddc5230ebbf9ce"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\LICENSE","hash":"75ba7e8a7322214ca6e449d0be23e2ff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackageid.dart","hash":"88956349d04ce0c5fc6ae1e89fd65b2d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_windows.dart","hash":"eb3c8293bce0e3d04f8f6ca79994937e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\pattern.dart","hash":"984f27f723ba52ab371439e37b31ca91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevice.dart","hash":"b5e211d1bb1c533a77b5638eede5479f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttoken.dart","hash":"fb64eb7ccd3a66090cd698eaebe1d080"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\win32.dart","hash":"018e93669d12c52b66204d139de58ef8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\win32_wrappers.dart","hash":"af7270fd3861278053b1c45a7b66ece3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\_background_isolate_binary_messenger_io.dart","hash":"023daeebc8de153ee091d1e3cc9508f8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_monochrome.dart","hash":"5f22b5b8aa08733c616d6f636a05f5f5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\slider.dart","hash":"294b01503572e239c505c014297fc4b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flow.dart","hash":"d35a017ca116a68758fe9e289a8a96bf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_exception.dart","hash":"b062a8e2dade00779072d1c37846d161"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_theme.dart","hash":"da23e9a23f3c0bd8f03adb30165f3f2d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween.dart","hash":"deb256229ac9a60b1f5dee744af2411c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\settable.dart","hash":"442a233329c158bcfbb129ccea0fe8ca"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart","hash":"83f2fe11c7f72d3ea5eb743f8978170f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_button_item.dart","hash":"15308b82e6b7d5df3058f8e769084a67"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient3.dart","hash":"e65733ef6887a9505fca66a22d9e2887"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_scaler.dart","hash":"13eb2b4e1e2abfcd739ea5addab1ff77"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\separated_list.dart","hash":"82acaf4c715888e486eb9d714c23b266"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu.dart","hash":"53f5ec04f6df9a78c3651e5cdb84c460"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\LICENSE","hash":"901fb8012bd0bea60fea67092c26b918"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overlay.dart","hash":"dbdee8b92f93123706efc22ba09f9ce9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker_theme.dart","hash":"e50d0f9c52ca60c2b00a076e994ce7fb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_linux.dart","hash":"153e569a429470f19962e80723cbf73f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\LICENSE","hash":"e2874f670fc80ccca43123509b557150"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\not.dart","hash":"a7c2e189af8ef0e494c5f50550ce8500"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics-1.2.1\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart","hash":"5057eb331db10cf132ee46e1f68fe99a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\repeating.dart","hash":"9a0bdbeb6a1452722cc91b80ee779998"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\flutter_local_notifications_linux.dart","hash":"bd3131f212db4084582e634bc232b43b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\deferred_component.dart","hash":"f20b8958b0c35e9bbea75a43c9cf0e59"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart","hash":"5f1b9eaff8ce12e7ce1eb00ec6656158"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_date.dart","hash":"50b1b7bf5e4cfd21e9fa7a0ec26f0aae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\with_parent.dart","hash":"5e97dbe19781055ba2585ce570bc4643"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_read_buffer.dart","hash":"fd517e61edeaf09f9e4cf9e9ba8af13c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\clip.dart","hash":"6790958a6027b5951c84e721543745a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\lib\\speech_to_text_windows.dart","hash":"a929730b53383c1207e3d75c57a45ea0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker-11.0.2\\LICENSE","hash":"f721b495d225cd93026aaeb2f6e41bcc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_import.dart","hash":"afa8ae229bc41c02a6cd9dcbe10a81e8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem2.dart","hash":"908da18a3fee181ac432b85d7097e5f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_neutral.dart","hash":"bc6418e88ab34ee846e3d4e32408b23f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollpattern.dart","hash":"d5e0952742a6404c71b939292023e2cb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_lints-5.0.0\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart","hash":"7f7a40cb54e941d10dfb719fac727845"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object_manager.dart","hash":"69c08243f2f74c58d6ad38b17bb5cb9a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\utilities.dart","hash":"121fcbdc1af81a0fd804490f85357fa0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner_theme.dart","hash":"d0b6b68aeba6ea0b5b3d483ee7f4cb6b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\localizations.dart","hash":"1e97a873901018a85c8812ec1d0b9731"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\table.dart","hash":"e13d87775c63a62ee77c103021ea3f4f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\native_assets.json","hash":"f3a664e105b4f792c6c7fe4e4d22c398"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_linux-1.2.3\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart","hash":"4213cdf8a94244f8d19a59844563dd53"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\plural_rules.dart","hash":"2241f880365723564463d0bec35a4ba2"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\disk_integration_screen.dart","hash":"f7951193fafe9047a1634686ec649135"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_data.dart","hash":"b9abba31a48a9c2caee10ef52c5c1d0e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataassemblyimport.dart","hash":"dddc2f13e029b11ddffa36413341f1b1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart","hash":"6de8733c5e01bc816fbb237842e21b72"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_buffer.dart","hash":"99760254cc7c1941d4d7d7bb0fad045d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart","hash":"b62f50ac1dc3bb09452f43e936636040"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart","hash":"a57f176872c4264164cfd424a851cc6f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart","hash":"202a4e574b65775d1c57cdd8bcaab1b1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_version_info.dart","hash":"6b943be06664ea45e0cac8c8178920b7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\transitions.dart","hash":"a20476b0c2af5cee4bf0640aab028ee2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\characters.dart","hash":"fa2a57b3b873fb7db4b8b961735e4ca3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\greedy.dart","hash":"01b051da3c61c872efd639af5fa0f4f7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworkconnections.dart","hash":"4e3b785e94de8470e198d0bda80e23bb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\epsilon.dart","hash":"b9283cabc57ae94b3c75f147903751fa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgridpattern.dart","hash":"f4b8510296da48652b91a91857d7c71b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string.dart","hash":"097e09840cc00325fdbebaacd05f4827"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\powrprof.g.dart","hash":"bbfc82fc5cadc3b055adeaa481dfee0d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbuffer.dart","hash":"1a1718d3591a292ec85b4c24e55ce2c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose.dart","hash":"a57c7d0bb0b0f3ff52fd48c953453bd4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\snapshot_widget.dart","hash":"35618929218f5482cb77a53849ace21b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose_family.dart","hash":"3b32647556f88ddd6d625ddc58c7691e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\istream.dart","hash":"3575776abdbb8b6b6ff78edda77516b5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart","hash":"59bce148eeb78b17151a78113324748b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf8.dart","hash":"0ec94439be7a3b65b67cf02ae0824af5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\variant.dart","hash":"0564ee9e759fe52b58de8af3d5d0f9b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\result.dart","hash":"051cde8121025c728b15c2e7588d8d6f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart","hash":"bb1616431e7e339d1d3ff7056d346b4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\constant.dart","hash":"176c6b2c4f4e2d64cd55df2a0dabe5e5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jbyte.dart","hash":"d1a447c33fb026db3ec5e4b6ac445551"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip_theme.dart","hash":"eb862424fb59150cb9eb3ad863a6ab19"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\convert-3.1.2\\LICENSE","hash":"5bd4f0c87c75d94b51576389aeaef297"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\string_stack.dart","hash":"aa27dfc54687394062db977707839be5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\skip.dart","hash":"e0af2f414117c942cbe5e23f4f60ba3d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selectable_region.dart","hash":"3b7079a373d8c63eff5dce592af6647c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response.dart","hash":"2a02594ad813d39d23460e2abfd2551d"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\ink_sparkle.frag","hash":"0615f9d831d9b19a15b6926d9babee1e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\family.dart","hash":"18d9d372c2f7421114cc2a2df21d8206"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\loading_indicator.dart","hash":"cfa13a81d06c256567bcf9c8474aec6c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\theme.dart","hash":"28606b06edae379ec11d2d93ebf93508"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector4.dart","hash":"25e2aff82faa45ee7c3cb05fc8aa387d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\default_extension_map.dart","hash":"fe2df60ed5b05e922df2ee9fef5cf5d9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object.dart","hash":"0cb51131f14d4d8df95aee83e4931780"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\two_factor_screen.dart","hash":"e36d334fce00f81c8efb9b4fa288f0a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\algorithms.dart","hash":"0976264b99a1702a5d74e9acb841b775"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\framework.dart","hash":"dc7c1a8573288b247063c6759a011b7b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtogglepattern.dart","hash":"3796ca959ef2c6e4bfd668640a318ad1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\exception.dart","hash":"5275d424aba5c931a30e6bd3e467027d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart","hash":"31fac5b5882f19d242724b858b97d228"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart","hash":"28f7439b1d946ef75b90f18af1a350a5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\src\\messages.g.dart","hash":"0d464f8889947907e0d2ce2fcafb9dfe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_cache.dart","hash":"1f65c98a00f4c2151338f0d803b2d1c6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\find.dart","hash":"17d3a0211da3d73d405d8730d46caacb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\version_check.dart","hash":"feb9d01ea95c554272c3263d1b5f840e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar_button.dart","hash":"e127807dbf170db96c668c840d9821db"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\empty_state.dart","hash":"6ce4cf18b9c25729d5868ca9f5dfd1ff"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icons.dart","hash":"9f7270100e64dae8750b9ae54cde56e4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_gen-2.0.0\\LICENSE","hash":"5bd4f0c87c75d94b51576389aeaef297"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\src\\messages.g.dart","hash":"e146b44d78acd9bbb61d2d9f9fcb922a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\material_color_utilities.dart","hash":"fbd82bcbc9e665b8d098f0716297aa14"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart","hash":"c29dd136dd5ed20e4a1cdf451b1f52f9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wlanapi.g.dart","hash":"30191f66ed437888e9e12cdc67d37c95"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_theme.dart","hash":"c5f413565439b173df98b83f1af3898a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart","hash":"1e83c6270f0be9dd2e6457fcf059c9a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileisinuse.dart","hash":"9f2e86f55227535568e0459c4d51e139"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug.dart","hash":"83556c46b56c94715c7e42dbda413bb0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immnotificationclient.dart","hash":"300a55743890abdcee4f6f0ac897a3d9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_border.dart","hash":"10e637b148cf0219283c32cd82247317"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\utils.dart","hash":"8986177ba204a808c603c35260601cce"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\possessive.dart","hash":"485043a68e11755920abd67f229ffe9d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location.dart","hash":"6ed688f382406e9c782f92df9e965fac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\flip_effect.dart","hash":"860a0e6b23bd728899d9bbad3e966f2c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_1.g.dart","hash":"ebf62f8040320f913d52494eab3f3dca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_exception.dart","hash":"c39101179f8bdf0b2116c1f40a3acc25"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\plane.dart","hash":"d98495bcbc301290a10e6d1dfc255d69"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dart_style-3.1.1\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart","hash":"eca9a7a317e1f0d515f9912740c592df"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\LICENSE","hash":"3cc5c8282a1f382c0ea02231eacd2962"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart","hash":"29eb69935c586ca665d0f6f7aa84a06d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dbghelp.g.dart","hash":"ec2c8a676c3ca12891e9a65ea03458e9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\jni_bindings_generated.dart","hash":"ae166113e6ff5a842f58d22d959a82f7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\listen.dart","hash":"4990e198f887619ece65c59a3de67869"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\LICENSE","hash":"038c3f869f408e1194eda71cafcca6f0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\event_attribute.dart","hash":"304fc982848b57cf13da0ec511f05ed9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_multipart_transformer.dart","hash":"531d1d96bce7aa59a6109c02ac538cb0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationitemcontainerpattern.dart","hash":"17cf81dd718b76ea3b1453b5f74e1cd9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerfactory.dart","hash":"3aa843b290b927ec2ae60e30f12b4ab2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\auto_dispose.dart","hash":"9eb3cf0f33c573aa9e8424441db78539"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\collection_utils.dart","hash":"add5f0afe8e318e91950e5725be6f333"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_state.dart","hash":"83bf0c16af93652e46e4bdf93d5f12fe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\date_time.dart","hash":"2faf9ca0d113c0ed79c6651a9c1f76db"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data","hash":"97806b975917767c55aa3332c68f2404"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\parser.dart","hash":"d1ee0303997b5b50b6e7cfd972f6ccf6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart","hash":"ea0307aa388ef4ea77725e722047e72d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codec.dart","hash":"16cc4a3c97bbfb29764163f9783954cf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\message.dart","hash":"fe4f36f2c139e1900dbda797a7e07fc9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\internals.dart","hash":"6683b2c06b0ec964286b1a54f7e2803f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\binding.dart","hash":"cd7c911bd9a71d38d369eac020542e94"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_theme.dart","hash":"694c3cc6e2d326daebadef63f0b05666"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\run_guarded.dart","hash":"ddefd207562d7e33dc44d433e0848e1d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\trace.dart","hash":"dcb1bf21d8afb364e20a47f106496780"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_splash.dart","hash":"07953249885c3b6a0f9b209da024e6c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\sequential.dart","hash":"b5519514c9b9570c951c0da186030e29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quaternion.dart","hash":"55675ef4bbddffa94d962bd52b3088ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\information_provider.dart","hash":"e0e6a22d50cab6e16266023c58517b54"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\writer.dart","hash":"a8499171c0b67ca96b9f8b0462e1079b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jfloat.dart","hash":"8b403a286f7eadba8a7c7e6ce1a8016c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_floating_header.dart","hash":"4b47948751192afd79eae2fa8917d954"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\custom_effect.dart","hash":"49971663c818be6f5c1da5fe3bdf034b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable_helpers.dart","hash":"59762d927d3847803fdbe28919a08ebb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_map.dart","hash":"13c9680b76d03cbd8c23463259d8deb1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\label.dart","hash":"0e65f16e8f270ae65baf85523fb72141"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart","hash":"5b28a1ac6249f272147929f5c2682912"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\unpack_utf16.dart","hash":"cfab296797450689ec04e7984e7d80e3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta_meta.dart","hash":"fe7e235a7623f4d325eb05394e6306f0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\comment.dart","hash":"87546066dfc566126ed9357805535e97"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_boundary.dart","hash":"39f3f867b205cc97161c2209bb84964f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoicestatus.dart","hash":"5164e5af0ccfe7dbe777bb588e91c937"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipropertystore.dart","hash":"de49c234a47c24f91be2f223476fcd44"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date.dart","hash":"5dece601afa9176d17a2f17f462f976f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\default.dart","hash":"7f30d05e05b047b274b1c4b45391d698"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\cdata.dart","hash":"a1bc06d1d53e9b47b32fbdb4d323f44d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\protocol_builder.dart","hash":"9dfee6539c8500c134b4ff72eeccd87d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\no_splash.dart","hash":"363dc40bd108240cb513878e107a260d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\elevation_effect.dart","hash":"57e787ad7ab7e659258e3a0171634d3c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\json_annotation.dart","hash":"532a272d043c3dccd91b63d1b428dac9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\doctype.dart","hash":"a0ff9321b483226cdbe4773e33779715"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\matcher-0.12.19\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_macos.dart","hash":"db647290a1e99c1beb871fcf7ec44e82"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\notifications\\notifications_screen.dart","hash":"99948786c0d9f0b9de45c1b75e5f44a7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_border.dart","hash":"24afb8a8ec6e6d1ab62702c8cc554fb1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart","hash":"8144b7908238f72cdf9bf921ec61b200"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\types.dart","hash":"24b206328a01c6923f0c599c64088645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart","hash":"09a30da1952f8931df150554b700fc98"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart","hash":"01372fe939573ea2c3066bec70222cbd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart","hash":"9b741ffc78219355087b8876a5f2f6a6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart","hash":"b6ddece86289abf66c16e08325be5e4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications_platform_linux.dart","hash":"145a18283aef042bba506a2190347763"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\stretch_effect.frag","hash":"cf38ac99d6e6daaedb2791d07af7f285"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcacherequest.dart","hash":"15ee18405ccd7752c3035b2f3b86e49f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\functions.dart","hash":"e999eca1c1c76717a74f50814d129d17"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_name.dart","hash":"749e18efee29d6925d7c55e573d3eb2f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\macros.dart","hash":"8016baf49ccbce205455e3fc0bddbb17"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart","hash":"5802c95af0b70a643e4566d6a4f887af"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_group.dart","hash":"8e15fb39d712d35c4021c339ed1822c6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_chain.dart","hash":"7ec268e37049e5c22e226c94df1776b3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\service_extensions.dart","hash":"230a3518091834c1ebaba0eda6ad491e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\advapi32.g.dart","hash":"e1c4eba9ccd9a12c58e4e531e73fcc32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\date_symbols.dart","hash":"4c94c1ae460dd53255786f0ce3b53463"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart","hash":"19061eb5c67d5853bf7a8f53406a083b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_style.dart","hash":"33a37c05fcec728f44c5280e18129e54"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser.dart","hash":"b8a405a7e5ea8001bb0ab36de015ac6d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart","hash":"01edf2016995f3fcdadc212de7430b99"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\text.dart","hash":"f52860ffbd4c6858f092292d1589d556"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\xinput1_4.g.dart","hash":"08b6eae008bb8359796643eb1a639234"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart","hash":"97fc1400dd55cb4fceecb33260f0f978"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_list.dart","hash":"5b894ae18be3e2442a34288833184ca9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile.dart","hash":"36b808e976f035411a6b13a09cca7717"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumresources.dart","hash":"2e130b0e6cc669eb69235f142071943e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\char.dart","hash":"49f5232a2ded0fd41199247ef043772b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider_parts.dart","hash":"809e8ac7250eb66ab4d713bd65f5aaae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\foundation.dart","hash":"f594087d1804ddc538f758c0059eb6da"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_server.dart","hash":"8580846ee9612281791cc377a99d0581"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_error_l1_1_0.g.dart","hash":"ef5d77a8181065ceb0e93986c1a6f6ba"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format_field.dart","hash":"53b1a2074650b8f2808e620e2b9ddc41"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart","hash":"c7cabd6637c9917d66f7c814682f8cef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\jni_flutter.dart","hash":"c60f0503c7dc9addd109be4c44197758"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.g.dart","hash":"7ff35a1db7f2b80a156d464b075a09f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme.dart","hash":"81cd0b075cd4d742a83ed1a6f4f801f7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button_theme.dart","hash":"05f74ab5ea1d7103ef8e4f9cf05caa5a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_response.dart","hash":"f29d1458f73f015dabefc27f98181f05"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_view.dart","hash":"3058d37db340224b0e712b4714a779f8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\key.dart","hash":"e3825f51c0135897809a89cf7af42c4c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\platform.dart","hash":"b92ed901e8df2fde6d4739ed5e59051d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket_channel-3.0.3\\LICENSE","hash":"e539018b40753112ede3ab43f1ee9052"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\LICENSE","hash":"092362603d55c20cda672457571f6483"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\semantics.dart","hash":"a9d4e4b3f6357c540f77101737a25e4e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_sparkle.dart","hash":"16be701d0e77cd0f89f37cbfb1bf10ad"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrangearray.dart","hash":"c81713fc58f35111f30b5ef09b79cef5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_localizations.dart","hash":"bcadd68b799bedc548c0243c211ec652"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationpropertycondition.dart","hash":"35abc3f166f0485c87a21f0fcecae69a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_computation.dart","hash":"37837bd1379e66f38e4a7775b6084d0e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier.dart","hash":"b60a2076a519fde0c9162319239b25eb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart","hash":"cb9617d35408474cec5c44f6d57c0faa"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\eager.dart","hash":"2a5ea48301e3de49528660d81bbad42c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\simulation.dart","hash":"0b594cddd30fe9d0d34a42f5328a2b38"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart","hash":"1a0f6fb989f60a34770d3667e697603c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\batch.dart","hash":"9c6f87a0150adc24004a99cb321345ef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite_logger.dart","hash":"6745a4321f65340dc91faae80415984b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\lang.dart","hash":"7e3f918d0bfe4e1806f1187481eda29c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\expansion_tile.dart","hash":"4aedad37fdbba8c7bace80a249a67ff3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\auto_dispose.dart","hash":"a3250d5fb60cc8b17997c886a67be737"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge.dart","hash":"a9f0e05b8fdef7080a8053dd02ba8ef2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\sink_base.dart","hash":"597ee0cf67b512406e619cc05fddadbb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform_io.dart","hash":"bb7e4bee2f9cca7b7e771e5ff413108d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart","hash":"d34d9b212543fc7b9be0aa2629f644be"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemobjectaccess.dart","hash":"3ce0f30d7026f6462449617764734437"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format.dart","hash":"20dc50b53035a8e953b5d4ffe6948ede"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button_theme.dart","hash":"f06285441f011c415850a378771be4b0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtreewalker.dart","hash":"034536c8c0bdfd72d8f8060ea1f36f3e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_attachment.dart","hash":"796d0d545778c85ce27a9304092b5ed0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider.dart","hash":"ef404628eaa9f15a2b25a2cf99a6df9b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_rainbow.dart","hash":"61f38162c831759dd3768aa4cf2d22f2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\material.dart","hash":"c4d6b1cc1407761dfb2b51713416d679"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jiterator.dart","hash":"5bca961ad685ab10214ea12d5a120b89"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_theme.dart","hash":"15bd155c4ace05abe4d39c725cce4f51"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart","hash":"28bfa6a255f9e9d16e0ae25511179fd2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart","hash":"a2701656bb3160ea810ab576c50cbd65"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\exceptions.dart","hash":"0400c53ca2e9230b51a6f361146dee28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\method_channel_path_provider.dart","hash":"77ed8d7112753d0eeaa860ecd9fc5ba0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\colors.dart","hash":"2ef90aee578d834f91ba85c1f44cf71c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\service_extensions.dart","hash":"f45299fdabda0bd3b2ed77068c7d1de6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\decorated_sliver.dart","hash":"22029a1632b4f7ca4e7271bff29d89c9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart","hash":"079edbcc1283bc93f993199865e3fffa"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multitap.dart","hash":"64e440b4de7121a100d0f99a8126b6cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ibindctx.dart","hash":"82c3a291bffe63fdad7d6e4bd5b0a0e8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart","hash":"c669ffa0ef13b4a5c5d951c7c677a057"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart","hash":"d48d52bc573d346cad979541a2f68329"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ntdll.g.dart","hash":"72e3f09580a88c2aa3ce838611e0a25d"},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\dart-sdk\\version","hash":"d2e911f4f90d6beb874adeab92bff19c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\android_options.dart","hash":"2d04b343ac3e272959ffa40b7b9d782c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistfile.dart","hash":"0f1d84a9023a931b4b3cda6b907d76e9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\temperature\\temperature_cache.dart","hash":"2e46417042b18a7fd19a9d6c90fce1b6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\core_bindings.dart","hash":"7f4803fefd76d9acc343598ff82f512a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart","hash":"c3133dd829b0ede654f9ac03ccdc9b4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\windows_options.dart","hash":"b4355b7f9f9e50017ce52a8bda654dd1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_controller.dart","hash":"4d7ff70b73cfe04b14f559266b5a991e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader7.dart","hash":"a60dd773b7d69b347521fb64257f9397"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\debug.dart","hash":"31cdb66ccc93a7a6b179af6b4db7790b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\context.dart","hash":"daeb052f1089d4e84d8a22acf56c1da2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\lock_extension.dart","hash":"92197f660f809dbb94c7d3d67b9f24e0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart","hash":"29bcbfc3fc36aa9f730e8760f765c536"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\flatten.dart","hash":"481d21ef07dee6f82302a015f989b597"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_field.dart","hash":"d3fc00fd023c392cb5a19d630ec45482"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\crypt32.g.dart","hash":"8898ba9f5064edff3e9fbc9889ba9dd0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\oval_border.dart","hash":"a4bd9e0add3bd13842fedfbd33ba0192"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route.dart","hash":"da1662b9c25c25360cd487c1b4ade3ab"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\tz_datetime_mapper.dart","hash":"2f6d6663f131dd0e24f37f58530342c6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\choice_chip.dart","hash":"eb1f8c19bb309d54e9efc12e5162e3f4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart","hash":"57699e53ee54d843153d1ef4dd086d64"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\encoder.dart","hash":"dbf4f1e95289bc83e42f6b35d9f19ebe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\clock.dart","hash":"2c91507ecca892cf65c6eaf3fbe0a7e6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app.dart","hash":"a73bf48fadeaf5b28dfadc67ce067e0f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\constants.dart","hash":"38a87ff489a47bc024400dc863be326d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworks.dart","hash":"6e3924fcfcaa29ba9146915e7603139c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\result.dart","hash":"6782f277d348804f26f7a748f647695a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\tweens.dart","hash":"f9cf43c94d23a1e1093f4f1cfd789d18"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\platform.dart","hash":"43003295879b7dd8a2a4c221698815e9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart","hash":"945e46eaa95fb690603786f3b0386e1f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\propsys.g.dart","hash":"c226787e49d4779d8fd575f9bf26e298"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\logger\\sqflite_logger.dart","hash":"ec42ef810171a5795d12e7ae93eadbf2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\env_utils.dart","hash":"d75f62f03297d8fada84de77f3e92373"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fruit_salad.dart","hash":"0663e41383137de0068cc7a8bd70f814"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_8.dart","hash":"5f0138a157edf46a36bd960b7eaa9885"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_input_screen.dart","hash":"f360aeb424700ec81ab3779a8e05a386"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\matcher.dart","hash":"faa18ee55924a5c65995875c94338d98"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart","hash":"a0836fe16e69a1daeee421a5dd73f761"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ole32.g.dart","hash":"5be59a094b276fbbeb0a2255d1c45e2e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\geometry.dart","hash":"6b14a70bdd2f31926c1572aa2cba523b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\result.dart","hash":"1325fce32c39a3792e3eeab612f942f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\builders.dart","hash":"dc1a141705a29df814f129c65b47b5d3"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\comment_thread.dart","hash":"b7ad782f730522a58cf2946da0419352"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\utils\\utils.dart","hash":"04f2a3236f9f0080d5571041a0cf3567"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader2.dart","hash":"9e2940d007af19bd5cf177e3be339363"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\lib\\path_provider.dart","hash":"e08429988b4639fb29cd66bfdc497d90"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory.dart","hash":"a79e2b9a182eb762fadaab05e9269edc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_features.dart","hash":"d5c54cb86a7c6b930659e867a4b2fdc6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\attribute.dart","hash":"9554d9749364a5e33fc853c08b09f076"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time.dart","hash":"e45e5a556df7d57dc9a7a3ff9b0370ef"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\widgets\\funnel_kanban.dart","hash":"3d1f01e5d64f01d4b5efd76cf609830f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\forgot_password_screen.dart","hash":"f23eb0d7ef7ed55d6331d493f0b7c625"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionenumerator.dart","hash":"e5349492be89ad5eea4187db08b2ad0f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\force_press.dart","hash":"b37ded4b59c2d4efd0802499d6944937"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\url_launcher_ios.dart","hash":"a29ba6c14a2b2f3099b30d0ebc285446"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\ray.dart","hash":"d69cd05d9de1731242d357de56893a6f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterable.dart","hash":"037df9e7342fc8b812d985c8b6e8a0c3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.dart","hash":"fcf700e37a2ca8372a19ea695ac704c8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependency.dart","hash":"1a04b09efdee92cd9f3e6c8f821820c0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\auto_dispose.dart","hash":"9ab6d0a38467598c8e1f332648cff545"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pop_scope.dart","hash":"03e34b6476f2a5b43080c9fefcefe9ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\scroll_adapter.dart","hash":"a1c59f1e780c22ec4f0e14f6a1eab0da"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\each_event.dart","hash":"5776e262e9291819ba2122854943ea6d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart","hash":"ac8dd5bc57b10e3480c7e09e9a209f69"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\universal_io-2.3.1\\LICENSE","hash":"6bffa45d429f7b71ea59f5019bb83a15"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button.dart","hash":"62cdba000bd3a2c52f31f32a38306c18"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\obb3.dart","hash":"54c7f23362a7e78be04b113d00022090"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart","hash":"9d9d9fdb1fd92d1375e2e00271605fef"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport.dart","hash":"f07906ec64450887d6ca17f705f436f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response\\response_stream_handler.dart","hash":"87061e866d20d4a66d6990c36638681f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\list.dart","hash":"69c4980a512a91477aa1a6289583342b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sql.dart","hash":"9ab11d900c41a880b39e97693f383b5d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_tooltip.dart","hash":"831170e2856529b531c8648a754259e6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\animation.dart","hash":"e76c07fd6945a4eadb2aeebf87b643bd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_mixin.dart","hash":"2676ae1a6e48da385bd3ddf0fa233a91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\chunked_stream_reader.dart","hash":"3f719070987790d062d9ec084da306a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\netapi32.g.dart","hash":"242d63b96e4a26d3b557a32d0a008a4a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.dart","hash":"d16cbe643e1b9f1d249d52de66e9e399"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\vm_trace.dart","hash":"9a7022bcfa03c67d126e948062508201"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfactory.dart","hash":"93d835e43f33ca5ed96e6e85a392c1e5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextchildpattern.dart","hash":"3d63c4213a898f6e0eb52cb39fa282ec"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart","hash":"a5df6e3153b654738dfd5a67c799e6d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\base.dart","hash":"737fc999d5d26218c34c7423fe061f1e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash.dart","hash":"4af79c5c69ccf0cae6ab710dfb84b125"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\stack.dart","hash":"cea2237f09873a1d9b1f818b1eac15c0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\unbounded.dart","hash":"a617a91b12a3156406da1d95552aa4a0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\flutter_logo.dart","hash":"494881558ae50a1d5273ceb66b43ed85"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart","hash":"1567f48c008c53e32ab90ac581eb17a5"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\utils\\validators.dart","hash":"23a2722ec06cf91e874fcb8c534b470a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\spell_check.dart","hash":"70b1e13ee34c56eeaa448a1432a0b519"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\family.dart","hash":"9dcc50108fd667c7744d5bba6b51e1b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\null_mapping.dart","hash":"4bc463f9c4b5496d8918b58070c10515"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart","hash":"55bc3d14cee7b79419f78a7f2678d6a7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\collection.dart","hash":"4ba0a4163d73b3df00db62013fb0604e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.dart","hash":"b51cea8017e3cbb294fe3b8066265c7e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jshort.dart","hash":"133db2e371d34eba2a099b23dac8123f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart","hash":"39ae8ca0fa3f0caadde0497b84eccbfe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_multi_server-3.2.2\\LICENSE","hash":"3c68a7c20b2296875f67e431093dd99e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common.dart","hash":"1ab2b4b439160093cb35c9b0c739bc0b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechwaveformatex.dart","hash":"8d9c84de01d7084606586631ac759a34"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\intersection_result.dart","hash":"0cd5a938f3a3bf96aa0d7353906eace6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart","hash":"ddd6579941605dbfd6a3a213cec979b5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_linux.dart","hash":"57d7f8362700a89d0d0c97e7d517cad3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\LICENSE","hash":"d2e1c26363672670d1aa5cc58334a83b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol.dart","hash":"405ff2b0c110ef10a33e496bf7db38a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\LICENSE","hash":"80ea244b42d587d5f7f1f0333873ad34"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxpackagereader.dart","hash":"59137da0b55aefe8a4074891792a55b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_client.dart","hash":"6b3c8cd4c0677edeb4fb8c22d923657c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart","hash":"8d23c7f8747db9d1a851ef07e5107378"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\material.dart","hash":"61f9ae17975d4d233db25ee3f27633bf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\whitespace.dart","hash":"57a5a9f535e7c37d09bab9aca685dfd2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\nio.dart","hash":"dd4b0b0cda09094ced3081f462b2d422"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\framework.dart","hash":"d63ca0c723f6a99572c806b4ec989036"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_address.dart","hash":"4ecc0e7678d4ed3bf62a04b3e383e424"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\colors.dart","hash":"c517fb54b3d66b22988ad7c8d07c6f53"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imoniker.dart","hash":"59c4492b4ff3d2e5424c1903bcb8a271"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_visibility.dart","hash":"832d4f6b469c388759ffcaf981e16f12"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\main.dart","hash":"0ac907e2256dbb32ac0aff050f4045d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\guid.dart","hash":"55bb53dd4f9ed89c9ff88c204b59293c"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_list_screen.dart","hash":"965792db4b01d58da64391842c6a9a1d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database.dart","hash":"66f280c66f95d03902082cdd2b4255e1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_analyzer_utils-0.5.9\\LICENSE","hash":"5b4c5872973fd946c49c0ed7df0cb07e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\optional.dart","hash":"7d49b944ccc5ee228590126488731a95"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\callback_effect.dart","hash":"7cf8d9762d1f2226ea94a1c8ce1f7265"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart","hash":"4326580ee93b3a584477cc185146eb2f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_provider.dart","hash":"622fb6ce7394816d6eaceb396769c76e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables2.dart","hash":"f1f175eff474684786b1b6980f386aca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\checked_helpers.dart","hash":"c668a1bfe65f14c115a3294ac6502dca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\go_router.dart","hash":"94124aa8c115b3bc8553ba80c419ceeb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_style.dart","hash":"d1dadfa45cfe290ba6a9aca2c239e289"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern.dart","hash":"8355566a31f02cb53e7f9b94d8c873ec"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart","hash":"7cbd45f5de23f600dd963c6eb31d6851"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart","hash":"ea75ea73bf570ceefb21bed44d38a168"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\colors.dart","hash":"07fa95aca6c82e2f15c0007388cef3a6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\stack_trace.dart","hash":"9a478fed4f2f15993c892e33f6fd766b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\LICENSE","hash":"6eb17212266d6f143295fbec385617aa"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart","hash":"597dc25df66b35f8b1f2ceb6a5df4328"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemarray.dart","hash":"bd08457ce7d378f126bea891f669b69b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\error_helpers.dart","hash":"ef40ba86423f614b2b841a3a11478937"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\method_channel\\method_channel_share.dart","hash":"d945f1b87d2191f38f4d677627c5e442"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\viewport.dart","hash":"3b5a9eff22ec4a007c4983c5d145fd88"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\callbacks.dart","hash":"b020749262d0d602700cd21e6f41acdb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensormanager.dart","hash":"af29a3ea1a69b956f7915a4cc29d4b89"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\method_channel_mappers.dart","hash":"5d0fb3d359f4af000209c65b873ae97f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_collection-5.1.1\\LICENSE","hash":"b2bed301ea1d2c4b9c1eb2cc25a9b3cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\blur_effect.dart","hash":"19ad609d2f555c552877714f4b07f150"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\level.dart","hash":"49f3213e86d2bafdd814ac4df3d114ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterator.dart","hash":"6c54f90e0db5f42a13be6b3efeb4a04d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\platform_info.dart","hash":"81e7d988ce6f8a20230e61cdac83f21f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\method_channel_connectivity.dart","hash":"3d18e1306d78e114f98c9dc311fbf158"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker.dart","hash":"161c0b2bf8b65501a373115d3cb525f8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system_io.dart","hash":"35c142ea243059f941a4a896a8e053ae"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\basic_types.dart","hash":"00f26750b380e279fd67c68c79734999"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\LICENSE","hash":"aca2926dd73b3e20037d949c2c374da2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\LICENSE","hash":"80ea244b42d587d5f7f1f0333873ad34"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\move_effect.dart","hash":"a9e1c7b28293ccedf0594edcf59ec4b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math.dart","hash":"4181db4115c5cbbf774171b3cde1542e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\LICENSE","hash":"fcc4d991b068e4103c4ef152baf65fb3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stack_trace.dart","hash":"bd15738d49bec303fe3d234de40503d8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\exception.dart","hash":"9a1e38007af02b923a4076ab4e989f48"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isequentialstream.dart","hash":"2d06e55a087b389063f0d5777e1d8563"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumwbemclassobject.dart","hash":"17399c5876a7f1c340f8814cbc903b10"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\guid.dart","hash":"831a91029162697310005b2ad492c0ae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_manager.dart","hash":"5f173a5c0de15909e95d3275051138c1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\basic.dart","hash":"6267a1d85ca89f88f1b31c1753857593"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\typedefs.dart","hash":"4c00fd95f493a02179f1013a29629e43"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\result.dart","hash":"4b6bfd3301413140ecdae9fd2f3db0ac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\image-4.8.0\\LICENSE","hash":"c17706815151969aa7de6328178cc8bd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart","hash":"2ea5fc004c06135bbb80e7610df0a2b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\LICENSE","hash":"23a7e2fab311012bc8f9fc2de0d1593a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\LICENSE","hash":"d2e1c26363672670d1aa5cc58334a83b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\resolvable.dart","hash":"f7329cc0811af555900320e49bd9686f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart","hash":"2228217b45cebc797d335ca823de5628"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\intx.dart","hash":"c3e3bdde1f486b799e08a1ed1b99c76a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart","hash":"3cd10797ca791a0821b3926e6a5f35e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_macos-3.1.3\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\utils.dart","hash":"e85b4f3cf370581b3ef11497a9a5bce3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.bin","hash":"0b0a3415aad49b6e9bf965ff578614f9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_theme.dart","hash":"6902970c798c00c3d9be3d38d84476f5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\logger.dart","hash":"49b829330c9d1fa06c2856f5f2266921"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_chip.dart","hash":"e439e835e5295ba822d8db4be0508c24"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iclassfactory.dart","hash":"adbacdd68acdd5e35ce91a3475a1be38"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_bar_theme.dart","hash":"46b6c3bc78aaea7e746e7525f097c370"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensorcollection.dart","hash":"c20dc5b81ea6dddfc61f66c603afd971"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\callback_dispatcher.dart","hash":"5239ca253366a3b71796f8e9d2baf065"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\voice.dart","hash":"1a8e27f4b3fbcd0df1fd0be10f303523"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\rng.dart","hash":"b1fae9295ede41ffa9f747205458d1e6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart","hash":"93219dc70f767a24408583015695d38d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\path_provider_linux.dart","hash":"8ac537f4af05ad812e8cd29f077aee24"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\LICENSE","hash":"3c68a7c20b2296875f67e431093dd99e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\errors.dart","hash":"8cbd679f40c3f8e0bd00dbbd6bfb8f79"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\typed.dart","hash":"35c9371cbb421753e99a2ca329107309"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\newline.dart","hash":"bfe2918ca374e53fa6d7f36b62298bbe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\range.dart","hash":"5e99407d87eef382375ad62495706f32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\helpers.dart","hash":"dad9796d04d76633de091aec36be71c2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoice.dart","hash":"38d7929920e46438585ed549abb3690a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image.dart","hash":"11700160ac26458c7b8f858dc756667c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_9.dart","hash":"e20355dd45521a6de91669be6cbfb3a3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart","hash":"60404027f0989ff65bec1d1afe1b3866"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependenciesenumerator.dart","hash":"21bea147ac9531ac715cd99a07f55866"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_web-2.4.3\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\ascii_glyph_set.dart","hash":"7050c8c94b55eb51260ca54708b460fa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\type_exception.dart","hash":"d39becdaf9cc42e3efd0c9cdf0034ac4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer_theme.dart","hash":"4b59175aa026b6fca1ec88860132b3e2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\transform_empty_to_null.dart","hash":"579bb0bd41c172690d80937bc1ce3b4c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart","hash":"a65b42d17e5fb18d7a4677b1cf7a580a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcondition.dart","hash":"0469c2fefb6084f264cd0df8bce7263a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser_base.dart","hash":"39348131fc86fb08a42dd6b2d1b16bf0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\flutter_local_notifications_plugin.dart","hash":"c9b70f4004e9ec7f0856ecc0e45430bc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart","hash":"b041b21cf2748b89bf2d86fb125b1f11"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lookup.dart","hash":"f2698cdf4b07ce88e4996e23f26cd0da"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\word.dart","hash":"8adb5d78a35b1e7a4653c7ad239bfdcc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\consumer.dart","hash":"f28a95b717859fa14ea8344e766e7fb0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\binding.dart","hash":"3f01af140bb202c673d2e8ac00cd9c58"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\predicate.dart","hash":"5cae30214f9509b4b47641f1d38b7fef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\types.dart","hash":"4a9817f509bb8eb7192a89fa9aa015dc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_parsing-1.1.0\\LICENSE","hash":"96ed4c0b2ac486bba3db2c5d2a96afc4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdeviceenumerator.dart","hash":"8a2e692d7adcf4c9e0bd0f85979ab7c5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestproperties.dart","hash":"25ff828118233f5852e97c3e15c2a5da"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\group.dart","hash":"88dfc3805839516a8f89ec1a963e0f08"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_encoder.dart","hash":"ff402ced5472590045b91c0f30e4b089"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart","hash":"60109ddf7e2c458b410cbb55fb79fb2b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtablepattern.dart","hash":"6a38c376b8edbead42348c54f9f12420"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\cupertino_focus_halo.dart","hash":"b842bb3a72f625b3767794ccc25e6e23"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactorymapping.dart","hash":"7eae5454728dc152e90d36cc6b715544"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\single_character.dart","hash":"8db9443001d816c1f89abdf5bc0e7c7e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\visibility.dart","hash":"53e9b61b7396a9fd3a94e7b7e33dadcc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_platform_interface-4.1.1\\LICENSE","hash":"6e15c47981e2e43ee17849a222e33b76"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\box.dart","hash":"9297b44982d52dd6e4fa751a8032abdb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtexteditpattern.dart","hash":"77fe24649991a149ec3886147da46e40"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart","hash":"2285a845b6ab95def71dcf8f121b806b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\parent.dart","hash":"210257ed62edd783098ed34d7cfb0204"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\binding.dart","hash":"0920bb7ad132c49aed7f943decb1558d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationrangevaluepattern.dart","hash":"32621d3d5949612fe2c614d37bfaf7e1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512.dart","hash":"d8bc65f055ea77fb51c719f8239bb878"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_navigator.dart","hash":"6a7f49ff645804c67a62656a0046ca5d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_writer.dart","hash":"c932575d5afb22daa2456a44889b3cdb"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_list_screen.dart","hash":"0d0fe87e78a361739f89e10ad6e472ba"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange.dart","hash":"46d014f5f4ff404b81098da9b003b770"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\subtree_selector.dart","hash":"ef93f78a8a380eeade385040b1d075c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\core_palette.dart","hash":"5a11d4662fc61ed2bd835a4e6bb0f47f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart","hash":"6c0b758a4a7b8966ccbd64932d1ceefc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_native_splash-2.4.7\\LICENSE","hash":"087f211902225140a323fc8295c9ff6b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_controller.dart","hash":"30b3454341d40c187ec21020db3a495b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\lib\\state_notifier.dart","hash":"5bc3c944f62b4cf5d382a0c0e9b7e09e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\stream_transformer_wrapper.dart","hash":"b9d74f9b99fed32e71f391bc43251c63"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemresources.dart","hash":"47eb0e2b093b486abe563cf677b04f31"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_literal.dart","hash":"8388d5e13155ebde873438c26dc4ca33"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\linear_border.dart","hash":"82509444e485e0132bb19037ec94eb07"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string_array.dart","hash":"dce5e400c1f0958583196f9db05de7b9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart","hash":"5bce9844f08a797bc490d255999c44d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\tzdb.dart","hash":"01c25b2dabe912c532a94956c2e40c8f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\span_scanner.dart","hash":"87bcefcfff19652ad296ec7005799840"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap_and_drag.dart","hash":"88f7d904c8290ecf9806bfaa4eed2ba6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart","hash":"b4285b9bbc77e4cc655cd8af92485b80"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_number.dart","hash":"c679024d7048e142ec507a2278764161"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\oleaut32.g.dart","hash":"d36205839f51ee14bc2d832726c52853"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_edit_screen.dart","hash":"4000f838484ff00d0994bdc1d215d359"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart","hash":"c8fbfde647968a9750131e39e57d58b0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\platform_exception.dart","hash":"89ca6560d39efc4e7a136aafd44f8e49"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock2.dart","hash":"286726a4ae635c3cb149cd640c3c096f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\constants.dart","hash":"0672d853d5097a03eddc7dbe558eeabd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\grammar.dart","hash":"9be7f7af9a9eee6a84b8b3892e567a28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\url.dart","hash":"13c8dcc201f970674db72fbbd0505581"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\flutter_secure_storage_platform_interface.dart","hash":"8dac3815609f98dfefa968bc2ea4a408"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\mime.dart","hash":"6438480f29034a2c6acd5817c656d94d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationannotationpattern.dart","hash":"d7be13ee7803d293bd92452e5ef3da27"},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\dart_build_result.json","hash":"eec1dd105eebb8dae5c271e94f37e82a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart","hash":"8c1da8fe85a78738e78bce8ebe3ccee6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange2.dart","hash":"6905ddd5343384c6898473c3d0a553a6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\objective_c.dart","hash":"4be027cea386e739ab623a805182646a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio.dart","hash":"431a6eb92e625c69732232c905c8b91d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\helpers.dart","hash":"25feac2cd9c96cc475403e601757cdaa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\constant.dart","hash":"b31d8b7fb97262fc5eb62171864c5c80"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_apiquery_l2_1_0.g.dart","hash":"71eaaef10eca13dd60c5459f65db0e72"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer_plugin-0.13.4\\LICENSE","hash":"e2855a4f7db421253212d56a277c54a7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\future.dart","hash":"443fe4357544b85c13ef051cf37a602f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid.dart","hash":"49d6d829ae481b2570a290401389d149"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart","hash":"c87e92035314a4d3e52faf886355d0a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comdlg32.g.dart","hash":"cd103a8b0a9727840f3bd8bd985ad677"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\ray.dart","hash":"81926da83d9ea41cd5ad389174aa96dc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation4.dart","hash":"d8b980603638367071e1f1c256ebd56f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\utils.dart","hash":"fab8d6d1b0e81315a3d78131394d31e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinspectable.dart","hash":"4a83689a30f6283c87f680b4c54bdd91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_platform_interface.dart","hash":"022ddffcb01934fc1b0912fcb38de832"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\lazy_stream.dart","hash":"1b3ff4e1a515487aa9ce23ae7fec0100"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\LICENSE","hash":"8f29b74ba6fa81721ca1cd98cd39ae4d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\word.dart","hash":"18e902c0d484a6a2e0d68837fc5f003d"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\workspace.dart","hash":"496db2c69d4976328873333551077fb6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\reflection\\iterable.dart","hash":"bea1f59f6923a9f56c6d7b785887caab"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\lazy.dart","hash":"c55ebccc440e68cd5b9553b5cadb9781"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches.dart","hash":"5ba6e004392bbc498c40ccb026b0a845"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_data.dart","hash":"a8a7af5aadf8748e4bb6a28b08be67b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\error_helpers.dart","hash":"c83781cf0c38883486f707cddbb96773"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapters\\io_adapter.dart","hash":"21ceca6b2a9506768e08af4b33e9879f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_dictionary.dart","hash":"40156e00b5f6a885cbecbeb24e74f299"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image.dart","hash":"1c6f4bde2f41b6d50498e3026f24dd1a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart","hash":"6cb8f5330e475639e0972e210094eaaf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbyte_buffer.dart","hash":"3b16ecdd5d54828bc025cb734031d11a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\initialization_settings.dart","hash":"150f91352c1070fd5f15a65ba10e9cda"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\actions.dart","hash":"d0529dc5607a93f7ae3794cf396953a2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_sink.dart","hash":"7c57a9163e2c905ac90a6616e117766f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher_string.dart","hash":"ec94194f35d48443f468a3b06ef69845"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelementarray.dart","hash":"e7ee3c364551618835ecb4e3afe065ff"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart","hash":"ff0c28954cbb930913ed52a41f11189a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart","hash":"aff356351126de3409e033a766831f87"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_web-1.3.1\\LICENSE","hash":"6e15c47981e2e43ee17849a222e33b76"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dxva2.g.dart","hash":"9bbe69dd9a1b6e7cd87210c8fc19314e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvaluepattern.dart","hash":"868fd1ae52dcd191d04c90dc4a26dfac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast_list.dart","hash":"cbde849a0d8b182c6b30098c330308bd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_theme.dart","hash":"379e8b5009f9922662800bce4a40fb6f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_transformer.dart","hash":"45a20da2b86984fa0b29030dd190c75d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\restoration.dart","hash":"5d09262a3e0ca19a25f44e0335d37637"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\person.dart","hash":"a0f12d72bbc64d6edba6d1174d5603e9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jlong.dart","hash":"a2af4cd8f82efdc948caa14f45b9fd70"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiostreamvolume.dart","hash":"a88c6c3bfbfabb9924b6b0c3475f45b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\event.dart","hash":"1a7fe7a35dbd168a7f2e10065f4a3158"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\funnel_status_badge.dart","hash":"f28d182c1372142b6a29e43adcfa8339"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator.dart","hash":"2ad6e7a63593e3a472515b373c9aa8e3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart","hash":"8269f2342a47cc46669c8b5262876866"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\resampler.dart","hash":"b4e737c00450df676724cdc880825116"},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE","hash":"7c4bc9f9bec60c0636f78923ee1d4e6c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf_web_socket-3.0.0\\LICENSE","hash":"3c68a7c20b2296875f67e431093dd99e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart","hash":"c23d3ef5560b43a8b8f04a3857bd6b1b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\animation_controller_loop_extensions.dart","hash":"6f060a03e28c25d797360a2375efa878"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_sysinfo_l1_2_3.g.dart","hash":"3d2b72757d0604ae307bd71ceb16f6c0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart","hash":"a46436908bedbddc369b95d0eb67c738"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\shader_builder.dart","hash":"0e01c8fe91bc7e95b9b3244d2020e07c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart","hash":"221f729a18a7fd7d280e87a08cf7ab79"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding.dart","hash":"5f5c07df31f7d37780708976065ac8d3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jprimitives.dart","hash":"25e4e5d3bc90a692c908c5eedaaaa97e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector3.dart","hash":"1dd695066bccfccf510bb80b2b137ad0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\error.dart","hash":"a10eafbc71350955a16e4e787402780b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\internals.dart","hash":"5c4a5af039aad32f5ac9bdbfc1536af4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport.dart","hash":"754560d00f3c24825e656e9d7e03fd6a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\base.dart","hash":"0ab8c6ae2a539e1eee8cc8e4e7cac2d1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenserex.dart","hash":"1a8913505e5275e2ead5a2e0752d1ac6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationsynchronizedinputpattern.dart","hash":"dfa5338b5b93f9705e9f756dc0327549"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart","hash":"309567ad87eda6c4d2933dbe4250d136"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart","hash":"4bce21ce9b0374571d7d8a49d4a0707e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\wrappers.dart","hash":"21e56afda1f096f0425a34987708ed56"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfile.dart","hash":"9147a0ebdb209d3da9ae7cab703710fe"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart","hash":"30ab21a111fb8d1e3b9c67e83fbd9efa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\sound.dart","hash":"58f14973ee61401b0bf79de491dd1e69"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\definition.dart","hash":"f0cf3060fe907fd075c49261e69b477c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\warn.dart","hash":"474476ae5db616e0ecf5e488efa202f7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window.dart","hash":"5d142a0e36f1ebc5b5f2a7d03a3c6e1a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\colors.dart","hash":"f3747e025d835d0ff5cfd904d925dea2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation.dart","hash":"73d837564acafc178f5bf73dc50994e0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\router.dart","hash":"586f82935199530ba7ff15a9a7cbe00c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile.dart","hash":"b6eb01fa913a0828787c31a1a01939fd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\adaptive_text_selection_toolbar.dart","hash":"1eefc5159733d48f56cef3c8af7b4c87"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\error_screen.dart","hash":"72d27451431aeaf0b4f073a66bacf00f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi.dart","hash":"68634d4df864077f507d84d92953a99b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button.dart","hash":"af6f0ec90bde68bca524edf6a9270e54"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_builder-4.11.1\\LICENSE","hash":"e539018b40753112ede3ab43f1ee9052"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\utilities.dart","hash":"c18ab890f45960c7227edee678cbdf70"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\material_dynamic_colors.dart","hash":"9cc3bc193f4ba15acf07b6b1d46d879e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_parts.dart","hash":"09e8efdb71459824758d4bcbe6bdafe7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\utils.dart","hash":"e8c1fb168963c9e062a369d72d2dad6d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb3.dart","hash":"ec3a274c8e6537ec92c8d5f877a670ae"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart","hash":"34db9d7c9ebc27ae8cf7b0284f83365e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix3.dart","hash":"7711f4b6c3574cec77169f2d2c35ee3d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\pub_semver.dart","hash":"5d10ebcc18f13e0b7d4ba4f8b3d2eae6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\hct.dart","hash":"d75fe23c75429021b8f7fe4e57ac5d49"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterator.dart","hash":"accb24637ddbe55d7a3f76e4618bdd22"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winmd_constants.dart","hash":"16115596ace5bc18b10c61743655c625"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\constant.dart","hash":"84fdc97cdb402f94c301f5154682112f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wtsapi32.g.dart","hash":"da654b6ae25dd581a1b5f1084d769c91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_0.g.dart","hash":"873f842bb40bf6525129af58dab2e62d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart","hash":"84bf57329e0844bff959588b675ee251"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileopendialog.dart","hash":"54b556c56a02a636de1790f953f298bf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart","hash":"949628e68d078ec5a0a3f998c026d556"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart","hash":"905820743296f664dcdf79064ea08aa1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\debug.dart","hash":"9bdb8226a64b47b9b7ed09557fa63ee7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart","hash":"b76c005aa044aed1637709e0570a0113"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\undo_manager.dart","hash":"c676aa7c12f7153ddea49c1316ea9dee"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\selection.dart","hash":"4171ccc0ef5ccf7a3355589667cc0450"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\digit.dart","hash":"fc5bd8041afab0229dff18f2011a51a5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart","hash":"4bac4761db1aa945a1bbf1db8c88ef92"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\custom_transition_page.dart","hash":"bd81c6cc5eb829742ceb3a955cd852d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\path_utils.dart","hash":"228413c644cb471229965818da205c6f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\picker.dart","hash":"97abce4f63be03d0be5b79cdae97fb9e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\binding.dart","hash":"af985de6a8ba714f7841d5c113505205"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file.dart","hash":"d96646e5f342c3ff58625f7edeb8808e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown.dart","hash":"67fc3252c5cce2788c332809678ad2d9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_children.dart","hash":"7c666bff17f2cfae821f93f0c5e66a64"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jlist.dart","hash":"41540e398bd3cd471052b5b4ae735519"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\data.dart","hash":"d7fab9eeba6ce2b3fae0a93d5622ac93"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\plane.dart","hash":"fe0f3503d326c72bc31945d24f76946f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\physics.dart","hash":"ffd7e9991334466f08df7afe0c721048"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\normalizer.dart","hash":"bd502c5f75cc8148d708eb3e01c02765"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shared_app_data.dart","hash":"c42e90dc6ffc511ab7c13ef0cb2a26dd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\fade_effect.dart","hash":"9b97c69821fcffb65a844fb60bc2a4d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\radio_group.dart","hash":"7c90678e488e43e059394cb44fcf4b0d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\async_selector.dart","hash":"c050fb9d5c851547735cf2c46d8b6288"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_zip.dart","hash":"df699735e3bcd730f16ce377d562f787"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash_sink.dart","hash":"523ed6788c525699c2e2d6e46531a727"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_set.dart","hash":"4b5d82ddeb09bc46ae0e980616ce0109"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\priority_queue.dart","hash":"34a4d340931147322eaddc77fdc65c22"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile_theme.dart","hash":"075ab668569c4b788afdcff8d81027ae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_map.dart","hash":"700328ab0177ddfd9a003a8c15619c1a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\transaction.dart","hash":"95701ee376845a2050d29814b7acc7a4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinitializewithwindow.dart","hash":"0748bf03bcf37edd1d571959e45a5cc0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfolder.dart","hash":"561daa1b637bf14aa167a49b8fc3ce6d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\continuation.dart","hash":"95adecf7ec0db3c154665406582e0513"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\about.dart","hash":"62ad9c129e91d2abc0d91a21502b8549"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip.dart","hash":"46be5e56014db4fa892e3a949b0904e7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\character.dart","hash":"ddce6034695da8c5dc36994409d26189"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\macos_options.dart","hash":"ef56d0c30c2ebbf770de5c7e9cd6f6a7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern2.dart","hash":"1dfa85bd16bf08ae91f9cceb02ef1563"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\serialization.dart","hash":"003151b5bb4558f1aa0f19f3df7a951e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector.dart","hash":"e8911b74c8d90dfc01657354e57d0fb1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_tree.dart","hash":"24859dec1c12b4c2fdc95d38eae72d1a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart","hash":"845d1a208239b202dfdd9191d3135724"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_enumerator.dart","hash":"d3b9d47acf4348262c7c16ba99cb7412"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellingerror.dart","hash":"c8ff0e27e7c87256a90d8a3ef24be6ac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\conversion_sink.dart","hash":"efcbc6fd4212ea81281561abddbf29f9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\object.dart","hash":"df46c653437bf00620cea97344801eb5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\method_channel_speech_to_text.dart","hash":"d006dde8fd90189f533f571d02092a92"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ivirtualdesktopmanager.dart","hash":"ffd004f95154cc4fe026271fb8aed8cb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\parser.dart","hash":"6c78f0d015627004c642ba4e7926ea9e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider.dart","hash":"d5b1d01f918c452585a990bba4c2b919"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\tariff.dart","hash":"7a90c412256380506eecf47a27178c9a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\declaration.dart","hash":"79198336b26da3116eb3cf2258e9f72b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\service_extensions.dart","hash":"ba0c8dd8a234a449050e76d22738480f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts\\MaterialIcons-Regular.otf","hash":"e7069dfd19b331be16bed984668fe080"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action_option.dart","hash":"be2d4c688f4ca84e68eefd04fe0ed129"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\typography.dart","hash":"ebb87ebc9069065977905a746c9b58e1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellservice.dart","hash":"b92ed7d96a5284441953017edb47f285"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationboolcondition.dart","hash":"7d8e8a43fd286d637f95a0510b0d3c84"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart","hash":"a2cbfadb5b6c248502caa312edfacd90"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\tolerance.dart","hash":"a481b9285f5d63f04e3b3e3fc2a6b44c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_transformer.dart","hash":"e82a9b67ba33ae635b9b083ef147fb9b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\inline.dart","hash":"7cfb88f7da0c2022734fb4c438317d95"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket-1.0.1\\LICENSE","hash":"274291edc62b938ad94e61cec4a14bec"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart","hash":"1c33828dcd05767f74296ec81c434a41"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart","hash":"7185ead1c4c9a77b194615cefab7b748"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build-2.5.4\\LICENSE","hash":"e539018b40753112ede3ab43f1ee9052"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart","hash":"13bceb5508fcefacc9ed46137d43844e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\file.dart","hash":"fa9ae6c732442615050e9a8b5f758a2c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_5.dart","hash":"1e4da3528271172cb17b59a72a37a57a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart","hash":"9c47ee20b0bec5232194ccc58e9c10d9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\parameter.dart","hash":"08b1358e505b0414dc60489b750ba2b6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\background_transformer.dart","hash":"c3ab437aa0b03081adbfcdff7755b358"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader4.dart","hash":"5a65f8839771af0fad5b2cf647703264"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\box_shadow_effect.dart","hash":"46c7ae5490a6be7f2a049c4d63947eb1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\schedule_mode.dart","hash":"9979b67c6fdb803b55c4628af847ad4c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_queue.dart","hash":"d6f045db9bd5b72180157d44fee9fbfc"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\theme\\app_theme.dart","hash":"fbdffd3446228c3ebe98da002c72cdae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationinvokepattern.dart","hash":"942a7879522bdf82258a3383893665a6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_icons_theme.dart","hash":"04f8b421d5eb5043e825cd90ce965dfd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart","hash":"35dad89aad6233323de7de29603c8779"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\builder.dart","hash":"9e5f67e1d8edbcd97531a8377e706d71"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\title.dart","hash":"d85ee275d6d507b9d66f4c2b0be0cf55"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512_fastsinks.dart","hash":"04f5ef7c69c00972df33379b395df1b1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer-7.6.0\\LICENSE","hash":"0c3ca74a99412972e36f02b5d149416a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_peer.dart","hash":"681b70272ec68e757f2394c9e7fa9398"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_tonal_spot.dart","hash":"da57aefc2c06656b68f2bb2639e78d33"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\score\\score.dart","hash":"4f05e8a4424e66fedd1798178f3fbfe4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu.dart","hash":"94924f12fa7b796f938e6e2889ce73f7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_array.dart","hash":"f5c5c30697f88cc221f8628956b28719"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart","hash":"07230264b6ad4306fed087103930fd35"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\path_utils.dart","hash":"e335de991d295627ccaabe152db13f68"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\always_alive.dart","hash":"ae4469331dace367e6fb978dd7b7737e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart","hash":"1d2690772afa35d8cceb0ee976c0874c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart","hash":"2662f3733381d6d79c43406d15366240"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ichannelaudiovolume.dart","hash":"623a5dbc96b4107a93ef35eb90184bb9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iprovideclassinfo.dart","hash":"74801cb491652ec4ce96fe1f4646836a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\motion.dart","hash":"c2593e65f1a2367d83f0668470ab5f61"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\speech_to_text_platform_interface.dart","hash":"c3222af7cfe52a6fee04d1bcbbf52bc8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\debug.dart","hash":"136b08c4413778ae615af5f45d39ed93"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\autofill.dart","hash":"1c23614b3a58c2cc762d1a8d9b668f3d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version.dart","hash":"f8e8ef6736cd88fed6f2b5ab9b5919ec"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app_lifecycle_listener.dart","hash":"59f3befbfab8a823bd8254bacd7cfca5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_body.dart","hash":"c26b7654abc187a236c2d353b8e9dc69"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart","hash":"801fc719bf0a33dbbb7b4cd7ffea9071"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\math_utils.dart","hash":"e4ee21048ab83cc50d61ac3784afa9f5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\messaging_style_information.dart","hash":"017129b89f3045aa21d9a8032f5dfec0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\logging.dart","hash":"60fd6d17602ae0c1d18e791d6b1b79cf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart","hash":"831b750639e83372672565fe47d9dbed"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate_list.dart","hash":"e2368d925d056674e11f6d6a98ca995d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\imply_content_type.dart","hash":"9955b767fdde0baa759d3431267e5ed5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemcontext.dart","hash":"ecca8d7a94b7a01ee70af109474706b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart","hash":"90f13e00da93a85fd91faa6d3690590f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isimpleaudiovolume.dart","hash":"a064bc8b49ee4e47fd7b996364a8469e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart","hash":"89db2a81afc124b1661794f9e43252d0"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\disk_provider.dart","hash":"0e088fe1d0cc2ca8349ce2050e3a72c0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart","hash":"034c9a74f518b43df9ce8af9343c11cd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart","hash":"a804030c1e487e06d01f8d87c2ccf38d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\star_border.dart","hash":"babbb3f671be31b0873312c521c475b1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestospackagedependency.dart","hash":"30bad556275cf4f7a39d50f698375871"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart","hash":"825b4e65b06dcc1b8822108f596b56b0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart","hash":"a034129eebf55db99d756d8271a91c97"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\LICENSE","hash":"387ff7f9f31f23c3cf5b17f261a091bc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite.dart","hash":"5c96fe82a9bf2dc00db9d93c2c0a41a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\labeled.dart","hash":"715bccb8e9ba9889573a60bf0e457402"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jset.dart","hash":"6638bd2385fd6ebb1a4f1cdbbb2f3969"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart","hash":"e0d43fd1f12dad7d0e992390f53c4b7d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\uxtheme.g.dart","hash":"14ca92a49cc066f7dbf04357098fef9e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterable.dart","hash":"67d16e841606c4e5355211fe15a2dbfd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart","hash":"424a329d443a5c28fbddf8f9b7ccd6ba"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\LICENSE","hash":"5b388500640099f7c700bff344f7bfa0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\reference.dart","hash":"9a406aa6da2060e742c7440f73659eec"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\crossfade_effect.dart","hash":"831f10cc3a34d37027e629ec7f71f563"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any.dart","hash":"3a1d79b051bd693ad652b0f905ff1588"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\lib\\sqflite_android.dart","hash":"3d09396dae741c535c293314adc09565"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effect.dart","hash":"4f1f767acd1c594d93de02e64baa085b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_sound.dart","hash":"d41266a023506a636336e4579948d98a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\watcher-1.2.1\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart","hash":"cf568490e5d5611456b13680fc1879a3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_color.dart","hash":"e0469000d5e6f512d2fccfd97145c727"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\string.dart","hash":"a1f47bfa90f0153386bbcd0c4b16e09c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_transitions_builder.dart","hash":"41779ac2d34c473debfc06fa1fd8e35e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager.dart","hash":"53ef1e482a9021fe353d68c9f8a1affc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\link.dart","hash":"c36f00a660d9aa87ebeab8672ccc6b32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\jni.dart","hash":"83dac2837d1d165e262ded0d509dad38"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\text.dart","hash":"d3de5e8090ec30687a667fdb5e01f923"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v1.dart","hash":"a22d810ba989505f23b6be0562a04911"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\http_date.dart","hash":"fb76e9ed5173ac1ae6a6f43288581808"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\listenable.dart","hash":"a5bfe2d6591e761bf3c5dc0cd4ded99a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\LICENSE","hash":"a37f990d04ff900045c5ccd3c941f5c5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\cam16.dart","hash":"7cb71fc5981509df77a8edc6f092f688"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemhiperfenum.dart","hash":"adebe1537e162fcbe4404ab29e94fef9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispvoice.dart","hash":"a47b8729b72b77cd6b5716ed37807a11"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\LICENSE","hash":"7b710a7321d046e0da399b64da662c0b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\connectivity_plus.dart","hash":"9b43d6f9384a837bbd0d8474e2365c7a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner-2.5.4\\LICENSE","hash":"e539018b40753112ede3ab43f1ee9052"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\value_utils.dart","hash":"91921fef1791885b747a338372bfdede"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_visitor.dart","hash":"61e938fe770ed7331e39f1dda1b64dd4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement7.dart","hash":"f05adccad12249a4f175efc9b8abfb37"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\foundation.dart","hash":"3ea9e90b1b7ea7dc0acdb26f45a3d632"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v5.dart","hash":"ec861ff382ac91de0423cdbad2bc79e9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\num_duration_extensions.dart","hash":"5d4ad6ba64e70985334d2403cee52bc1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerchangedeventhandler.dart","hash":"0e619c36f088b986b65eadb12698abb8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\colors.dart","hash":"b62b9e4874beca4adb96d6ebfd8e8dfb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration.dart","hash":"6da099b31166c133a52bfa3ab7a1b826"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\empty_unmodifiable_set.dart","hash":"0949b8197a6069783a78f4bb0a373fb0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\checkbox.dart","hash":"86c831032521c6aa061fb1b873692e93"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\and.dart","hash":"1e9ed9cdf00b9449d9b72dcd00add4d3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart","hash":"375378eb6cf9297d6bcfe260059193a8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\path.dart","hash":"157d1983388ff7abc75e862b5231aa28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables.dart","hash":"02b96169889bac260344fa44343235e2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\nodes.dart","hash":"8608080cdfc143d462b0f9947dc0d7c1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\mutator.dart","hash":"e105e8d3303975f4db202ed32d9aa4c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\noise.dart","hash":"14ee798b10cb318d96667b32b245f21f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\letter.dart","hash":"4165baac3466972c71160f4aa15cd185"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\accept.dart","hash":"740f17823564c3c7eca15bca5c110e17"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file\\io_multipart_file.dart","hash":"89d33d0234d19d3c731fd91e404d6a05"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\breaks.dart","hash":"3dd13158e97d592fc8a1ca4a4109876f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_scheme.dart","hash":"b7c07fdfc8aaa762f93fbaa316f728b7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\not.dart","hash":"6bb47d3d823202b76bef61c1ccce067c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\ffi_bindings.g.dart","hash":"2e4ed6d32990cc6890679bc3106091de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\base.dart","hash":"8e16702463aaa9f1da9da189aabae66c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\enums.dart","hash":"f431b0adea8b20849685931cc40e3915"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\map.dart","hash":"0164a8b5c6e9dc7c80e1c3118804e959"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider.dart","hash":"332fc1055d849f61ff8cb6ab6a919d1a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\types.dart","hash":"003f7e979253f87844d0f222365ef6e8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspectable.dart","hash":"a8d03ee07caa5c7bca8609694786bbf0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\char.dart","hash":"e72dfdd64a9644296cdccf5ed0014b38"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animations.dart","hash":"7fad76f2efd7c1ca00d133371a858957"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\kotlin.dart","hash":"a5cc220cdabeb76d85c3b4dc5a031ccd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformer.dart","hash":"49dba21de16234aaed28f8fd898543a7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_well.dart","hash":"c765c396bec265400198de95010b78d9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\contrast_curve.dart","hash":"82e64569c28ce30a19726e5c108b98bd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\x_file.dart","hash":"10fc2d0e5d04abfdc83363ce6cb6fe91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols.dart","hash":"6c1b7903629a7ad4cb985f0898953db1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expand_icon.dart","hash":"064b2b355879e55d83ea0844d55cb10d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\then_effect.dart","hash":"6f731bf22ec9178d15aabbcf3191af26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\async.dart","hash":"c9ce5d23dc55a2e416a66ad883081c57"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\named_entities.dart","hash":"c7e489fa5d00c1717fe499f3845c2abb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_database_factory.dart","hash":"b2b96fda3b5d147408ecb71c2bbe73a7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_content.dart","hash":"29d2a4744cad0979d4cfdcdc2c1a6ed4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart","hash":"b23d25ac5853c83cde0f5209e6b16ba1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\share_plus.dart","hash":"e5bcd7a024c4e2ae08c2090eb3188117"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\extension.dart","hash":"ef82a025843a9945bb252078a9754fa4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\undo_history.dart","hash":"e7ca145d8d308187bc0127bd941b1759"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\arena.dart","hash":"8a61c7c4e99012849616db63dee00a56"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\unicode_glyph_set.dart","hash":"cdb411d670a094822c46ead81fc1c4f7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material.dart","hash":"e2f190622bcf6d345dc219a23d165479"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_parent.dart","hash":"a7ac3293430577fa9c028b0df6607fa4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\intersection_result.dart","hash":"866257a42b6b721549b351382b365c47"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\compat.dart","hash":"75e9e8da5881b6c2ebedc871d7bbc064"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_flutter_testing-3.0.10\\LICENSE","hash":"f721b495d225cd93026aaeb2f6e41bcc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\_fe_analyzer_shared-85.0.0\\LICENSE","hash":"fde2b1b7d744e3606529be50acb7fded"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\type_conversion.dart","hash":"032c93433e86ca78b8bb93e654c620e8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed\\stream_subscription.dart","hash":"63190b810e77cfebf3de760baaf59832"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplication.dart","hash":"bc01545a1cca050f2067c0b6163a4755"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\slotted_render_object_widget.dart","hash":"f43905031af706d47bbc7474be876e65"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform.dart","hash":"17488cbfc8b9ee2e6e5ba0229d7c21a1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\service_extensions.dart","hash":"5af5a2fb59f9c015abbda254a35ea7a6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\utils.dart","hash":"b072cbf89d933994e62e5dcd85904f89"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_notifier_adapter.dart","hash":"a68ab99598e72a476132676fc97db138"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart","hash":"c50f12ff54e3d508dd127fa9527d2cd0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\path_provider_foundation_real.dart","hash":"ac01cea599146293f3f31bf7e74f20ba"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\options.dart","hash":"e64d63aabc0975a7e9fdb384598c2f8f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart","hash":"8ea7a3c5835c772b1ec522d7a9a2f3f8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jclass.dart","hash":"bf63ca39ce8b824fac21a27027981699"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_io.dart","hash":"63d514a9a3ce059cdad1e7555c6f78f6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_adapter.dart","hash":"9bc97679b42c8f9d40f4404ed4c09c7a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart","hash":"3506be7f282b7ad6ccfc4545f60a102a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection.dart","hash":"e3a6ed5db61fa0508b100c7de6e6b3b7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\patterns.dart","hash":"9f58d6e1075d496f55361c6c4131d8cd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button.dart","hash":"3ed75a2d11989988d6b1ccbd0e6e4192"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\path_provider_linux.dart","hash":"b48ba72a2d5d084d297c3d78e351036e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_maps.g.dart","hash":"feaa27101434fc1590c19d42ec8b407f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\workspace_provider.dart","hash":"8fd3dcb7f8cb8e00140c18d63a6f6563"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jstring.dart","hash":"5b93f82cec5bee5a9d1fd45af7925f8e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\consolidate_bytes.dart","hash":"b4446a7a4d053aaa35a7bc6968b4794a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\options.dart","hash":"2144f1538d27dd9b29dd135d74059120"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\types.dart","hash":"ce0d3155596e44df8dd0b376d8728971"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\login_screen.dart","hash":"cf36475a46446a35cfe633a6bb7bef3c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_value-8.12.6\\LICENSE","hash":"b2bed301ea1d2c4b9c1eb2cc25a9b3cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols_data.dart","hash":"f176d4d0e0b6d9e454dc1b0f0498507a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient2.dart","hash":"48f954e66b945620e43ce8e9a8891919"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shimmer_effect.dart","hash":"c9b3f620c35ff8f48a223137f4bd0b2f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_union.dart","hash":"991661529c5ea50cf40031f5b74929e3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_buffers.dart","hash":"4b495ff6681b3a7dda3f098bf9ecc77d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\scheduler.dart","hash":"1ac1f41185397129f7ea925130f188f2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\LICENSE","hash":"038c3f869f408e1194eda71cafcca6f0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span.dart","hash":"b7c2cc8260bb9ff9a961390b92e93294"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any_of.dart","hash":"8b5cb3dc6abb215b0a48c2d3c8916ca7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\charcode.dart","hash":"b2015570257a2a6579f231937e7dea0e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile_theme.dart","hash":"a284638498c103fb78a89f30c62a910b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttokens.dart","hash":"f87e5679793d9c81072018b428dadb8e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\common.dart","hash":"8647b431edd330ccdd54d29cbf151428"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart","hash":"a400dfa676904fa8a84c48146ff8e554"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_manifest.dart","hash":"ea8671768e203429e3f57e5ae151392d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose.dart","hash":"19ad3f559f8a8ac66bbf9a697588b5f2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\url_launcher_platform_interface.dart","hash":"9190f2442b5cf3eee32ab93156e97fb1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\LICENSE","hash":"80ae6870ab712d32cc9dff7f6174b603"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page.dart","hash":"c9aacafab7d9435e52caca900d06fb30"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio\\dio_for_native.dart","hash":"6f053637ded96c67b342e6a80e7372f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiocaptureclient.dart","hash":"187bca624cdda52a572fde54e8395124"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants.dart","hash":"95235ba0d55efc617c0d84893f46390b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\method_invocation.dart","hash":"bd7255b381081690ef082c2edad8925a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\src\\network_manager_client.dart","hash":"60838abe37c945cf06c1b5ccc5066fed"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layer.dart","hash":"e08b5b6808a44e8eb4aef327f03d7bd4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\initialization_settings.dart","hash":"00883d18f109cb9b8f09707e277106c2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_input.dart","hash":"7a5a4cfd5f4cdd5fa194eb6fb3e5f0d2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\windows.dart","hash":"0d86d4ba2e01e5e62f80fcf3e872f561"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_set.dart","hash":"9cb135b4df76771b089723184d1833f0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style.dart","hash":"bfb39b98783e4013d9fe5006de40874d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart","hash":"f36086fa85e4e44adb302e73a632289d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\enum_helpers.dart","hash":"32c8f2d4dc53cfe56f5fa637be2c52e7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_inserted_content.dart","hash":"903af109d740b48230bd021be6a1f40a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart","hash":"709419e524637931a205b8fbf863df23"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart","hash":"e39c804b77ec1bf1f6e4d77e362192c1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid.dart","hash":"dae10e630b8fdeceb998484cdd66b1ac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\typedefs.dart","hash":"3e93222dc359a938c1354ba486d44244"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio_web_adapter-2.1.2\\LICENSE","hash":"3cc5c8282a1f382c0ea02231eacd2962"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationobjectmodelpattern.dart","hash":"93fd05191baf9bfae1ae604f67d953b5"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\collaboration.dart","hash":"3aeb962762f803ce0a8cf4b41c1f7433"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\charcodes.dart","hash":"a1e4de51bdb32e327bf559008433ab46"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\method_channel_package_info.dart","hash":"5489bd1170add17f6d3bcc248b5ed048"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parser_exception.dart","hash":"a62996936bad6c27697a35bed070547d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\widgets.dart","hash":"d49f780a8376e0eb08900b1c228f99b7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\builder.dart","hash":"6722e17c98e37b4ef1b96bf4b17d9008"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\reference.dart","hash":"f25bbc73708cc35ac55836cbea772849"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\gdi32.g.dart","hash":"3235bc280cf19dc53be8f10c56d89beb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart","hash":"78a8f569542cd7fdefc8c08a7800052b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart","hash":"13c18d19b29fbf6bf4c1d966f02612ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\LICENSE","hash":"93a5f7c47732566fb2849f7dcddabeaf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\timeline.dart","hash":"79e0746936aade828e4ca8ebe242df27"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart","hash":"cdcdb27f29255236e15a1bdeda1f5042"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\inkwell_shader.dart","hash":"e9efc19a02ae3195574f6fa743603b00"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\LICENSE","hash":"83228a1ae32476770262d4ff2ac6f984"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\exceptions.dart","hash":"c3d1be29f7dafb22509e2bb8064d512b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\LICENSE","hash":"87ee25bbef5b7cb7dcb056c3ec20f243"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\posix-6.5.0\\LICENSE","hash":"2a68e6b288e18606a93b3adf27dbf048"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text.dart","hash":"82b0f024c778da9bc6ab552492e02283"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart","hash":"3b17883e6fa707ce015aa0d82149c0b2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style_button.dart","hash":"66dcd42bd6d7ebadec059ca047e8d7b6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\selector.dart","hash":"c771f26d18f9897af0e13e3a2c83d5ed"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\live_text.dart","hash":"d970423c6488cba52d3585e0221e57ba"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_delegate.dart","hash":"e072de1090ae76f1e07247ec1eb11180"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jimplementer.dart","hash":"58031f960b575eb0db526bf49b706f80"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\processing.dart","hash":"0ca8410c364e97f0bd676f3c7c3c9e32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\version.g.dart","hash":"08a0131d87ba3b2535a2de787086a3d6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\file_system.dart","hash":"f72f7c9e3a3971fdfd58d38c94b4e005"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\code.dart","hash":"1216b7dc6f446693a3fcb9a566b94d94"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\constants.dart","hash":"9628979f9e240d20f992073c54489890"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart","hash":"51069c14005cc63df73f7c8db5520f31"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevicecollection.dart","hash":"a45b41e12ba5853543f707ce7dbab9d4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shake_effect.dart","hash":"2fe2bbd579687d09b982afec08e8e688"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterator.dart","hash":"dd8517aec9099740b2b5828bde8d33aa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\pragma.dart","hash":"871c4029c43c6dcb8ac9ba8f7799d310"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute.dart","hash":"12b8cbac25c7ad95ce53c2f8869a1b5d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart","hash":"d2be489820a1fa5902a27c621661ad7c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_selection_style.dart","hash":"c64b32c068f0d8679ed2b8d699659780"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\animated_sampler.dart","hash":"6fbb6ca5fe49e7940262f00aca378c21"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\authentication_challenge.dart","hash":"395f07418a28b12b0ed665f32270d702"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\cupertino.dart","hash":"d625d9716f694dcdfb87bd7e5fff5a5b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\dart_plugin_registrant.dart","hash":"6c49f36c204d9c39ed8344462e4342f9"},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","hash":"b1c06b2368a5c7449e9f6be568623fbd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing_delta.dart","hash":"0a36258b539c8ead1f09b8c02cd25ca8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_2.dart","hash":"312e69b666cc1e860274006e86688bf9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\texture.dart","hash":"238464b246c0e0f60bc0fa9240909833"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\share_plus_platform_interface.dart","hash":"7e38424729d139f4ac1ff5183cd59303"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart","hash":"09325621b84b25497a2d19b7f3636884"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\utils.dart","hash":"27861bf07d93c8ef6c716f3eefab80e4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart","hash":"29426d64d0c201a4d7e7492434b13463"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer.dart","hash":"e7570a19e70ee3275cf865e4a94f7830"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapter.dart","hash":"724dc321d912dc0a668feb06b1372944"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_generator-2.6.4\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\reject_errors.dart","hash":"e9cc91e4ea4141722f1ae9e087afae63"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_encoder.dart","hash":"af7b5d8de0c9d9df88cdffcae9d7c959"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\stretch_effect.frag","hash":"5cd1085a16b9c9c707d90ef04d1d2eca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\url_launcher_macos.dart","hash":"6f195c37321b26f8f0f0f062f4840dbd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\obb3.dart","hash":"5ad121ce46b5c0473bbe34be6d5c0913"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart","hash":"2ed82d0ee4672e99dcdec5652737899f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_with_context.dart","hash":"a8f2c6aa382890a1bb34572bd2d264aa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationwindowpattern.dart","hash":"f42009fc52ad811f1d34405961c63183"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_call.dart","hash":"da6f500c03c005a207d38c1daf24b00a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_attribute.dart","hash":"666073cafbc9e0c03a3939b99ec35aca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\capabilities.dart","hash":"b7729342f9613bd823c71f9c12c680b1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math_64.dart","hash":"95bedb83cd5b163e43b554086b016380"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\decorated_sliver.dart","hash":"b11666131177a6ebe97ffd60e3dac32a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\sensitive_content.dart","hash":"dbf30b29dd78b529a26b350b5866a849"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart","hash":"4a77eafe460177c2a7183ec127faabff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\LICENSE","hash":"80ea244b42d587d5f7f1f0333873ad34"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\magnifier.dart","hash":"3f3808e26505133190c5b4890cdd219b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest.dart","hash":"d623b1e2af43bcd9cde14c8c8b966a8b"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\dashboard\\dashboard_screen.dart","hash":"bb91546bef7cceeebfb3a8a941c2bdf3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web-1.1.1\\LICENSE","hash":"d53c45c14285d5ae1612c4146c90050b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\collections.dart","hash":"a76cb94d79d126e32495b08461c0fade"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\checked_yaml-2.0.4\\LICENSE","hash":"39d3054e9c33d4275e9fa1112488b50b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_channels.dart","hash":"09d61fcdf9f46b71982cb8d96f83293a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\unicode_character.dart","hash":"d0e1db4618e688ad41ba325f1a35667e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\arg_utils.dart","hash":"9812b8e536c69068c0e5f3d3db20c140"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart","hash":"5846366e8ee69a93afd904b47023c592"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwebauthenticationcoremanagerinterop.dart","hash":"aef722a64f462b84d30dad6278040fb4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\auto_dispose.dart","hash":"d2e52f81da2329303a3f9d4b369c3320"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart","hash":"b1ba06c6246ba2995265e837f355877f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\LICENSE","hash":"94016e710124ccd8afa685f270d396c2"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\admin.dart","hash":"587b84f3870ec03b89adf24294c481b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\future.dart","hash":"18c04a8f8132af2c1b1de5af6909025c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_match_rule.dart","hash":"0298dac3221d4c6752b6207594e4f470"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_to_text.dart","hash":"9b43e915daf4ff9e2b753b1a5b63f8ba"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\magic_number.dart","hash":"d9d40cd4fd7e692ca4246d952d48cca8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart","hash":"9c7196e67b951143d548d72aaa0e75ec"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\optimize.dart","hash":"ebd9dcbeebab7ad717e6f7efb6a47f0f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart","hash":"096a125e0b6d03283fda3959aa657e23"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\date_format_internal.dart","hash":"46f06f2d32f61a3ebc7393f1ae97df27"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider_theme.dart","hash":"6929256b551547547eb9a99063ebf8c8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb3.dart","hash":"b6a30b7ed48f83f446db37577b30e62e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v6.dart","hash":"70ba25c403724d1332ff4a9e426d7e90"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bthprops.g.dart","hash":"0b9138f9bd3068b518494cfee8627cec"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_create_screen.dart","hash":"df5feb64564460cb6fbf66040c56af21"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi_formatter.dart","hash":"5c81dd07124ccc849c310595d9cfe5be"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set_controller.dart","hash":"f301af2d0392296f456363085becbf47"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfilesenumerator.dart","hash":"c72923f8ad46feb8bcf25ecbd0379294"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wsmeans.dart","hash":"907dee395c762afbdcd8a23c105e9cff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\default_style_information.dart","hash":"4cc8128599d4dfdcbd699b3f01d68904"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart","hash":"7f25b2bd2302862c55aabba7dd3c09fc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_string.dart","hash":"6611268c60b179280f53b27a039a7534"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart","hash":"779f0f9d19f3df6158d21a5a53b647d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher.dart","hash":"10bbfa83fe7c3c8f8a4964a3e96e5b58"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart","hash":"fdf9dc616423b3c0ab7989c88009cc99"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart","hash":"4cf81f473e6af6b63729d72f41fe712e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\delegate.dart","hash":"99eea31c698ade1eba0c70780f4c3c5b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart","hash":"23f943341763db27892796d556bda14e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_picture_style_information.dart","hash":"5f8bbfd23974ae2842d3d03760b98f99"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_consumer.dart","hash":"2cce8363d2a5751ae45bc5d4ec6685bf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\cupertino.dart","hash":"671e5f26fbf94b9d5a70b14c8c494760"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtableitempattern.dart","hash":"0c4386f8def5b3a82bf0b70090830314"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_boundary.dart","hash":"17d0af2d98e9ab4734bc194d1e51250f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_views.dart","hash":"cf7437085457da7c8ff7640c616aa417"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shlwapi.g.dart","hash":"4230059d9b32165301d8d2a329a9b40d"},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\app.dill","hash":"0fe1cfc6c971ef6b8e64e31b7191038b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\routes.dart","hash":"dc66fac5835e7c41dbf08196ecec0fb5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\circle_border.dart","hash":"8ad25d6c38ddc8ce7abb828b97f4571a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_error_name.dart","hash":"7398500b1824f6043f23e208cd993866"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\flutter_animate.dart","hash":"5049b7e67d8857ca6cf426d6ae4dc463"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\logging.dart","hash":"5872689884d3985685f0239a1f89f71f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\charcode.dart","hash":"b80f25d51570eededff370f0c2b94c38"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\font_loader.dart","hash":"33bc9ed6bd7be95c8dcba0df4493890c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart","hash":"7abbdeed33d601184a5c3ac2241419a9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver.dart","hash":"9d9d9a9d3774ca415e26cb71c8e61bd9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_positioner.dart","hash":"f272765748612511f27420ed9ea3713b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\trim.dart","hash":"37b4a8b2d509ad6dd3f486053edecb3c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hmac.dart","hash":"2b5fbc54f77ca9c1e5ac90eb3c242554"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver.dart","hash":"193df360dab90a6a68f2420ca582de9b"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\endpoints.dart","hash":"53bc475948e97481418f115d2ddcfcb4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table.dart","hash":"add063bad189e77e577fcc88330caaf4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\base.dart","hash":"4c5be09400366d46c996eda73c757b0c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\md5.dart","hash":"016791e9b80688ca3eddaf369dbed53c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_subscription_transformer.dart","hash":"ca4cfb6538896636dc198e3b1c1c3ab4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart","hash":"97f8d480ec6ac1778506d29f498a1e6c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\initialization_settings.dart","hash":"dc69aa43b73c7a61a7d20c82ac98cc36"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha1.dart","hash":"8d02f5162c5a6fbae770f5c4f9ddf389"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\int_to_hexstring.dart","hash":"73cb6deeb88fdcc320cf8e089d51531d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetwork.dart","hash":"57adb1ac7ff40f2fd9512ebf09281433"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\fixnum.dart","hash":"ca96fbf1a27d4f30ff02bfc5812562a6"},{"path":"d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json","hash":"b1c06b2368a5c7449e9f6be568623fbd"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_sessions_screen.dart","hash":"b94716be37a0ef1e0dab86e6fafad548"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip.dart","hash":"6adf728d8072ae68769a63c0c6b063c8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart","hash":"ebbf8ed4dbf18812821ccd98920dc6de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\setupapi.g.dart","hash":"9d0390331a2be3f7c018dab8bfa589de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\pick.dart","hash":"c60b204fb5e7d501c0addb330c88d2de"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sheet.dart","hash":"d97475e890855715d9a38549737da4c5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\none_of.dart","hash":"bb38ea979910b96581f1f8e407cb9e63"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filter_chip.dart","hash":"73b8d199cc00486354dda26a4d8de371"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iagileobject.dart","hash":"4bc403cec1c5846051bca88edb712a8c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdatalist.dart","hash":"a82741847c5177c47adfd428a1583744"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quaternion.dart","hash":"9307caba73e148d13a0697568f0ad971"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\src\\messages.g.dart","hash":"25d3cb3999f7986e8bcdcda124ec5d72"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\exceptions.dart","hash":"ad84ac2c0607f2ca46d74eb0facbca3f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\LICENSE","hash":"93a5f7c47732566fb2849f7dcddabeaf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\LICENSE","hash":"ef2f4f5048c86bfd71a39175b6f103d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_ext.dart","hash":"eb9b4a5e46c860c5e9db81c69101e562"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\helpers.dart","hash":"20e259f655329b9bc2ecb98ae2975e72"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_executor_iterate_ext.dart","hash":"5892bd8a06723cd5ee869d90b2795156"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\scale_effect.dart","hash":"52deaf1c36d56ad77546bbc624e91b61"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_anchor.dart","hash":"f0667289ae22f9dc3c570f2e98fb2958"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\persistent_hash_map.dart","hash":"c102224d12dc8ea202cc97abde87ba51"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v7.dart","hash":"eaeef30b0e3cd638d4dad2b0f4db8417"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\icon_tree_shaker.dart","hash":"019ad8db00824e24c87b38b254627b3a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\priority.dart","hash":"9051680cd2078f92c9c56831272643d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image-3.4.1\\LICENSE","hash":"6e15c47981e2e43ee17849a222e33b76"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_value.dart","hash":"2aef91d8cd008f57a605919dba2b095b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart","hash":"3e1f8918dfc4c773b35f568c8907221f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart","hash":"3b62a0ccec9a57fd8599a08429be51d3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider.dart","hash":"bca575ff5911983777226c849ee75f39"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanagerevents.dart","hash":"cb223d2445f2caf7a2617e25ca761ff4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart","hash":"fbf98f47029acb307401fb5299babd1b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem.dart","hash":"6e25bd87f1ef3a06c65b27f722fff88b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\os_version.dart","hash":"2598d2716efa8557be39441a6b1490db"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart","hash":"d8b218966d397dae64303cdd7d11b33b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemimagefactory.dart","hash":"d04edc39b6d3477197606ec9c969e738"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category_option.dart","hash":"f328cfe04255be8a4d740b54f2854bbe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\hint.dart","hash":"570573fffe43860513d5cc911da0668f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pubspec_parse-1.5.0\\LICENSE","hash":"abb5a1fdfd2511538e3e70557aad0ba1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\tone_delta_pair.dart","hash":"033b9ff4ea4c8fa3e9da4573a7d2edfb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\errors.dart","hash":"ced9775aafb393501c537dd334b029aa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\change_notifier_adapter.dart","hash":"783943aba9b03b1cc54745609a61947a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_match.dart","hash":"d742d41268dec3da5e669142ae344928"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart","hash":"f6879dbb0a0b22e90c61f21ebf5c440e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart","hash":"a14aad8528cbc2fe6ca1ad92ea332e2d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\utils.dart","hash":"d84ae47a3c688bd889f442426f39be3e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar.dart","hash":"a1e2d2d5b90a616649664605c34f70c4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\generated_bindings.dart","hash":"193b3d87d8e5e1c65855f2cda33b3386"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox.dart","hash":"993a8cd8ccf7a791b5baa5d1935fd8dd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\bstr.dart","hash":"0ace55de06ef5d40b277ac8dae4d760d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\notification_details.dart","hash":"fcb452549a7c86cdf118933be09ef427"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_method_channel.dart","hash":"2c294b86e9cf73bb732d8419ab47f434"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_channel.dart","hash":"55683be242867dd76676beee16ada035"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\folders.dart","hash":"4bd805daf5d0a52cb80a5ff67f37d1fd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart","hash":"97e064022c57ab2abb672f1def67898e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart","hash":"7435bf8833b839bc99c3b475a49219ab"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart","hash":"6c2b6a2d17427507aff54ae4f457825a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\unmodifiable_wrappers.dart","hash":"ea7c9cbd710872ba6d1b93050936bea7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\global_state.dart","hash":"dc4e3bf96e9c6e94879d54eaa2f81c69"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_extensions.dart","hash":"1f445eb98cf4ace45da422b4cd9f047e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate.dart","hash":"702e19f4fbffe2ac72379fb1da6bd477"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart","hash":"63701253bb9a85c00b68c2d51358bad6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart","hash":"ec3a5f7a8288542858278a8702578709"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flavor.dart","hash":"5364518d72b7d6240c9d090f9bb7df83"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\primitive_jarrays.dart","hash":"a1552b07a3b92bad881c4ac6c55229e9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shadows.dart","hash":"dafc76ada4dc3b9bc9a365a7da786797"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\reentrant_lock.dart","hash":"7cff949e3b7ac960b63441117b2f6734"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\descendants.dart","hash":"ffaf08c52f141dda6e8be50b3e46ea50"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_detail_screen.dart","hash":"20cf180c73edf422decdbeabf90853ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\extensions.dart","hash":"38e17b28106d00f831c56d4e78ca7421"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\method_channel_flutter_secure_storage.dart","hash":"20e7221c12677486628b48b0c30569f8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart","hash":"9f9fef5d5732d2b083ce7c05aff2e265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\format_exception.dart","hash":"2128831f60d3870d6790e019887e77ac"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button.dart","hash":"59ea4237571112a72a3756771756c43e"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\app.dart","hash":"ee982dce2668636ee52414f16ec07b8e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_platform_selectable_region_context_menu_io.dart","hash":"12d3b22764f1a64ff214cabee2858a00"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\LICENSE","hash":"f721b495d225cd93026aaeb2f6e41bcc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\url_launcher_android.dart","hash":"b3853faac4d2f3f34b6da5ef327d5ac8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart","hash":"925460ad93f34c429048e22ab72c7e78"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_tree.dart","hash":"8cea8c68e157e3f07caee50088603d3d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart","hash":"badbc78ac68a9144476a747433fc0c9b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\LICENSE","hash":"fb92f0b8decb7b59a08fe851e030948d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\route.dart","hash":"1bb2bdc95c24ef25802d47fe5ccecb64"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar.dart","hash":"72745c98c83af29f8a0439eb29dd7560"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart","hash":"0ae6882950d775118eb308ed401f4ac8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comctl32.g.dart","hash":"f203522611d9d5ac9047af433e7f84f3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\spell_check_suggestions_toolbar.dart","hash":"7a76df624c94ad5469f9dc81e627a18a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\constants.dart","hash":"4a4b67b573e2338cf03cb704b2c18f04"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8.dart","hash":"374d5fc1231ad32b5eb97df5aba72617"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\family.dart","hash":"751c8376ab9bb4a866f5db6d7e6b864b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common\\env.dart","hash":"f23b1cec674b4863aec7961f4a2ae758"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\posix.dart","hash":"5e054086533f32f7181757a17890ae56"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\multi_lock.dart","hash":"2ac6fe0e9a4d7b15855dabd7468cc320"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\opengl.dart","hash":"474c9e159ec8ec804957222054c877e9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tabs.dart","hash":"b2f2415d38e74cf870ff465dce1a736e"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\notification_provider.dart","hash":"10e3a86163a4d8f8b910130341baf27d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\LICENSE","hash":"d26b134ce6925adbbb07c08b02583fb8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\display_feature_sub_screen.dart","hash":"9d0a823179de6c550f7dc36f7aced31b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart","hash":"67f98d5a671622af964535a693266ade"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\end.dart","hash":"d6b4c337633cf50449be67966688dc32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format_parser.dart","hash":"61a0deef2a4f0ebaed506bb2a22c5185"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\magnification.g.dart","hash":"c63a357184bab34ab1e8522808a9cdf9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart","hash":"4cb27d8de666408f8a08b7d0c9b044bc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_linux.dart","hash":"a05d206abc2d9b0c60ccae83bf674daf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart","hash":"2730e1e1e567fdc1cd0b826028acff25"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart","hash":"70800b89dd1c66241e59910037d4f988"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactoryentry.dart","hash":"634d273f14a099a4f0bd577979779ee1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\declaration.dart","hash":"3cf7786074ce9f1e148fe5f4a60479d2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\platform_interface\\share_plus_platform.dart","hash":"e94cd8798b88905e32482b317167763b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\src\\connectivity_plus_linux.dart","hash":"2aea038844961a04f31f81fbd8503cb2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart","hash":"47474102c009e7099f3a9bf1d7ea8e06"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\character.dart","hash":"091e29d23c58b7a4b5529953044bd344"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_flutter_local_notifications.dart","hash":"610a95b3eab95b5d9ccb03edc03818b5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern.dart","hash":"2108c716fd8198fa3a319a1ec6cadc9d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart","hash":"a795771facc05f84d882278f7f63f6d8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\flutter_secure_storage_windows.dart","hash":"141745c6e29022622def8ba527cfd60c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\log_record.dart","hash":"703c5e391948c58228960d4941618099"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart","hash":"5c32703ac32c4835d961b3c55f8f8498"},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart","hash":"a6b64bea23efeeb23ea862ad5d55aa30"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\utils.dart","hash":"8608f71f077e370ee14d37c711e6580e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemfilter.dart","hash":"a9a9ecd14dd90500d067ccb5c564cb22"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\expansible.dart","hash":"ee40327c687df7f226654886d6701ff4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jarray.dart","hash":"f292145a4e855215a8283d820f14526c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeventsource.dart","hash":"33ce76d75b24f6c7ed6ad95a422b76b3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart","hash":"861a19ff01e3f58d95d668b9fd4054f7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart","hash":"4b95f290c43ca907e969d3d0e233295d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart","hash":"be25b33bcf3736f59b4cd5191dd0a9a8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_settings.dart","hash":"ce7c719e306ad9ab02b19aafbd70178c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider.dart","hash":"b4421b6c0a0d4bf349acaaf804d641a2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\lowercase.dart","hash":"7d19aef72402dc345f03a5ce59e911a8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\noise.dart","hash":"996d7bdb8134338c2357699662cee703"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effects.dart","hash":"a6c66093a1bc730ec1593104a477649f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart","hash":"c95897aa3a4d00e22975c9161e4e866b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel.dart","hash":"bc48ae34e58774e84a72567a86034fef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\async.dart","hash":"13c2765ada00f970312dd9680a866556"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_client.dart","hash":"3bc24109049f63bedd0393f75bc23503"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app.dart","hash":"f3ee8d50363ec83453a6769e6e23001c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_span.dart","hash":"232d846ca21d1549a336d98b5e737f1e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idesktopwallpaper.dart","hash":"28a96a9cad386cca4604fe9b6b0ac250"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\LICENSE","hash":"23a7e2fab311012bc8f9fc2de0d1593a"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\theme_provider.dart","hash":"5b4710c9b26d2f5e2b94d3cc1fd320a3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\prefix_name.dart","hash":"fbb3e43ae57262b3fc190cb173a7b5bf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\magnifier.dart","hash":"93a4f02d4f155940b6b501ce9233654c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\unicode.dart","hash":"c692323b8d9e3ed3c4c134ba07ab94e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters.dart","hash":"99b4d15f76889687c07a41b43911cc39"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\args-2.7.0\\LICENSE","hash":"d26b134ce6925adbbb07c08b02583fb8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier.dart","hash":"e07baf43a89b4a1225ab8dab1161d2be"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\platform.dart","hash":"d2bab4c7d26ccfe4608fe8b47dd3b75c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\utils.dart","hash":"05778db9e882b22da2f13083c9f28e0d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\enums.dart","hash":"a4b97395630dc415cc76f514d4a38869"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute_io.dart","hash":"e990b24e6368a3aa33f21b4695cfcfab"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement3.dart","hash":"ee2f81dc37bb6d1adb9570b7634eed77"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_serializable-6.9.5\\LICENSE","hash":"7b710a7321d046e0da399b64da662c0b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart","hash":"008f9bd544a605eb69f5aec36ff9bd2e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\rendering.dart","hash":"f2bb5b9e6b4f0a7c7a7f9099b7dce9ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\assertions.dart","hash":"09fd32800069ef816aad6f9c6daf36d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_bar_theme.dart","hash":"ac67ec38097e19b216d62e9b73491049"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider.dart","hash":"f186193f82036b24fc8379b1f332f817"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_bus_name.dart","hash":"9cf807e15d1e83af4f62cdeb36582a91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\_internal.dart","hash":"add6538f2b318e4a7cb7f3c17dc47ebd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http-1.6.0\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix2.dart","hash":"945227f3863339e388d92c2b3bfbf673"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\pragma.dart","hash":"7cd1469d236cc14289fb876de86e6744"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_ansi.dart","hash":"d30eba29d046c1a8b7f029838de6e49f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\event_sink.dart","hash":"0907f33388d79d8891c360720626e13f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\resolve.dart","hash":"d946dcdf5932343994cd861dc8e7be52"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemservices.dart","hash":"edac48a72d161089af5eee3c0d7d0d5e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_exception.dart","hash":"2747964c64fe300f15d15123727cbcf6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix4.dart","hash":"48ec0166ccbd3f834b89d19fcf8bf2e7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fake_async-1.3.3\\LICENSE","hash":"175792518e4ac015ab6696d16c4f607e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\list_extensions.dart","hash":"9f8b50d98e75350b41d40fee06a9d7ed"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\enums.dart","hash":"523742c594766cc9e39179d93cb23259"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialogcustomize.dart","hash":"859de35a02fbe705941f97e7700a3147"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdockpattern.dart","hash":"dc025ebc977f56a895f49dc6d82a6d45"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notifications_manager.dart","hash":"ce45b60ad9b0d7c8690b9b1fae2b7f6d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\cf_string.dart","hash":"76763ba579657281f848e4c22e63903f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_tile.dart","hash":"513fae0e50853fca5bed4ec2ac746daa"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar_theme.dart","hash":"33c98e4e508d3ac10e634e62cdbbce4c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumspellingerror.dart","hash":"4454497beed7948ccb9d6987d52ff3fd"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z","hash":"9bf6034f9f93f9bfa96cf63a77f69e6e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\path_provider_windows.dart","hash":"38dc31b8820f5fd36eedbf7d9c1bf8d9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pool-1.5.2\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\LICENSE","hash":"93a5f7c47732566fb2849f7dcddabeaf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winrt_helpers.dart","hash":"8a032ca2b66b8be21ce8368f80406db7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworkconnection.dart","hash":"21da671eb92823f3b4c91c47b2e9bac7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spacer.dart","hash":"977b101929ac6f80c9dab61b4f232bda"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\admin\\screens\\admin_screen.dart","hash":"de4092182e054aad1fa89c88e36c667a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_type.dart","hash":"e26cb5bf5970055a9bd1828b524cb213"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart","hash":"c32cecbd71acc984d84398dbcbefdc1e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework.dart","hash":"d856ca958740bf8a240738ad9e9e69c2"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\idea.dart","hash":"ba98c7395204110dd4ffdd7929174d56"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id_real.dart","hash":"0e5b422d23b62b43ea48da9f0ad7fd47"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_daemon-4.1.1\\LICENSE","hash":"d2e1c26363672670d1aa5cc58334a83b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\constants.dart","hash":"df0a9878a16d3cd73cff00f496307544"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v4.dart","hash":"916cd94d810ea5b86f0cdc685dc38001"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar.dart","hash":"070daf6f273e9bdca4afffaeebe2cc15"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\connectivity_plus_platform_interface.dart","hash":"88d5feb6f0a1ddf0cafe75a071bbcab2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_input_stream.dart","hash":"a18fc5ab21a0ffddbebd7407a1e4ce40"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart","hash":"ea046b60f0fd4f08dea95a777e6b9a1e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\arena.dart","hash":"9a357eba21f383f648a36404ef950aea"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\ink_sparkle.frag","hash":"7eee695ba96e5afa80abfaf59973617a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuri.dart","hash":"ed8502a630b1e3004b3e0469816899d7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf16.dart","hash":"10969c23d56bc924ded3adedeb13ecff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemclassobject.dart","hash":"20a078b2eb6ecf6b4b16bd817e30ecdc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scaffold.dart","hash":"85ff3a455e5b12d282298f7870bc38b2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\banner.dart","hash":"5ae7a1f76d7bc808f9945ed995da690c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersiststream.dart","hash":"ba4b050fb9bed64eb6f6476016aeba2b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\cdata.dart","hash":"008d33cc2aea11e7921ee238469947b2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_value_indicator_shape.dart","hash":"a9859297c8291c07e5e8f6c83a0c014f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner.dart","hash":"362ae7e02db45824034cd89ee2a52737"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json","hash":"7b2a36307916a9721811788013e65289"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart","hash":"f9aa2eb956d270d4df8b3a7cd5ac52d7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag.dart","hash":"c6f3d5ab867a5b665a50e0af11d048d7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ansicolor-2.0.3\\LICENSE","hash":"3b83ef96387f14655fc854ddc3c6bd57"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptor.dart","hash":"fa37e7b5d86857fe6a6e7c008773fe79"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\LICENSE","hash":"5bd4f0c87c75d94b51576389aeaef297"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\url_launcher_platform.dart","hash":"0321281951240b7522f9b85dc24cb938"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart","hash":"838123cb36e73af6dc4717b1235393bf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\browser_context_menu.dart","hash":"bfd7a00b9fef90dbf3b6d14f6a2f2901"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_expressive.dart","hash":"13b2049dce60861c73d20ad96c34da30"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\standard_component_type.dart","hash":"702ebe43a77fbc5d1e1ea457e0bce223"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\debug.dart","hash":"624431304ab3076b73b09e0b33e35e4f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_scroll_view.dart","hash":"191c8a8451c1851fc49b83919c471939"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\visitor.dart","hash":"87e0c94a0dd945f819a8bd24a9ac5e67"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\LICENSE","hash":"1bc3a9b4f64729d01f8d74a883befce2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\flutter_shaders.dart","hash":"e0dff416a9e6fd0bffe5c222b6e3831b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\painting.dart","hash":"e6c5d07cbc53020acc5c08062c8b57af"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\single_subscription_transformer.dart","hash":"f92bb9e85f7b089f96263b120561014f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\observer.dart","hash":"2480f17b8bc5d1954b56f512c6adcd9d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart","hash":"f1bb162d20997701babae2ac8facd345"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pages.dart","hash":"3e536a3acaaadb822a23d4e1b88f21c7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\colors.dart","hash":"21fd5695156d005f6793304998a2022e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern.dart","hash":"ff5c40ddc1501e3be7aa7efd4a269f04"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\top_level.dart","hash":"15439eaa12b927b0e9a42b9d168e3371"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart","hash":"413144882e92d0a27858427f45f214b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite-2.4.2+1\\LICENSE","hash":"80ea244b42d587d5f7f1f0333873ad34"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\rometadata.g.dart","hash":"87ac4b62f17065d7456bfb6f6ec0a624"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location.dart","hash":"fb2c02d4f540edce4651227e18a35d19"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\petitparser.dart","hash":"6cb32004f228090f1200484076254c7a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\clock.dart","hash":"84ad21db5ba97deb809b65697546e39c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensordatareport.dart","hash":"d241941a5420f01b81ee47fc755f8123"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart","hash":"eeda981e4df3f90c0c0dbc696a3ca59f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\scribe.dart","hash":"fc0d5385b1ef6f854be4e193437b39b6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector4.dart","hash":"77900a31d721da1722fe34c455a00d3f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\cache.dart","hash":"e0cbefa359309715e5101bce98eb65e2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier.dart","hash":"a67d1346ef152a92e983a9d7dc1a96fb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\global_env_extensions.dart","hash":"b93b5973b10335f092cad29c56ba9c6c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation3.dart","hash":"64b70549a67d82ee25c435f5fc06ea49"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\autocomplete.dart","hash":"6b6636688a44d2bead7c8ec6941b03bc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\following.dart","hash":"7f4a5458515781cb38e39651bfdd2f04"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_l1_1_0.g.dart","hash":"5764fde6a5cfb0402dca339562afb9cb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\LICENSE","hash":"815ca599c9df247a0c7f619bab123dad"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_constraint.dart","hash":"6367c3e098c4a3fdcad94aca0c0148c5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int64.dart","hash":"da07db909ae6174095f95d5ee019d46c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\set_uniforms.dart","hash":"287a2fec0c9a35af0cc66e7c73845774"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\graphs-2.3.2\\LICENSE","hash":"901fb8012bd0bea60fea67092c26b918"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_cache.dart","hash":"add848399fb431279348b7ea4a80568d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\extensions.dart","hash":"05c0832362de468466c4e1f2ace14527"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\preceding.dart","hash":"9d5375413b37f738384990ebdd6c6285"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector3.dart","hash":"d4252f423175e5c21fca23dc24154b84"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienummoniker.dart","hash":"3e2ba5ba60ae123aa45ccc5f07eb3ae8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.g.dart","hash":"735445bf95b7dd825aa15c783a4412f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\method_channel_url_launcher.dart","hash":"351ed98071b53d3c2e98d376f2a65a74"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_completer.dart","hash":"2430a12d4750c3c76ef07d29bb6f6691"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\arc.dart","hash":"2a948780026092dae085b86422faf0b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_formatter.dart","hash":"d125ffd56f0235873a9a032bc8dba83c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_message.dart","hash":"eb54a5ead5cb8ea548f36e4b8780e4b8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispnotifysource.dart","hash":"97fe81a282e612211e9648061d6d5dbb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\progress_stream\\io_progress_stream.dart","hash":"6ea89c3bc6b0860bd7c16998d3950c3d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_uri.dart","hash":"3cb04add978cf19afa2d0c281e4c80b2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\predictive_back_event.dart","hash":"8ef8f3bbaea09de024ac240b7e26d2a7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\visitor.dart","hash":"27780bbb98adce3f00386fc6223bf2c9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shell32.g.dart","hash":"c1210af8f1663dc5959f1ec44acaa5a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector.dart","hash":"1205ed5e14a59c237c712b8a495b1981"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart","hash":"8d5d3ccddf53eafd7a3094278afe8b93"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\settings\\screens\\settings_screen.dart","hash":"30aac47f705ad8c2248c11dd785f7a52"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationorcondition.dart","hash":"821dcb1b139f1347a59141ff1fe42766"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\service_extensions.dart","hash":"217b7c2fd7b1eccde5897e1f17fdccf9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\auto_dispose.dart","hash":"39d249bfedd0655b147701ff81de4fa1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\scarddlg.g.dart","hash":"ff51e95e52fd4d789e71223942d5ae23"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_config-1.1.2\\LICENSE","hash":"901fb8012bd0bea60fea67092c26b918"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart","hash":"8d6452b9a0feab43e81cc131ef1a4aaf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\combase.dart","hash":"90ed8a12c97e362a162da690203df055"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate.dart","hash":"bd343bbe0baca1494e15a8872fe23e6f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml","hash":"43a5b6c2ad14cba218dbb9fd709313d4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\process_text.dart","hash":"14e2e9da81c134c023849e94c4c24978"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart","hash":"e4eb46d5e69baa3271c66c2c434061e7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\posix.dart","hash":"f19239fe10cca0cd002c22edba90eb52"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\constants.dart","hash":"aa079ee3baec3d56778ddae02b3d5150"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\decoder.dart","hash":"e6069a6342a49cdb410fbccfbe4e8557"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\apple_options.dart","hash":"d4efda9ec695d776e6e7e0c6e33b6a4b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart","hash":"208e3ff349f358ae82604cb56088be52"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_stream.dart","hash":"9f18d62a22df97520e20e775666ebee9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\log.dart","hash":"eb60d218017b0432959e8445a36f4602"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_wsl_api_l1_1_0.g.dart","hash":"f5defa76a8d0e0a0a5d1670fbc270cb4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider.dart","hash":"edc6185b4e4994b45acda6675696d87b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\simple_name.dart","hash":"208d1ef7a6cc2445551b3138139613bd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart","hash":"6d6dea174f3fb3a637cb4d116a362dc2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command_executor_ext.dart","hash":"4bed6699b5b3dd241289ca5b19ce9cdc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart","hash":"671f1b2c2c348ba4122747f1867f589b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flutter_version.dart","hash":"00408a31c78c5c887a19c2cd04973c37"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector2.dart","hash":"6860d784322e97b761960551131a565d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\utils.dart","hash":"1eb2fe31f2f21cce619f672c25b1e43f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\error.dart","hash":"9d3c97308962c33d86c03beaa20e28c4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch.dart","hash":"99aef443e7d683c1906780f8d7b92c63"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\flutter_local_notifications.dart","hash":"6911901b1e6f800a6d433577dd9b93a6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb2.dart","hash":"713156bb4c3a820c34bd6587a12b9074"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\failure_joiner.dart","hash":"12b975946bcb9ba1b5a6dc3309a19de9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\container.dart","hash":"8597f18181783d905e40dc64f0c0555a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\env.dart","hash":"278242320426f869a4121f48b98c2ed9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\itypeinfo.dart","hash":"d1242664c894dd9825221a49693814f2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\uppercase.dart","hash":"c9d12a17c125e31a94ec65076a9c3ac5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\form.dart","hash":"24aae40ce89e6e4c0dfafe0b49c5d13e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object.dart","hash":"4f187fc37cb2a7eedf4681e2321792f0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider.dart","hash":"a6705b39e0c01e2fc0e40b8c8c674aac"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\router\\app_router.dart","hash":"156b43ac09731b1cc019f03af3c7a122"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_vibrant.dart","hash":"65e61fbb4fa10372b84edf9b3a226e3e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_enabled_options.dart","hash":"877295d0c356a690a3b16d271e34c543"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\LICENSE","hash":"80ae6870ab712d32cc9dff7f6174b603"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechaudioformat.dart","hash":"f7b5a54fb6f6b69cc4234a97ce7977e8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_7.dart","hash":"e7f41e9640a11f484fe97a34fd0c6fe4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\frame.dart","hash":"49286617067167600a8c7357dff1dcfd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_queue.dart","hash":"fb5bf096bb76594eaceda019de6559b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\string_scanner.dart","hash":"f158ffadca730ab601c60307ba31a5e4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart","hash":"d2118d421b39f9ba6b7de3c11d1c4c0c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer.dart","hash":"db799bf48af97b7c0edc93ad96b4a6da"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\wrap.dart","hash":"4a84a6c0c8b39258edfc22b11cde7f32"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart","hash":"bd653adddf5fd2896c067d9e3cc7585f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_value.dart","hash":"21beb4ff2c06d1edc806270e0bfac51f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_sound.dart","hash":"c0d5d7856094b4be15b738392704b921"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\queue_list.dart","hash":"02139a0e85c6b42bceaf3377d2aee3de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\frontend_server_client-4.0.0\\LICENSE","hash":"43465f3d93317f24a42a4f1dd5dc012e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\src\\messages.g.dart","hash":"df997c7f2300fcd6f80dffd0f455bea0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel_theme.dart","hash":"fa0ee94bec6f3e251ecb6155d9b574ff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\exception.dart","hash":"773da8c184ab316ec6998980a1448a1c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\test\\test_flutter_secure_storage_platform.dart","hash":"362bf1b65ae84f1129622a8814a50aad"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\long_press.dart","hash":"35a844c5039cd195b88076ba0cc17e38"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\test_api-0.7.10\\LICENSE","hash":"3323850953be5c35d320c2035aad1a87"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\constants.dart","hash":"c6dd0c20e5521905acdd0e209727ec65"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing.dart","hash":"0592ddd7d860434774d2eaa8eed82173"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sensitive_content.dart","hash":"03fa43612a3510ac1b1671b945d1f91f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jvalues.dart","hash":"89d45e2e5a70ac054f030113ad19f26f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vm_service-15.2.0\\LICENSE","hash":"5bd4f0c87c75d94b51576389aeaef297"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\range.dart","hash":"34b26677502aed5c7ba9e8b13d348e3c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_data.dart","hash":"f5d122cb287530be9914a859c7744f68"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\sequence.dart","hash":"061e3925eb77146a83903821d09bbd58"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\onboarding\\onboarding_screen.dart","hash":"19d245e2b88dd8a1ffbf6e9f955e3ec3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_radio.dart","hash":"9a62326dac5b22e9fea3192b612f4d9c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\user32.g.dart","hash":"f7d24a92e50e72cd80aab0301eef14ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\extensions.dart","hash":"033cc457821088f152cc31f4439f9f0d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_mutable_data.dart","hash":"ffb14682b9771918da24801f35264dbe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_shared.dart","hash":"c2f30f0829e63ccf0449de5982e324b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart","hash":"a0debba3c78c5b30d8645d377dc80bf2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\match.dart","hash":"8b5af408fdaeb769969e75d843cf424b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\cross_file.dart","hash":"b1bb0939f4b26522681cc6be8e11f7c1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\date.dart","hash":"7c1d0d22ae0d74958aaa5c099fadc33b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_section.dart","hash":"183ea1ebbced2622b43740c6066e2da9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_builder.dart","hash":"bc1f35bad7b3fd785bd8734292b27ff7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart","hash":"fb5f7eb90b6c4b891e8a1cda244c0a30"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\path_provider_windows_real.dart","hash":"43f4676f21ce5a48daf4878201eb46bb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\iphlpapi.g.dart","hash":"90687597d058691ddabaa9819ebe2441"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider_lab.dart","hash":"28b2af7f1216ccd38b109a03e06c2831"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics.dart","hash":"eb6cc591a28f7f6d0b20d0bfd2c59f4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data","hash":"b5b9cdab5f995ccd674b15a723c23ac8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_uuid.dart","hash":"c9efc107e2b16a48d4e132bfcc679af4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\chain.dart","hash":"1112185143b6fe11ce84e1f3653b2b6b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern.dart","hash":"2ee116ca87b7e1c461de1462c3442ec6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart","hash":"4a376c58b71e764fccd722e77989989b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\source_span.dart","hash":"9f2eb24284aeaa1bacc5629ddb55b287"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\inherited_router.dart","hash":"94325c70d85d9b1d588018f56c56adc8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider_android_real.dart","hash":"7ec9fc4b8ff24efcfb105532f000156d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\glyph_set.dart","hash":"62d88517fa4f29f5f3bcec07ba6e1b62"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\predictive_back_page_transitions_builder.dart","hash":"08c882255bb4c2001eaf299d9a98e0b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix3.dart","hash":"d8b0931c64fbd4bdd435df207b303a04"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_browser_detection_io.dart","hash":"dceb0993fc92eafad2b09cedfe9cf55c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\events.dart","hash":"afc61ae2ba49edef0eeff9853078bc7c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement5.dart","hash":"7787380533fd85067e9c4303a9564dbb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollitempattern.dart","hash":"a3ab60b19b4725b3ea1d1b0cb1c64451"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pedantic-1.11.1\\LICENSE","hash":"7b710a7321d046e0da399b64da662c0b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\memory_allocations.dart","hash":"e99416806ef8e6f699df7c5d9d6d8bb9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icons.dart","hash":"0fb5a81c723bbd506468f1ed5a811a48"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\opengl.dart","hash":"de7fb154b9b151b81a78d43ade695365"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader.dart","hash":"0a9121d736af630bee92bd8372e06916"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart","hash":"e8b3aa75db997d8ec9a7d04fb76237a8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart","hash":"99fb2e65ec78997546349e740526b24c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\flutter_animate.dart","hash":"ac3c54b4fc84d74ca2726a43feb3c268"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\characters.dart","hash":"43268fa3ac45f3c527c72fc3822b9cb2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\octo_image-2.1.0\\LICENSE","hash":"bb500500256905950683ee38c95fb238"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation5.dart","hash":"d879c3156e19f2b290c4d6eed1de5e89"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqlite_api.dart","hash":"dbd0ca4188244fe4b090a6f420ec10c4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\color_scheme.dart","hash":"fa7057ca8e04d818b054750517ebe184"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar.dart","hash":"f5b03a40257946e4017d51fa2b683168"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_layout_metrics.dart","hash":"dc64ebb08fcf29bdc05884be98af7daf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\synchronized.dart","hash":"044e7c8ac3258945fe17e90e1a4fff51"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\linux_options.dart","hash":"26c4f0c369b83e53900ac87bf7e0dcff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\runtime_bindings_generated.dart","hash":"425673d4276b277214e7b7970b708eb8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_selectable_region_context_menu.dart","hash":"1fa6d2ba714d40456392772c9ba4ff46"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart","hash":"3e8341c70267acb12316f930954476fb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quad.dart","hash":"25dd0d36ba8109e3199faf508b41d633"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactory.dart","hash":"5d461db74d04d7e270d13a5a8a340796"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\start_element.dart","hash":"2c72add0b4beec6c29322827553e616d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\builders.dart","hash":"ccd0c138d8f151e1ccec18f4ceb98f01"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiorenderclient.dart","hash":"64708122ad6cca0c23373706cdb72c03"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_map.dart","hash":"42e37fab03a3ee2d526bb6f51ea4af23"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wu.dart","hash":"ce049601b2dcdf418b7d80839ed87b7f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_decoder.dart","hash":"16eac0a8fcc5fdae0d8f38b7ea301c37"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\boollist.dart","hash":"206ef1a664f500f173416d5634d95c8b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\utils.dart","hash":"fe2489ea57393e2508d17e99b05f9c99"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\app.dart","hash":"b50e5a72f3e4d17fcc0269c67ad08b34"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\adapter.dart","hash":"587693eda247b930d37fff01715ff5c5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\debug.dart","hash":"c15b0c06c9817813063ea4c1023d57fa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\stack_zone_specification.dart","hash":"d0268b4d80612385359eadd2d6ddb257"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart","hash":"88f32da113ffa41b4a3c2a47cb997f0c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fidelity.dart","hash":"2b93d5d6981f0c021cb892223416927d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wevtapi.g.dart","hash":"4fd8d39dff594e013e042c2896cb0bf0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\fused_transformer.dart","hash":"4cbacf46dc43afb0d059b0016010f45b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\enums.dart","hash":"f4b67c136a2189470329fd33ebe57cb3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart","hash":"01fb2164f922ea7367049124bc005643"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationlegacyiaccessiblepattern.dart","hash":"15639b799e4dbb06ffd538d943964d19"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_form_field.dart","hash":"4f02d9801a18196af32eeecac6952452"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\toggleable.dart","hash":"9b7f21f9e27ab344d03709e9b47cbb54"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart","hash":"c8bb5ac3ad9190c2cb878fdab2f4ea7c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\token.dart","hash":"007b05bbaaa5af831aed126b4db596e5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\comparison.dart","hash":"643ca26571c2ba94477233dbb914b1ed"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart","hash":"7c9757d3cc07fc4355bb72187af0413e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\auto_dispose.dart","hash":"ef220252cc1911073575cfbf66f4c8d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart","hash":"ccd4261eb08ab983ac11e6c187ebf60c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\attribute_type.dart","hash":"a9d570114e5a6e733fb029f6b3cffad7"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\api\\disk.dart","hash":"c665492a6d982e7ad5d3161c81983203"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\parsing.dart","hash":"62d7d2254a483314a65ad8360c4025bd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\notification_details.dart","hash":"5bc24b31455e76bc74c05a2ee528dcbe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\pretty_writer.dart","hash":"09214b5a4ed4e104f212ef38f676fb1f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_controller.dart","hash":"1ebd781205fb832acb480cbdc2fb5d93"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\scale.dart","hash":"9e848cd74d7e54d21697683f385810d3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\initialization_settings.dart","hash":"84dbd0aa38844da5b7a683c754582df9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_6.dart","hash":"3c158ce6f79d219073cbe23a7fe48595"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_mixin.dart","hash":"89dc3f84db2cd1ea37e349fdb1de09bb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\follow_path_effect.dart","hash":"04e0e4efa9726c234e992a024bca6209"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jdouble.dart","hash":"8de389ed114ae56e2ca650fbbcd35f34"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_html_element_view_io.dart","hash":"aab7bf02fcfefca8bc2a8c24f574ceda"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flex.dart","hash":"c8d372496e4a2766ec6b273bb1820ea7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\binding.dart","hash":"2fb79cfb96bd901a58aa790b9af4a2dc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selection_area.dart","hash":"fd1e888f48f9b2411ee9f3d8a5146397"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timing-1.0.2\\LICENSE","hash":"3323850953be5c35d320c2035aad1a87"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\editable.dart","hash":"01392922e544aab644f03401ff77d3de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.dart","hash":"c6f78ebc1239a030ffc141df9b33aed1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\converter.dart","hash":"24dd1f01d0ce298347e47fd60702007c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta.dart","hash":"696cb8f38fb01211afb7823d12080410"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\entity_mapping.dart","hash":"5abb58e10e8ea85ea5990a97ee20ae4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\flutter_local_notifications_platform_interface.dart","hash":"64aba6b07ccfb43755f1c29955134b53"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_celebi.dart","hash":"88b38af8a6ab0efd56d1fb06883c44db"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdual.dart","hash":"75335c9306751e1de52734c1ae433ac0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_pattern.dart","hash":"79a5f25a1a9d4aa4689bf37171e1b615"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart","hash":"e5c3c92d54881cd31b4200eda4923c2a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\list_to_blob.dart","hash":"56d7144236503f311a7d9a966eaf2fbd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\comparators.dart","hash":"8ac28b43cbabd2954dafb72dc9a58f01"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\sync_transformer.dart","hash":"787074c3d370e068052721d16acefd9e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_buttons.dart","hash":"e71bfc49f52579c2e458315e9067527e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_2.g.dart","hash":"62710fd39bf51f264c7fd8ad1dc7aac5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\basic_lock.dart","hash":"25057894002e0442750b744411e90b9c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\media_type.dart","hash":"101ff6d49da9d3040faf0722153efee7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\riverpod.dart","hash":"9518a1e0696846221033c0434d777377"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\types.dart","hash":"4a1d1bdbd4e9be4c8af1a6c656730a66"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codecs.dart","hash":"b006ffd7548608c10ddd32ab8df2a5f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\internal_style.dart","hash":"974d0c452808a1c68d61285d0bd16b28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\relative_span_scanner.dart","hash":"b9c13cdd078c3b28c3392f0d6d5d647b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_path_l1_1_0.g.dart","hash":"42efc7a615bdc348ad78098c1cdb79b7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\parsed_path.dart","hash":"cb454929d7810d3ee5aa5fc28283d3fd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\flutter_riverpod.dart","hash":"05100b6f82b19ef0bab59f9f174ad39e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationexpandcollapsepattern.dart","hash":"8d6e1950b64962d48ef050d9517791be"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\url_launcher_windows.dart","hash":"17ff083c12565d73bcbd73eb0517016a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_header.dart","hash":"a4ee14a7e782832dcfbc9c8b1bba6f58"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\timeout.dart","hash":"6665bae4ddca65609834735a7f24c95f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parent_exception.dart","hash":"2ede71f09a240decbc57417850f8feb7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_capabilities_io.dart","hash":"0b279dcbda1933bafe0bd7d322e2000f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader5.dart","hash":"85574281bf7d7bee9722a21e092b4be0"},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf","hash":"e7069dfd19b331be16bed984668fe080"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\container.dart","hash":"b5a6037a3840b81b507f5d350ecbcfc2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\debug.dart","hash":"da2fb5c7eaae1fd58b34e80c4dad2cca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterable.dart","hash":"f0ae0acd94eb48615e14f6c4d1f5b8e0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\radio.dart","hash":"42df2f1a7ae133830d8c71decb094a5e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart","hash":"3ca8812a042f08605898cd939fc0974f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\mappers.dart","hash":"27bd31140f6d692c98f0cc901a7d77a1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel.dart","hash":"5875c344ee3ccdd069b4b7ff696432c4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\clipboard.dart","hash":"f63442b56372cdf284974de30fba136c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\sink.dart","hash":"93ac00707f7d2e5d4b863c54b11f2a9a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\gradient.dart","hash":"4e3fafe47b1073d4d546aa2a2d584710"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart","hash":"c2080626c8197add9dd213ba2b2ea79a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action.dart","hash":"6a3849c802c2fd63cd4d3db06470f387"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart","hash":"40a04e94b4e68da57cf200df6c661280"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetitempattern.dart","hash":"0b1037c34b64b5d7d84c6e578ab59974"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart","hash":"5e6f73850b640e3db6c2839a8b3b0b8f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.g.dart","hash":"a5df5f31e15cfee3902ff60a60eed5eb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\base.dart","hash":"34d65aad713399e0e95c6d52aea92d88"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\functions.dart","hash":"41f7bdb7d1eb3c86c21489902221b859"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationstylespattern.dart","hash":"a5c23bf569325f140ab7b7d88d3b683a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\dispatcher.dart","hash":"9de140992b1876855e65cdffbefe8a40"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart","hash":"e11d89b7d2933ba28814915b300af866"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effect_list.dart","hash":"e7da1eb4d5cb971f14a5cc5d487e80a4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart","hash":"3f17589464130c527c54bab5ded19c8b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart","hash":"7d4475d797ce6fece72d4fd77739f528"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast.dart","hash":"34cb3f67f2d538a80fb20ae30589d538"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\inline_span.dart","hash":"b36b5c0adbaf28834415cab7cf236586"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\align_effect.dart","hash":"4eded024c142173030b0fe3116f30c6d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\inbox_style_information.dart","hash":"b54d4d23f060b78a02290d93a10d3319"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose_family.dart","hash":"0dd5377006ddfc0b63c193276ef02d43"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_map.dart","hash":"9d273d5a3c1851b0313cd949e7f84355"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenser.dart","hash":"3fc24d3b43ff4a6b63811978cfb697e8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart","hash":"d26176ecba3541ce4aeb0ef89486df31"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quad.dart","hash":"375711cedfc8dfb78018a282ba880296"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_subscription.dart","hash":"e2d2090c2a39f7902893e64150fe82b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_string.dart","hash":"27e6c510107a34001ef90f889281633e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\repeating_animation_builder.dart","hash":"4a3dcf49e30c8511f9ee69ca6128b887"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix2.dart","hash":"5a770014b927807d1ef52e7b6e287897"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location_mixin.dart","hash":"6326660aedecbaed7a342070ba74de13"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\node_codec.dart","hash":"a40d7d4a17e700bbb41bf31de37c6bae"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style.dart","hash":"6928c6dcf177e8d03637ee7e015ff8cb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersist.dart","hash":"a1f73c43919636da8b8f9a657ca8cc14"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart","hash":"225d683fb2401c77aae17db2c95d0a02"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card_theme.dart","hash":"554306ec4df84e3dfc7ed4e63ceae74b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\character_data_parser.dart","hash":"7b4a3d153a0c2e22401073c511515325"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart","hash":"6ce7bea8fc63ae3a19131db10547ff2b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\binding.dart","hash":"a9f9101a72ae3969f82c0083a045779f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\highlighter.dart","hash":"5265b4bdec5c90bfd2937f140f3ba8fc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\team.dart","hash":"193d1801b76c52075287857a01d3fe83"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart","hash":"9c6dc856bf70678df688ea5a308290e3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\annotations.dart","hash":"b98145bd156a782be220cb3f652ba0a4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idispatch.dart","hash":"8ef246eaf180b7621f716282e295c950"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_mixin.dart","hash":"e103c51878b3741ffe4d81896876f3ef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\whitespace.dart","hash":"99d7e562270b8dd8f0522ff5019620cb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\local_platform.dart","hash":"9cc2170ec43e47681be6cb2a313ba1b5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart","hash":"53c58676c99bdf3839784d792c1c3d17"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\isolates.dart","hash":"36a99fab55346241cec61df175183d69"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker.dart","hash":"556c5677ab197ac52aaee6e02d6ebd70"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart","hash":"9621a4c337d24a926ff50126ce88d7fe"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart","hash":"d99d22e8a62a3ce1fa8b04b21702e1f6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.g.dart","hash":"ebee8885b5afd397cfa8920eeccf88e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\base.dart","hash":"d7d24730943cbf47d39aa11425ebf344"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\constant.dart","hash":"54356788d5c11fa49cae271d737b0c78"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid_windows.dart","hash":"659cff14f1665a31dec63407d7839624"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory_mixin.dart","hash":"47258dc751a1217744986101e934f62c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\_internal.dart","hash":"ef4618b5bf737a7625f62d841127c69d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock.dart","hash":"c31f7af379f7e5f653364d4a14a78750"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme_data.dart","hash":"2c38ead87a22902f0b6c73bac285c3ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_enum.dart","hash":"4817a73df1c313cf6a6eb86774e7fc99"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\lib\\plugin_platform_interface.dart","hash":"8e49d86f5f9c801960f1d579ca210eab"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart","hash":"ff836be2c45a3cd9f301d601cccf7ae0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\base.dart","hash":"a4eb00bf15ad2af7e8ef8480d7f26a29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\path_provider_platform_interface.dart","hash":"09b3f3b1ef14ce885c016f2eba98f3da"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\slide_effect.dart","hash":"a0d4a9c1b68cc6dbd6b64e41b7e92ae0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications.dart","hash":"672695b311530b8c64badc8eb93e6fd9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\normalizer.dart","hash":"8bd96caadcaefb063cca0c83d7707a57"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationandcondition.dart","hash":"c3b42ddc5c69d20f4bbfb3ccb3f30ffc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner_core-9.1.2\\LICENSE","hash":"3323850953be5c35d320c2035aad1a87"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog.dart","hash":"8a251fb90302207f7e9e3f95aca01a72"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\handler_transformer.dart","hash":"e358dbd512fac73db64b0628ad53bc82"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\LICENSE","hash":"6217a25f93e8cd70a46d36976630529f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart","hash":"c909abaa7c0b6b52aa22512668ededb0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\list_converter.dart","hash":"5f5f3a1074f40b8fc37c2b3ba5ec0432"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NativeAssetsManifest.json","hash":"f3a664e105b4f792c6c7fe4e4d22c398"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irunningobjecttable.dart","hash":"dfa3a8605c6665c94b8ca2bd43827718"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart","hash":"6e5b0197a79b966f3058972183b815a0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker.dart","hash":"2ec9f1a7465a01091d0fb1e48ae09fab"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_button.dart","hash":"03bba79b743a1422805600d8d348c106"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart","hash":"dd13dc6e713f88184d61169de451389b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\frustum.dart","hash":"c19a7119c5f0f19f3d0f4531c5345616"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart","hash":"f8ded7a3f53ded600055288202a36535"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpoint.dart","hash":"96c9d801d1879091246f0b107ee4147e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\uppercase.dart","hash":"00e2ecab2f5dd0c4f813bf6570d007c4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge_theme.dart","hash":"da1802b773732f65c4e80bbdb5ff020c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\src\\messages.g.dart","hash":"a6e5a05879e4b68ed3039be8d700bd6c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\curves.dart","hash":"5ebf390d29c2df54424ad03f3b3ee803"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_style.dart","hash":"b987d3cd7e9fb6c315cc761256ce124f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_image_io.dart","hash":"7f7fc8274f08decca0738d6873b9b8fa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid_linux.dart","hash":"9ee869577a0315e9f028e88f6cc33c7a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\text_direction.dart","hash":"45f61fb164130d22fda19cf94978853d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\texture.dart","hash":"e924e0f63c6bf206211fb6a6f319af53"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart","hash":"e7fb9fd369c9f97c921afb96147198d2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autofill.dart","hash":"900672c4f3a8c395331517ee4a59ea2c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensor.dart","hash":"9d1c0eb5292b2112e1b43affe9a2cadc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\tint_effect.dart","hash":"dbd8209d53e47e61541fe1c14e59c19e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha256.dart","hash":"d46b2577d6fe6a7c8f89b1de8fe9b880"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_server.dart","hash":"0b4a237293e913152ca376cdcfbe752a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\cancel_token.dart","hash":"254c9535d3cb04c28db0c51ada73e6fb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\proxy_provider_listenable.dart","hash":"2e59aadb17c005953c2accd529aced98"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme.dart","hash":"a93bdf24774a4f17d91eadb26603a2c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_channel-2.1.4\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_buffer.dart","hash":"22acb270c1bb267ee16b3d64a3faa825"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar_layout_delegate.dart","hash":"d2232e4bd0457a4a3eb6bd897846eb44"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_buffer.dart","hash":"f64837679a1abb526e942b166db5c244"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\legacy_api.dart","hash":"197929b9f3eecdb738b1d3e31c7481b8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document_fragment.dart","hash":"88acdeb4b5b5a9e5b057f7696935fc2e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\curves.dart","hash":"2fac118c3201a4bac960d7430ddda0c6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\factory.dart","hash":"63fa9307c55c93f4fde0e682e7da6503"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart","hash":"5588e04d2462fa3c03dc939826b0c8d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart","hash":"86827e5362f176a7e68d65c22420e837"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\listen_effect.dart","hash":"222071fadae509fb3c28ca2e5fff8f06"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_svg-2.3.0\\LICENSE","hash":"a02789da8b51e7b039db4810ec3a7d03"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_chrome.dart","hash":"bb208871e05247f3c1702ef1d4cb172d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanager.dart","hash":"9915c7d7ab3c9994e77dc4abfba9418d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart","hash":"6576b0da0c8edb1eaea39c7088dcc913"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bluetoothapis.g.dart","hash":"21dfa823454d051c097b62eb7499f71c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ierrorinfo.dart","hash":"7ec176456b796d360121e28a6af41a2a"},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","hash":"80b24d7e9d22ac22d59d17e1b83ee719"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_3.dart","hash":"9632b7c4c43e2e92f45bedc627663937"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iapplicationactivationmanager.dart","hash":"c96999a0782dffe9bf8eeaf394caf3bd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\lib\\shimmer.dart","hash":"49d17d6f2c4de81e5dc0cf98d720333a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart","hash":"48eacfdcc762ece187c27660f7010c77"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_anchor.dart","hash":"e7570654c0a436f6e9dd0d62c8df912d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_theme.dart","hash":"d291168e624df0fd07cf1a11ce6489a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart","hash":"fff2613591e3febf4c067fce116c105d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\src\\hct_solver.dart","hash":"2972206c70139c2948530bbb5c9cfa27"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart","hash":"284066476b8ec1cc92ff0011561ceffd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_viewport.dart","hash":"615c17d4e884a65d24a596112c37098b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pinned_header_sliver.dart","hash":"eba989b17aa7902153acc7df1658ba49"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\string_utils.dart","hash":"603b7b0647b2f77517d6e5cf1d073e5a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\boolean_selector-2.1.2\\LICENSE","hash":"83228a1ae32476770262d4ff2ac6f984"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_splitter.dart","hash":"508284c37de18e099acd673f1965ccc3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system.dart","hash":"dac02dc6cb13c753a5f3ae19976b1540"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\converter.dart","hash":"affb97b6cbd84919fa30ea3bcd5f12df"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart","hash":"9d21d08750f63eeb16370b13ff7829de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\headers.dart","hash":"12ada90523ca5fc00e317c0a59889a1c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\intl.dart","hash":"f0dd0e0193ab6bc6a1dc2a6cf6e1cd6b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notification_info.dart","hash":"5f02ac3087f8d081f489730eecb97f70"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfoldermanager.dart","hash":"49703a6e2b7dff13d801b6eb6e02062c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\node_list.dart","hash":"6b9e945de99fb44b45f72925b6e862b2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapter.dart","hash":"b3593abe51c68018faf79703c522773f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\stepper.dart","hash":"20a16b4f174e6bce075dcbfe68581c28"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart","hash":"03a019b76be5082eaff707596fc9f6ed"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jnumber.dart","hash":"46483f14160b780c8d1ae008588c50bb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_tree.dart","hash":"4f24c51c2701c07958c451114cd782d3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvirtualizeditempattern.dart","hash":"34ac34257c6ee30da8c0b6de4d0a5444"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation2.dart","hash":"c98cadb2fac8ead45ecaa10366da3ec9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\token.dart","hash":"5668ae4c673aeee9b233b0b024fcddf7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\view.dart","hash":"6f36125b419a1cc70316b6994433918a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\regexp.dart","hash":"10ca1bc893fd799f18a91afb7640ec26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\licenses.dart","hash":"eb2829db78e88b9a88e0013dd7d436e2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart","hash":"a38cc0128b89f1c9d566c6363cdb63ee"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart","hash":"179be66a83c076f437989e25cdc30a49"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\vote_buttons.dart","hash":"cc1f0acc7941fdcd1bc2ed72c04c9a81"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_transform-2.1.1\\LICENSE","hash":"901fb8012bd0bea60fea67092c26b918"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\url_launcher_linux.dart","hash":"5a4ec7ed205221c230844b97f4d0a27a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\toggle_effect.dart","hash":"959421bf7780ce3cb78244e6707be380"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_painter.dart","hash":"645e414df4ad6780c5bbe193972591ff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumstring.dart","hash":"68e28643e39694f628939978acdc52f5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\icon.dart","hash":"cb4cf0d998a65879bb40daf8db093eed"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_cache_manager-3.4.1\\LICENSE","hash":"7cd08032583ab0a8eca895b2365a4583"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\csslib-1.0.2\\LICENSE","hash":"d26b134ce6925adbbb07c08b02583fb8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality.dart","hash":"46e577ec532e21029e9cee153d7ca434"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\archive-4.0.9\\LICENSE","hash":"06d63878dac3459c0e43db2695de6807"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\windows_version_helper.dart","hash":"1f4f05a739274cdeb88c110bc6561ae8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\testing\\fake_platform.dart","hash":"f1a57183b9d9b863c00fcad39308d4c1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\sphere.dart","hash":"8b2f2f630b059eae09aa7e46fc3137b2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\element.dart","hash":"361f3bd2e6ba6710885e241d7574326b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iunknown.dart","hash":"314ca45445509ac0635a48d2dacca294"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\utils.dart","hash":"670717573525d5e0518a4063c6fd9231"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\validation.dart","hash":"f05c33bd910f900d035412bb6303e550"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid.dart","hash":"5261078afe15bcdc637478bb6d7f7e21"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location_database.dart","hash":"011e1e9f46dfe9400619c8e5103c30ef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid_value.dart","hash":"b95223379fd765fdba36bd57d890f63d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationnotcondition.dart","hash":"1fec236f729d3217c13d42295fe3faf5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\position.dart","hash":"24332e073ea65324af6702f2baa79438"}]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/app.dill b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/app.dill
new file mode 100644
index 0000000..88612eb
Binary files /dev/null and b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/app.dill differ
diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/dart_build.d b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/dart_build.d
new file mode 100644
index 0000000..ad9239c
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/dart_build.d
@@ -0,0 +1 @@
+ D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\dart_build_result.json: C:\\Users\\angel\\flutter\\bin\\cache\\dart-sdk\\version D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/dart_build.stamp b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/dart_build.stamp
new file mode 100644
index 0000000..c4d9cc5
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/dart_build.stamp
@@ -0,0 +1 @@
+{"inputs":["C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\native_assets.dart","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","C:\\Users\\angel\\flutter\\bin\\cache\\dart-sdk\\version","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml","d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\dart_build_result.json","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\dart_build_result.json"]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/dart_build_result.json b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/dart_build_result.json
new file mode 100644
index 0000000..a7bc96b
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/dart_build_result.json
@@ -0,0 +1 @@
+{"build_start":"2026-05-15T12:29:51.171303","build_end":"2026-05-15T12:30:01.542917","dependencies":["file:///C:/Users/angel/flutter/bin/cache/dart-sdk/version","file:///D:/YandexDisk/voidea/flutter/.dart_tool/package_config.json","file:///D:/YandexDisk/voidea/flutter/pubspec.yaml","file:///d:/yandexdisk/voidea/flutter/.dart_tool/package_config.json"],"code_assets":[],"data_assets":[]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/debug_android_application.stamp b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/debug_android_application.stamp
new file mode 100644
index 0000000..df33305
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/debug_android_application.stamp
@@ -0,0 +1 @@
+{"inputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\app.dill","C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\icon_tree_shaker.dart","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml","C:\\Users\\angel\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\ink_sparkle.frag","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\stretch_effect.frag","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\native_assets.json","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\_fe_analyzer_shared-85.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer-7.6.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer_plugin-0.13.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ansicolor-2.0.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\archive-4.0.9\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\args-2.7.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\boolean_selector-2.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build-2.5.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_config-1.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_daemon-4.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_resolvers-2.5.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner-2.5.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner_core-9.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_collection-5.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_value-8.12.6\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image-3.4.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_platform_interface-4.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_web-1.3.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\checked_yaml-2.0.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_builder-4.11.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\convert-3.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\csslib-1.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_core-0.7.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_visitor-1.0.0+7.7.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dart_style-3.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio_web_adapter-2.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fake_async-1.3.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_cache_manager-3.4.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_lints-5.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_native_splash-2.4.7\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_linux-1.2.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_macos-3.1.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_web-1.2.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_svg-2.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed-2.5.8\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed_annotation-2.4.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\frontend_server_client-4.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\graphs-2.3.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\html-0.15.6\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http-1.6.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_multi_server-3.2.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\image-4.8.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\io-1.0.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\js-0.6.7\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_serializable-6.9.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker-11.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_flutter_testing-3.0.10\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_testing-3.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\lints-5.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\matcher-0.12.19\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\octo_image-2.1.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_config-2.2.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_parsing-1.1.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pedantic-1.11.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pool-1.5.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\posix-6.5.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pubspec_parse-1.5.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_analyzer_utils-0.5.9\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_annotation-2.6.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_generator-2.6.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\rxdart-0.28.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf-1.4.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf_web_socket-3.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_gen-2.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_helper-1.3.7\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite-2.4.2+1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_channel-2.1.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_transform-2.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\test_api-0.7.10\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timing-1.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\universal_io-2.3.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_web-2.4.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics-1.2.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_codec-1.1.13\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_compiler-1.2.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vm_service-15.2.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\watcher-1.2.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web-1.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket-1.0.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket_channel-3.0.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\LICENSE","C:\\Users\\angel\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE","C:\\Users\\angel\\flutter\\packages\\flutter\\LICENSE","D:\\YandexDisk\\voidea\\flutter\\DOES_NOT_EXIST_RERUN_FOR_WILDCARD456102081"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts\\MaterialIcons-Regular.otf","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\ink_sparkle.frag","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\stretch_effect.frag","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.bin","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NativeAssetsManifest.json"]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/flutter_assets.d b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/flutter_assets.d
new file mode 100644
index 0000000..f989ab9
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/flutter_assets.d
@@ -0,0 +1 @@
+ D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts\\MaterialIcons-Regular.otf D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\ink_sparkle.frag D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\stretch_effect.frag D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.bin D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NativeAssetsManifest.json: D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml C:\\Users\\angel\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\ink_sparkle.frag C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\stretch_effect.frag D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\native_assets.json C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\_fe_analyzer_shared-85.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer-7.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer_plugin-0.13.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ansicolor-2.0.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\archive-4.0.9\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\args-2.7.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\boolean_selector-2.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build-2.5.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_config-1.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_daemon-4.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_resolvers-2.5.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner-2.5.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner_core-9.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_collection-5.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_value-8.12.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image-3.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_platform_interface-4.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_web-1.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\checked_yaml-2.0.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_builder-4.11.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\convert-3.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\csslib-1.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_core-0.7.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_visitor-1.0.0+7.7.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dart_style-3.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio_web_adapter-2.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fake_async-1.3.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_cache_manager-3.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_lints-5.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_native_splash-2.4.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_linux-1.2.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_macos-3.1.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_web-1.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_svg-2.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed-2.5.8\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed_annotation-2.4.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\frontend_server_client-4.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\graphs-2.3.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\html-0.15.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http-1.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_multi_server-3.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\image-4.8.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\io-1.0.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\js-0.6.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_serializable-6.9.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker-11.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_flutter_testing-3.0.10\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_testing-3.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\lints-5.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\matcher-0.12.19\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\octo_image-2.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_config-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_parsing-1.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pedantic-1.11.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pool-1.5.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\posix-6.5.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pubspec_parse-1.5.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_analyzer_utils-0.5.9\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_annotation-2.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_generator-2.6.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\rxdart-0.28.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf-1.4.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf_web_socket-3.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_gen-2.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_helper-1.3.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite-2.4.2+1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_channel-2.1.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_transform-2.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\test_api-0.7.10\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timing-1.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\universal_io-2.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_web-2.4.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics-1.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_codec-1.1.13\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_compiler-1.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vm_service-15.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\watcher-1.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web-1.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket-1.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket_channel-3.0.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\LICENSE C:\\Users\\angel\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE C:\\Users\\angel\\flutter\\packages\\flutter\\LICENSE D:\\YandexDisk\\voidea\\flutter\\DOES_NOT_EXIST_RERUN_FOR_WILDCARD456102081
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/gen_dart_plugin_registrant.stamp b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/gen_dart_plugin_registrant.stamp
new file mode 100644
index 0000000..8752078
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/gen_dart_plugin_registrant.stamp
@@ -0,0 +1 @@
+{"inputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart"]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/gen_localizations.stamp b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/gen_localizations.stamp
new file mode 100644
index 0000000..1b2d28c
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/gen_localizations.stamp
@@ -0,0 +1 @@
+{"inputs":[],"outputs":[]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/install_code_assets.d b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/install_code_assets.d
new file mode 100644
index 0000000..7b1bfe2
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/install_code_assets.d
@@ -0,0 +1 @@
+ D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\native_assets.json:
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/install_code_assets.stamp b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/install_code_assets.stamp
new file mode 100644
index 0000000..c975b87
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/install_code_assets.stamp
@@ -0,0 +1 @@
+{"inputs":["C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\native_assets.dart","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\native_assets.json","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\native_assets.json"]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/kernel_snapshot_program.d b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/kernel_snapshot_program.d
new file mode 100644
index 0000000..676ab75
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/kernel_snapshot_program.d
@@ -0,0 +1 @@
+D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\app.dill: D:\\YandexDisk\\voidea\\flutter\\lib\\main.dart D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\dart_plugin_registrant.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\material.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\services.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\flutter_riverpod.dart D:\\YandexDisk\\voidea\\flutter\\lib\\app.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\flutter_local_notifications.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\path_provider_android.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\lib\\sqflite_android.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\url_launcher_android.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\path_provider_foundation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\lib\\sqflite_darwin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\url_launcher_ios.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\connectivity_plus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\flutter_local_notifications_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\package_info_plus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\path_provider_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\share_plus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\url_launcher_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\url_launcher_macos.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\flutter_secure_storage_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\path_provider_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\lib\\speech_to_text_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\url_launcher_windows.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\about.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_buttons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_icons_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\adaptive_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\arc.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\autocomplete.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\choice_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\color_scheme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\colors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\curves.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_source.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_form_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expand_icon.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filter_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_sparkle.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_splash.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_well.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_decorator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\magnifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_localizations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_anchor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\motion.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\no_splash.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\predictive_back_page_transitions_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider_parts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scaffold.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_anchor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_view_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selectable_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selection_area.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shadows.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_parts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_value_indicator_shape.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar_layout_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\stepper.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tabs.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_form_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_visibility.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\typography.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\widgets.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_manifest.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\autofill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\browser_context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\clipboard.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\deferred_component.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flavor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flutter_version.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\font_loader.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_inserted_content.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_key.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_maps.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\live_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codec.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codecs.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_channel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_views.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\predictive_back_event.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\process_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\restoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\scribe.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\sensitive_content.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\spell_check.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_channels.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_chrome.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_navigator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_sound.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_boundary.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing_delta.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_formatter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_input.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_layout_metrics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\undo_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\riverpod.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\consumer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\framework.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\router\\app_router.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\theme\\app_theme.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\theme_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\flutter_local_notifications_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\flutter_local_notifications_plugin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_flutter_local_notifications.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\bitmap.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\icon.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\message.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_sound.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\person.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\schedule_mode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_picture_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_text_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\default_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\inbox_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\media_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\messaging_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\interruption_level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action_option.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_attachment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category_option.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_enabled_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\ios\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\typedefs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider_android_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\sqflite_platform_interface.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\foundation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\url_launcher_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\path_provider_foundation_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\connectivity_plus_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\collection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\src\\connectivity_plus_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\capabilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\icon.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\sound.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\timeout.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\path_provider_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\share_plus_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\src\\flutter_secure_storage_windows_ffi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\folders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\path_provider_windows_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\speech_to_text_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\src\\messages.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\cupertino.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\scheduler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\back_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\rendering.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\animation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math_64.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\gestures.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\material_color_utilities.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\painting.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\characters.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\actions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\adapter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app_lifecycle_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\async.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autofill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\banner.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\basic.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\container.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_button_item.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\date.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\decorated_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_selection_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\display_feature_sub_screen.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_boundary.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\expansible.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\feedback.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\flutter_logo.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\form.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\framework.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\heroes.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\localizations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\lookup_boundary.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\magnifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\media_query.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator_pop_handler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_transitions_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pages.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pinned_header_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_menu_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_selectable_region_context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pop_scope.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\radio_group.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_menu_anchor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_radio.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_tooltip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\repeating_animation_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\router.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\routes.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable_helpers.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selectable_region.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selection_container.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sensitive_content.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shared_app_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_floating_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_resizing_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_tree.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\slotted_render_object_widget.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\snapshot_widget.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spacer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spell_check.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\standard_component_type.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\stretch_effect.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\system_context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tap_region.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_anchors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\texture.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\title.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\toggleable.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\transitions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\undo_history.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\visibility.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_state.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\_background_isolate_binary_messenger_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\lib\\state_notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_controller.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\internals.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\builders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\internals.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\go_router.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\flutter_secure_storage.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\login_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\register_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\two_factor_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\forgot_password_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\reset_password_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\dashboard\\dashboard_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_list_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_view_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_create_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_edit_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_input_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_sessions_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_list_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_detail_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\notifications\\notifications_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\settings\\screens\\settings_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\admin\\screens\\admin_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\onboarding\\onboarding_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\shell.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\client.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\constants\\app_constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\lib\\plugin_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\typedefs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\timezone.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\clock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\callback_dispatcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\method_channel_mappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\mappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\tz_datetime_mapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\jni.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\jni_flutter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\path_provider_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqlite_api.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\factory_platform.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\annotations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\assertions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\capabilities.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\collections.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\isolates.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\key.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\licenses.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\memory_allocations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\node.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\object.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\persistent_hash_map.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\platform.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\print.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\serialization.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\timeline.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\unicode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\url_launcher_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\objective_c.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\ffi_bindings.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\method_channel_connectivity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\algorithms.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\boollist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\canonicalized_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\comparators.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\functions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\list_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\priority_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\queue_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set_controller.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\unmodifiable_wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\nm.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications_platform_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notifications_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\hint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\method_channel_package_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_attribute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_version_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\lib\\xdg_directories.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\cross_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\platform_interface\\share_plus_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\windows_version_helper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\ffi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\flutter_secure_storage_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\lib\\path_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\win32.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\guid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\win32_wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\method_channel_speech_to_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\adaptive_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\app.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\checkbox.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\colors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\cupertino_focus_halo.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\expansion_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_section.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\magnifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\radio.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\route.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sheet.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\slider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\spell_check_suggestions_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\switch.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\priority.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\semantics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\decorated_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\editable.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\error.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flex.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flow.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image_filter_config.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_body.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\object.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_group.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_tree.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\stack.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\texture.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\tweens.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\wrap.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\curves.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\error_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\frustum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\intersection_result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\noise.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\obb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\opengl.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\plane.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quad.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quaternion.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\ray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\sphere.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\triangle.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\utilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector4.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\arena.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\converter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\eager.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\events.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\force_press.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_details.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_settings.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\long_press.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multitap.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\resampler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\scale.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap_and_drag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\team.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\blend\\blend.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\contrast\\contrast.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dislike\\dislike_analyzer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_color.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_scheme.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\material_dynamic_colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\variant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\cam16.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\hct.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\viewing_conditions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\core_palette.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\tonal_palette.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_celebi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wsmeans.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wu.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_content.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_expressive.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fidelity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fruit_salad.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_monochrome.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_neutral.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_rainbow.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_tonal_spot.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_vibrant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\score\\score.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\temperature\\temperature_cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\color_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\math_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\string_utils.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\alignment.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\basic_types.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\border_radius.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\borders.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_fit.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\circle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\clip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\colors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\geometry.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\gradient.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_cache.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_stream.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\inline_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\linear_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\oval_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\star_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\strut_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_painter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_scaler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_features.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_browser_detection_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_web_image_info_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_image_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\physics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_platform_selectable_region_context_menu_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_html_element_view_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta_meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\builders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\listenable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\pragma.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\run_guarded.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose_family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose_family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stack_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common\\env.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\always_alive.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\async_selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\provider_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\container.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\listen.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\foundation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\proxy_provider_listenable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\ref.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\scheduler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\value_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose_family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\configuration.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\delegate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\information_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\match.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\inherited_router.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\custom_transition_page.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\router.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\state.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\test\\test_flutter_secure_storage_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\android_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\apple_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\ios_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\linux_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\macos_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\web_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\windows_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\flutter_animate.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\auth_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\utils\\validators.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\ideas_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\workspace_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\loading_indicator.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\error_display.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\empty_state.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\funnel_status_badge.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\idea.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\widgets\\funnel_kanban.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\intl.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\collaboration.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\vote_buttons.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\comment_thread.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\endpoints.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\disk_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_to_text.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\voice.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\workspace.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\notification_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\calendar_integration_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\disk_integration_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\exceptions.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\admin.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\tariff.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\auth.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\dio.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\date_time.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\env.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\exceptions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location_database.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\default.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\clock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\core_bindings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jarray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jimplementer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jni.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jreference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jvalues.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\lang.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\nio.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\util.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\jni_flutter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\method_channel_path_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\_internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_database_factory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sql.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\open_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\transaction.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_executor_iterate_ext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_ext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_debug.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command_executor_ext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\platform_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_import.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_method_channel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_capabilities_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_timeline_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\method_channel_url_launcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\pub_semver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\autorelease.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\block.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\c_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\cf_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\globals.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_array.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_date.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_dictionary.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_enumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_input_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_mutable_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_number.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_exported.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\observer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\os_version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\protocol_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\runtime_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\empty_unmodifiable_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\src\\network_manager_client.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\dbus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\dbus_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notification_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\platform_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\storage.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\x_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\method_channel\\method_channel_share.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\allocation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\arena.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf16.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\method_channel_flutter_secure_storage.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\bstr.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\callbacks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_metadata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_nodoc.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\dispatcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\exceptions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\functions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\guid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\inline.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\macros.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\propertykey.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\variant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winmd_constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winrt_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\dialogs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\filetime.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\int_to_hexstring.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\list_to_blob.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_ansi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string_array.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\unpack_utf16.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\advapi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bluetoothapis.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bthprops.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comctl32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comdlg32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\crypt32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dbghelp.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dwmapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dxva2.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\gdi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\iphlpapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\kernel32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\magnification.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\netapi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ntdll.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ole32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\oleaut32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\powrprof.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\propsys.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\rometadata.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\scarddlg.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\setupapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shell32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shlwapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\user32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\uxtheme.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\version.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wevtapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winmm.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winscard.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winspool.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wlanapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wtsapi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\xinput1_4.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_apiquery_l2_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_1.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_2.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_handle_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_path_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_sysinfo_l1_2_3.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_error_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_string_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_1.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_shcore_scaling_l1_1_1.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_wsl_api_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\combase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iagileobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iapplicationactivationmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfile.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfilesenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplication.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplicationsenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestospackagedependency.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependenciesenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependency.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackageid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestproperties.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxpackagereader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiocaptureclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclientduckingcontrol.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclockadjustment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiorenderclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiostreamvolume.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ibindctx.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ichannelaudiovolume.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iclassfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpoint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpointcontainer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idesktopwallpaper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idispatch.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumidlist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienummoniker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworkconnections.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumresources.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumspellingerror.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumstring.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumvariant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumwbemclassobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ierrorinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialogcustomize.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileisinuse.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileopendialog.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifilesavedialog.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinitializewithwindow.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinspectable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfolder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfoldermanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataassemblyimport.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenserex.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevicecollection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdeviceenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immendpoint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immnotificationclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imodalwindow.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imoniker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetwork.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworkconnection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanagerevents.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistfile.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistmemory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersiststream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipropertystore.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iprovideclassinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irestrictederrorinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irunningobjecttable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensorcollection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensordatareport.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensormanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isequentialstream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellfolder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemarray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemfilter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemimagefactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemresources.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdatalist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdual.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellservice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isimpleaudiovolume.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechaudioformat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechbasestream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttoken.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttokens.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoicestatus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechwaveformatex.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerchangedeventhandler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellingerror.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeventsource.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispnotifysource.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispvoice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\istream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isupporterrorinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\itypeinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationandcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationannotationpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationboolcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcacherequest.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcustomnavigationpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdockpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdragpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdroptargetpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement9.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelementarray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationexpandcollapsepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgriditempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgridpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationinvokepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationitemcontainerpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationlegacyiaccessiblepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationmultipleviewpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationnotcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationobjectmodelpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationorcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationpropertycondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactoryentry.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactorymapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationrangevaluepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationstylespattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationsynchronizedinputpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtableitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtablepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextchildpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtexteditpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrangearray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtogglepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtreewalker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvaluepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvirtualizeditempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationwindowpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iunknown.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuri.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ivirtualdesktopmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemclassobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemconfigurerefresher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemcontext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemhiperfenum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemlocator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemobjectaccess.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemrefresher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemservices.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwebauthenticationcoremanagerinterop.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwinhttprequest.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\contrast_curve.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\tone_delta_pair.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\src\\hct_solver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider_lab.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters_impl.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_positioner.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\tolerance.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\stack_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\logging.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\error_screen.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\cupertino.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\material.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\path_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\logging.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effect_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\flutter_animate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effects.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\lib\\shimmer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\global_state.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\plural_rules.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi_formatter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\micro_money.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\text_direction.dart D:\\YandexDisk\\voidea\\flutter\\lib\\api\\disk.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\cancel_token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\form_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\headers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\log.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\parameter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\redirect_record.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\tzdb.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\stopwatch.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\generated_bindings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\primitive_jarrays.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\accessors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jstring.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jlist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jboolean.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jbyte.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jcharacter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jdouble.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jfloat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jinteger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jlong.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jnumber.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jshort.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbuffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbyte_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jclass.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jprimitives.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jiterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jmap.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jset.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\generated_plugin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\kotlin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\method_invocation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\version_check.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\batch.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\cursor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\collection_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\path_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\value_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\utils\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\synchronized.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\arg_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\import_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\logger\\sqflite_logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\compat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\factory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_constraint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_union.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_address.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_client.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_client.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_call.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_response.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_server.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_signal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\posix.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\characters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\internal_style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\parsed_path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\posix.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\url.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\mime.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\_internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\breaks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_linux.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_macos.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_win32.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\chain.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\frame.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\unparsed_frame.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\log_record.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\warn.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\scroll_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_notifier_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\change_notifier_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\align_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\blur_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\box_shadow_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\callback_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\color_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\crossfade_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\custom_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\elevation_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\fade_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\flip_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\follow_path_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\listen_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\move_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\rotate_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\saturate_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\scale_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shader_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shake_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shimmer_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\slide_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\swap_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\then_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\tint_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\toggle_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\visibility_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\animation_controller_loop_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\num_duration_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\offset_copy_with_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\date_symbols.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\date_format_internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_computation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\regexp.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\string_stack.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format_field.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\compact_number_format.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\json_annotation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\legacy_api.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_uri.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapters\\io_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio\\dio_for_native.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\async.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\imply_content_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\progress_stream\\io_progress_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response\\response_stream_handler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\http_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file\\io_multipart_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\background_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\fused_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\sync_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\global_env_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\jni_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\local_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\testing\\fake_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\env_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\basic_lock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\reentrant_lock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\lock_extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\multi_lock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite_logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\patterns.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_uuid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_bus_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_error_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_interface_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspectable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_match_rule.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_member_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_message.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_tree.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_peer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_properties.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_read_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_write_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_server.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_multipart_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_shared.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\rng.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\validation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\parsing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v1.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8generic.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_chain.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\stack_zone_specification.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\vm_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\flutter_shaders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\allowed_keys_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\checked_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\enum_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_enum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_key.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_literal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\type_conversion.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_memoizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\byte_collector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\cancelable_operation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\chunked_stream_reader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\event_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_consumer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\future_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\lazy_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\null_stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\restartable_timer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\single_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\sink_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_closer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_splitter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\subscription_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed_stream_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\authentication_challenge.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\case_insensitive_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\http_date.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\media_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\consolidate_bytes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\transform_empty_to_null.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\default_mapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\entity_mapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\null_mapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\attribute_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\node_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\format_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parent_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parser_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\tag_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\type_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\ancestors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\comparison.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\descendants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\find.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\following.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\mutator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\nodes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\preceding.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\sibling.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_attributes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_children.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_visitor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_writer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\attribute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\cdata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\comment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\declaration.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\doctype.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document_fragment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\node.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\processing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\text.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\normalizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\pretty_writer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\visitor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\writer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\default_extension_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\bound_multipart_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\char_code.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\magic_number.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\crypto.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\fixnum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\animated_sampler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\shader_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\inkwell_shader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\set_uniforms.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\reject_errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\handler_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\stream_transformer_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\typed.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\scan.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\decoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\encoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\dtd\\external_id.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\namespace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\named_entities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\core.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name_matcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\node_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\predicate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml_events.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\prefix_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\simple_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hmac.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\md5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha1.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha256.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int32.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int64.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\intx.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\line_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\source_span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\charcodes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\event.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\event_codec.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\node_codec.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_decoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_encoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_decoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_encoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\cdata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\comment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\declaration.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\doctype.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\end_element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\processing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\start_element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\text.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\each_event.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\flatten.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\normalizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\subtree_selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\with_parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\event_attribute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\visitor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512_fastsinks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\utilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\error_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\frustum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\intersection_result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\noise.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\obb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\opengl.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\plane.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quad.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quaternion.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\ray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\sphere.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\triangle.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\utilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\eager_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\relative_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_with_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_buffers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\pragma.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\newline.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\annotator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\petitparser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\conversion_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\list_converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\named.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\term_glyph.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\highlighter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\delegate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\definition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\expression.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\matcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\character_data_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\ascii_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\unicode_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\top_level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\grammar.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\reference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\resolve.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\accept.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\continuation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\flatten.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\permute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\pick.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\trim.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\where.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any_of.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\char.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\digit.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\letter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\lowercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\none_of.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\uppercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\whitespace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\word.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\and.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\choice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\not.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\optional.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\sequence.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\settable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\skip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\end.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\epsilon.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\failure.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\label.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\position.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\predicate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\single_character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\unicode_character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\greedy.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\lazy.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\limited.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\possessive.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\repeating.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\separated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\unbounded.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\failure_joiner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\labeled.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\resolvable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\separated_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\reference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\undefined.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\reflection\\iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\sequential.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\code.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\optimize.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\char.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\digit.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\letter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lowercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\not.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\uppercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\whitespace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\word.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_9.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_match.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lookup.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterator.dart
diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/kernel_snapshot_program.stamp b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/kernel_snapshot_program.stamp
new file mode 100644
index 0000000..1520a1b
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/kernel_snapshot_program.stamp
@@ -0,0 +1 @@
+{"inputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\common.dart","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","D:\\YandexDisk\\voidea\\flutter\\lib\\main.dart","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\dart_plugin_registrant.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\material.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\services.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\flutter_riverpod.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\app.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\flutter_local_notifications.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\path_provider_android.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\lib\\sqflite_android.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\url_launcher_android.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\path_provider_foundation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\lib\\sqflite_darwin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\url_launcher_ios.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\connectivity_plus.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\flutter_local_notifications_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\package_info_plus.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\path_provider_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\share_plus.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\url_launcher_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\url_launcher_macos.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\flutter_secure_storage_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\path_provider_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\lib\\speech_to_text_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\url_launcher_windows.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\about.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_buttons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_chip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_icons_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\adaptive_text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\arc.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\autocomplete.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\choice_chip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\color_scheme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\colors.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\constants.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\curves.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_source.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_form_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expand_icon.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filter_chip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_sparkle.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_splash.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_well.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_chip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_decorator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\magnifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_localizations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_anchor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_style.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\motion.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\no_splash.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\predictive_back_page_transitions_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider_parts.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scaffold.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_anchor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_view_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selectable_text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selection_area.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shadows.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_parts.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_value_indicator_shape.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar_layout_delegate.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\stepper.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_controller.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tabs.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_form_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_visibility.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\typography.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\widgets.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_manifest.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\autofill.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\browser_context_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\clipboard.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\deferred_component.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flavor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flutter_version.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\font_loader.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_inserted_content.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_key.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_maps.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\live_text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codec.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codecs.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_channel.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_views.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\predictive_back_event.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\process_text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\restoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\scribe.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\sensitive_content.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\service_extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\spell_check.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_channels.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_chrome.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_navigator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_sound.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_boundary.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing_delta.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_formatter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_input.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_layout_metrics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\undo_manager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\riverpod.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\consumer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\framework.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\router\\app_router.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\theme\\app_theme.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\theme_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\flutter_local_notifications_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\flutter_local_notifications_plugin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\initialization_settings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\notification_details.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_flutter_local_notifications.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\bitmap.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\icon.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\initialization_settings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\message.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel_group.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_details.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_sound.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\person.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\schedule_mode.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_picture_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_text_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\default_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\inbox_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\media_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\messaging_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\initialization_settings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\interruption_level.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action_option.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_attachment.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category_option.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_details.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_enabled_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\ios\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\typedefs.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider_android_real.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\sqflite_platform_interface.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\foundation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\link.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\url_launcher_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\src\\messages.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\path_provider_foundation_real.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\src\\messages.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\connectivity_plus_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\collection.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\src\\connectivity_plus_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\capabilities.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\icon.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\initialization_settings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\location.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\notification_details.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\sound.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\timeout.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\path_provider_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\share_plus_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\src\\messages.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\src\\messages.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\src\\flutter_secure_storage_windows_ffi.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\folders.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\path_provider_windows_real.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\speech_to_text_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\src\\messages.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\cupertino.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\scheduler.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\back_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\rendering.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\animation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math_64.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\gestures.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\material_color_utilities.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\painting.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\characters.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\actions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\adapter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app_lifecycle_listener.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\async.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autofill.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\banner.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\basic.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\container.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_button_item.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_controller.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\date.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\decorated_sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_selection_style.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\display_feature_sub_screen.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_boundary.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\expansible.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\feedback.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\flutter_logo.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\form.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\framework.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\heroes.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\localizations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\lookup_boundary.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\magnifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\media_query.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator_pop_handler.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overlay.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_transitions_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pages.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pinned_header_sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_menu_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_selectable_region_context_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pop_scope.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\radio_group.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_menu_anchor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_radio.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_tooltip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\repeating_animation_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\router.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\routes.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_delegate.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable_helpers.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selectable_region.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selection_container.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sensitive_content.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\service_extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shared_app_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_floating_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_resizing_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_tree.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\slotted_render_object_widget.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\snapshot_widget.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spacer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spell_check.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\standard_component_type.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\stretch_effect.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\system_context_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\table.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tap_region.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_anchors.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\texture.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\title.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\toggleable.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\transitions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_viewport.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\undo_history.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\viewport.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\visibility.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_state.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\_background_isolate_binary_messenger_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\lib\\state_notifier.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_controller.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\internals.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\builders.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\internals.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\go_router.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\flutter_secure_storage.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\login_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\register_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\two_factor_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\forgot_password_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\reset_password_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\dashboard\\dashboard_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_list_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_view_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_create_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_edit_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_input_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_sessions_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_list_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_detail_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\notifications\\notifications_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\settings\\screens\\settings_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\admin\\screens\\admin_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\onboarding\\onboarding_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\shell.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\client.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\constants\\app_constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\lib\\plugin_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\typedefs.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\timezone.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\clock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\callback_dispatcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\method_channel_mappers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\mappers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\tz_datetime_mapper.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\jni.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\jni_flutter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\path_provider_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqlite_api.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\factory_platform.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\annotations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\assertions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\capabilities.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\collections.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\constants.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\isolates.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\key.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\licenses.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\memory_allocations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\node.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\object.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\persistent_hash_map.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\platform.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\print.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\serialization.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\service_extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\timeline.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\unicode.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\url_launcher_platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\objective_c.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\ffi_bindings.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\method_channel_connectivity.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\algorithms.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\boollist.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\canonicalized_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\comparators.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\functions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_zip.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\list_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\priority_queue.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\queue_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set_controller.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\unmodifiable_wrappers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\wrappers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\nm.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications_platform_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notifications_manager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\hint.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\method_channel_package_info.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\path.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_attribute.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_version_info.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\lib\\xdg_directories.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\cross_file.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\platform_interface\\share_plus_platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\windows_version_helper.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\ffi.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\flutter_secure_storage_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\lib\\path_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\win32.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\guid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\win32_wrappers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\method_channel_speech_to_text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\adaptive_text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\app.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\checkbox.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\colors.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\constants.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\cupertino_focus_halo.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\expansion_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_section.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\magnifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\picker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\radio.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\route.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sheet.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\slider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\spell_check_suggestions_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\switch.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\priority.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\service_extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\semantics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\box.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\decorated_sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\editable.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\error.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flex.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flow.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image_filter_config.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_body.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\object.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\service_extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_group.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_tree.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\stack.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\texture.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\tweens.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\wrap.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_style.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\curves.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\colors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\error_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\frustum.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\intersection_result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\noise.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\obb3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\opengl.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\plane.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quad.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quaternion.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\ray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\sphere.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\triangle.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\utilities.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector4.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\arena.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\constants.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\converter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\eager.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\events.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\force_press.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_details.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_settings.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\long_press.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multitap.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\resampler.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\scale.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap_and_drag.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\team.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\blend\\blend.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\contrast\\contrast.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dislike\\dislike_analyzer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_color.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_scheme.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\material_dynamic_colors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\variant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\cam16.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\hct.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\viewing_conditions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\core_palette.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\tonal_palette.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_celebi.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wsmeans.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wu.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_content.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_expressive.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fidelity.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fruit_salad.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_monochrome.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_neutral.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_rainbow.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_tonal_spot.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_vibrant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\score\\score.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\temperature\\temperature_cache.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\color_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\math_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\string_utils.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\alignment.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\basic_types.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\border_radius.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\borders.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_fit.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\circle_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\clip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\colors.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\geometry.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\gradient.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_cache.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_provider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_stream.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\inline_span.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\linear_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\oval_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\star_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\strut_style.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_painter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_scaler.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_span.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_style.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\constants.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_features.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_browser_detection_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_web_image_info_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_image_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\physics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_platform_selectable_region_context_menu_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_html_element_view_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta_meta.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\builders.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\listenable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\pragma.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\run_guarded.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose_family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose_family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stack_trace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common\\env.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\always_alive.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\async_selector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\provider_base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\element.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\container.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\listen.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\foundation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\proxy_provider_listenable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\ref.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\selector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\scheduler.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\value_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose_family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\configuration.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\delegate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\information_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\match.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\errors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\inherited_router.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\custom_transition_page.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\router.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\state.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\test\\test_flutter_secure_storage_platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\android_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\apple_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\ios_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\linux_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\macos_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\web_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\windows_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\flutter_animate.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\auth_provider.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\utils\\validators.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\ideas_provider.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\workspace_provider.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\loading_indicator.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\error_display.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\empty_state.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\funnel_status_badge.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\idea.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\widgets\\funnel_kanban.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\intl.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\collaboration.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\vote_buttons.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\comment_thread.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\endpoints.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\disk_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_to_text.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\voice.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\workspace.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\notification_provider.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\calendar_integration_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\disk_integration_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\exceptions.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\admin.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\tariff.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\auth.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\dio.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\date_time.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\env.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\exceptions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location_database.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\default.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\clock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\core_bindings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\errors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jarray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jimplementer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jni.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jobject.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jreference.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jvalues.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\lang.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\nio.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\util.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\jni_flutter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\method_channel_path_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\_internal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_database_factory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sql.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\open_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\transaction.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\constant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_executor_iterate_ext.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_ext.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_debug.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command_executor_ext.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\platform_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_import.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_method_channel.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_capabilities_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_timeline_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\method_channel_url_launcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\pub_semver.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\autorelease.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\block.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\c_bindings_generated.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\cf_string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\converter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\globals.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\internal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_array.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_date.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_dictionary.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_enumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_input_stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_mutable_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_number.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_exported.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\observer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\os_version.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\protocol_builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\runtime_bindings_generated.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\selector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\empty_unmodifiable_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\src\\network_manager_client.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\dbus.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\dbus_wrapper.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notification_info.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\platform_info.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\storage.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\context.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id_real.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\x_file.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\method_channel\\method_channel_share.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\allocation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\arena.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf16.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf8.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\method_channel_flutter_secure_storage.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\bstr.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\callbacks.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_metadata.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_nodoc.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\dispatcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\exceptions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\functions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\guid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\inline.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\macros.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\propertykey.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\variant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winmd_constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winrt_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\dialogs.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\filetime.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\int_to_hexstring.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\list_to_blob.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_ansi.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string_array.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\unpack_utf16.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\advapi32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bluetoothapis.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bthprops.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comctl32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comdlg32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\crypt32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dbghelp.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dwmapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dxva2.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\gdi32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\iphlpapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\kernel32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\magnification.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\netapi32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ntdll.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ole32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\oleaut32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\powrprof.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\propsys.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\rometadata.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\scarddlg.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\setupapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shell32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shlwapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\user32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\uxtheme.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\version.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wevtapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winmm.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winscard.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winspool.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wlanapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wtsapi32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\xinput1_4.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_apiquery_l2_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_1.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_2.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_handle_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_path_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_sysinfo_l1_2_3.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_error_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_string_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_1.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_shcore_scaling_l1_1_1.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_wsl_api_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\combase.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iagileobject.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iapplicationactivationmanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfactory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfile.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfilesenumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplication.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplicationsenumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestospackagedependency.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependenciesenumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependency.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackageid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestproperties.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader6.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader7.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxpackagereader.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiocaptureclient.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclientduckingcontrol.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclockadjustment.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiorenderclient.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionenumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiostreamvolume.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ibindctx.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ichannelaudiovolume.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iclassfactory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpoint.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpointcontainer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idesktopwallpaper.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idispatch.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumidlist.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienummoniker.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworkconnections.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworks.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumresources.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumspellingerror.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumstring.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumvariant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumwbemclassobject.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ierrorinfo.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialogcustomize.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileisinuse.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileopendialog.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifilesavedialog.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinitializewithwindow.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinspectable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfolder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfoldermanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataassemblyimport.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenserex.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevice.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevicecollection.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdeviceenumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immendpoint.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immnotificationclient.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imodalwindow.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imoniker.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetwork.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworkconnection.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanagerevents.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersist.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistfile.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistmemory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersiststream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipropertystore.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iprovideclassinfo.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irestrictederrorinfo.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irunningobjecttable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensorcollection.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensordatareport.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensormanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isequentialstream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellfolder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemarray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemfilter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemimagefactory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemresources.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdatalist.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdual.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellservice.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isimpleaudiovolume.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechaudioformat.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechbasestream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttoken.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttokens.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoice.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoicestatus.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechwaveformatex.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerchangedeventhandler.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerfactory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellingerror.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeventsource.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispnotifysource.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispvoice.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\istream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isupporterrorinfo.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\itypeinfo.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation6.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationandcondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationannotationpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationboolcondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcacherequest.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcustomnavigationpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdockpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdragpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdroptargetpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement6.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement7.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement8.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement9.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelementarray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationexpandcollapsepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgriditempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgridpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationinvokepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationitemcontainerpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationlegacyiaccessiblepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationmultipleviewpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationnotcondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationobjectmodelpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationorcondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationpropertycondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactoryentry.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactorymapping.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationrangevaluepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollitempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionitempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetitempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationstylespattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationsynchronizedinputpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtableitempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtablepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextchildpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtexteditpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrangearray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtogglepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtreewalker.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvaluepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvirtualizeditempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationwindowpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iunknown.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuri.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ivirtualdesktopmanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemclassobject.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemconfigurerefresher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemcontext.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemhiperfenum.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemlocator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemobjectaccess.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemrefresher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemservices.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwebauthenticationcoremanagerinterop.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwinhttprequest.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\contrast_curve.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\tone_delta_pair.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\src\\hct_solver.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider_lab.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters_impl.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_positioner.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\tolerance.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\stack_trace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\logging.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\error_screen.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\cupertino.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\material.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\path_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\logging.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effect_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\flutter_animate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapters.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effects.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\lib\\shimmer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\global_state.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\plural_rules.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi_formatter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\micro_money.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser_base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\text_direction.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\api\\disk.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\cancel_token.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\form_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\headers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\log.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\parameter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\redirect_record.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\tzdb.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\stopwatch.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\generated_bindings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\primitive_jarrays.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\accessors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jstring.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jlist.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jboolean.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jbyte.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jcharacter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jdouble.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jfloat.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jinteger.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jlong.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jnumber.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jshort.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbuffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbyte_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jclass.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jprimitives.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jiterator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jmap.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jset.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\generated_plugin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\kotlin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\method_invocation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\version_check.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\batch.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\cursor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\collection_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\path_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\value_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\utils\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\synchronized.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\arg_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\import_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\logger\\sqflite_logger.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\compat.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\constant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\factory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_constraint.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_range.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_union.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_generated.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_address.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_client.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_client.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_call.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_response.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object_manager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_server.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_signal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_value.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\posix.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\file_system.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\characters.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\internal_style.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\parsed_path.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\posix.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\url.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\mime.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\_internal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\breaks.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\table.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_linux.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_macos.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_win32.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\chain.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\frame.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\trace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\unparsed_frame.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\level.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\log_record.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\logger.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\warn.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\scroll_adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_notifier_adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\change_notifier_adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\align_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\blur_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\box_shadow_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\callback_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\color_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\crossfade_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\custom_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\elevation_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\fade_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\flip_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\follow_path_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\listen_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\move_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\rotate_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\saturate_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\scale_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shader_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shake_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shimmer_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\slide_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\swap_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\then_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\tint_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\toggle_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\visibility_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\animation_controller_loop_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\num_duration_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\offset_copy_with_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\date_symbols.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\date_format_internal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_computation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\regexp.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\string_stack.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format_field.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format_parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\compact_number_format.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\json_annotation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\legacy_api.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_uri.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapters\\io_adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio\\dio_for_native.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\async.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\imply_content_type.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\progress_stream\\io_progress_stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response\\response_stream_handler.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\http_parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file\\io_multipart_file.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\background_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\fused_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\sync_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\global_env_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\jni_bindings_generated.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\local_platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\testing\\fake_platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\env_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\basic_lock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\reentrant_lock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\lock_extension.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\multi_lock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite_logger.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\patterns.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_uuid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_bus_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_error_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_interface_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspectable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_match_rule.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_member_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_message.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_manager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_tree.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_peer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_properties.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_read_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_write_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_server.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\extension.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_multipart_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_shared.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_type.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\rng.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\validation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\parsing.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid_value.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v1.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v6.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v7.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8generic.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_chain.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\stack_zone_specification.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_trace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\vm_trace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\flutter_shaders.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\allowed_keys_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\checked_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\enum_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_converter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_enum.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_key.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_literal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_value.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher_string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\type_conversion.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_cache.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_memoizer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\byte_collector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\cancelable_operation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\chunked_stream_reader.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\event_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\future.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_consumer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_subscription.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\future_group.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\lazy_stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\null_stream_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\restartable_timer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\error.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\future.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\value.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\single_subscription_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\sink_base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_closer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_completer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_group.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_queue.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_completer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_splitter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_subscription_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_zip.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\subscription_stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed_stream_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\authentication_challenge.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\case_insensitive_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\http_date.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\media_type.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\consolidate_bytes.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\transform_empty_to_null.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\default_mapping.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\entity_mapping.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\null_mapping.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\attribute_type.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\node_type.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\format_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parent_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parser_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\tag_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\type_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\ancestors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\comparison.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\descendants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\find.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\following.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\mutator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\nodes.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\parent.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\preceding.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\sibling.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_attributes.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_children.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_parent.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_visitor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_writer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\attribute.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\cdata.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\comment.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\declaration.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\doctype.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document_fragment.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\element.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\node.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\processing.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\text.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\token.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\normalizer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\pretty_writer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\visitor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\writer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\default_extension_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\bound_multipart_stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\char_code.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\magic_number.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\crypto.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\fixnum.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\animated_sampler.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\shader_builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\inkwell_shader.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\set_uniforms.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed\\stream_subscription.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\reject_errors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\handler_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\stream_transformer_wrapper.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\typed.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\string_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\scan.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\decoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\encoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\dtd\\external_id.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\namespace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\named_entities.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\core.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name_matcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\node_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\predicate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml_events.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_value.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\prefix_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\simple_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hmac.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\md5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha1.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha256.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int32.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int64.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\intx.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\line_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\span_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\string_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\source_span.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\charcodes.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\context.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\token.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\event.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\event_codec.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\node_codec.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_decoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_encoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_decoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_encoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\cdata.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\comment.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\declaration.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\doctype.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\end_element.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\processing.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\start_element.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\text.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\each_event.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\flatten.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\normalizer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\subtree_selector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\with_parent.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\event_attribute.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\visitor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512_fastsinks.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\utilities.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\colors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\error_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\frustum.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\intersection_result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\noise.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\obb3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\opengl.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\plane.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quad.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quaternion.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\ray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\sphere.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\triangle.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\utilities.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\charcode.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\eager_span_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\relative_span_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\file.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_with_context.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_queue.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_buffers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\pragma.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\token.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\newline.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_location.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_parent.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\annotator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\petitparser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\conversion_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\list_converter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\named.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\term_glyph.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\highlighter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\delegate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\definition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\expression.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\matcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\cache.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\character_data_parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\ascii_glyph_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\glyph_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\unicode_glyph_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\top_level.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\charcode.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\colors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\grammar.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\reference.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\resolve.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\group.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\accept.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\constant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\continuation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\flatten.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\permute.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\pick.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\trim.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\where.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any_of.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\char.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\digit.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\letter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\lowercase.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\none_of.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\pattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\range.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\uppercase.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\whitespace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\word.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\and.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\choice.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\not.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\optional.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\sequence.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\settable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\skip.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\end.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\epsilon.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\failure.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\label.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\position.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\character.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\converter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\pattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\predicate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\single_character.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\unicode_character.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\character.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\greedy.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\lazy.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\limited.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\possessive.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\repeating.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\separated.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\unbounded.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\failure_joiner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\labeled.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\resolvable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\separated_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\reference.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\undefined.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\reflection\\iterable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_pattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\sequential.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\constant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\code.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\optimize.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\char.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\digit.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\letter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lowercase.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\not.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\range.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\uppercase.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\whitespace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\word.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_6.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_7.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_8.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_9.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_match.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lookup.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterator.dart"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\app.dill","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\app.dill"]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/native_assets.json b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/native_assets.json
new file mode 100644
index 0000000..523bfc7
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/native_assets.json
@@ -0,0 +1 @@
+{"format-version":[1,0,0],"native-assets":{}}
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/outputs.json b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/outputs.json
new file mode 100644
index 0000000..a10800b
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/outputs.json
@@ -0,0 +1 @@
+["D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts\\MaterialIcons-Regular.otf","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\ink_sparkle.frag","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\stretch_effect.frag","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.bin","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NativeAssetsManifest.json"]
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/.filecache b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/.filecache
new file mode 100644
index 0000000..2abfa73
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/.filecache
@@ -0,0 +1 @@
+{"version":2,"files":[{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\swap_effect.dart","hash":"d19b802a88e4155dc2e45f5e1101d15f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\limited.dart","hash":"aa439be89f7997c3c5949ce32d2486bf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart","hash":"aa32657bdc6e98d914493e3dcd1297e2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_exported.dart","hash":"0dd6b7d8d28ad1d7a979582b5dbc60cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector2.dart","hash":"81d01d8cecc6783526e350800988db74"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\LICENSE","hash":"94016e710124ccd8afa685f270d396c2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\types.dart","hash":"cffffef4bf8830e201a0e74eeb8eefbc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_core-0.7.5\\LICENSE","hash":"ed9a041fe7435b9b67080b2e9b56f1a0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\feedback.dart","hash":"65d7d9aae72d673e52ab256ebc374bf5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\provider_base.dart","hash":"ddbfb4de9e9dc40a09a6bfae74a41dd8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\media_query.dart","hash":"db020a5dc1db2d32c48dfbd9b97e1fe8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\byte_collector.dart","hash":"da767bceadf4951a2fd2ecc70270f6cb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\node.dart","hash":"1be9384bd83205518a048ecc1a64d5a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\storage.dart","hash":"3032f1c2edfd44ab46f3b4673c5c8deb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\package_info_plus.dart","hash":"8dae2f643acc27538d30020543dd54a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\digit.dart","hash":"ea36381f235270cd68b88f2aafe5d620"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winmm.g.dart","hash":"34b9072869b35b15ccbe1d843fa778d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\object.dart","hash":"b614d8172098403c683c68aafa3e92e8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons.dart","hash":"d8a7b96e6465831f5cf6de56ccddf6b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\router.dart","hash":"259698248be1045ed65ca4c44c0d9419"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart","hash":"6f808ad3e21a896e5df3cf97ea2cb66e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader6.dart","hash":"33186ffed4f0249b40a7d6161b7c2351"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\import_mixin.dart","hash":"50ef33e165498030b82cc4c8d8408597"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_string_l1_1_0.g.dart","hash":"05fbdfb1bb8ed12098aa521c31a145ff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio.dart","hash":"3467899798f7f8ca82797ccde4772534"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\utilities.dart","hash":"9b478f27df3e7bd44722deb3c1c69ca3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart","hash":"3a20b4d301e83ddf2a700e43c3d13f19"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\default_mapping.dart","hash":"a2187618f84ad697f470a748b2a27f56"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed_annotation-2.4.4\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button.dart","hash":"6e77594b72aaf1972bfbada10258aea2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_theme.dart","hash":"cc73b974cea8f36b579e019233f5f39c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterable.dart","hash":"f0db904cb4051a93b08f326f9f4ded00"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\dbus.dart","hash":"59ba4a85ea18ab7b3030f370a0e93450"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\form_data.dart","hash":"bfd57391197129cbe3c47c75b2c21672"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_config-2.2.0\\LICENSE","hash":"d2e1c26363672670d1aa5cc58334a83b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar.dart","hash":"34e49d23faf2e4895f37b30900d32c5e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_converter.dart","hash":"2d069a48b5e0ffa386474977d2c91c90"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\constants\\app_constants.dart","hash":"31690b0bd17e5becd1d7a80216ad01d0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table.dart","hash":"5d8fbf1c97a97bd37a57bc907bb90823"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\constants.dart","hash":"3b481084198e4581293dd9ddddb9afb4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart","hash":"3ec7c08049495627813e9b3b937f53e8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name.dart","hash":"2426dbde1829bfb9d5707ea69f21b4fa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclockadjustment.dart","hash":"dde1235f5cf091fe6d4a2938399afb4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document.dart","hash":"8fd257a17e57f8c7a9e9c3c5d77df78b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart","hash":"f203420ad76d15df34cdeba7156e19b5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_location.dart","hash":"f91bd03132e9e671e87f0b9066647164"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\LICENSE","hash":"9633ac2bb6bd16fe5066b9905b6f0d1c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationmultipleviewpattern.dart","hash":"509de531546dd357cb81de8c9e42312d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\system_context_menu.dart","hash":"fcd23009cc22a74fe1f61f301a62b61e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel_group.dart","hash":"9a2704474807a196e3a72883d73b5be2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellfolder.dart","hash":"9595cf0e7becb4bf5de5d3a3865d631d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\constants.dart","hash":"55422a6a3ed3f0829854a5bbb97d4e6f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category.dart","hash":"a94a67f325606644fee6ad6aa922752e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement2.dart","hash":"4f061ba7ed2e408e218e0eb4375dddee"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_trace.dart","hash":"d75954340a0c7770eb9a149f7994598e"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin","hash":"59b6b4f97638dac0c707c069f5ec5468"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\sphere.dart","hash":"ff5d66c50ec833a263625d39f0c195b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_member_name.dart","hash":"2ef397117616f6ff779ed0ab2dd0d61d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_group.dart","hash":"56e7707f76c417845a2d4ace8af3b305"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart","hash":"19685ac5879c84f53885d8fc9890f9ab"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state.dart","hash":"b16bfc71ddbb89c942f3fb24dcc4de5e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search.dart","hash":"3a8582a42202dd9c13976accdb4e8b18"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\base.dart","hash":"62e6826075b4df67271133a79fc4d046"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon.dart","hash":"3075297d267950b2cc949065c5c982bd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\LICENSE","hash":"22aea0b7487320a5aeef22c3f2dfc977"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\stopwatch.dart","hash":"f38a99a51f4062e7861bb366f85265d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement.dart","hash":"e00e5a90ff913bc9c53a6572e53ec576"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\LICENSE","hash":"ca58010597a5732e6aa48c6517ab7daf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\html-0.15.6\\LICENSE","hash":"c23f3b290b75c80a3b2be36e880f5f2d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation.dart","hash":"fa2fa16f78792d714ca06eb1bbea9db8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\subscription_stream.dart","hash":"c23f15393091087663c2613f18f0e9a4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\eager_span_scanner.dart","hash":"bdc22e9e77382045196b5aafd42b5e55"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\char_code.dart","hash":"4fb96b9e2073cadc554a25b36f55e6dd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\undefined.dart","hash":"bb00c98e50d3c71d4ab7ac7c46122f3f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_visitor-1.0.0+7.7.0\\LICENSE","hash":"ed9a041fe7435b9b67080b2e9b56f1a0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\dialogs.dart","hash":"31ff0d4d17e824e16798aed227f48e88"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\ideas_provider.dart","hash":"6528389eb764f0529d5c3ce0f7403452"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\kernel32.g.dart","hash":"025e33f289842e685909a1adadc790ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider.dart","hash":"7504c44d1fa6150901dd65ec78877be0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\c_bindings_generated.dart","hash":"d3c588dd2fe7ad6be9c74bc406cd0199"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\LICENSE","hash":"175792518e4ac015ab6696d16c4f607e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\path_provider_android.dart","hash":"6d35cfc0d00b450495558fbdc7ce2087"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_properties.dart","hash":"953396d57b69e0e889d9dfcc4f7fdabe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifilesavedialog.dart","hash":"de786aad9aba3c37b121a1f0238119a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format.dart","hash":"76052188e777d0ca03128d3b299d836c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_anchors.dart","hash":"bf2ed9d304c7f4d1e982b118bbe93bf2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart","hash":"61d6754850dbffcf4687388b630652ad"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\calendar_integration_screen.dart","hash":"fd32497d512fda6fc0671f20387ea649"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpointcontainer.dart","hash":"21a6eaa35ec3367210a47a559f54c4a6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\lib\\xdg_directories.dart","hash":"737107f1a98a5ff745dd4e3236c5bb7b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_win32.dart","hash":"a9a606dc5028f1c8d7cc31f5cb21964e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\base.dart","hash":"b21a009902949ddc4ba80d607867fcb7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\utils.dart","hash":"caf148b76c44a3f0f1bd6055ddbb8f5e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\context.dart","hash":"6f1cce384d53a00c3d6e036e78554066"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\value_provider.dart","hash":"d5a669dc5155cedc975db1022a570128"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\native_assets.dart","hash":"f78c405bcece3968277b212042da9ed6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\rxdart-0.28.0\\LICENSE","hash":"86d3f3a95c324c9479bd8986968f4327"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\lints-5.1.1\\LICENSE","hash":"4cb782b79f6fc5792728e331e81a3558"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\types.dart","hash":"83bb9dfd0d336db35e2f8d73c2bdda85"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar.dart","hash":"3ba2e2e6e16b3e46d2e9882ff66479f6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdragpattern.dart","hash":"51d92d191bdfceacf4cc7381782d4e5e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shader_effect.dart","hash":"56b284328228e6d3eabf49bed958999e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card.dart","hash":"f26b3e572d8caad81a02521232f34ac2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgriditempattern.dart","hash":"90879288f848e0c8bd3e17539633770a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\null_stream_sink.dart","hash":"cc0ab0117e8a0a54ec3efe6d9251860e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart","hash":"2141c0a9a7f60478204da36bd64edf0c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\variant.dart","hash":"8dea906a9b8773920b6d1ccea59807bf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\exception.dart","hash":"7be00974229804e8ec49ca8c4fca3b5f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart","hash":"eb3b6369f8af356037fedee8b6733b3a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\debug.dart","hash":"f2138801d3af6774b0cdb3ff8f966b8c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart","hash":"e83026f2a0c3e22691eee7ce337b037b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_debug.dart","hash":"a2cdec29e909752629150b24b9b18407"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\doctype.dart","hash":"c2d76b78fb107e358b1ad967f15f1746"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_fit.dart","hash":"42b701fea2336aa3a74e390579863153"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\open_options.dart","hash":"296e60aee7732b001a79f3216058a381"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart","hash":"19171c1dc65154469120c6dc1ffbd025"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jmap.dart","hash":"dfce6b9ee4ae9b9df7401fab182baa6a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclientduckingcontrol.dart","hash":"21ee375f5cb7acd3bec0129fba2839ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irestrictederrorinfo.dart","hash":"a42121307a3d24f06691ab35f935206a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart","hash":"ee635fd679923a1967d7f97840c03f25"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_decoder.dart","hash":"3d7fed590b9d1ab99d591b04487b9287"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap.dart","hash":"d2791172df9d71b9d978e566377b236c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\utils.dart","hash":"89f7a33014c1771ad6ba7af660714ba9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager2.dart","hash":"437b5795f5b9bf507b02ed5d44f9f572"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwinhttprequest.dart","hash":"e9c0088ee89cdab9346358a1ab7d4f18"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed-2.5.8\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_extensions.dart","hash":"5843b4750179f6099d443212b76f04a2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\allowed_keys_helpers.dart","hash":"41696c18e708950dccaf7cb4f5b7b195"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\magnifier.dart","hash":"1f9d71a3b838669de863ab244804bdc1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\generated_plugin.dart","hash":"e1c286fd5841539119a1c390cc1fe13a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_annotation-2.6.1\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_4.dart","hash":"ba02460ed2591611ff8506bdd88f569e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\dio.dart","hash":"3059dceae50124dbd966f136c80016fe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\web_options.dart","hash":"7dff3a0a1b5652f08f2267907c79844e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command.dart","hash":"3a70808300050e138089768c2a40dd78"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button_theme.dart","hash":"47bd44d1a936d22067083db9e592d00a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\interruption_level.dart","hash":"3667c2cba3e0537e66b40353a1482487"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\auth_provider.dart","hash":"b79970824daea8c217511d19c774c1ac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker2.dart","hash":"03b20b9fede21601f0b3d0f7ef4ce25f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tap_region.dart","hash":"0ce51f30ec304572b490e8f3160925cf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart","hash":"a05b35e402965727a6b38bfc20b6ea15"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_view_theme.dart","hash":"67788ce85b40005f02d41f07f8c72c1c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart","hash":"c6361b93d4a266527cc473cc2570f714"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\accessors.dart","hash":"359d022c7d5a59692d34bb2d5eed6736"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\cursor.dart","hash":"5bde4f62a64276d44e1ef4ee3bf194f6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart","hash":"ecb57271d69343712d88a50442f2e8ed"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\unparsed_frame.dart","hash":"0c30a117b0d1fd5c94980510832b81d0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\converter.dart","hash":"c4222ace4a2fadb2e9db196b058e9d86"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapters.dart","hash":"fba8114f858c7bb3b433350fa69476da"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer.dart","hash":"17b166b7da51804be122c3799285a293"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart","hash":"e54dfa9602e092489eff9b246249b58c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf-1.4.2\\LICENSE","hash":"3c68a7c20b2296875f67e431093dd99e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spell_check.dart","hash":"186b8c23ed0d68e6f81d56d62272c87c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\LICENSE","hash":"3c68a7c20b2296875f67e431093dd99e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_decorator.dart","hash":"7543511b01e80fd6c1424d1716696d43"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart","hash":"ea3e7b1b5cb494d1fe64a8ea3c635f32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dislike\\dislike_analyzer.dart","hash":"052660a52f5ab94091182bccabab6f84"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binding.dart","hash":"e2ff5f7cd2d3585383be2f277af0e761"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\client.dart","hash":"1825b39f94e569a3c0c86c8ec20b723e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_testing-3.0.2\\LICENSE","hash":"f721b495d225cd93026aaeb2f6e41bcc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image_filter_config.dart","hash":"0986862ec60c0703a2f25d4c50fe9a2f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int32.dart","hash":"f6b2a03b8f3554a6b37f151f6a561fe9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\future_group.dart","hash":"fb71dd46672c822515f03f8f0dddbcb8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\data.dart","hash":"e0b6567371b3d5f4cc62f768424e28c9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart","hash":"2477a3574e222e0361cc9a114e007c94"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider.dart","hash":"d28de61067df9bc3d509be84deec1140"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.g.dart","hash":"b248aab8f1807ae07bc22c26210f2def"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart","hash":"b710038198396f242f41de12c8488a5f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml.dart","hash":"fcf0dfcafac17dc3ed539b4587340320"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\offset_copy_with_extensions.dart","hash":"59b94bd26c48f22af40881f8128c41c0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\button.dart","hash":"7294188b7840ddcb215d597adfd35d10"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\tonal_palette.dart","hash":"cfeea6435b5871fb518238f65eff45c6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selection_container.dart","hash":"6315f598861cc34295ad7b2e926a143f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\auth.dart","hash":"e02cc4bfbf4ebc867c80dd14a71289eb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart","hash":"f3a43f7f1e3cdd35326341d9fe51fdee"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol2.dart","hash":"d71b6121d7069ff8303334b41e9a92d1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isupporterrorinfo.dart","hash":"0fe168f7fefcc6e38cea5a1daaa08fe7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllink.dart","hash":"7132bdf47eb7567294754da6caddbe14"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\blend\\blend.dart","hash":"7594a28b48f672ffb4829ada9ea4018e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart","hash":"38aaf9a4c4e85e3635751865dd337321"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jni.dart","hash":"9fce75490356488473f3f0d5259d2f29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\constants.dart","hash":"195aceb9dfe0dacbf39711b8622ce2b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\stretch_effect.dart","hash":"fbbf07cdc6454526db079daddea912cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\ancestors.dart","hash":"3f842dc9d82d8b21557bf598ff4ec83b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_button_theme.dart","hash":"5df97b77642ac6f786c40d585400f7a4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement6.dart","hash":"92985c94a9a966b97c156c06ab2d5195"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern2.dart","hash":"8924d681363bacc7cd51c183b529f260"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\family.dart","hash":"c32553850c6990014c017cc3b3024df3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\node.dart","hash":"9ec244272cb6c8da46a6dd5f104f0dfe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winspool.g.dart","hash":"18e255eb54fef40d17b6f6abac4455aa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_signal.dart","hash":"8596b58c127792783625b4b22a4d023c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\scan.dart","hash":"acfc0a55deec22276e085dae6197833a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\annotator.dart","hash":"d45b4bb922c2941476a8b797e0e275ad"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart","hash":"59ba7bdfc57111a2c59ae46a61e0daa1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters_impl.dart","hash":"c687544dd89d844861b88fe7d0fd095e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_details.dart","hash":"7c5b14805d686129e90293ef086d4d68"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\flatten.dart","hash":"b192f8c8e04e47ae69d662e5feff7306"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemconfigurerefresher.dart","hash":"0502dbd75b5b023cd08bf81003a77889"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button.dart","hash":"ba0276c39a78df8b9ae1f68746ed0e73"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer.dart","hash":"3ae05205e5843fd41cae41c823dd7679"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\restartable_timer.dart","hash":"89cdb68e09dda63e2a16d00b994387c2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\line_scanner.dart","hash":"168bedc5b96bb6fea46c5b5aa43addd1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_interface_name.dart","hash":"4f835012742ef22df8c85292594f9823"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_key.dart","hash":"6a18f9347e6e639ebbbfb0a0ce98bb71"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\selector.dart","hash":"5f59fa1ce6d10c011e76cb4d99e90d6b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\separated.dart","hash":"f0687363561a3dd3af32cc1870c61c97"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart","hash":"fade310b4dcd8b5183b8caf0b7460a61"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart","hash":"8410804f64d7620e89249b54b17d9d9e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\case_insensitive_map.dart","hash":"5893c7d3910e8924bd2dccc8837775c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange3.dart","hash":"4f4a2d291e23c96c7ae0d4dbc9598c54"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart","hash":"11ae4db3a0abc6e46de31a943bcdca60"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\namespace.dart","hash":"d7259aeee1602df30d051e8fc0523d91"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart","hash":"1aebe82cc4e81c2b5fd46f924c92d5af"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\icon.dart","hash":"b1d3d657c21d4c2229511410eb2240c0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\ios\\enums.dart","hash":"670388961b23da0ffd68cf26f5104e49"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement9.dart","hash":"13e53604d98eb0a2fbd871588ec8b357"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\state.dart","hash":"9a453418cc0baa3cf4c4a41655f4a113"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\back_button.dart","hash":"18939fc6e74f9b391a45ae341fe30128"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\builder.dart","hash":"8390e4d70de6b673e657c51fdb76c8e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\lib\\sqflite_darwin.dart","hash":"b1cb91ea7a56d612d5792dbfe439f2d8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement4.dart","hash":"98e80e3c681156f330d79925f2675eb2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_nodoc.dart","hash":"273e2f5010e85e296a0893f397d71645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\event_codec.dart","hash":"3a9a69af68cc0a35c422d0bf03873265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\internal.dart","hash":"7d51f23cb597ecf99a0b6007767461f2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspect.dart","hash":"1d43aa18b7cd09879287a4e8ba5ea5ef"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\debug.dart","hash":"4a3a541b9e5b5781690d1b413c84757f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl_helpers.dart","hash":"fac5ee1098b41fef8637aca152781c92"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\filetime.dart","hash":"562889498a1b0cda759a1186693143e1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route_data.dart","hash":"8fdbe6c284b56683447368dde52806c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\named.dart","hash":"7d9a75e0bd8e5c9b49ad6c0816666b4a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\ref.dart","hash":"452cd5bd89dd73f555cc1ef42032e1f8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\choice.dart","hash":"404ec528c031ebc7486f12477b06de28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest_sink.dart","hash":"038a6fc8c86b9aab7ef668688a077234"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\factory_platform.dart","hash":"2441a967786bd149053b72e22172ce60"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart","hash":"a31803db08fc99ed2b1648bd10de25df"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart","hash":"d40025a616ebc535304bb45ed491794d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\allocation.dart","hash":"9d62f4f58e8d63a8e106a1158eb13a02"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\redirect_record.dart","hash":"91794c215a8aa39b862cfa4c96b9a398"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider.g.dart","hash":"77971712e28393ec72c9033a92f3ceab"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdroptargetpattern.dart","hash":"45a4d78a037bdf56e5eb45d75298ff84"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\delegate.dart","hash":"5fc1a25f60cfa0a0280878377348c63c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_metadata.dart","hash":"201005c585ce255343e625b1a5e49601"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_extensions.dart","hash":"3a2d505268f5446e5f7694776b69b407"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\alignment.dart","hash":"4228c34247981f0faaf8e067e3a82e19"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\block.dart","hash":"ff12dd93989e4929d1f2e1bf36c45978"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\micro_money.dart","hash":"391b7eda9bffdd4386292eae157d449c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\enums.dart","hash":"c5cf5bfcab3a48fc5ec40113640a6e29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_helper-1.3.7\\LICENSE","hash":"3b83ef96387f14655fc854ddc3c6bd57"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart","hash":"5ec6314e10455f6b4b0809f222cb82ac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_sink.dart","hash":"8faa98eb1bc31bbb64876e837eec420b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\configuration.dart","hash":"1ca6e7022b3a950a205e316f7e3a2b1c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_text_style_information.dart","hash":"e1c112a7342a7ee3110a1c2df175b89d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\globals.dart","hash":"c88223c7cd248b2bb8587f78e9530f64"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\canonicalized_map.dart","hash":"f5e7b04452b0066dff82aec6597afdc5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_parent.dart","hash":"7f47dda6ed10e33236d465680dc8c12b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_write_buffer.dart","hash":"63d2768cdd6ab5a282fbb6a86c237b78"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumvariant.dart","hash":"ad6fa6bf1dadc6e07c4c080c69abde6a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart","hash":"5efd79b206d541def2ced4a547014219"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_web-1.2.1\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcustomnavigationpattern.dart","hash":"84de591d644b29f5e21052bd9c84263c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml_events.dart","hash":"81c2aad8ddfe7e91e913fa4c319764f9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\src\\flutter_secure_storage_windows_ffi.dart","hash":"2ca4b9e92c39403717d2dcc32bed57e3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\LICENSE","hash":"9741c346eef56131163e13b9db1241b3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart","hash":"559ecbc92097e4c9b9142335dec3f3ee"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\services.dart","hash":"7b2a0787f26dba547607fdca4028a1cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\http_parser.dart","hash":"b76ebf453c4f7a78139f5c52af57fda3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\dbus_wrapper.dart","hash":"52e0406df2babb2958beb4b471ccbcbe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\triangle.dart","hash":"d9eedadb461aac1eebde731afb42a2d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_source.dart","hash":"bdd3a31817dfc052c506f3a7e2556fcb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\color_effect.dart","hash":"aaf31c7a7690aa5b5980d454e534d168"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionitempattern.dart","hash":"dd15fe8e4901c3c57a40bed6b0079e80"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.dart","hash":"5701f1a2ae54ccdf11a84a2a6239861e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart","hash":"f60d1c032575a7726e7526bbd5d26e6e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_compiler-1.2.2\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\string.dart","hash":"1aaa0309ba77b0f57733e99543c455ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jreference.dart","hash":"d9fa00a9beeccf6023d9f9950d016c1f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\print.dart","hash":"f7e6d723f47368300487f5121688d827"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_details.dart","hash":"f61c50d40c00ac96c595ea0b2682937c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_sink.dart","hash":"e2f7d6fbeb362176a24cb422a6dd8193"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\node_type.dart","hash":"57e5dc91c30bff1774eaaa45a798d0df"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart","hash":"4a9437bcc5b4bc801a155dc8b18ca80b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_handle_l1_1_0.g.dart","hash":"34336c7c021e6749ef0bd6a11e48f887"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\expression.dart","hash":"79503c7448238b77502c169788e26dbf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\ffi.dart","hash":"8797b9bb0c8239ab47601d92826a8cc2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix4.dart","hash":"ae36c7cc9b21f98bedf401f2d67a0fd4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\io-1.0.5\\LICENSE","hash":"901fb8012bd0bea60fea67092c26b918"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_shcore_scaling_l1_1_1.g.dart","hash":"00bfa437eaf641f6fdf0db2367135a29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immendpoint.dart","hash":"ceac2a8f7197831de70d242e885a1527"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_details.dart","hash":"bf4a95c97439fb24c526534818440cb4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_value.dart","hash":"002be4c072c0cc5c5e72b5ff6d0c490b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\string_scanner.dart","hash":"184d3b79d275d28cd02745b455041ee6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_memoizer.dart","hash":"abcb2d6facc18b2af070cb86cbb1c764"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_windows.dart","hash":"6b6d268476b0c6b3d28f6339b57b61b6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\value.dart","hash":"bf3aeab9379cee97ddcc69d885a477f5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\token.dart","hash":"710a4fd96b6281c1ab359ea6df4ceee8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jobject.dart","hash":"0db1803fcad172b512558bd1b03e4ff0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\location.dart","hash":"17db713e9a12494613ca23ad84def9c3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\borders.dart","hash":"34cd6d5950080d2479052b3f332b702e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\switch.dart","hash":"09a96c82ece190d734f06404eb1e5b1a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\timezone.dart","hash":"f8c5df6155feb71c22fdca5ea2d10a53"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar.dart","hash":"c32fe94e565a6199137fe363f3a40636"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\contrast\\contrast.dart","hash":"31f8129bfae39c459df7bd2d3cc37bae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\LICENSE","hash":"7b710a7321d046e0da399b64da662c0b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_completer.dart","hash":"0fa4a82df6fea98c85dcfc6cedf4206d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_menu_bar.dart","hash":"b9f0d5a8855611341e4cc707fd98aa3b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\js-0.6.7\\LICENSE","hash":"bfc483b9f818def1209e4faf830541ac"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\heroes.dart","hash":"7904ef0e6ab501cf89c04669c0b5d600"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart","hash":"9f00531fd2765e9d53bb4803eedee111"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\frustum.dart","hash":"fb2be6f27b32bb1ab12dd6aea8c5ecda"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose.dart","hash":"7c89e8d3e17b2ff04570b741ce311e44"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id.dart","hash":"32f5f78e5648f98d8b602c6233aa4fc5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterator.dart","hash":"4c92351d347c52a00797317aa487600f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set.dart","hash":"0073f703be7f7ddbd7f04d1b740f35c6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart","hash":"e750d451a309d0cba00603d8bbc3e98f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\triangle.dart","hash":"2083695b7b9150b87307af446032ba45"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\parser.dart","hash":"a54725bc16ee2ca993762c441542c1cc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern2.dart","hash":"10ee0ac3bc045cf4344c623f4396d941"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dwmapi.g.dart","hash":"20290eb1c157dcb3947d9e5b420ea50e"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_view_screen.dart","hash":"6b92e06b2a6b070f593630943622f8e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\processing.dart","hash":"5a7bd956aa537e95be882d4809232c39"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart","hash":"ef78266d8f88424f55e3135455ee90cf"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\shell.dart","hash":"d7f7c36978e85a7423fd87bcfd9a7a03"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\gestures.dart","hash":"d94743ec9e31da98eb079db06f418126"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\util.dart","hash":"cf2b42c94ab97ce116e195500f147944"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\failure.dart","hash":"30a4963c49e7dd57d8cec29b8f4821db"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\permute.dart","hash":"8171c3b0d66f560aad82b73d43393092"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\flutter_secure_storage.dart","hash":"5a944801c9b2bd3447f982168b31e46c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation6.dart","hash":"a878c551495aae9f415d298f162fd19e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart","hash":"dd83cc86855f180335c59246dae38264"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\adaptive_text_selection_toolbar.dart","hash":"97fe7ee22c2d610b9259874f37014c82"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\comment.dart","hash":"74fb000405fb96842a3ce15a519d8ae8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\compact_number_format.dart","hash":"9068f4d63af1ec44245b76b7ab4dfa48"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\color_utils.dart","hash":"a97282161191c89d98231dfd655252c6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_attributes.dart","hash":"1059ea9e8a0e858f944bf05dcb7b8edd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistmemory.dart","hash":"cdc3ed60fc9f8d6e2fd72afef2012bda"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\bitmap.dart","hash":"30207bb624460e743b557f58e7b39479"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb2.dart","hash":"f54f6b61b175b0a37d51ff3ac8b8c800"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_resolvers-2.5.4\\LICENSE","hash":"3323850953be5c35d320c2035aad1a87"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\view.dart","hash":"bad6783543dd4de76cbac4872a2e1969"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_chip.dart","hash":"3439e88de4cdc23b3bb0bc629e7f48b1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechbasestream.dart","hash":"1632b8b538a5115973c424adb5380d7c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jboolean.dart","hash":"f3c87bba5ae0baea2e0768ad663e7e7f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream.dart","hash":"809f1f0bbe7ee77e69f003952a5525d5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selectable_text.dart","hash":"a25be9534683056e76a7ff2a00de199c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_menu_anchor.dart","hash":"9f9383a378fdae3c3237fa40d6c8e070"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart","hash":"e33cf45ff0309bc7b7e295ecd8e64c02"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart","hash":"97b528fc5160b67efb862edaee719648"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplicationsenumerator.dart","hash":"a0c11bb2957ee28a1de2145cc233367d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\strut_style.dart","hash":"c7414d3ccb3bf26e8437eac2f4086abf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\auto_dispose.dart","hash":"34f75dd4788c48a2a7b2ce2efe4c51fe"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart","hash":"84ab7cd659f8b1df06e1e90d50694d88"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_codec-1.1.13\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_form_field.dart","hash":"89a8b9c7063d78cb595e85cc56441cb0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\predicate.dart","hash":"c135a8cfe6154841111bd7d4f7c7e69a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog2.dart","hash":"ef41b02d4257a466a4a68f493052b543"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\visibility_effect.dart","hash":"1198e07cfca6cdefe5e54638d507f31d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\lookup_boundary.dart","hash":"f908879081c20ea0f414c694b9e88fde"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\cancelable_operation.dart","hash":"fd25090c21947bb10aa8adbffe5fd89c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\viewing_conditions.dart","hash":"31e9eaae0175cc8b4184df6c89b454ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lowercase.dart","hash":"e2bcdfd80ddc73e02b457e8544242028"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_web_image_info_io.dart","hash":"c8ba4eb7463f2816b6b5c054b0876f2f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\LICENSE","hash":"80ea244b42d587d5f7f1f0333873ad34"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\capabilities.dart","hash":"2924a2b4f15d6d9a055f71d47d94521e"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\error_display.dart","hash":"0744178a930db21a55b4afb9b80fa463"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\parser.dart","hash":"ed6e10b66c408845188f75959c15a23b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\rotate_effect.dart","hash":"f235e4dd0ff304f8ff7a0cb1e620f83d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement8.dart","hash":"befbfd864024e35cb6b7752f9b4ac4d7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_generated.dart","hash":"c6d3a43399dd0c6b8c5497bf5241a008"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\register_screen.dart","hash":"333ab18cdd4f86c6929556ed06e4d567"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\dtd\\external_id.dart","hash":"3598a401936c6a9e0a645251fba246f9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name_matcher.dart","hash":"5c4dc37f36fc78823f785b92b944560d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart","hash":"249b2817c1c912b9942e8acc7987adb0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\debug.dart","hash":"0afbdd6f1125195ec28ff55922e51d50"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\io.dart","hash":"f1e1ff4a88eabaa04e9774ee96497141"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jcharacter.dart","hash":"d8078d775520fa565079c39a3f62e075"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\saturate_effect.dart","hash":"eca10930a22c21b03e7217321ca2caba"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_scroll_view.dart","hash":"8445a7502a6450e9deefaff9d677c524"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winscard.g.dart","hash":"f0ffece0b01158318dbca4d043da78b3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\platform.dart","hash":"cbf041463d4a85115a79934eafe8e461"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart","hash":"979bc974a11a3572cb5b730b00d0810a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table_border.dart","hash":"3a7a1f65ad7bc4d7130c9bd74c7edfa6"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\reset_password_screen.dart","hash":"6959098d6067b573f510d80fa58d8ddb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart","hash":"d571b3d9c3e078d8fd3b0bf9caf86244"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\sibling.dart","hash":"6cee72f673d593b0b84628bf243727a8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_timeline_io.dart","hash":"2b2385e013688dc5ccafac580f8f6999"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\border_radius.dart","hash":"75ea819a46fc37b000660901648c12f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\sqflite_platform_interface.dart","hash":"beea47c079349d8e03b64a5a9dcbc7df"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\jni_flutter.dart","hash":"5327416ac833c200249d92ddeea11293"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\LICENSE","hash":"3b954371d922e30c595d3f72f54bb6e4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\bound_multipart_stream.dart","hash":"6a792eed43130ef8c5b35bb12106f303"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_set.dart","hash":"1b20a6e406ca8e79675b2ebd9b362d10"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\tag_exception.dart","hash":"65fe1b7c956a57db85d24838ab970d2d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart","hash":"91d79fc63a36bcb3b575a511cd243ee1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_resizing_header.dart","hash":"c3e8a2b9954b1a5d81e4dc3b74d162fd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport2.dart","hash":"cb23738bdb6f2e8319ba8e9dac0072ab"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_closer.dart","hash":"1f08f83d7a9240cb3accf35283c75bdb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration.dart","hash":"14b9c8680b6de7a995b4bfa53651eac6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\base.dart","hash":"63b92eb56c14d5474db11677f1800c83"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar_button.dart","hash":"28eabbe1a08475df35ee00124b823e50"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_1.g.dart","hash":"8944748ddfae167a4c9f3dc75a702e46"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\crypto.dart","hash":"3b0b3a91aa8c0be99a4bb314280a8f9b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\core.dart","hash":"b969cd0066fa07b8082edb76d2af77e1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\LICENSE","hash":"0c3ca74a99412972e36f02b5d149416a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart","hash":"ee8b3995a1eea74277e0b58b0e8fc04b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemlocator.dart","hash":"84516bb884e27c54321d286d9ae9e9d4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\utils.dart","hash":"9d122acee9d1f43dcdb2ea88fd1fc95f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemrefresher.dart","hash":"5026f3bc8f63a10ffb208a35e304f40c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumidlist.dart","hash":"7d1806cb19bc0d23a18c2760d106d95e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\table.dart","hash":"bb012047379b362d408e5d0c8bc6ff55"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\letter.dart","hash":"b753c0207187489225c25d5554272839"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imodalwindow.dart","hash":"3cafeafccdf2688fe36789f31e671cfa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\pattern.dart","hash":"d881c458d06573eb887bdf0f3ce9f586"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\binding.dart","hash":"f01c011063a155edfb8217353e1a2d29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\term_glyph.dart","hash":"1adcc56e3affffb23739c7c9d8a5fca0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\end_element.dart","hash":"813218451c1d8dd310e1233bd4ca7a4a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\path_provider_foundation.dart","hash":"f975cf0e4e06eabe6c8e6134cd33b269"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart","hash":"59400db677c60e1ddb3d79ecdc89e580"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8generic.dart","hash":"00a661dfeb90c5dba43ec7e638141966"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose_family.dart","hash":"c8b1bc30159a132cab814de0d71e0462"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\scheduler.dart","hash":"3ac176a9235973980af3b75bd0c237ff"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog.dart","hash":"c6014cf91769b13fcbd60242ce7ca6c0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jinteger.dart","hash":"c99d4d9f1de256e9caa04dc2149e2663"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar.dart","hash":"186f62d10a2a42d945d94b5ba32daa28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\element.dart","hash":"d414c1f995780a939e1d357efa0400a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient.dart","hash":"983f9738507c43e2eee65120e25d0785"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_key.g.dart","hash":"04eedb8a1150a97ee060a82f95f2b91c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\where.dart","hash":"30325626c486da5b0b5e6ca9d6a6d337"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_range.dart","hash":"c54cfb081c273f7d29980b31987bf614"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\propertykey.dart","hash":"241ccb24efad22e002bdfe778f96b46c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\LICENSE","hash":"93a5f7c47732566fb2849f7dcddabeaf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_zip.dart","hash":"b296f400a068b70100fa570a6134860d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\utils.dart","hash":"8a7e3b181572ed50e923e5dc05a7533d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\nm.dart","hash":"7494ac5a5e8b9d56894cd383fa6e9d91"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart","hash":"3b88bbef523e78633182df3f70dbe5e4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button.dart","hash":"a23c150b50d79965efc47c5ed47dd641"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart","hash":"2b5f770e124b8f0d41d18ceccba29bb6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\ios_options.dart","hash":"704d7f872888ec6e9697123a180fd95d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\autorelease.dart","hash":"d2e52e362068fba5e3f86800ddf3cc91"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator_pop_handler.dart","hash":"1d7b10a04a356e2e37151eb235c2db90"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetpattern.dart","hash":"fac91a50f448265e9a9f97994e8b529e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\style_information.dart","hash":"9787d9b12ea9461874ea0faa9cccf9db"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed_stream_transformer.dart","hash":"86e0f9e302f9ac959626122751b65361"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_builder.dart","hash":"1c4127d99af22e5232df8132ae79beeb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart","hash":"0caf572d3e573a263a9ffee71ff67208"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader3.dart","hash":"e97932f0cef53e2c018203ac3cf1c7e4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\media_style_information.dart","hash":"4fe97d87eee37e8a1dddc5230ebbf9ce"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\LICENSE","hash":"75ba7e8a7322214ca6e449d0be23e2ff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackageid.dart","hash":"88956349d04ce0c5fc6ae1e89fd65b2d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_windows.dart","hash":"eb3c8293bce0e3d04f8f6ca79994937e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\pattern.dart","hash":"984f27f723ba52ab371439e37b31ca91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevice.dart","hash":"b5e211d1bb1c533a77b5638eede5479f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttoken.dart","hash":"fb64eb7ccd3a66090cd698eaebe1d080"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\win32.dart","hash":"018e93669d12c52b66204d139de58ef8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\win32_wrappers.dart","hash":"af7270fd3861278053b1c45a7b66ece3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\_background_isolate_binary_messenger_io.dart","hash":"023daeebc8de153ee091d1e3cc9508f8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_monochrome.dart","hash":"5f22b5b8aa08733c616d6f636a05f5f5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\slider.dart","hash":"294b01503572e239c505c014297fc4b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flow.dart","hash":"d35a017ca116a68758fe9e289a8a96bf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_exception.dart","hash":"b062a8e2dade00779072d1c37846d161"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_theme.dart","hash":"da23e9a23f3c0bd8f03adb30165f3f2d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween.dart","hash":"deb256229ac9a60b1f5dee744af2411c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\settable.dart","hash":"442a233329c158bcfbb129ccea0fe8ca"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart","hash":"83f2fe11c7f72d3ea5eb743f8978170f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_button_item.dart","hash":"15308b82e6b7d5df3058f8e769084a67"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient3.dart","hash":"e65733ef6887a9505fca66a22d9e2887"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_scaler.dart","hash":"13eb2b4e1e2abfcd739ea5addab1ff77"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\separated_list.dart","hash":"82acaf4c715888e486eb9d714c23b266"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu.dart","hash":"53f5ec04f6df9a78c3651e5cdb84c460"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\LICENSE","hash":"901fb8012bd0bea60fea67092c26b918"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overlay.dart","hash":"dbdee8b92f93123706efc22ba09f9ce9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker_theme.dart","hash":"e50d0f9c52ca60c2b00a076e994ce7fb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_linux.dart","hash":"153e569a429470f19962e80723cbf73f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\LICENSE","hash":"e2874f670fc80ccca43123509b557150"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\not.dart","hash":"a7c2e189af8ef0e494c5f50550ce8500"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics-1.2.1\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart","hash":"5057eb331db10cf132ee46e1f68fe99a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\repeating.dart","hash":"9a0bdbeb6a1452722cc91b80ee779998"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\flutter_local_notifications_linux.dart","hash":"bd3131f212db4084582e634bc232b43b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\deferred_component.dart","hash":"f20b8958b0c35e9bbea75a43c9cf0e59"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart","hash":"5f1b9eaff8ce12e7ce1eb00ec6656158"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_date.dart","hash":"50b1b7bf5e4cfd21e9fa7a0ec26f0aae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\with_parent.dart","hash":"5e97dbe19781055ba2585ce570bc4643"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_read_buffer.dart","hash":"fd517e61edeaf09f9e4cf9e9ba8af13c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\clip.dart","hash":"6790958a6027b5951c84e721543745a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\lib\\speech_to_text_windows.dart","hash":"a929730b53383c1207e3d75c57a45ea0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker-11.0.2\\LICENSE","hash":"f721b495d225cd93026aaeb2f6e41bcc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_import.dart","hash":"afa8ae229bc41c02a6cd9dcbe10a81e8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem2.dart","hash":"908da18a3fee181ac432b85d7097e5f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_neutral.dart","hash":"bc6418e88ab34ee846e3d4e32408b23f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollpattern.dart","hash":"d5e0952742a6404c71b939292023e2cb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_lints-5.0.0\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart","hash":"7f7a40cb54e941d10dfb719fac727845"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object_manager.dart","hash":"69c08243f2f74c58d6ad38b17bb5cb9a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\utilities.dart","hash":"121fcbdc1af81a0fd804490f85357fa0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner_theme.dart","hash":"d0b6b68aeba6ea0b5b3d483ee7f4cb6b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\localizations.dart","hash":"1e97a873901018a85c8812ec1d0b9731"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\table.dart","hash":"e13d87775c63a62ee77c103021ea3f4f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_linux-1.2.3\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart","hash":"4213cdf8a94244f8d19a59844563dd53"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\plural_rules.dart","hash":"2241f880365723564463d0bec35a4ba2"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\disk_integration_screen.dart","hash":"f7951193fafe9047a1634686ec649135"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_data.dart","hash":"b9abba31a48a9c2caee10ef52c5c1d0e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataassemblyimport.dart","hash":"dddc2f13e029b11ddffa36413341f1b1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart","hash":"6de8733c5e01bc816fbb237842e21b72"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_buffer.dart","hash":"99760254cc7c1941d4d7d7bb0fad045d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart","hash":"b62f50ac1dc3bb09452f43e936636040"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart","hash":"a57f176872c4264164cfd424a851cc6f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart","hash":"202a4e574b65775d1c57cdd8bcaab1b1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_version_info.dart","hash":"6b943be06664ea45e0cac8c8178920b7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\transitions.dart","hash":"a20476b0c2af5cee4bf0640aab028ee2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\characters.dart","hash":"fa2a57b3b873fb7db4b8b961735e4ca3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\greedy.dart","hash":"01b051da3c61c872efd639af5fa0f4f7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworkconnections.dart","hash":"4e3b785e94de8470e198d0bda80e23bb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\epsilon.dart","hash":"b9283cabc57ae94b3c75f147903751fa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgridpattern.dart","hash":"f4b8510296da48652b91a91857d7c71b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string.dart","hash":"097e09840cc00325fdbebaacd05f4827"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\powrprof.g.dart","hash":"bbfc82fc5cadc3b055adeaa481dfee0d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbuffer.dart","hash":"1a1718d3591a292ec85b4c24e55ce2c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose.dart","hash":"a57c7d0bb0b0f3ff52fd48c953453bd4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\snapshot_widget.dart","hash":"35618929218f5482cb77a53849ace21b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose_family.dart","hash":"3b32647556f88ddd6d625ddc58c7691e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\istream.dart","hash":"3575776abdbb8b6b6ff78edda77516b5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart","hash":"59bce148eeb78b17151a78113324748b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf8.dart","hash":"0ec94439be7a3b65b67cf02ae0824af5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\variant.dart","hash":"0564ee9e759fe52b58de8af3d5d0f9b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\result.dart","hash":"051cde8121025c728b15c2e7588d8d6f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart","hash":"bb1616431e7e339d1d3ff7056d346b4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\constant.dart","hash":"176c6b2c4f4e2d64cd55df2a0dabe5e5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jbyte.dart","hash":"d1a447c33fb026db3ec5e4b6ac445551"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip_theme.dart","hash":"eb862424fb59150cb9eb3ad863a6ab19"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\convert-3.1.2\\LICENSE","hash":"5bd4f0c87c75d94b51576389aeaef297"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\string_stack.dart","hash":"aa27dfc54687394062db977707839be5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\skip.dart","hash":"e0af2f414117c942cbe5e23f4f60ba3d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selectable_region.dart","hash":"3b7079a373d8c63eff5dce592af6647c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response.dart","hash":"2a02594ad813d39d23460e2abfd2551d"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\ink_sparkle.frag","hash":"0615f9d831d9b19a15b6926d9babee1e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\family.dart","hash":"18d9d372c2f7421114cc2a2df21d8206"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\loading_indicator.dart","hash":"cfa13a81d06c256567bcf9c8474aec6c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\theme.dart","hash":"28606b06edae379ec11d2d93ebf93508"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector4.dart","hash":"25e2aff82faa45ee7c3cb05fc8aa387d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\default_extension_map.dart","hash":"fe2df60ed5b05e922df2ee9fef5cf5d9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object.dart","hash":"0cb51131f14d4d8df95aee83e4931780"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\two_factor_screen.dart","hash":"e36d334fce00f81c8efb9b4fa288f0a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\algorithms.dart","hash":"0976264b99a1702a5d74e9acb841b775"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\framework.dart","hash":"dc7c1a8573288b247063c6759a011b7b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtogglepattern.dart","hash":"3796ca959ef2c6e4bfd668640a318ad1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\exception.dart","hash":"5275d424aba5c931a30e6bd3e467027d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart","hash":"31fac5b5882f19d242724b858b97d228"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart","hash":"28f7439b1d946ef75b90f18af1a350a5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\src\\messages.g.dart","hash":"0d464f8889947907e0d2ce2fcafb9dfe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_cache.dart","hash":"1f65c98a00f4c2151338f0d803b2d1c6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\find.dart","hash":"17d3a0211da3d73d405d8730d46caacb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\version_check.dart","hash":"feb9d01ea95c554272c3263d1b5f840e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar_button.dart","hash":"e127807dbf170db96c668c840d9821db"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\empty_state.dart","hash":"6ce4cf18b9c25729d5868ca9f5dfd1ff"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icons.dart","hash":"9f7270100e64dae8750b9ae54cde56e4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_gen-2.0.0\\LICENSE","hash":"5bd4f0c87c75d94b51576389aeaef297"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\src\\messages.g.dart","hash":"e146b44d78acd9bbb61d2d9f9fcb922a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\material_color_utilities.dart","hash":"fbd82bcbc9e665b8d098f0716297aa14"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart","hash":"c29dd136dd5ed20e4a1cdf451b1f52f9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wlanapi.g.dart","hash":"30191f66ed437888e9e12cdc67d37c95"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_theme.dart","hash":"c5f413565439b173df98b83f1af3898a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart","hash":"1e83c6270f0be9dd2e6457fcf059c9a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileisinuse.dart","hash":"9f2e86f55227535568e0459c4d51e139"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug.dart","hash":"83556c46b56c94715c7e42dbda413bb0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immnotificationclient.dart","hash":"300a55743890abdcee4f6f0ac897a3d9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_border.dart","hash":"10e637b148cf0219283c32cd82247317"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\utils.dart","hash":"8986177ba204a808c603c35260601cce"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\possessive.dart","hash":"485043a68e11755920abd67f229ffe9d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location.dart","hash":"6ed688f382406e9c782f92df9e965fac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\flip_effect.dart","hash":"860a0e6b23bd728899d9bbad3e966f2c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_1.g.dart","hash":"ebf62f8040320f913d52494eab3f3dca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_exception.dart","hash":"c39101179f8bdf0b2116c1f40a3acc25"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\plane.dart","hash":"d98495bcbc301290a10e6d1dfc255d69"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dart_style-3.1.1\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart","hash":"eca9a7a317e1f0d515f9912740c592df"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\LICENSE","hash":"3cc5c8282a1f382c0ea02231eacd2962"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart","hash":"29eb69935c586ca665d0f6f7aa84a06d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dbghelp.g.dart","hash":"ec2c8a676c3ca12891e9a65ea03458e9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\jni_bindings_generated.dart","hash":"ae166113e6ff5a842f58d22d959a82f7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\listen.dart","hash":"4990e198f887619ece65c59a3de67869"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\LICENSE","hash":"038c3f869f408e1194eda71cafcca6f0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\event_attribute.dart","hash":"304fc982848b57cf13da0ec511f05ed9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_multipart_transformer.dart","hash":"531d1d96bce7aa59a6109c02ac538cb0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationitemcontainerpattern.dart","hash":"17cf81dd718b76ea3b1453b5f74e1cd9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerfactory.dart","hash":"3aa843b290b927ec2ae60e30f12b4ab2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\auto_dispose.dart","hash":"9eb3cf0f33c573aa9e8424441db78539"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\collection_utils.dart","hash":"add5f0afe8e318e91950e5725be6f333"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_state.dart","hash":"83bf0c16af93652e46e4bdf93d5f12fe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\date_time.dart","hash":"2faf9ca0d113c0ed79c6651a9c1f76db"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data","hash":"97806b975917767c55aa3332c68f2404"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\parser.dart","hash":"d1ee0303997b5b50b6e7cfd972f6ccf6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart","hash":"ea0307aa388ef4ea77725e722047e72d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codec.dart","hash":"16cc4a3c97bbfb29764163f9783954cf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\message.dart","hash":"fe4f36f2c139e1900dbda797a7e07fc9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\internals.dart","hash":"6683b2c06b0ec964286b1a54f7e2803f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\binding.dart","hash":"cd7c911bd9a71d38d369eac020542e94"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_theme.dart","hash":"694c3cc6e2d326daebadef63f0b05666"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\run_guarded.dart","hash":"ddefd207562d7e33dc44d433e0848e1d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\trace.dart","hash":"dcb1bf21d8afb364e20a47f106496780"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_splash.dart","hash":"07953249885c3b6a0f9b209da024e6c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\sequential.dart","hash":"b5519514c9b9570c951c0da186030e29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quaternion.dart","hash":"55675ef4bbddffa94d962bd52b3088ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\information_provider.dart","hash":"e0e6a22d50cab6e16266023c58517b54"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\writer.dart","hash":"a8499171c0b67ca96b9f8b0462e1079b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jfloat.dart","hash":"8b403a286f7eadba8a7c7e6ce1a8016c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_floating_header.dart","hash":"4b47948751192afd79eae2fa8917d954"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\custom_effect.dart","hash":"49971663c818be6f5c1da5fe3bdf034b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable_helpers.dart","hash":"59762d927d3847803fdbe28919a08ebb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_map.dart","hash":"13c9680b76d03cbd8c23463259d8deb1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\label.dart","hash":"0e65f16e8f270ae65baf85523fb72141"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart","hash":"5b28a1ac6249f272147929f5c2682912"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\unpack_utf16.dart","hash":"cfab296797450689ec04e7984e7d80e3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta_meta.dart","hash":"fe7e235a7623f4d325eb05394e6306f0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\comment.dart","hash":"87546066dfc566126ed9357805535e97"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_boundary.dart","hash":"39f3f867b205cc97161c2209bb84964f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoicestatus.dart","hash":"5164e5af0ccfe7dbe777bb588e91c937"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipropertystore.dart","hash":"de49c234a47c24f91be2f223476fcd44"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date.dart","hash":"5dece601afa9176d17a2f17f462f976f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\default.dart","hash":"7f30d05e05b047b274b1c4b45391d698"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\cdata.dart","hash":"a1bc06d1d53e9b47b32fbdb4d323f44d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\protocol_builder.dart","hash":"9dfee6539c8500c134b4ff72eeccd87d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\no_splash.dart","hash":"363dc40bd108240cb513878e107a260d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\elevation_effect.dart","hash":"57e787ad7ab7e659258e3a0171634d3c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\json_annotation.dart","hash":"532a272d043c3dccd91b63d1b428dac9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\doctype.dart","hash":"a0ff9321b483226cdbe4773e33779715"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\matcher-0.12.19\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_macos.dart","hash":"db647290a1e99c1beb871fcf7ec44e82"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\notifications\\notifications_screen.dart","hash":"99948786c0d9f0b9de45c1b75e5f44a7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_border.dart","hash":"24afb8a8ec6e6d1ab62702c8cc554fb1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart","hash":"8144b7908238f72cdf9bf921ec61b200"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\types.dart","hash":"24b206328a01c6923f0c599c64088645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart","hash":"09a30da1952f8931df150554b700fc98"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart","hash":"01372fe939573ea2c3066bec70222cbd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart","hash":"9b741ffc78219355087b8876a5f2f6a6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart","hash":"b6ddece86289abf66c16e08325be5e4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications_platform_linux.dart","hash":"145a18283aef042bba506a2190347763"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\stretch_effect.frag","hash":"cf38ac99d6e6daaedb2791d07af7f285"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcacherequest.dart","hash":"15ee18405ccd7752c3035b2f3b86e49f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\functions.dart","hash":"e999eca1c1c76717a74f50814d129d17"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_name.dart","hash":"749e18efee29d6925d7c55e573d3eb2f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\macros.dart","hash":"8016baf49ccbce205455e3fc0bddbb17"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart","hash":"5802c95af0b70a643e4566d6a4f887af"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_group.dart","hash":"8e15fb39d712d35c4021c339ed1822c6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_chain.dart","hash":"7ec268e37049e5c22e226c94df1776b3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\service_extensions.dart","hash":"230a3518091834c1ebaba0eda6ad491e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\advapi32.g.dart","hash":"e1c4eba9ccd9a12c58e4e531e73fcc32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\date_symbols.dart","hash":"4c94c1ae460dd53255786f0ce3b53463"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart","hash":"19061eb5c67d5853bf7a8f53406a083b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_style.dart","hash":"33a37c05fcec728f44c5280e18129e54"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser.dart","hash":"b8a405a7e5ea8001bb0ab36de015ac6d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart","hash":"01edf2016995f3fcdadc212de7430b99"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\text.dart","hash":"f52860ffbd4c6858f092292d1589d556"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\xinput1_4.g.dart","hash":"08b6eae008bb8359796643eb1a639234"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart","hash":"97fc1400dd55cb4fceecb33260f0f978"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_list.dart","hash":"5b894ae18be3e2442a34288833184ca9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile.dart","hash":"36b808e976f035411a6b13a09cca7717"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumresources.dart","hash":"2e130b0e6cc669eb69235f142071943e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\char.dart","hash":"49f5232a2ded0fd41199247ef043772b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider_parts.dart","hash":"809e8ac7250eb66ab4d713bd65f5aaae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\foundation.dart","hash":"f594087d1804ddc538f758c0059eb6da"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_server.dart","hash":"8580846ee9612281791cc377a99d0581"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_error_l1_1_0.g.dart","hash":"ef5d77a8181065ceb0e93986c1a6f6ba"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format_field.dart","hash":"53b1a2074650b8f2808e620e2b9ddc41"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart","hash":"c7cabd6637c9917d66f7c814682f8cef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\jni_flutter.dart","hash":"c60f0503c7dc9addd109be4c44197758"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.g.dart","hash":"7ff35a1db7f2b80a156d464b075a09f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme.dart","hash":"81cd0b075cd4d742a83ed1a6f4f801f7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button_theme.dart","hash":"05f74ab5ea1d7103ef8e4f9cf05caa5a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_response.dart","hash":"f29d1458f73f015dabefc27f98181f05"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_view.dart","hash":"3058d37db340224b0e712b4714a779f8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\key.dart","hash":"e3825f51c0135897809a89cf7af42c4c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\platform.dart","hash":"b92ed901e8df2fde6d4739ed5e59051d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket_channel-3.0.3\\LICENSE","hash":"e539018b40753112ede3ab43f1ee9052"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\LICENSE","hash":"092362603d55c20cda672457571f6483"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\semantics.dart","hash":"a9d4e4b3f6357c540f77101737a25e4e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_sparkle.dart","hash":"16be701d0e77cd0f89f37cbfb1bf10ad"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrangearray.dart","hash":"c81713fc58f35111f30b5ef09b79cef5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_localizations.dart","hash":"bcadd68b799bedc548c0243c211ec652"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationpropertycondition.dart","hash":"35abc3f166f0485c87a21f0fcecae69a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_computation.dart","hash":"37837bd1379e66f38e4a7775b6084d0e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier.dart","hash":"b60a2076a519fde0c9162319239b25eb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart","hash":"cb9617d35408474cec5c44f6d57c0faa"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\eager.dart","hash":"2a5ea48301e3de49528660d81bbad42c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\simulation.dart","hash":"0b594cddd30fe9d0d34a42f5328a2b38"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart","hash":"1a0f6fb989f60a34770d3667e697603c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\batch.dart","hash":"9c6f87a0150adc24004a99cb321345ef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite_logger.dart","hash":"6745a4321f65340dc91faae80415984b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\lang.dart","hash":"7e3f918d0bfe4e1806f1187481eda29c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\expansion_tile.dart","hash":"4aedad37fdbba8c7bace80a249a67ff3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\auto_dispose.dart","hash":"a3250d5fb60cc8b17997c886a67be737"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge.dart","hash":"a9f0e05b8fdef7080a8053dd02ba8ef2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\sink_base.dart","hash":"597ee0cf67b512406e619cc05fddadbb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform_io.dart","hash":"bb7e4bee2f9cca7b7e771e5ff413108d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart","hash":"d34d9b212543fc7b9be0aa2629f644be"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemobjectaccess.dart","hash":"3ce0f30d7026f6462449617764734437"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format.dart","hash":"20dc50b53035a8e953b5d4ffe6948ede"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button_theme.dart","hash":"f06285441f011c415850a378771be4b0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtreewalker.dart","hash":"034536c8c0bdfd72d8f8060ea1f36f3e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_attachment.dart","hash":"796d0d545778c85ce27a9304092b5ed0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider.dart","hash":"ef404628eaa9f15a2b25a2cf99a6df9b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_rainbow.dart","hash":"61f38162c831759dd3768aa4cf2d22f2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\material.dart","hash":"c4d6b1cc1407761dfb2b51713416d679"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jiterator.dart","hash":"5bca961ad685ab10214ea12d5a120b89"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_theme.dart","hash":"15bd155c4ace05abe4d39c725cce4f51"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart","hash":"28bfa6a255f9e9d16e0ae25511179fd2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart","hash":"a2701656bb3160ea810ab576c50cbd65"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\exceptions.dart","hash":"0400c53ca2e9230b51a6f361146dee28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\method_channel_path_provider.dart","hash":"77ed8d7112753d0eeaa860ecd9fc5ba0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\colors.dart","hash":"2ef90aee578d834f91ba85c1f44cf71c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\service_extensions.dart","hash":"f45299fdabda0bd3b2ed77068c7d1de6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\decorated_sliver.dart","hash":"22029a1632b4f7ca4e7271bff29d89c9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart","hash":"079edbcc1283bc93f993199865e3fffa"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multitap.dart","hash":"64e440b4de7121a100d0f99a8126b6cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ibindctx.dart","hash":"82c3a291bffe63fdad7d6e4bd5b0a0e8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart","hash":"c669ffa0ef13b4a5c5d951c7c677a057"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart","hash":"d48d52bc573d346cad979541a2f68329"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ntdll.g.dart","hash":"72e3f09580a88c2aa3ce838611e0a25d"},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\dart-sdk\\version","hash":"d2e911f4f90d6beb874adeab92bff19c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\android_options.dart","hash":"2d04b343ac3e272959ffa40b7b9d782c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistfile.dart","hash":"0f1d84a9023a931b4b3cda6b907d76e9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\temperature\\temperature_cache.dart","hash":"2e46417042b18a7fd19a9d6c90fce1b6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\core_bindings.dart","hash":"7f4803fefd76d9acc343598ff82f512a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart","hash":"c3133dd829b0ede654f9ac03ccdc9b4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\windows_options.dart","hash":"b4355b7f9f9e50017ce52a8bda654dd1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_controller.dart","hash":"4d7ff70b73cfe04b14f559266b5a991e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader7.dart","hash":"a60dd773b7d69b347521fb64257f9397"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\debug.dart","hash":"31cdb66ccc93a7a6b179af6b4db7790b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\context.dart","hash":"daeb052f1089d4e84d8a22acf56c1da2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\lock_extension.dart","hash":"92197f660f809dbb94c7d3d67b9f24e0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart","hash":"29bcbfc3fc36aa9f730e8760f765c536"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\flatten.dart","hash":"481d21ef07dee6f82302a015f989b597"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_field.dart","hash":"d3fc00fd023c392cb5a19d630ec45482"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\crypt32.g.dart","hash":"8898ba9f5064edff3e9fbc9889ba9dd0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\oval_border.dart","hash":"a4bd9e0add3bd13842fedfbd33ba0192"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route.dart","hash":"da1662b9c25c25360cd487c1b4ade3ab"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\tz_datetime_mapper.dart","hash":"2f6d6663f131dd0e24f37f58530342c6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\choice_chip.dart","hash":"eb1f8c19bb309d54e9efc12e5162e3f4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart","hash":"57699e53ee54d843153d1ef4dd086d64"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\encoder.dart","hash":"dbf4f1e95289bc83e42f6b35d9f19ebe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\clock.dart","hash":"2c91507ecca892cf65c6eaf3fbe0a7e6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app.dart","hash":"a73bf48fadeaf5b28dfadc67ce067e0f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\constants.dart","hash":"38a87ff489a47bc024400dc863be326d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworks.dart","hash":"6e3924fcfcaa29ba9146915e7603139c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\result.dart","hash":"6782f277d348804f26f7a748f647695a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\tweens.dart","hash":"f9cf43c94d23a1e1093f4f1cfd789d18"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\platform.dart","hash":"43003295879b7dd8a2a4c221698815e9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart","hash":"945e46eaa95fb690603786f3b0386e1f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\propsys.g.dart","hash":"c226787e49d4779d8fd575f9bf26e298"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\logger\\sqflite_logger.dart","hash":"ec42ef810171a5795d12e7ae93eadbf2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\env_utils.dart","hash":"d75f62f03297d8fada84de77f3e92373"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fruit_salad.dart","hash":"0663e41383137de0068cc7a8bd70f814"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_8.dart","hash":"5f0138a157edf46a36bd960b7eaa9885"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_input_screen.dart","hash":"f360aeb424700ec81ab3779a8e05a386"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\matcher.dart","hash":"faa18ee55924a5c65995875c94338d98"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart","hash":"a0836fe16e69a1daeee421a5dd73f761"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ole32.g.dart","hash":"5be59a094b276fbbeb0a2255d1c45e2e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\geometry.dart","hash":"6b14a70bdd2f31926c1572aa2cba523b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\result.dart","hash":"1325fce32c39a3792e3eeab612f942f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\builders.dart","hash":"dc1a141705a29df814f129c65b47b5d3"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\comment_thread.dart","hash":"b7ad782f730522a58cf2946da0419352"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\utils\\utils.dart","hash":"04f2a3236f9f0080d5571041a0cf3567"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader2.dart","hash":"9e2940d007af19bd5cf177e3be339363"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\lib\\path_provider.dart","hash":"e08429988b4639fb29cd66bfdc497d90"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory.dart","hash":"a79e2b9a182eb762fadaab05e9269edc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_features.dart","hash":"d5c54cb86a7c6b930659e867a4b2fdc6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\attribute.dart","hash":"9554d9749364a5e33fc853c08b09f076"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time.dart","hash":"e45e5a556df7d57dc9a7a3ff9b0370ef"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\widgets\\funnel_kanban.dart","hash":"3d1f01e5d64f01d4b5efd76cf609830f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\forgot_password_screen.dart","hash":"f23eb0d7ef7ed55d6331d493f0b7c625"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionenumerator.dart","hash":"e5349492be89ad5eea4187db08b2ad0f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\force_press.dart","hash":"b37ded4b59c2d4efd0802499d6944937"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\url_launcher_ios.dart","hash":"a29ba6c14a2b2f3099b30d0ebc285446"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\ray.dart","hash":"d69cd05d9de1731242d357de56893a6f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterable.dart","hash":"037df9e7342fc8b812d985c8b6e8a0c3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.dart","hash":"fcf700e37a2ca8372a19ea695ac704c8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependency.dart","hash":"1a04b09efdee92cd9f3e6c8f821820c0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\auto_dispose.dart","hash":"9ab6d0a38467598c8e1f332648cff545"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pop_scope.dart","hash":"03e34b6476f2a5b43080c9fefcefe9ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\scroll_adapter.dart","hash":"a1c59f1e780c22ec4f0e14f6a1eab0da"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\each_event.dart","hash":"5776e262e9291819ba2122854943ea6d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart","hash":"ac8dd5bc57b10e3480c7e09e9a209f69"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\universal_io-2.3.1\\LICENSE","hash":"6bffa45d429f7b71ea59f5019bb83a15"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button.dart","hash":"62cdba000bd3a2c52f31f32a38306c18"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\obb3.dart","hash":"54c7f23362a7e78be04b113d00022090"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart","hash":"9d9d9fdb1fd92d1375e2e00271605fef"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport.dart","hash":"f07906ec64450887d6ca17f705f436f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response\\response_stream_handler.dart","hash":"87061e866d20d4a66d6990c36638681f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\list.dart","hash":"69c4980a512a91477aa1a6289583342b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sql.dart","hash":"9ab11d900c41a880b39e97693f383b5d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_tooltip.dart","hash":"831170e2856529b531c8648a754259e6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\animation.dart","hash":"e76c07fd6945a4eadb2aeebf87b643bd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_mixin.dart","hash":"2676ae1a6e48da385bd3ddf0fa233a91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\chunked_stream_reader.dart","hash":"3f719070987790d062d9ec084da306a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\netapi32.g.dart","hash":"242d63b96e4a26d3b557a32d0a008a4a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.dart","hash":"d16cbe643e1b9f1d249d52de66e9e399"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\vm_trace.dart","hash":"9a7022bcfa03c67d126e948062508201"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfactory.dart","hash":"93d835e43f33ca5ed96e6e85a392c1e5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextchildpattern.dart","hash":"3d63c4213a898f6e0eb52cb39fa282ec"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart","hash":"a5df6e3153b654738dfd5a67c799e6d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\base.dart","hash":"737fc999d5d26218c34c7423fe061f1e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash.dart","hash":"4af79c5c69ccf0cae6ab710dfb84b125"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\stack.dart","hash":"cea2237f09873a1d9b1f818b1eac15c0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\unbounded.dart","hash":"a617a91b12a3156406da1d95552aa4a0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\flutter_logo.dart","hash":"494881558ae50a1d5273ceb66b43ed85"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart","hash":"1567f48c008c53e32ab90ac581eb17a5"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\utils\\validators.dart","hash":"23a2722ec06cf91e874fcb8c534b470a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\spell_check.dart","hash":"70b1e13ee34c56eeaa448a1432a0b519"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\family.dart","hash":"9dcc50108fd667c7744d5bba6b51e1b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\null_mapping.dart","hash":"4bc463f9c4b5496d8918b58070c10515"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart","hash":"55bc3d14cee7b79419f78a7f2678d6a7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\collection.dart","hash":"4ba0a4163d73b3df00db62013fb0604e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.dart","hash":"b51cea8017e3cbb294fe3b8066265c7e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jshort.dart","hash":"133db2e371d34eba2a099b23dac8123f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart","hash":"39ae8ca0fa3f0caadde0497b84eccbfe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_multi_server-3.2.2\\LICENSE","hash":"3c68a7c20b2296875f67e431093dd99e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common.dart","hash":"1ab2b4b439160093cb35c9b0c739bc0b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechwaveformatex.dart","hash":"8d9c84de01d7084606586631ac759a34"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\intersection_result.dart","hash":"0cd5a938f3a3bf96aa0d7353906eace6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart","hash":"ddd6579941605dbfd6a3a213cec979b5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_linux.dart","hash":"57d7f8362700a89d0d0c97e7d517cad3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\LICENSE","hash":"d2e1c26363672670d1aa5cc58334a83b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol.dart","hash":"405ff2b0c110ef10a33e496bf7db38a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\LICENSE","hash":"80ea244b42d587d5f7f1f0333873ad34"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxpackagereader.dart","hash":"59137da0b55aefe8a4074891792a55b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_client.dart","hash":"6b3c8cd4c0677edeb4fb8c22d923657c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart","hash":"8d23c7f8747db9d1a851ef07e5107378"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\material.dart","hash":"61f9ae17975d4d233db25ee3f27633bf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\whitespace.dart","hash":"57a5a9f535e7c37d09bab9aca685dfd2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\nio.dart","hash":"dd4b0b0cda09094ced3081f462b2d422"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\framework.dart","hash":"d63ca0c723f6a99572c806b4ec989036"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_address.dart","hash":"4ecc0e7678d4ed3bf62a04b3e383e424"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\colors.dart","hash":"c517fb54b3d66b22988ad7c8d07c6f53"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imoniker.dart","hash":"59c4492b4ff3d2e5424c1903bcb8a271"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_visibility.dart","hash":"832d4f6b469c388759ffcaf981e16f12"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\main.dart","hash":"0ac907e2256dbb32ac0aff050f4045d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\guid.dart","hash":"55bb53dd4f9ed89c9ff88c204b59293c"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_list_screen.dart","hash":"965792db4b01d58da64391842c6a9a1d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database.dart","hash":"66f280c66f95d03902082cdd2b4255e1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_analyzer_utils-0.5.9\\LICENSE","hash":"5b4c5872973fd946c49c0ed7df0cb07e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\optional.dart","hash":"7d49b944ccc5ee228590126488731a95"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\callback_effect.dart","hash":"7cf8d9762d1f2226ea94a1c8ce1f7265"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart","hash":"4326580ee93b3a584477cc185146eb2f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_provider.dart","hash":"622fb6ce7394816d6eaceb396769c76e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables2.dart","hash":"f1f175eff474684786b1b6980f386aca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\checked_helpers.dart","hash":"c668a1bfe65f14c115a3294ac6502dca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\go_router.dart","hash":"94124aa8c115b3bc8553ba80c419ceeb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_style.dart","hash":"d1dadfa45cfe290ba6a9aca2c239e289"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern.dart","hash":"8355566a31f02cb53e7f9b94d8c873ec"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart","hash":"7cbd45f5de23f600dd963c6eb31d6851"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart","hash":"ea75ea73bf570ceefb21bed44d38a168"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\colors.dart","hash":"07fa95aca6c82e2f15c0007388cef3a6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\stack_trace.dart","hash":"9a478fed4f2f15993c892e33f6fd766b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\LICENSE","hash":"6eb17212266d6f143295fbec385617aa"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart","hash":"597dc25df66b35f8b1f2ceb6a5df4328"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemarray.dart","hash":"bd08457ce7d378f126bea891f669b69b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\error_helpers.dart","hash":"ef40ba86423f614b2b841a3a11478937"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\method_channel\\method_channel_share.dart","hash":"d945f1b87d2191f38f4d677627c5e442"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\viewport.dart","hash":"3b5a9eff22ec4a007c4983c5d145fd88"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\callbacks.dart","hash":"b020749262d0d602700cd21e6f41acdb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensormanager.dart","hash":"af29a3ea1a69b956f7915a4cc29d4b89"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\method_channel_mappers.dart","hash":"5d0fb3d359f4af000209c65b873ae97f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_collection-5.1.1\\LICENSE","hash":"b2bed301ea1d2c4b9c1eb2cc25a9b3cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\blur_effect.dart","hash":"19ad609d2f555c552877714f4b07f150"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\level.dart","hash":"49f3213e86d2bafdd814ac4df3d114ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterator.dart","hash":"6c54f90e0db5f42a13be6b3efeb4a04d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\platform_info.dart","hash":"81e7d988ce6f8a20230e61cdac83f21f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\method_channel_connectivity.dart","hash":"3d18e1306d78e114f98c9dc311fbf158"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker.dart","hash":"161c0b2bf8b65501a373115d3cb525f8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system_io.dart","hash":"35c142ea243059f941a4a896a8e053ae"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\basic_types.dart","hash":"00f26750b380e279fd67c68c79734999"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\LICENSE","hash":"aca2926dd73b3e20037d949c2c374da2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\LICENSE","hash":"80ea244b42d587d5f7f1f0333873ad34"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\move_effect.dart","hash":"a9e1c7b28293ccedf0594edcf59ec4b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math.dart","hash":"4181db4115c5cbbf774171b3cde1542e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\LICENSE","hash":"fcc4d991b068e4103c4ef152baf65fb3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stack_trace.dart","hash":"bd15738d49bec303fe3d234de40503d8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\exception.dart","hash":"9a1e38007af02b923a4076ab4e989f48"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isequentialstream.dart","hash":"2d06e55a087b389063f0d5777e1d8563"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumwbemclassobject.dart","hash":"17399c5876a7f1c340f8814cbc903b10"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\guid.dart","hash":"831a91029162697310005b2ad492c0ae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_manager.dart","hash":"5f173a5c0de15909e95d3275051138c1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\basic.dart","hash":"6267a1d85ca89f88f1b31c1753857593"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\typedefs.dart","hash":"4c00fd95f493a02179f1013a29629e43"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\result.dart","hash":"4b6bfd3301413140ecdae9fd2f3db0ac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\image-4.8.0\\LICENSE","hash":"c17706815151969aa7de6328178cc8bd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart","hash":"2ea5fc004c06135bbb80e7610df0a2b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\LICENSE","hash":"23a7e2fab311012bc8f9fc2de0d1593a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\LICENSE","hash":"d2e1c26363672670d1aa5cc58334a83b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\resolvable.dart","hash":"f7329cc0811af555900320e49bd9686f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart","hash":"2228217b45cebc797d335ca823de5628"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\intx.dart","hash":"c3e3bdde1f486b799e08a1ed1b99c76a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart","hash":"3cd10797ca791a0821b3926e6a5f35e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_macos-3.1.3\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\utils.dart","hash":"e85b4f3cf370581b3ef11497a9a5bce3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.bin","hash":"0b0a3415aad49b6e9bf965ff578614f9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_theme.dart","hash":"6902970c798c00c3d9be3d38d84476f5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\logger.dart","hash":"49b829330c9d1fa06c2856f5f2266921"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_chip.dart","hash":"e439e835e5295ba822d8db4be0508c24"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iclassfactory.dart","hash":"adbacdd68acdd5e35ce91a3475a1be38"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_bar_theme.dart","hash":"46b6c3bc78aaea7e746e7525f097c370"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensorcollection.dart","hash":"c20dc5b81ea6dddfc61f66c603afd971"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\callback_dispatcher.dart","hash":"5239ca253366a3b71796f8e9d2baf065"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\voice.dart","hash":"1a8e27f4b3fbcd0df1fd0be10f303523"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\rng.dart","hash":"b1fae9295ede41ffa9f747205458d1e6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart","hash":"93219dc70f767a24408583015695d38d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\path_provider_linux.dart","hash":"8ac537f4af05ad812e8cd29f077aee24"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\LICENSE","hash":"3c68a7c20b2296875f67e431093dd99e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\errors.dart","hash":"8cbd679f40c3f8e0bd00dbbd6bfb8f79"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\typed.dart","hash":"35c9371cbb421753e99a2ca329107309"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\newline.dart","hash":"bfe2918ca374e53fa6d7f36b62298bbe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\range.dart","hash":"5e99407d87eef382375ad62495706f32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\helpers.dart","hash":"dad9796d04d76633de091aec36be71c2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoice.dart","hash":"38d7929920e46438585ed549abb3690a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image.dart","hash":"11700160ac26458c7b8f858dc756667c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_9.dart","hash":"e20355dd45521a6de91669be6cbfb3a3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart","hash":"60404027f0989ff65bec1d1afe1b3866"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependenciesenumerator.dart","hash":"21bea147ac9531ac715cd99a07f55866"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_web-2.4.3\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\ascii_glyph_set.dart","hash":"7050c8c94b55eb51260ca54708b460fa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\type_exception.dart","hash":"d39becdaf9cc42e3efd0c9cdf0034ac4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer_theme.dart","hash":"4b59175aa026b6fca1ec88860132b3e2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\transform_empty_to_null.dart","hash":"579bb0bd41c172690d80937bc1ce3b4c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart","hash":"a65b42d17e5fb18d7a4677b1cf7a580a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcondition.dart","hash":"0469c2fefb6084f264cd0df8bce7263a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser_base.dart","hash":"39348131fc86fb08a42dd6b2d1b16bf0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\flutter_local_notifications_plugin.dart","hash":"c9b70f4004e9ec7f0856ecc0e45430bc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart","hash":"b041b21cf2748b89bf2d86fb125b1f11"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lookup.dart","hash":"f2698cdf4b07ce88e4996e23f26cd0da"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\word.dart","hash":"8adb5d78a35b1e7a4653c7ad239bfdcc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\consumer.dart","hash":"f28a95b717859fa14ea8344e766e7fb0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\binding.dart","hash":"3f01af140bb202c673d2e8ac00cd9c58"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\predicate.dart","hash":"5cae30214f9509b4b47641f1d38b7fef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\types.dart","hash":"4a9817f509bb8eb7192a89fa9aa015dc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_parsing-1.1.0\\LICENSE","hash":"96ed4c0b2ac486bba3db2c5d2a96afc4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdeviceenumerator.dart","hash":"8a2e692d7adcf4c9e0bd0f85979ab7c5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestproperties.dart","hash":"25ff828118233f5852e97c3e15c2a5da"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\group.dart","hash":"88dfc3805839516a8f89ec1a963e0f08"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_encoder.dart","hash":"ff402ced5472590045b91c0f30e4b089"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart","hash":"60109ddf7e2c458b410cbb55fb79fb2b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtablepattern.dart","hash":"6a38c376b8edbead42348c54f9f12420"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\cupertino_focus_halo.dart","hash":"b842bb3a72f625b3767794ccc25e6e23"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactorymapping.dart","hash":"7eae5454728dc152e90d36cc6b715544"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\single_character.dart","hash":"8db9443001d816c1f89abdf5bc0e7c7e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\visibility.dart","hash":"53e9b61b7396a9fd3a94e7b7e33dadcc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_platform_interface-4.1.1\\LICENSE","hash":"6e15c47981e2e43ee17849a222e33b76"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\box.dart","hash":"9297b44982d52dd6e4fa751a8032abdb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtexteditpattern.dart","hash":"77fe24649991a149ec3886147da46e40"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart","hash":"2285a845b6ab95def71dcf8f121b806b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\parent.dart","hash":"210257ed62edd783098ed34d7cfb0204"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\binding.dart","hash":"0920bb7ad132c49aed7f943decb1558d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationrangevaluepattern.dart","hash":"32621d3d5949612fe2c614d37bfaf7e1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512.dart","hash":"d8bc65f055ea77fb51c719f8239bb878"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_navigator.dart","hash":"6a7f49ff645804c67a62656a0046ca5d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_writer.dart","hash":"c932575d5afb22daa2456a44889b3cdb"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_list_screen.dart","hash":"0d0fe87e78a361739f89e10ad6e472ba"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange.dart","hash":"46d014f5f4ff404b81098da9b003b770"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\subtree_selector.dart","hash":"ef93f78a8a380eeade385040b1d075c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\core_palette.dart","hash":"5a11d4662fc61ed2bd835a4e6bb0f47f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart","hash":"6c0b758a4a7b8966ccbd64932d1ceefc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_native_splash-2.4.7\\LICENSE","hash":"087f211902225140a323fc8295c9ff6b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_controller.dart","hash":"30b3454341d40c187ec21020db3a495b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\lib\\state_notifier.dart","hash":"5bc3c944f62b4cf5d382a0c0e9b7e09e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\stream_transformer_wrapper.dart","hash":"b9d74f9b99fed32e71f391bc43251c63"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemresources.dart","hash":"47eb0e2b093b486abe563cf677b04f31"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_literal.dart","hash":"8388d5e13155ebde873438c26dc4ca33"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\linear_border.dart","hash":"82509444e485e0132bb19037ec94eb07"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string_array.dart","hash":"dce5e400c1f0958583196f9db05de7b9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart","hash":"5bce9844f08a797bc490d255999c44d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\tzdb.dart","hash":"01c25b2dabe912c532a94956c2e40c8f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\span_scanner.dart","hash":"87bcefcfff19652ad296ec7005799840"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap_and_drag.dart","hash":"88f7d904c8290ecf9806bfaa4eed2ba6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart","hash":"b4285b9bbc77e4cc655cd8af92485b80"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_number.dart","hash":"c679024d7048e142ec507a2278764161"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\oleaut32.g.dart","hash":"d36205839f51ee14bc2d832726c52853"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_edit_screen.dart","hash":"4000f838484ff00d0994bdc1d215d359"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart","hash":"c8fbfde647968a9750131e39e57d58b0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\platform_exception.dart","hash":"89ca6560d39efc4e7a136aafd44f8e49"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock2.dart","hash":"286726a4ae635c3cb149cd640c3c096f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\constants.dart","hash":"0672d853d5097a03eddc7dbe558eeabd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\grammar.dart","hash":"9be7f7af9a9eee6a84b8b3892e567a28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\url.dart","hash":"13c8dcc201f970674db72fbbd0505581"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\flutter_secure_storage_platform_interface.dart","hash":"8dac3815609f98dfefa968bc2ea4a408"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\mime.dart","hash":"6438480f29034a2c6acd5817c656d94d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationannotationpattern.dart","hash":"d7be13ee7803d293bd92452e5ef3da27"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart","hash":"8c1da8fe85a78738e78bce8ebe3ccee6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange2.dart","hash":"6905ddd5343384c6898473c3d0a553a6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\objective_c.dart","hash":"4be027cea386e739ab623a805182646a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio.dart","hash":"431a6eb92e625c69732232c905c8b91d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\helpers.dart","hash":"25feac2cd9c96cc475403e601757cdaa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\constant.dart","hash":"b31d8b7fb97262fc5eb62171864c5c80"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_apiquery_l2_1_0.g.dart","hash":"71eaaef10eca13dd60c5459f65db0e72"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer_plugin-0.13.4\\LICENSE","hash":"e2855a4f7db421253212d56a277c54a7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\future.dart","hash":"443fe4357544b85c13ef051cf37a602f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid.dart","hash":"49d6d829ae481b2570a290401389d149"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart","hash":"c87e92035314a4d3e52faf886355d0a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comdlg32.g.dart","hash":"cd103a8b0a9727840f3bd8bd985ad677"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\ray.dart","hash":"81926da83d9ea41cd5ad389174aa96dc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation4.dart","hash":"d8b980603638367071e1f1c256ebd56f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\utils.dart","hash":"fab8d6d1b0e81315a3d78131394d31e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinspectable.dart","hash":"4a83689a30f6283c87f680b4c54bdd91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_platform_interface.dart","hash":"022ddffcb01934fc1b0912fcb38de832"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\lazy_stream.dart","hash":"1b3ff4e1a515487aa9ce23ae7fec0100"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\LICENSE","hash":"8f29b74ba6fa81721ca1cd98cd39ae4d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\word.dart","hash":"18e902c0d484a6a2e0d68837fc5f003d"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\workspace.dart","hash":"496db2c69d4976328873333551077fb6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\reflection\\iterable.dart","hash":"bea1f59f6923a9f56c6d7b785887caab"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\lazy.dart","hash":"c55ebccc440e68cd5b9553b5cadb9781"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches.dart","hash":"5ba6e004392bbc498c40ccb026b0a845"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_data.dart","hash":"a8a7af5aadf8748e4bb6a28b08be67b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\error_helpers.dart","hash":"c83781cf0c38883486f707cddbb96773"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapters\\io_adapter.dart","hash":"21ceca6b2a9506768e08af4b33e9879f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_dictionary.dart","hash":"40156e00b5f6a885cbecbeb24e74f299"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image.dart","hash":"1c6f4bde2f41b6d50498e3026f24dd1a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart","hash":"6cb8f5330e475639e0972e210094eaaf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbyte_buffer.dart","hash":"3b16ecdd5d54828bc025cb734031d11a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\initialization_settings.dart","hash":"150f91352c1070fd5f15a65ba10e9cda"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\actions.dart","hash":"d0529dc5607a93f7ae3794cf396953a2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_sink.dart","hash":"7c57a9163e2c905ac90a6616e117766f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher_string.dart","hash":"ec94194f35d48443f468a3b06ef69845"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelementarray.dart","hash":"e7ee3c364551618835ecb4e3afe065ff"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart","hash":"ff0c28954cbb930913ed52a41f11189a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart","hash":"aff356351126de3409e033a766831f87"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_web-1.3.1\\LICENSE","hash":"6e15c47981e2e43ee17849a222e33b76"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dxva2.g.dart","hash":"9bbe69dd9a1b6e7cd87210c8fc19314e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvaluepattern.dart","hash":"868fd1ae52dcd191d04c90dc4a26dfac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast_list.dart","hash":"cbde849a0d8b182c6b30098c330308bd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_theme.dart","hash":"379e8b5009f9922662800bce4a40fb6f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_transformer.dart","hash":"45a20da2b86984fa0b29030dd190c75d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\restoration.dart","hash":"5d09262a3e0ca19a25f44e0335d37637"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\person.dart","hash":"a0f12d72bbc64d6edba6d1174d5603e9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jlong.dart","hash":"a2af4cd8f82efdc948caa14f45b9fd70"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiostreamvolume.dart","hash":"a88c6c3bfbfabb9924b6b0c3475f45b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\event.dart","hash":"1a7fe7a35dbd168a7f2e10065f4a3158"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\funnel_status_badge.dart","hash":"f28d182c1372142b6a29e43adcfa8339"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator.dart","hash":"2ad6e7a63593e3a472515b373c9aa8e3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart","hash":"8269f2342a47cc46669c8b5262876866"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\resampler.dart","hash":"b4e737c00450df676724cdc880825116"},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE","hash":"7c4bc9f9bec60c0636f78923ee1d4e6c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf_web_socket-3.0.0\\LICENSE","hash":"3c68a7c20b2296875f67e431093dd99e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart","hash":"c23d3ef5560b43a8b8f04a3857bd6b1b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\animation_controller_loop_extensions.dart","hash":"6f060a03e28c25d797360a2375efa878"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_sysinfo_l1_2_3.g.dart","hash":"3d2b72757d0604ae307bd71ceb16f6c0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart","hash":"a46436908bedbddc369b95d0eb67c738"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\shader_builder.dart","hash":"0e01c8fe91bc7e95b9b3244d2020e07c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart","hash":"221f729a18a7fd7d280e87a08cf7ab79"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding.dart","hash":"5f5c07df31f7d37780708976065ac8d3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jprimitives.dart","hash":"25e4e5d3bc90a692c908c5eedaaaa97e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector3.dart","hash":"1dd695066bccfccf510bb80b2b137ad0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\error.dart","hash":"a10eafbc71350955a16e4e787402780b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\internals.dart","hash":"5c4a5af039aad32f5ac9bdbfc1536af4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport.dart","hash":"754560d00f3c24825e656e9d7e03fd6a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\base.dart","hash":"0ab8c6ae2a539e1eee8cc8e4e7cac2d1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenserex.dart","hash":"1a8913505e5275e2ead5a2e0752d1ac6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationsynchronizedinputpattern.dart","hash":"dfa5338b5b93f9705e9f756dc0327549"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart","hash":"309567ad87eda6c4d2933dbe4250d136"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart","hash":"4bce21ce9b0374571d7d8a49d4a0707e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\wrappers.dart","hash":"21e56afda1f096f0425a34987708ed56"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfile.dart","hash":"9147a0ebdb209d3da9ae7cab703710fe"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart","hash":"30ab21a111fb8d1e3b9c67e83fbd9efa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\sound.dart","hash":"58f14973ee61401b0bf79de491dd1e69"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\definition.dart","hash":"f0cf3060fe907fd075c49261e69b477c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\warn.dart","hash":"474476ae5db616e0ecf5e488efa202f7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window.dart","hash":"5d142a0e36f1ebc5b5f2a7d03a3c6e1a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\colors.dart","hash":"f3747e025d835d0ff5cfd904d925dea2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation.dart","hash":"73d837564acafc178f5bf73dc50994e0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\router.dart","hash":"586f82935199530ba7ff15a9a7cbe00c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile.dart","hash":"b6eb01fa913a0828787c31a1a01939fd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\adaptive_text_selection_toolbar.dart","hash":"1eefc5159733d48f56cef3c8af7b4c87"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\error_screen.dart","hash":"72d27451431aeaf0b4f073a66bacf00f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi.dart","hash":"68634d4df864077f507d84d92953a99b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button.dart","hash":"af6f0ec90bde68bca524edf6a9270e54"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_builder-4.11.1\\LICENSE","hash":"e539018b40753112ede3ab43f1ee9052"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\utilities.dart","hash":"c18ab890f45960c7227edee678cbdf70"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\material_dynamic_colors.dart","hash":"9cc3bc193f4ba15acf07b6b1d46d879e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_parts.dart","hash":"09e8efdb71459824758d4bcbe6bdafe7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\utils.dart","hash":"e8c1fb168963c9e062a369d72d2dad6d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb3.dart","hash":"ec3a274c8e6537ec92c8d5f877a670ae"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart","hash":"34db9d7c9ebc27ae8cf7b0284f83365e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix3.dart","hash":"7711f4b6c3574cec77169f2d2c35ee3d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\pub_semver.dart","hash":"5d10ebcc18f13e0b7d4ba4f8b3d2eae6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\hct.dart","hash":"d75fe23c75429021b8f7fe4e57ac5d49"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterator.dart","hash":"accb24637ddbe55d7a3f76e4618bdd22"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winmd_constants.dart","hash":"16115596ace5bc18b10c61743655c625"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\constant.dart","hash":"84fdc97cdb402f94c301f5154682112f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wtsapi32.g.dart","hash":"da654b6ae25dd581a1b5f1084d769c91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_0.g.dart","hash":"873f842bb40bf6525129af58dab2e62d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart","hash":"84bf57329e0844bff959588b675ee251"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileopendialog.dart","hash":"54b556c56a02a636de1790f953f298bf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart","hash":"949628e68d078ec5a0a3f998c026d556"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart","hash":"905820743296f664dcdf79064ea08aa1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\debug.dart","hash":"9bdb8226a64b47b9b7ed09557fa63ee7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart","hash":"b76c005aa044aed1637709e0570a0113"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\undo_manager.dart","hash":"c676aa7c12f7153ddea49c1316ea9dee"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\selection.dart","hash":"4171ccc0ef5ccf7a3355589667cc0450"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\digit.dart","hash":"fc5bd8041afab0229dff18f2011a51a5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart","hash":"4bac4761db1aa945a1bbf1db8c88ef92"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\custom_transition_page.dart","hash":"bd81c6cc5eb829742ceb3a955cd852d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\path_utils.dart","hash":"228413c644cb471229965818da205c6f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\picker.dart","hash":"97abce4f63be03d0be5b79cdae97fb9e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\binding.dart","hash":"af985de6a8ba714f7841d5c113505205"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file.dart","hash":"d96646e5f342c3ff58625f7edeb8808e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown.dart","hash":"67fc3252c5cce2788c332809678ad2d9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_children.dart","hash":"7c666bff17f2cfae821f93f0c5e66a64"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jlist.dart","hash":"41540e398bd3cd471052b5b4ae735519"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\data.dart","hash":"d7fab9eeba6ce2b3fae0a93d5622ac93"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\plane.dart","hash":"fe0f3503d326c72bc31945d24f76946f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\physics.dart","hash":"ffd7e9991334466f08df7afe0c721048"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\normalizer.dart","hash":"bd502c5f75cc8148d708eb3e01c02765"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shared_app_data.dart","hash":"c42e90dc6ffc511ab7c13ef0cb2a26dd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\fade_effect.dart","hash":"9b97c69821fcffb65a844fb60bc2a4d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\radio_group.dart","hash":"7c90678e488e43e059394cb44fcf4b0d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\async_selector.dart","hash":"c050fb9d5c851547735cf2c46d8b6288"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_zip.dart","hash":"df699735e3bcd730f16ce377d562f787"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash_sink.dart","hash":"523ed6788c525699c2e2d6e46531a727"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_set.dart","hash":"4b5d82ddeb09bc46ae0e980616ce0109"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\priority_queue.dart","hash":"34a4d340931147322eaddc77fdc65c22"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile_theme.dart","hash":"075ab668569c4b788afdcff8d81027ae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_map.dart","hash":"700328ab0177ddfd9a003a8c15619c1a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\transaction.dart","hash":"95701ee376845a2050d29814b7acc7a4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinitializewithwindow.dart","hash":"0748bf03bcf37edd1d571959e45a5cc0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfolder.dart","hash":"561daa1b637bf14aa167a49b8fc3ce6d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\continuation.dart","hash":"95adecf7ec0db3c154665406582e0513"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\about.dart","hash":"62ad9c129e91d2abc0d91a21502b8549"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip.dart","hash":"46be5e56014db4fa892e3a949b0904e7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\character.dart","hash":"ddce6034695da8c5dc36994409d26189"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\macos_options.dart","hash":"ef56d0c30c2ebbf770de5c7e9cd6f6a7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern2.dart","hash":"1dfa85bd16bf08ae91f9cceb02ef1563"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\serialization.dart","hash":"003151b5bb4558f1aa0f19f3df7a951e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector.dart","hash":"e8911b74c8d90dfc01657354e57d0fb1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_tree.dart","hash":"24859dec1c12b4c2fdc95d38eae72d1a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart","hash":"845d1a208239b202dfdd9191d3135724"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_enumerator.dart","hash":"d3b9d47acf4348262c7c16ba99cb7412"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellingerror.dart","hash":"c8ff0e27e7c87256a90d8a3ef24be6ac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\conversion_sink.dart","hash":"efcbc6fd4212ea81281561abddbf29f9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\object.dart","hash":"df46c653437bf00620cea97344801eb5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\method_channel_speech_to_text.dart","hash":"d006dde8fd90189f533f571d02092a92"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ivirtualdesktopmanager.dart","hash":"ffd004f95154cc4fe026271fb8aed8cb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\parser.dart","hash":"6c78f0d015627004c642ba4e7926ea9e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider.dart","hash":"d5b1d01f918c452585a990bba4c2b919"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\tariff.dart","hash":"7a90c412256380506eecf47a27178c9a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\declaration.dart","hash":"79198336b26da3116eb3cf2258e9f72b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\service_extensions.dart","hash":"ba0c8dd8a234a449050e76d22738480f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts\\MaterialIcons-Regular.otf","hash":"e7069dfd19b331be16bed984668fe080"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action_option.dart","hash":"be2d4c688f4ca84e68eefd04fe0ed129"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\typography.dart","hash":"ebb87ebc9069065977905a746c9b58e1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellservice.dart","hash":"b92ed7d96a5284441953017edb47f285"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationboolcondition.dart","hash":"7d8e8a43fd286d637f95a0510b0d3c84"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart","hash":"a2cbfadb5b6c248502caa312edfacd90"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\tolerance.dart","hash":"a481b9285f5d63f04e3b3e3fc2a6b44c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_transformer.dart","hash":"e82a9b67ba33ae635b9b083ef147fb9b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\inline.dart","hash":"7cfb88f7da0c2022734fb4c438317d95"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket-1.0.1\\LICENSE","hash":"274291edc62b938ad94e61cec4a14bec"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart","hash":"1c33828dcd05767f74296ec81c434a41"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart","hash":"7185ead1c4c9a77b194615cefab7b748"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build-2.5.4\\LICENSE","hash":"e539018b40753112ede3ab43f1ee9052"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart","hash":"13bceb5508fcefacc9ed46137d43844e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\file.dart","hash":"fa9ae6c732442615050e9a8b5f758a2c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_5.dart","hash":"1e4da3528271172cb17b59a72a37a57a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart","hash":"9c47ee20b0bec5232194ccc58e9c10d9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\parameter.dart","hash":"08b1358e505b0414dc60489b750ba2b6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\background_transformer.dart","hash":"c3ab437aa0b03081adbfcdff7755b358"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader4.dart","hash":"5a65f8839771af0fad5b2cf647703264"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\box_shadow_effect.dart","hash":"46c7ae5490a6be7f2a049c4d63947eb1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\schedule_mode.dart","hash":"9979b67c6fdb803b55c4628af847ad4c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_queue.dart","hash":"d6f045db9bd5b72180157d44fee9fbfc"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\theme\\app_theme.dart","hash":"fbdffd3446228c3ebe98da002c72cdae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationinvokepattern.dart","hash":"942a7879522bdf82258a3383893665a6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_icons_theme.dart","hash":"04f8b421d5eb5043e825cd90ce965dfd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart","hash":"35dad89aad6233323de7de29603c8779"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\builder.dart","hash":"9e5f67e1d8edbcd97531a8377e706d71"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\title.dart","hash":"d85ee275d6d507b9d66f4c2b0be0cf55"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512_fastsinks.dart","hash":"04f5ef7c69c00972df33379b395df1b1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer-7.6.0\\LICENSE","hash":"0c3ca74a99412972e36f02b5d149416a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_peer.dart","hash":"681b70272ec68e757f2394c9e7fa9398"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_tonal_spot.dart","hash":"da57aefc2c06656b68f2bb2639e78d33"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\score\\score.dart","hash":"4f05e8a4424e66fedd1798178f3fbfe4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu.dart","hash":"94924f12fa7b796f938e6e2889ce73f7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_array.dart","hash":"f5c5c30697f88cc221f8628956b28719"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart","hash":"07230264b6ad4306fed087103930fd35"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\path_utils.dart","hash":"e335de991d295627ccaabe152db13f68"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\always_alive.dart","hash":"ae4469331dace367e6fb978dd7b7737e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart","hash":"1d2690772afa35d8cceb0ee976c0874c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart","hash":"2662f3733381d6d79c43406d15366240"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ichannelaudiovolume.dart","hash":"623a5dbc96b4107a93ef35eb90184bb9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iprovideclassinfo.dart","hash":"74801cb491652ec4ce96fe1f4646836a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\motion.dart","hash":"c2593e65f1a2367d83f0668470ab5f61"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\speech_to_text_platform_interface.dart","hash":"c3222af7cfe52a6fee04d1bcbbf52bc8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\debug.dart","hash":"136b08c4413778ae615af5f45d39ed93"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\autofill.dart","hash":"1c23614b3a58c2cc762d1a8d9b668f3d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version.dart","hash":"f8e8ef6736cd88fed6f2b5ab9b5919ec"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app_lifecycle_listener.dart","hash":"59f3befbfab8a823bd8254bacd7cfca5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_body.dart","hash":"c26b7654abc187a236c2d353b8e9dc69"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart","hash":"801fc719bf0a33dbbb7b4cd7ffea9071"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\math_utils.dart","hash":"e4ee21048ab83cc50d61ac3784afa9f5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\messaging_style_information.dart","hash":"017129b89f3045aa21d9a8032f5dfec0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\logging.dart","hash":"60fd6d17602ae0c1d18e791d6b1b79cf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart","hash":"831b750639e83372672565fe47d9dbed"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate_list.dart","hash":"e2368d925d056674e11f6d6a98ca995d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\imply_content_type.dart","hash":"9955b767fdde0baa759d3431267e5ed5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemcontext.dart","hash":"ecca8d7a94b7a01ee70af109474706b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart","hash":"90f13e00da93a85fd91faa6d3690590f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isimpleaudiovolume.dart","hash":"a064bc8b49ee4e47fd7b996364a8469e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart","hash":"89db2a81afc124b1661794f9e43252d0"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\disk_provider.dart","hash":"0e088fe1d0cc2ca8349ce2050e3a72c0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart","hash":"034c9a74f518b43df9ce8af9343c11cd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart","hash":"a804030c1e487e06d01f8d87c2ccf38d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\star_border.dart","hash":"babbb3f671be31b0873312c521c475b1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestospackagedependency.dart","hash":"30bad556275cf4f7a39d50f698375871"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart","hash":"825b4e65b06dcc1b8822108f596b56b0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart","hash":"a034129eebf55db99d756d8271a91c97"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\LICENSE","hash":"387ff7f9f31f23c3cf5b17f261a091bc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite.dart","hash":"5c96fe82a9bf2dc00db9d93c2c0a41a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\labeled.dart","hash":"715bccb8e9ba9889573a60bf0e457402"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jset.dart","hash":"6638bd2385fd6ebb1a4f1cdbbb2f3969"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart","hash":"e0d43fd1f12dad7d0e992390f53c4b7d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\uxtheme.g.dart","hash":"14ca92a49cc066f7dbf04357098fef9e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterable.dart","hash":"67d16e841606c4e5355211fe15a2dbfd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart","hash":"424a329d443a5c28fbddf8f9b7ccd6ba"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\LICENSE","hash":"5b388500640099f7c700bff344f7bfa0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\reference.dart","hash":"9a406aa6da2060e742c7440f73659eec"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\crossfade_effect.dart","hash":"831f10cc3a34d37027e629ec7f71f563"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any.dart","hash":"3a1d79b051bd693ad652b0f905ff1588"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\lib\\sqflite_android.dart","hash":"3d09396dae741c535c293314adc09565"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effect.dart","hash":"4f1f767acd1c594d93de02e64baa085b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_sound.dart","hash":"d41266a023506a636336e4579948d98a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\watcher-1.2.1\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart","hash":"cf568490e5d5611456b13680fc1879a3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_color.dart","hash":"e0469000d5e6f512d2fccfd97145c727"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\string.dart","hash":"a1f47bfa90f0153386bbcd0c4b16e09c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_transitions_builder.dart","hash":"41779ac2d34c473debfc06fa1fd8e35e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager.dart","hash":"53ef1e482a9021fe353d68c9f8a1affc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\link.dart","hash":"c36f00a660d9aa87ebeab8672ccc6b32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\jni.dart","hash":"83dac2837d1d165e262ded0d509dad38"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\text.dart","hash":"d3de5e8090ec30687a667fdb5e01f923"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v1.dart","hash":"a22d810ba989505f23b6be0562a04911"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\http_date.dart","hash":"fb76e9ed5173ac1ae6a6f43288581808"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\listenable.dart","hash":"a5bfe2d6591e761bf3c5dc0cd4ded99a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\LICENSE","hash":"a37f990d04ff900045c5ccd3c941f5c5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\cam16.dart","hash":"7cb71fc5981509df77a8edc6f092f688"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemhiperfenum.dart","hash":"adebe1537e162fcbe4404ab29e94fef9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispvoice.dart","hash":"a47b8729b72b77cd6b5716ed37807a11"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\LICENSE","hash":"7b710a7321d046e0da399b64da662c0b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\connectivity_plus.dart","hash":"9b43d6f9384a837bbd0d8474e2365c7a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner-2.5.4\\LICENSE","hash":"e539018b40753112ede3ab43f1ee9052"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\value_utils.dart","hash":"91921fef1791885b747a338372bfdede"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_visitor.dart","hash":"61e938fe770ed7331e39f1dda1b64dd4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement7.dart","hash":"f05adccad12249a4f175efc9b8abfb37"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\foundation.dart","hash":"3ea9e90b1b7ea7dc0acdb26f45a3d632"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v5.dart","hash":"ec861ff382ac91de0423cdbad2bc79e9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\num_duration_extensions.dart","hash":"5d4ad6ba64e70985334d2403cee52bc1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerchangedeventhandler.dart","hash":"0e619c36f088b986b65eadb12698abb8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\colors.dart","hash":"b62b9e4874beca4adb96d6ebfd8e8dfb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration.dart","hash":"6da099b31166c133a52bfa3ab7a1b826"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\empty_unmodifiable_set.dart","hash":"0949b8197a6069783a78f4bb0a373fb0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\checkbox.dart","hash":"86c831032521c6aa061fb1b873692e93"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\and.dart","hash":"1e9ed9cdf00b9449d9b72dcd00add4d3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart","hash":"375378eb6cf9297d6bcfe260059193a8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\path.dart","hash":"157d1983388ff7abc75e862b5231aa28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables.dart","hash":"02b96169889bac260344fa44343235e2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\nodes.dart","hash":"8608080cdfc143d462b0f9947dc0d7c1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\mutator.dart","hash":"e105e8d3303975f4db202ed32d9aa4c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\noise.dart","hash":"14ee798b10cb318d96667b32b245f21f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\letter.dart","hash":"4165baac3466972c71160f4aa15cd185"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\accept.dart","hash":"740f17823564c3c7eca15bca5c110e17"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file\\io_multipart_file.dart","hash":"89d33d0234d19d3c731fd91e404d6a05"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\breaks.dart","hash":"3dd13158e97d592fc8a1ca4a4109876f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_scheme.dart","hash":"b7c07fdfc8aaa762f93fbaa316f728b7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\not.dart","hash":"6bb47d3d823202b76bef61c1ccce067c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\ffi_bindings.g.dart","hash":"2e4ed6d32990cc6890679bc3106091de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\base.dart","hash":"8e16702463aaa9f1da9da189aabae66c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\enums.dart","hash":"f431b0adea8b20849685931cc40e3915"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\map.dart","hash":"0164a8b5c6e9dc7c80e1c3118804e959"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider.dart","hash":"332fc1055d849f61ff8cb6ab6a919d1a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\types.dart","hash":"003f7e979253f87844d0f222365ef6e8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspectable.dart","hash":"a8d03ee07caa5c7bca8609694786bbf0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\char.dart","hash":"e72dfdd64a9644296cdccf5ed0014b38"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animations.dart","hash":"7fad76f2efd7c1ca00d133371a858957"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\kotlin.dart","hash":"a5cc220cdabeb76d85c3b4dc5a031ccd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformer.dart","hash":"49dba21de16234aaed28f8fd898543a7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_well.dart","hash":"c765c396bec265400198de95010b78d9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\contrast_curve.dart","hash":"82e64569c28ce30a19726e5c108b98bd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\x_file.dart","hash":"10fc2d0e5d04abfdc83363ce6cb6fe91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols.dart","hash":"6c1b7903629a7ad4cb985f0898953db1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expand_icon.dart","hash":"064b2b355879e55d83ea0844d55cb10d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\then_effect.dart","hash":"6f731bf22ec9178d15aabbcf3191af26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\async.dart","hash":"c9ce5d23dc55a2e416a66ad883081c57"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\named_entities.dart","hash":"c7e489fa5d00c1717fe499f3845c2abb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_database_factory.dart","hash":"b2b96fda3b5d147408ecb71c2bbe73a7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_content.dart","hash":"29d2a4744cad0979d4cfdcdc2c1a6ed4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart","hash":"b23d25ac5853c83cde0f5209e6b16ba1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\share_plus.dart","hash":"e5bcd7a024c4e2ae08c2090eb3188117"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\extension.dart","hash":"ef82a025843a9945bb252078a9754fa4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\undo_history.dart","hash":"e7ca145d8d308187bc0127bd941b1759"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\arena.dart","hash":"8a61c7c4e99012849616db63dee00a56"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\unicode_glyph_set.dart","hash":"cdb411d670a094822c46ead81fc1c4f7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material.dart","hash":"e2f190622bcf6d345dc219a23d165479"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_parent.dart","hash":"a7ac3293430577fa9c028b0df6607fa4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\intersection_result.dart","hash":"866257a42b6b721549b351382b365c47"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\compat.dart","hash":"75e9e8da5881b6c2ebedc871d7bbc064"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_flutter_testing-3.0.10\\LICENSE","hash":"f721b495d225cd93026aaeb2f6e41bcc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\_fe_analyzer_shared-85.0.0\\LICENSE","hash":"fde2b1b7d744e3606529be50acb7fded"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\type_conversion.dart","hash":"032c93433e86ca78b8bb93e654c620e8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed\\stream_subscription.dart","hash":"63190b810e77cfebf3de760baaf59832"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplication.dart","hash":"bc01545a1cca050f2067c0b6163a4755"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\slotted_render_object_widget.dart","hash":"f43905031af706d47bbc7474be876e65"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform.dart","hash":"17488cbfc8b9ee2e6e5ba0229d7c21a1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\service_extensions.dart","hash":"5af5a2fb59f9c015abbda254a35ea7a6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\utils.dart","hash":"b072cbf89d933994e62e5dcd85904f89"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_notifier_adapter.dart","hash":"a68ab99598e72a476132676fc97db138"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart","hash":"c50f12ff54e3d508dd127fa9527d2cd0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\path_provider_foundation_real.dart","hash":"ac01cea599146293f3f31bf7e74f20ba"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\options.dart","hash":"e64d63aabc0975a7e9fdb384598c2f8f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart","hash":"8ea7a3c5835c772b1ec522d7a9a2f3f8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jclass.dart","hash":"bf63ca39ce8b824fac21a27027981699"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_io.dart","hash":"63d514a9a3ce059cdad1e7555c6f78f6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_adapter.dart","hash":"9bc97679b42c8f9d40f4404ed4c09c7a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart","hash":"3506be7f282b7ad6ccfc4545f60a102a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection.dart","hash":"e3a6ed5db61fa0508b100c7de6e6b3b7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\patterns.dart","hash":"9f58d6e1075d496f55361c6c4131d8cd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button.dart","hash":"3ed75a2d11989988d6b1ccbd0e6e4192"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\path_provider_linux.dart","hash":"b48ba72a2d5d084d297c3d78e351036e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_maps.g.dart","hash":"feaa27101434fc1590c19d42ec8b407f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\workspace_provider.dart","hash":"8fd3dcb7f8cb8e00140c18d63a6f6563"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jstring.dart","hash":"5b93f82cec5bee5a9d1fd45af7925f8e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\consolidate_bytes.dart","hash":"b4446a7a4d053aaa35a7bc6968b4794a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\options.dart","hash":"2144f1538d27dd9b29dd135d74059120"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\types.dart","hash":"ce0d3155596e44df8dd0b376d8728971"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\login_screen.dart","hash":"cf36475a46446a35cfe633a6bb7bef3c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_value-8.12.6\\LICENSE","hash":"b2bed301ea1d2c4b9c1eb2cc25a9b3cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols_data.dart","hash":"f176d4d0e0b6d9e454dc1b0f0498507a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient2.dart","hash":"48f954e66b945620e43ce8e9a8891919"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shimmer_effect.dart","hash":"c9b3f620c35ff8f48a223137f4bd0b2f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_union.dart","hash":"991661529c5ea50cf40031f5b74929e3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_buffers.dart","hash":"4b495ff6681b3a7dda3f098bf9ecc77d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\scheduler.dart","hash":"1ac1f41185397129f7ea925130f188f2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\LICENSE","hash":"038c3f869f408e1194eda71cafcca6f0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span.dart","hash":"b7c2cc8260bb9ff9a961390b92e93294"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any_of.dart","hash":"8b5cb3dc6abb215b0a48c2d3c8916ca7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\charcode.dart","hash":"b2015570257a2a6579f231937e7dea0e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile_theme.dart","hash":"a284638498c103fb78a89f30c62a910b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttokens.dart","hash":"f87e5679793d9c81072018b428dadb8e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\common.dart","hash":"8647b431edd330ccdd54d29cbf151428"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart","hash":"a400dfa676904fa8a84c48146ff8e554"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_manifest.dart","hash":"ea8671768e203429e3f57e5ae151392d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose.dart","hash":"19ad3f559f8a8ac66bbf9a697588b5f2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\url_launcher_platform_interface.dart","hash":"9190f2442b5cf3eee32ab93156e97fb1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\LICENSE","hash":"80ae6870ab712d32cc9dff7f6174b603"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page.dart","hash":"c9aacafab7d9435e52caca900d06fb30"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio\\dio_for_native.dart","hash":"6f053637ded96c67b342e6a80e7372f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiocaptureclient.dart","hash":"187bca624cdda52a572fde54e8395124"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants.dart","hash":"95235ba0d55efc617c0d84893f46390b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\method_invocation.dart","hash":"bd7255b381081690ef082c2edad8925a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\src\\network_manager_client.dart","hash":"60838abe37c945cf06c1b5ccc5066fed"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layer.dart","hash":"e08b5b6808a44e8eb4aef327f03d7bd4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\initialization_settings.dart","hash":"00883d18f109cb9b8f09707e277106c2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_input.dart","hash":"7a5a4cfd5f4cdd5fa194eb6fb3e5f0d2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\windows.dart","hash":"0d86d4ba2e01e5e62f80fcf3e872f561"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_set.dart","hash":"9cb135b4df76771b089723184d1833f0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style.dart","hash":"bfb39b98783e4013d9fe5006de40874d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart","hash":"f36086fa85e4e44adb302e73a632289d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\enum_helpers.dart","hash":"32c8f2d4dc53cfe56f5fa637be2c52e7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_inserted_content.dart","hash":"903af109d740b48230bd021be6a1f40a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart","hash":"709419e524637931a205b8fbf863df23"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart","hash":"e39c804b77ec1bf1f6e4d77e362192c1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid.dart","hash":"dae10e630b8fdeceb998484cdd66b1ac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\typedefs.dart","hash":"3e93222dc359a938c1354ba486d44244"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio_web_adapter-2.1.2\\LICENSE","hash":"3cc5c8282a1f382c0ea02231eacd2962"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationobjectmodelpattern.dart","hash":"93fd05191baf9bfae1ae604f67d953b5"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\collaboration.dart","hash":"3aeb962762f803ce0a8cf4b41c1f7433"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\charcodes.dart","hash":"a1e4de51bdb32e327bf559008433ab46"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\method_channel_package_info.dart","hash":"5489bd1170add17f6d3bcc248b5ed048"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parser_exception.dart","hash":"a62996936bad6c27697a35bed070547d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\widgets.dart","hash":"d49f780a8376e0eb08900b1c228f99b7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\builder.dart","hash":"6722e17c98e37b4ef1b96bf4b17d9008"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\reference.dart","hash":"f25bbc73708cc35ac55836cbea772849"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\gdi32.g.dart","hash":"3235bc280cf19dc53be8f10c56d89beb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart","hash":"78a8f569542cd7fdefc8c08a7800052b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart","hash":"13c18d19b29fbf6bf4c1d966f02612ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\LICENSE","hash":"93a5f7c47732566fb2849f7dcddabeaf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\timeline.dart","hash":"79e0746936aade828e4ca8ebe242df27"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart","hash":"cdcdb27f29255236e15a1bdeda1f5042"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\inkwell_shader.dart","hash":"e9efc19a02ae3195574f6fa743603b00"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\LICENSE","hash":"83228a1ae32476770262d4ff2ac6f984"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\exceptions.dart","hash":"c3d1be29f7dafb22509e2bb8064d512b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\LICENSE","hash":"87ee25bbef5b7cb7dcb056c3ec20f243"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\posix-6.5.0\\LICENSE","hash":"2a68e6b288e18606a93b3adf27dbf048"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text.dart","hash":"82b0f024c778da9bc6ab552492e02283"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart","hash":"3b17883e6fa707ce015aa0d82149c0b2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style_button.dart","hash":"66dcd42bd6d7ebadec059ca047e8d7b6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\selector.dart","hash":"c771f26d18f9897af0e13e3a2c83d5ed"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\live_text.dart","hash":"d970423c6488cba52d3585e0221e57ba"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_delegate.dart","hash":"e072de1090ae76f1e07247ec1eb11180"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jimplementer.dart","hash":"58031f960b575eb0db526bf49b706f80"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\processing.dart","hash":"0ca8410c364e97f0bd676f3c7c3c9e32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\version.g.dart","hash":"08a0131d87ba3b2535a2de787086a3d6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\file_system.dart","hash":"f72f7c9e3a3971fdfd58d38c94b4e005"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\code.dart","hash":"1216b7dc6f446693a3fcb9a566b94d94"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\constants.dart","hash":"9628979f9e240d20f992073c54489890"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart","hash":"51069c14005cc63df73f7c8db5520f31"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevicecollection.dart","hash":"a45b41e12ba5853543f707ce7dbab9d4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shake_effect.dart","hash":"2fe2bbd579687d09b982afec08e8e688"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterator.dart","hash":"dd8517aec9099740b2b5828bde8d33aa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\pragma.dart","hash":"871c4029c43c6dcb8ac9ba8f7799d310"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute.dart","hash":"12b8cbac25c7ad95ce53c2f8869a1b5d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart","hash":"d2be489820a1fa5902a27c621661ad7c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_selection_style.dart","hash":"c64b32c068f0d8679ed2b8d699659780"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\animated_sampler.dart","hash":"6fbb6ca5fe49e7940262f00aca378c21"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\authentication_challenge.dart","hash":"395f07418a28b12b0ed665f32270d702"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\cupertino.dart","hash":"d625d9716f694dcdfb87bd7e5fff5a5b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\dart_plugin_registrant.dart","hash":"6c49f36c204d9c39ed8344462e4342f9"},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","hash":"b1c06b2368a5c7449e9f6be568623fbd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing_delta.dart","hash":"0a36258b539c8ead1f09b8c02cd25ca8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_2.dart","hash":"312e69b666cc1e860274006e86688bf9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\texture.dart","hash":"238464b246c0e0f60bc0fa9240909833"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\share_plus_platform_interface.dart","hash":"7e38424729d139f4ac1ff5183cd59303"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart","hash":"09325621b84b25497a2d19b7f3636884"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\utils.dart","hash":"27861bf07d93c8ef6c716f3eefab80e4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart","hash":"29426d64d0c201a4d7e7492434b13463"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer.dart","hash":"e7570a19e70ee3275cf865e4a94f7830"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapter.dart","hash":"724dc321d912dc0a668feb06b1372944"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_generator-2.6.4\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\reject_errors.dart","hash":"e9cc91e4ea4141722f1ae9e087afae63"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_encoder.dart","hash":"af7b5d8de0c9d9df88cdffcae9d7c959"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\stretch_effect.frag","hash":"5cd1085a16b9c9c707d90ef04d1d2eca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\url_launcher_macos.dart","hash":"6f195c37321b26f8f0f0f062f4840dbd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\obb3.dart","hash":"5ad121ce46b5c0473bbe34be6d5c0913"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart","hash":"2ed82d0ee4672e99dcdec5652737899f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_with_context.dart","hash":"a8f2c6aa382890a1bb34572bd2d264aa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationwindowpattern.dart","hash":"f42009fc52ad811f1d34405961c63183"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_call.dart","hash":"da6f500c03c005a207d38c1daf24b00a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_attribute.dart","hash":"666073cafbc9e0c03a3939b99ec35aca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\capabilities.dart","hash":"b7729342f9613bd823c71f9c12c680b1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math_64.dart","hash":"95bedb83cd5b163e43b554086b016380"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\decorated_sliver.dart","hash":"b11666131177a6ebe97ffd60e3dac32a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\sensitive_content.dart","hash":"dbf30b29dd78b529a26b350b5866a849"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart","hash":"4a77eafe460177c2a7183ec127faabff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\LICENSE","hash":"80ea244b42d587d5f7f1f0333873ad34"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\magnifier.dart","hash":"3f3808e26505133190c5b4890cdd219b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest.dart","hash":"d623b1e2af43bcd9cde14c8c8b966a8b"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\dashboard\\dashboard_screen.dart","hash":"bb91546bef7cceeebfb3a8a941c2bdf3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web-1.1.1\\LICENSE","hash":"d53c45c14285d5ae1612c4146c90050b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\collections.dart","hash":"a76cb94d79d126e32495b08461c0fade"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\checked_yaml-2.0.4\\LICENSE","hash":"39d3054e9c33d4275e9fa1112488b50b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_channels.dart","hash":"09d61fcdf9f46b71982cb8d96f83293a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\unicode_character.dart","hash":"d0e1db4618e688ad41ba325f1a35667e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\arg_utils.dart","hash":"9812b8e536c69068c0e5f3d3db20c140"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart","hash":"5846366e8ee69a93afd904b47023c592"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwebauthenticationcoremanagerinterop.dart","hash":"aef722a64f462b84d30dad6278040fb4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\auto_dispose.dart","hash":"d2e52f81da2329303a3f9d4b369c3320"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart","hash":"b1ba06c6246ba2995265e837f355877f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\LICENSE","hash":"94016e710124ccd8afa685f270d396c2"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\admin.dart","hash":"587b84f3870ec03b89adf24294c481b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\future.dart","hash":"18c04a8f8132af2c1b1de5af6909025c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_match_rule.dart","hash":"0298dac3221d4c6752b6207594e4f470"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_to_text.dart","hash":"9b43e915daf4ff9e2b753b1a5b63f8ba"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\magic_number.dart","hash":"d9d40cd4fd7e692ca4246d952d48cca8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart","hash":"9c7196e67b951143d548d72aaa0e75ec"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\optimize.dart","hash":"ebd9dcbeebab7ad717e6f7efb6a47f0f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart","hash":"096a125e0b6d03283fda3959aa657e23"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\date_format_internal.dart","hash":"46f06f2d32f61a3ebc7393f1ae97df27"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider_theme.dart","hash":"6929256b551547547eb9a99063ebf8c8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb3.dart","hash":"b6a30b7ed48f83f446db37577b30e62e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v6.dart","hash":"70ba25c403724d1332ff4a9e426d7e90"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bthprops.g.dart","hash":"0b9138f9bd3068b518494cfee8627cec"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_create_screen.dart","hash":"df5feb64564460cb6fbf66040c56af21"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi_formatter.dart","hash":"5c81dd07124ccc849c310595d9cfe5be"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set_controller.dart","hash":"f301af2d0392296f456363085becbf47"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfilesenumerator.dart","hash":"c72923f8ad46feb8bcf25ecbd0379294"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wsmeans.dart","hash":"907dee395c762afbdcd8a23c105e9cff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\default_style_information.dart","hash":"4cc8128599d4dfdcbd699b3f01d68904"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart","hash":"7f25b2bd2302862c55aabba7dd3c09fc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_string.dart","hash":"6611268c60b179280f53b27a039a7534"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart","hash":"779f0f9d19f3df6158d21a5a53b647d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher.dart","hash":"10bbfa83fe7c3c8f8a4964a3e96e5b58"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart","hash":"fdf9dc616423b3c0ab7989c88009cc99"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart","hash":"4cf81f473e6af6b63729d72f41fe712e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\delegate.dart","hash":"99eea31c698ade1eba0c70780f4c3c5b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart","hash":"23f943341763db27892796d556bda14e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_picture_style_information.dart","hash":"5f8bbfd23974ae2842d3d03760b98f99"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_consumer.dart","hash":"2cce8363d2a5751ae45bc5d4ec6685bf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\cupertino.dart","hash":"671e5f26fbf94b9d5a70b14c8c494760"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtableitempattern.dart","hash":"0c4386f8def5b3a82bf0b70090830314"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_boundary.dart","hash":"17d0af2d98e9ab4734bc194d1e51250f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_views.dart","hash":"cf7437085457da7c8ff7640c616aa417"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shlwapi.g.dart","hash":"4230059d9b32165301d8d2a329a9b40d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\routes.dart","hash":"dc66fac5835e7c41dbf08196ecec0fb5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\circle_border.dart","hash":"8ad25d6c38ddc8ce7abb828b97f4571a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_error_name.dart","hash":"7398500b1824f6043f23e208cd993866"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\flutter_animate.dart","hash":"5049b7e67d8857ca6cf426d6ae4dc463"},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\native_assets.json","hash":"f3a664e105b4f792c6c7fe4e4d22c398"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\logging.dart","hash":"5872689884d3985685f0239a1f89f71f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\charcode.dart","hash":"b80f25d51570eededff370f0c2b94c38"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\font_loader.dart","hash":"33bc9ed6bd7be95c8dcba0df4493890c"},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\app.dill","hash":"59b6b4f97638dac0c707c069f5ec5468"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart","hash":"7abbdeed33d601184a5c3ac2241419a9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver.dart","hash":"9d9d9a9d3774ca415e26cb71c8e61bd9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_positioner.dart","hash":"f272765748612511f27420ed9ea3713b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\trim.dart","hash":"37b4a8b2d509ad6dd3f486053edecb3c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hmac.dart","hash":"2b5fbc54f77ca9c1e5ac90eb3c242554"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver.dart","hash":"193df360dab90a6a68f2420ca582de9b"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\endpoints.dart","hash":"53bc475948e97481418f115d2ddcfcb4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table.dart","hash":"add063bad189e77e577fcc88330caaf4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\base.dart","hash":"4c5be09400366d46c996eda73c757b0c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\md5.dart","hash":"016791e9b80688ca3eddaf369dbed53c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_subscription_transformer.dart","hash":"ca4cfb6538896636dc198e3b1c1c3ab4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart","hash":"97f8d480ec6ac1778506d29f498a1e6c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\initialization_settings.dart","hash":"dc69aa43b73c7a61a7d20c82ac98cc36"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha1.dart","hash":"8d02f5162c5a6fbae770f5c4f9ddf389"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\int_to_hexstring.dart","hash":"73cb6deeb88fdcc320cf8e089d51531d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetwork.dart","hash":"57adb1ac7ff40f2fd9512ebf09281433"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\fixnum.dart","hash":"ca96fbf1a27d4f30ff02bfc5812562a6"},{"path":"d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json","hash":"b1c06b2368a5c7449e9f6be568623fbd"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_sessions_screen.dart","hash":"b94716be37a0ef1e0dab86e6fafad548"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip.dart","hash":"6adf728d8072ae68769a63c0c6b063c8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart","hash":"ebbf8ed4dbf18812821ccd98920dc6de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\setupapi.g.dart","hash":"9d0390331a2be3f7c018dab8bfa589de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\pick.dart","hash":"c60b204fb5e7d501c0addb330c88d2de"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sheet.dart","hash":"d97475e890855715d9a38549737da4c5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\none_of.dart","hash":"bb38ea979910b96581f1f8e407cb9e63"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filter_chip.dart","hash":"73b8d199cc00486354dda26a4d8de371"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iagileobject.dart","hash":"4bc403cec1c5846051bca88edb712a8c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdatalist.dart","hash":"a82741847c5177c47adfd428a1583744"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quaternion.dart","hash":"9307caba73e148d13a0697568f0ad971"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\src\\messages.g.dart","hash":"25d3cb3999f7986e8bcdcda124ec5d72"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\exceptions.dart","hash":"ad84ac2c0607f2ca46d74eb0facbca3f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\LICENSE","hash":"93a5f7c47732566fb2849f7dcddabeaf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\LICENSE","hash":"ef2f4f5048c86bfd71a39175b6f103d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_ext.dart","hash":"eb9b4a5e46c860c5e9db81c69101e562"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\helpers.dart","hash":"20e259f655329b9bc2ecb98ae2975e72"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_executor_iterate_ext.dart","hash":"5892bd8a06723cd5ee869d90b2795156"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\scale_effect.dart","hash":"52deaf1c36d56ad77546bbc624e91b61"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_anchor.dart","hash":"f0667289ae22f9dc3c570f2e98fb2958"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\persistent_hash_map.dart","hash":"c102224d12dc8ea202cc97abde87ba51"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v7.dart","hash":"eaeef30b0e3cd638d4dad2b0f4db8417"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\icon_tree_shaker.dart","hash":"019ad8db00824e24c87b38b254627b3a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\priority.dart","hash":"9051680cd2078f92c9c56831272643d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image-3.4.1\\LICENSE","hash":"6e15c47981e2e43ee17849a222e33b76"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_value.dart","hash":"2aef91d8cd008f57a605919dba2b095b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart","hash":"3e1f8918dfc4c773b35f568c8907221f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart","hash":"3b62a0ccec9a57fd8599a08429be51d3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider.dart","hash":"bca575ff5911983777226c849ee75f39"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanagerevents.dart","hash":"cb223d2445f2caf7a2617e25ca761ff4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart","hash":"fbf98f47029acb307401fb5299babd1b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem.dart","hash":"6e25bd87f1ef3a06c65b27f722fff88b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\os_version.dart","hash":"2598d2716efa8557be39441a6b1490db"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart","hash":"d8b218966d397dae64303cdd7d11b33b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemimagefactory.dart","hash":"d04edc39b6d3477197606ec9c969e738"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category_option.dart","hash":"f328cfe04255be8a4d740b54f2854bbe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\hint.dart","hash":"570573fffe43860513d5cc911da0668f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pubspec_parse-1.5.0\\LICENSE","hash":"abb5a1fdfd2511538e3e70557aad0ba1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\tone_delta_pair.dart","hash":"033b9ff4ea4c8fa3e9da4573a7d2edfb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\errors.dart","hash":"ced9775aafb393501c537dd334b029aa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\change_notifier_adapter.dart","hash":"783943aba9b03b1cc54745609a61947a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_match.dart","hash":"d742d41268dec3da5e669142ae344928"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart","hash":"f6879dbb0a0b22e90c61f21ebf5c440e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart","hash":"a14aad8528cbc2fe6ca1ad92ea332e2d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\utils.dart","hash":"d84ae47a3c688bd889f442426f39be3e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar.dart","hash":"a1e2d2d5b90a616649664605c34f70c4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\generated_bindings.dart","hash":"193b3d87d8e5e1c65855f2cda33b3386"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox.dart","hash":"993a8cd8ccf7a791b5baa5d1935fd8dd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\bstr.dart","hash":"0ace55de06ef5d40b277ac8dae4d760d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\notification_details.dart","hash":"fcb452549a7c86cdf118933be09ef427"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_method_channel.dart","hash":"2c294b86e9cf73bb732d8419ab47f434"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_channel.dart","hash":"55683be242867dd76676beee16ada035"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\folders.dart","hash":"4bd805daf5d0a52cb80a5ff67f37d1fd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart","hash":"97e064022c57ab2abb672f1def67898e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart","hash":"7435bf8833b839bc99c3b475a49219ab"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart","hash":"6c2b6a2d17427507aff54ae4f457825a"},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\dart_build_result.json","hash":"d7384ee9069be99aa38b552ae9f96156"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\unmodifiable_wrappers.dart","hash":"ea7c9cbd710872ba6d1b93050936bea7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\global_state.dart","hash":"dc4e3bf96e9c6e94879d54eaa2f81c69"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_extensions.dart","hash":"1f445eb98cf4ace45da422b4cd9f047e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate.dart","hash":"702e19f4fbffe2ac72379fb1da6bd477"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart","hash":"63701253bb9a85c00b68c2d51358bad6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart","hash":"ec3a5f7a8288542858278a8702578709"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flavor.dart","hash":"5364518d72b7d6240c9d090f9bb7df83"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\primitive_jarrays.dart","hash":"a1552b07a3b92bad881c4ac6c55229e9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shadows.dart","hash":"dafc76ada4dc3b9bc9a365a7da786797"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\reentrant_lock.dart","hash":"7cff949e3b7ac960b63441117b2f6734"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\descendants.dart","hash":"ffaf08c52f141dda6e8be50b3e46ea50"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_detail_screen.dart","hash":"20cf180c73edf422decdbeabf90853ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\extensions.dart","hash":"38e17b28106d00f831c56d4e78ca7421"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\method_channel_flutter_secure_storage.dart","hash":"20e7221c12677486628b48b0c30569f8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart","hash":"9f9fef5d5732d2b083ce7c05aff2e265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\format_exception.dart","hash":"2128831f60d3870d6790e019887e77ac"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button.dart","hash":"59ea4237571112a72a3756771756c43e"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\app.dart","hash":"ee982dce2668636ee52414f16ec07b8e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_platform_selectable_region_context_menu_io.dart","hash":"12d3b22764f1a64ff214cabee2858a00"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\LICENSE","hash":"f721b495d225cd93026aaeb2f6e41bcc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\url_launcher_android.dart","hash":"b3853faac4d2f3f34b6da5ef327d5ac8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart","hash":"925460ad93f34c429048e22ab72c7e78"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_tree.dart","hash":"8cea8c68e157e3f07caee50088603d3d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart","hash":"badbc78ac68a9144476a747433fc0c9b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\LICENSE","hash":"fb92f0b8decb7b59a08fe851e030948d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\route.dart","hash":"1bb2bdc95c24ef25802d47fe5ccecb64"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar.dart","hash":"72745c98c83af29f8a0439eb29dd7560"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart","hash":"0ae6882950d775118eb308ed401f4ac8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comctl32.g.dart","hash":"f203522611d9d5ac9047af433e7f84f3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\spell_check_suggestions_toolbar.dart","hash":"7a76df624c94ad5469f9dc81e627a18a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\constants.dart","hash":"4a4b67b573e2338cf03cb704b2c18f04"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8.dart","hash":"374d5fc1231ad32b5eb97df5aba72617"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\family.dart","hash":"751c8376ab9bb4a866f5db6d7e6b864b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common\\env.dart","hash":"f23b1cec674b4863aec7961f4a2ae758"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\posix.dart","hash":"5e054086533f32f7181757a17890ae56"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\multi_lock.dart","hash":"2ac6fe0e9a4d7b15855dabd7468cc320"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\opengl.dart","hash":"474c9e159ec8ec804957222054c877e9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tabs.dart","hash":"b2f2415d38e74cf870ff465dce1a736e"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\notification_provider.dart","hash":"10e3a86163a4d8f8b910130341baf27d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\LICENSE","hash":"d26b134ce6925adbbb07c08b02583fb8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\display_feature_sub_screen.dart","hash":"9d0a823179de6c550f7dc36f7aced31b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart","hash":"67f98d5a671622af964535a693266ade"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\end.dart","hash":"d6b4c337633cf50449be67966688dc32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format_parser.dart","hash":"61a0deef2a4f0ebaed506bb2a22c5185"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\magnification.g.dart","hash":"c63a357184bab34ab1e8522808a9cdf9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart","hash":"4cb27d8de666408f8a08b7d0c9b044bc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_linux.dart","hash":"a05d206abc2d9b0c60ccae83bf674daf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart","hash":"2730e1e1e567fdc1cd0b826028acff25"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart","hash":"70800b89dd1c66241e59910037d4f988"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactoryentry.dart","hash":"634d273f14a099a4f0bd577979779ee1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\declaration.dart","hash":"3cf7786074ce9f1e148fe5f4a60479d2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\platform_interface\\share_plus_platform.dart","hash":"e94cd8798b88905e32482b317167763b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\src\\connectivity_plus_linux.dart","hash":"2aea038844961a04f31f81fbd8503cb2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart","hash":"47474102c009e7099f3a9bf1d7ea8e06"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\character.dart","hash":"091e29d23c58b7a4b5529953044bd344"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_flutter_local_notifications.dart","hash":"610a95b3eab95b5d9ccb03edc03818b5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern.dart","hash":"2108c716fd8198fa3a319a1ec6cadc9d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart","hash":"a795771facc05f84d882278f7f63f6d8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\flutter_secure_storage_windows.dart","hash":"141745c6e29022622def8ba527cfd60c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\log_record.dart","hash":"703c5e391948c58228960d4941618099"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart","hash":"5c32703ac32c4835d961b3c55f8f8498"},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart","hash":"a6b64bea23efeeb23ea862ad5d55aa30"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\utils.dart","hash":"8608f71f077e370ee14d37c711e6580e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemfilter.dart","hash":"a9a9ecd14dd90500d067ccb5c564cb22"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\expansible.dart","hash":"ee40327c687df7f226654886d6701ff4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jarray.dart","hash":"f292145a4e855215a8283d820f14526c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeventsource.dart","hash":"33ce76d75b24f6c7ed6ad95a422b76b3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart","hash":"861a19ff01e3f58d95d668b9fd4054f7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart","hash":"4b95f290c43ca907e969d3d0e233295d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart","hash":"be25b33bcf3736f59b4cd5191dd0a9a8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_settings.dart","hash":"ce7c719e306ad9ab02b19aafbd70178c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider.dart","hash":"b4421b6c0a0d4bf349acaaf804d641a2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\lowercase.dart","hash":"7d19aef72402dc345f03a5ce59e911a8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\noise.dart","hash":"996d7bdb8134338c2357699662cee703"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effects.dart","hash":"a6c66093a1bc730ec1593104a477649f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart","hash":"c95897aa3a4d00e22975c9161e4e866b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel.dart","hash":"bc48ae34e58774e84a72567a86034fef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\async.dart","hash":"13c2765ada00f970312dd9680a866556"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_client.dart","hash":"3bc24109049f63bedd0393f75bc23503"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app.dart","hash":"f3ee8d50363ec83453a6769e6e23001c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_span.dart","hash":"232d846ca21d1549a336d98b5e737f1e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idesktopwallpaper.dart","hash":"28a96a9cad386cca4604fe9b6b0ac250"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\LICENSE","hash":"23a7e2fab311012bc8f9fc2de0d1593a"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\theme_provider.dart","hash":"5b4710c9b26d2f5e2b94d3cc1fd320a3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\prefix_name.dart","hash":"fbb3e43ae57262b3fc190cb173a7b5bf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\magnifier.dart","hash":"93a4f02d4f155940b6b501ce9233654c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\unicode.dart","hash":"c692323b8d9e3ed3c4c134ba07ab94e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters.dart","hash":"99b4d15f76889687c07a41b43911cc39"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\args-2.7.0\\LICENSE","hash":"d26b134ce6925adbbb07c08b02583fb8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier.dart","hash":"e07baf43a89b4a1225ab8dab1161d2be"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\platform.dart","hash":"d2bab4c7d26ccfe4608fe8b47dd3b75c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\utils.dart","hash":"05778db9e882b22da2f13083c9f28e0d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\enums.dart","hash":"a4b97395630dc415cc76f514d4a38869"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute_io.dart","hash":"e990b24e6368a3aa33f21b4695cfcfab"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement3.dart","hash":"ee2f81dc37bb6d1adb9570b7634eed77"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_serializable-6.9.5\\LICENSE","hash":"7b710a7321d046e0da399b64da662c0b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart","hash":"008f9bd544a605eb69f5aec36ff9bd2e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\rendering.dart","hash":"f2bb5b9e6b4f0a7c7a7f9099b7dce9ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\assertions.dart","hash":"09fd32800069ef816aad6f9c6daf36d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_bar_theme.dart","hash":"ac67ec38097e19b216d62e9b73491049"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider.dart","hash":"f186193f82036b24fc8379b1f332f817"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_bus_name.dart","hash":"9cf807e15d1e83af4f62cdeb36582a91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\_internal.dart","hash":"add6538f2b318e4a7cb7f3c17dc47ebd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http-1.6.0\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix2.dart","hash":"945227f3863339e388d92c2b3bfbf673"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\pragma.dart","hash":"7cd1469d236cc14289fb876de86e6744"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_ansi.dart","hash":"d30eba29d046c1a8b7f029838de6e49f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\event_sink.dart","hash":"0907f33388d79d8891c360720626e13f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\resolve.dart","hash":"d946dcdf5932343994cd861dc8e7be52"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemservices.dart","hash":"edac48a72d161089af5eee3c0d7d0d5e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_exception.dart","hash":"2747964c64fe300f15d15123727cbcf6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix4.dart","hash":"48ec0166ccbd3f834b89d19fcf8bf2e7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fake_async-1.3.3\\LICENSE","hash":"175792518e4ac015ab6696d16c4f607e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\list_extensions.dart","hash":"9f8b50d98e75350b41d40fee06a9d7ed"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\enums.dart","hash":"523742c594766cc9e39179d93cb23259"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialogcustomize.dart","hash":"859de35a02fbe705941f97e7700a3147"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdockpattern.dart","hash":"dc025ebc977f56a895f49dc6d82a6d45"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notifications_manager.dart","hash":"ce45b60ad9b0d7c8690b9b1fae2b7f6d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\cf_string.dart","hash":"76763ba579657281f848e4c22e63903f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_tile.dart","hash":"513fae0e50853fca5bed4ec2ac746daa"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar_theme.dart","hash":"33c98e4e508d3ac10e634e62cdbbce4c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumspellingerror.dart","hash":"4454497beed7948ccb9d6987d52ff3fd"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z","hash":"9bf6034f9f93f9bfa96cf63a77f69e6e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\path_provider_windows.dart","hash":"38dc31b8820f5fd36eedbf7d9c1bf8d9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pool-1.5.2\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\LICENSE","hash":"93a5f7c47732566fb2849f7dcddabeaf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winrt_helpers.dart","hash":"8a032ca2b66b8be21ce8368f80406db7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworkconnection.dart","hash":"21da671eb92823f3b4c91c47b2e9bac7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spacer.dart","hash":"977b101929ac6f80c9dab61b4f232bda"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\admin\\screens\\admin_screen.dart","hash":"de4092182e054aad1fa89c88e36c667a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_type.dart","hash":"e26cb5bf5970055a9bd1828b524cb213"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart","hash":"c32cecbd71acc984d84398dbcbefdc1e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework.dart","hash":"d856ca958740bf8a240738ad9e9e69c2"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\idea.dart","hash":"ba98c7395204110dd4ffdd7929174d56"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id_real.dart","hash":"0e5b422d23b62b43ea48da9f0ad7fd47"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_daemon-4.1.1\\LICENSE","hash":"d2e1c26363672670d1aa5cc58334a83b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\constants.dart","hash":"df0a9878a16d3cd73cff00f496307544"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v4.dart","hash":"916cd94d810ea5b86f0cdc685dc38001"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar.dart","hash":"070daf6f273e9bdca4afffaeebe2cc15"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\connectivity_plus_platform_interface.dart","hash":"88d5feb6f0a1ddf0cafe75a071bbcab2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_input_stream.dart","hash":"a18fc5ab21a0ffddbebd7407a1e4ce40"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart","hash":"ea046b60f0fd4f08dea95a777e6b9a1e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\arena.dart","hash":"9a357eba21f383f648a36404ef950aea"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\ink_sparkle.frag","hash":"7eee695ba96e5afa80abfaf59973617a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuri.dart","hash":"ed8502a630b1e3004b3e0469816899d7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf16.dart","hash":"10969c23d56bc924ded3adedeb13ecff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemclassobject.dart","hash":"20a078b2eb6ecf6b4b16bd817e30ecdc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scaffold.dart","hash":"85ff3a455e5b12d282298f7870bc38b2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\banner.dart","hash":"5ae7a1f76d7bc808f9945ed995da690c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersiststream.dart","hash":"ba4b050fb9bed64eb6f6476016aeba2b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\cdata.dart","hash":"008d33cc2aea11e7921ee238469947b2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_value_indicator_shape.dart","hash":"a9859297c8291c07e5e8f6c83a0c014f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner.dart","hash":"362ae7e02db45824034cd89ee2a52737"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json","hash":"7b2a36307916a9721811788013e65289"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart","hash":"f9aa2eb956d270d4df8b3a7cd5ac52d7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag.dart","hash":"c6f3d5ab867a5b665a50e0af11d048d7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ansicolor-2.0.3\\LICENSE","hash":"3b83ef96387f14655fc854ddc3c6bd57"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptor.dart","hash":"fa37e7b5d86857fe6a6e7c008773fe79"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\LICENSE","hash":"5bd4f0c87c75d94b51576389aeaef297"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\url_launcher_platform.dart","hash":"0321281951240b7522f9b85dc24cb938"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart","hash":"838123cb36e73af6dc4717b1235393bf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\browser_context_menu.dart","hash":"bfd7a00b9fef90dbf3b6d14f6a2f2901"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_expressive.dart","hash":"13b2049dce60861c73d20ad96c34da30"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\standard_component_type.dart","hash":"702ebe43a77fbc5d1e1ea457e0bce223"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\debug.dart","hash":"624431304ab3076b73b09e0b33e35e4f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_scroll_view.dart","hash":"191c8a8451c1851fc49b83919c471939"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\visitor.dart","hash":"87e0c94a0dd945f819a8bd24a9ac5e67"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\LICENSE","hash":"1bc3a9b4f64729d01f8d74a883befce2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\flutter_shaders.dart","hash":"e0dff416a9e6fd0bffe5c222b6e3831b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\painting.dart","hash":"e6c5d07cbc53020acc5c08062c8b57af"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\single_subscription_transformer.dart","hash":"f92bb9e85f7b089f96263b120561014f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\observer.dart","hash":"2480f17b8bc5d1954b56f512c6adcd9d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart","hash":"f1bb162d20997701babae2ac8facd345"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pages.dart","hash":"3e536a3acaaadb822a23d4e1b88f21c7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\colors.dart","hash":"21fd5695156d005f6793304998a2022e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern.dart","hash":"ff5c40ddc1501e3be7aa7efd4a269f04"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\top_level.dart","hash":"15439eaa12b927b0e9a42b9d168e3371"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart","hash":"413144882e92d0a27858427f45f214b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite-2.4.2+1\\LICENSE","hash":"80ea244b42d587d5f7f1f0333873ad34"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\rometadata.g.dart","hash":"87ac4b62f17065d7456bfb6f6ec0a624"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location.dart","hash":"fb2c02d4f540edce4651227e18a35d19"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\petitparser.dart","hash":"6cb32004f228090f1200484076254c7a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\clock.dart","hash":"84ad21db5ba97deb809b65697546e39c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensordatareport.dart","hash":"d241941a5420f01b81ee47fc755f8123"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart","hash":"eeda981e4df3f90c0c0dbc696a3ca59f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\scribe.dart","hash":"fc0d5385b1ef6f854be4e193437b39b6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector4.dart","hash":"77900a31d721da1722fe34c455a00d3f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\cache.dart","hash":"e0cbefa359309715e5101bce98eb65e2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier.dart","hash":"a67d1346ef152a92e983a9d7dc1a96fb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\global_env_extensions.dart","hash":"b93b5973b10335f092cad29c56ba9c6c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation3.dart","hash":"64b70549a67d82ee25c435f5fc06ea49"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\autocomplete.dart","hash":"6b6636688a44d2bead7c8ec6941b03bc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\following.dart","hash":"7f4a5458515781cb38e39651bfdd2f04"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_l1_1_0.g.dart","hash":"5764fde6a5cfb0402dca339562afb9cb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\LICENSE","hash":"815ca599c9df247a0c7f619bab123dad"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_constraint.dart","hash":"6367c3e098c4a3fdcad94aca0c0148c5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int64.dart","hash":"da07db909ae6174095f95d5ee019d46c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\set_uniforms.dart","hash":"287a2fec0c9a35af0cc66e7c73845774"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\graphs-2.3.2\\LICENSE","hash":"901fb8012bd0bea60fea67092c26b918"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_cache.dart","hash":"add848399fb431279348b7ea4a80568d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\extensions.dart","hash":"05c0832362de468466c4e1f2ace14527"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\preceding.dart","hash":"9d5375413b37f738384990ebdd6c6285"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector3.dart","hash":"d4252f423175e5c21fca23dc24154b84"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienummoniker.dart","hash":"3e2ba5ba60ae123aa45ccc5f07eb3ae8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.g.dart","hash":"735445bf95b7dd825aa15c783a4412f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\method_channel_url_launcher.dart","hash":"351ed98071b53d3c2e98d376f2a65a74"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_completer.dart","hash":"2430a12d4750c3c76ef07d29bb6f6691"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\arc.dart","hash":"2a948780026092dae085b86422faf0b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_formatter.dart","hash":"d125ffd56f0235873a9a032bc8dba83c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_message.dart","hash":"eb54a5ead5cb8ea548f36e4b8780e4b8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispnotifysource.dart","hash":"97fe81a282e612211e9648061d6d5dbb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\progress_stream\\io_progress_stream.dart","hash":"6ea89c3bc6b0860bd7c16998d3950c3d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_uri.dart","hash":"3cb04add978cf19afa2d0c281e4c80b2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\predictive_back_event.dart","hash":"8ef8f3bbaea09de024ac240b7e26d2a7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\visitor.dart","hash":"27780bbb98adce3f00386fc6223bf2c9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shell32.g.dart","hash":"c1210af8f1663dc5959f1ec44acaa5a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector.dart","hash":"1205ed5e14a59c237c712b8a495b1981"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart","hash":"8d5d3ccddf53eafd7a3094278afe8b93"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\settings\\screens\\settings_screen.dart","hash":"30aac47f705ad8c2248c11dd785f7a52"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationorcondition.dart","hash":"821dcb1b139f1347a59141ff1fe42766"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\service_extensions.dart","hash":"217b7c2fd7b1eccde5897e1f17fdccf9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\auto_dispose.dart","hash":"39d249bfedd0655b147701ff81de4fa1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\scarddlg.g.dart","hash":"ff51e95e52fd4d789e71223942d5ae23"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_config-1.1.2\\LICENSE","hash":"901fb8012bd0bea60fea67092c26b918"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart","hash":"8d6452b9a0feab43e81cc131ef1a4aaf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\combase.dart","hash":"90ed8a12c97e362a162da690203df055"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate.dart","hash":"bd343bbe0baca1494e15a8872fe23e6f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml","hash":"43a5b6c2ad14cba218dbb9fd709313d4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\process_text.dart","hash":"14e2e9da81c134c023849e94c4c24978"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart","hash":"e4eb46d5e69baa3271c66c2c434061e7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\posix.dart","hash":"f19239fe10cca0cd002c22edba90eb52"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\constants.dart","hash":"aa079ee3baec3d56778ddae02b3d5150"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\decoder.dart","hash":"e6069a6342a49cdb410fbccfbe4e8557"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\apple_options.dart","hash":"d4efda9ec695d776e6e7e0c6e33b6a4b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart","hash":"208e3ff349f358ae82604cb56088be52"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_stream.dart","hash":"9f18d62a22df97520e20e775666ebee9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\log.dart","hash":"eb60d218017b0432959e8445a36f4602"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_wsl_api_l1_1_0.g.dart","hash":"f5defa76a8d0e0a0a5d1670fbc270cb4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider.dart","hash":"edc6185b4e4994b45acda6675696d87b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\simple_name.dart","hash":"208d1ef7a6cc2445551b3138139613bd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart","hash":"6d6dea174f3fb3a637cb4d116a362dc2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command_executor_ext.dart","hash":"4bed6699b5b3dd241289ca5b19ce9cdc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart","hash":"671f1b2c2c348ba4122747f1867f589b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flutter_version.dart","hash":"00408a31c78c5c887a19c2cd04973c37"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector2.dart","hash":"6860d784322e97b761960551131a565d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\utils.dart","hash":"1eb2fe31f2f21cce619f672c25b1e43f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\error.dart","hash":"9d3c97308962c33d86c03beaa20e28c4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch.dart","hash":"99aef443e7d683c1906780f8d7b92c63"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\flutter_local_notifications.dart","hash":"6911901b1e6f800a6d433577dd9b93a6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb2.dart","hash":"713156bb4c3a820c34bd6587a12b9074"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\failure_joiner.dart","hash":"12b975946bcb9ba1b5a6dc3309a19de9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\container.dart","hash":"8597f18181783d905e40dc64f0c0555a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\env.dart","hash":"278242320426f869a4121f48b98c2ed9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\itypeinfo.dart","hash":"d1242664c894dd9825221a49693814f2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\uppercase.dart","hash":"c9d12a17c125e31a94ec65076a9c3ac5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\form.dart","hash":"24aae40ce89e6e4c0dfafe0b49c5d13e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object.dart","hash":"4f187fc37cb2a7eedf4681e2321792f0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider.dart","hash":"a6705b39e0c01e2fc0e40b8c8c674aac"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\router\\app_router.dart","hash":"156b43ac09731b1cc019f03af3c7a122"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_vibrant.dart","hash":"65e61fbb4fa10372b84edf9b3a226e3e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_enabled_options.dart","hash":"877295d0c356a690a3b16d271e34c543"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\LICENSE","hash":"80ae6870ab712d32cc9dff7f6174b603"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechaudioformat.dart","hash":"f7b5a54fb6f6b69cc4234a97ce7977e8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_7.dart","hash":"e7f41e9640a11f484fe97a34fd0c6fe4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\frame.dart","hash":"49286617067167600a8c7357dff1dcfd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_queue.dart","hash":"fb5bf096bb76594eaceda019de6559b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\string_scanner.dart","hash":"f158ffadca730ab601c60307ba31a5e4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart","hash":"d2118d421b39f9ba6b7de3c11d1c4c0c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer.dart","hash":"db799bf48af97b7c0edc93ad96b4a6da"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\wrap.dart","hash":"4a84a6c0c8b39258edfc22b11cde7f32"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart","hash":"bd653adddf5fd2896c067d9e3cc7585f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_value.dart","hash":"21beb4ff2c06d1edc806270e0bfac51f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_sound.dart","hash":"c0d5d7856094b4be15b738392704b921"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\queue_list.dart","hash":"02139a0e85c6b42bceaf3377d2aee3de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\frontend_server_client-4.0.0\\LICENSE","hash":"43465f3d93317f24a42a4f1dd5dc012e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\src\\messages.g.dart","hash":"df997c7f2300fcd6f80dffd0f455bea0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel_theme.dart","hash":"fa0ee94bec6f3e251ecb6155d9b574ff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\exception.dart","hash":"773da8c184ab316ec6998980a1448a1c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\test\\test_flutter_secure_storage_platform.dart","hash":"362bf1b65ae84f1129622a8814a50aad"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\long_press.dart","hash":"35a844c5039cd195b88076ba0cc17e38"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\test_api-0.7.10\\LICENSE","hash":"3323850953be5c35d320c2035aad1a87"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\constants.dart","hash":"c6dd0c20e5521905acdd0e209727ec65"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing.dart","hash":"0592ddd7d860434774d2eaa8eed82173"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sensitive_content.dart","hash":"03fa43612a3510ac1b1671b945d1f91f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jvalues.dart","hash":"89d45e2e5a70ac054f030113ad19f26f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vm_service-15.2.0\\LICENSE","hash":"5bd4f0c87c75d94b51576389aeaef297"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\range.dart","hash":"34b26677502aed5c7ba9e8b13d348e3c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_data.dart","hash":"f5d122cb287530be9914a859c7744f68"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\sequence.dart","hash":"061e3925eb77146a83903821d09bbd58"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\onboarding\\onboarding_screen.dart","hash":"19d245e2b88dd8a1ffbf6e9f955e3ec3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_radio.dart","hash":"9a62326dac5b22e9fea3192b612f4d9c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\user32.g.dart","hash":"f7d24a92e50e72cd80aab0301eef14ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\extensions.dart","hash":"033cc457821088f152cc31f4439f9f0d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_mutable_data.dart","hash":"ffb14682b9771918da24801f35264dbe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_shared.dart","hash":"c2f30f0829e63ccf0449de5982e324b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart","hash":"a0debba3c78c5b30d8645d377dc80bf2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\match.dart","hash":"8b5af408fdaeb769969e75d843cf424b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\cross_file.dart","hash":"b1bb0939f4b26522681cc6be8e11f7c1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\date.dart","hash":"7c1d0d22ae0d74958aaa5c099fadc33b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_section.dart","hash":"183ea1ebbced2622b43740c6066e2da9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_builder.dart","hash":"bc1f35bad7b3fd785bd8734292b27ff7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart","hash":"fb5f7eb90b6c4b891e8a1cda244c0a30"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\path_provider_windows_real.dart","hash":"43f4676f21ce5a48daf4878201eb46bb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\iphlpapi.g.dart","hash":"90687597d058691ddabaa9819ebe2441"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider_lab.dart","hash":"28b2af7f1216ccd38b109a03e06c2831"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics.dart","hash":"eb6cc591a28f7f6d0b20d0bfd2c59f4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data","hash":"b5b9cdab5f995ccd674b15a723c23ac8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_uuid.dart","hash":"c9efc107e2b16a48d4e132bfcc679af4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\chain.dart","hash":"1112185143b6fe11ce84e1f3653b2b6b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern.dart","hash":"2ee116ca87b7e1c461de1462c3442ec6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart","hash":"4a376c58b71e764fccd722e77989989b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\source_span.dart","hash":"9f2eb24284aeaa1bacc5629ddb55b287"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\inherited_router.dart","hash":"94325c70d85d9b1d588018f56c56adc8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider_android_real.dart","hash":"7ec9fc4b8ff24efcfb105532f000156d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\glyph_set.dart","hash":"62d88517fa4f29f5f3bcec07ba6e1b62"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\predictive_back_page_transitions_builder.dart","hash":"08c882255bb4c2001eaf299d9a98e0b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix3.dart","hash":"d8b0931c64fbd4bdd435df207b303a04"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_browser_detection_io.dart","hash":"dceb0993fc92eafad2b09cedfe9cf55c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\events.dart","hash":"afc61ae2ba49edef0eeff9853078bc7c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement5.dart","hash":"7787380533fd85067e9c4303a9564dbb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollitempattern.dart","hash":"a3ab60b19b4725b3ea1d1b0cb1c64451"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pedantic-1.11.1\\LICENSE","hash":"7b710a7321d046e0da399b64da662c0b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\memory_allocations.dart","hash":"e99416806ef8e6f699df7c5d9d6d8bb9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icons.dart","hash":"0fb5a81c723bbd506468f1ed5a811a48"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\opengl.dart","hash":"de7fb154b9b151b81a78d43ade695365"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader.dart","hash":"0a9121d736af630bee92bd8372e06916"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart","hash":"e8b3aa75db997d8ec9a7d04fb76237a8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart","hash":"99fb2e65ec78997546349e740526b24c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\flutter_animate.dart","hash":"ac3c54b4fc84d74ca2726a43feb3c268"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\characters.dart","hash":"43268fa3ac45f3c527c72fc3822b9cb2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\octo_image-2.1.0\\LICENSE","hash":"bb500500256905950683ee38c95fb238"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation5.dart","hash":"d879c3156e19f2b290c4d6eed1de5e89"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqlite_api.dart","hash":"dbd0ca4188244fe4b090a6f420ec10c4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\color_scheme.dart","hash":"fa7057ca8e04d818b054750517ebe184"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar.dart","hash":"f5b03a40257946e4017d51fa2b683168"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_layout_metrics.dart","hash":"dc64ebb08fcf29bdc05884be98af7daf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\synchronized.dart","hash":"044e7c8ac3258945fe17e90e1a4fff51"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\linux_options.dart","hash":"26c4f0c369b83e53900ac87bf7e0dcff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\runtime_bindings_generated.dart","hash":"425673d4276b277214e7b7970b708eb8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_selectable_region_context_menu.dart","hash":"1fa6d2ba714d40456392772c9ba4ff46"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart","hash":"3e8341c70267acb12316f930954476fb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quad.dart","hash":"25dd0d36ba8109e3199faf508b41d633"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactory.dart","hash":"5d461db74d04d7e270d13a5a8a340796"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\start_element.dart","hash":"2c72add0b4beec6c29322827553e616d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\builders.dart","hash":"ccd0c138d8f151e1ccec18f4ceb98f01"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiorenderclient.dart","hash":"64708122ad6cca0c23373706cdb72c03"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_map.dart","hash":"42e37fab03a3ee2d526bb6f51ea4af23"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wu.dart","hash":"ce049601b2dcdf418b7d80839ed87b7f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_decoder.dart","hash":"16eac0a8fcc5fdae0d8f38b7ea301c37"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\boollist.dart","hash":"206ef1a664f500f173416d5634d95c8b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\utils.dart","hash":"fe2489ea57393e2508d17e99b05f9c99"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\app.dart","hash":"b50e5a72f3e4d17fcc0269c67ad08b34"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\adapter.dart","hash":"587693eda247b930d37fff01715ff5c5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\debug.dart","hash":"c15b0c06c9817813063ea4c1023d57fa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\stack_zone_specification.dart","hash":"d0268b4d80612385359eadd2d6ddb257"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart","hash":"88f32da113ffa41b4a3c2a47cb997f0c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fidelity.dart","hash":"2b93d5d6981f0c021cb892223416927d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wevtapi.g.dart","hash":"4fd8d39dff594e013e042c2896cb0bf0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\fused_transformer.dart","hash":"4cbacf46dc43afb0d059b0016010f45b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\enums.dart","hash":"f4b67c136a2189470329fd33ebe57cb3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart","hash":"01fb2164f922ea7367049124bc005643"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationlegacyiaccessiblepattern.dart","hash":"15639b799e4dbb06ffd538d943964d19"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_form_field.dart","hash":"4f02d9801a18196af32eeecac6952452"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\toggleable.dart","hash":"9b7f21f9e27ab344d03709e9b47cbb54"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart","hash":"c8bb5ac3ad9190c2cb878fdab2f4ea7c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\token.dart","hash":"007b05bbaaa5af831aed126b4db596e5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\comparison.dart","hash":"643ca26571c2ba94477233dbb914b1ed"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart","hash":"7c9757d3cc07fc4355bb72187af0413e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\auto_dispose.dart","hash":"ef220252cc1911073575cfbf66f4c8d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart","hash":"ccd4261eb08ab983ac11e6c187ebf60c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\attribute_type.dart","hash":"a9d570114e5a6e733fb029f6b3cffad7"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\api\\disk.dart","hash":"c665492a6d982e7ad5d3161c81983203"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\parsing.dart","hash":"62d7d2254a483314a65ad8360c4025bd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\notification_details.dart","hash":"5bc24b31455e76bc74c05a2ee528dcbe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\pretty_writer.dart","hash":"09214b5a4ed4e104f212ef38f676fb1f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_controller.dart","hash":"1ebd781205fb832acb480cbdc2fb5d93"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\scale.dart","hash":"9e848cd74d7e54d21697683f385810d3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\initialization_settings.dart","hash":"84dbd0aa38844da5b7a683c754582df9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_6.dart","hash":"3c158ce6f79d219073cbe23a7fe48595"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_mixin.dart","hash":"89dc3f84db2cd1ea37e349fdb1de09bb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\follow_path_effect.dart","hash":"04e0e4efa9726c234e992a024bca6209"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jdouble.dart","hash":"8de389ed114ae56e2ca650fbbcd35f34"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_html_element_view_io.dart","hash":"aab7bf02fcfefca8bc2a8c24f574ceda"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flex.dart","hash":"c8d372496e4a2766ec6b273bb1820ea7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\binding.dart","hash":"2fb79cfb96bd901a58aa790b9af4a2dc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selection_area.dart","hash":"fd1e888f48f9b2411ee9f3d8a5146397"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timing-1.0.2\\LICENSE","hash":"3323850953be5c35d320c2035aad1a87"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\editable.dart","hash":"01392922e544aab644f03401ff77d3de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.dart","hash":"c6f78ebc1239a030ffc141df9b33aed1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\converter.dart","hash":"24dd1f01d0ce298347e47fd60702007c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta.dart","hash":"696cb8f38fb01211afb7823d12080410"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\entity_mapping.dart","hash":"5abb58e10e8ea85ea5990a97ee20ae4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\flutter_local_notifications_platform_interface.dart","hash":"64aba6b07ccfb43755f1c29955134b53"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_celebi.dart","hash":"88b38af8a6ab0efd56d1fb06883c44db"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdual.dart","hash":"75335c9306751e1de52734c1ae433ac0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_pattern.dart","hash":"79a5f25a1a9d4aa4689bf37171e1b615"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart","hash":"e5c3c92d54881cd31b4200eda4923c2a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\list_to_blob.dart","hash":"56d7144236503f311a7d9a966eaf2fbd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\comparators.dart","hash":"8ac28b43cbabd2954dafb72dc9a58f01"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\sync_transformer.dart","hash":"787074c3d370e068052721d16acefd9e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_buttons.dart","hash":"e71bfc49f52579c2e458315e9067527e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_2.g.dart","hash":"62710fd39bf51f264c7fd8ad1dc7aac5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\basic_lock.dart","hash":"25057894002e0442750b744411e90b9c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\media_type.dart","hash":"101ff6d49da9d3040faf0722153efee7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\riverpod.dart","hash":"9518a1e0696846221033c0434d777377"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\types.dart","hash":"4a1d1bdbd4e9be4c8af1a6c656730a66"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codecs.dart","hash":"b006ffd7548608c10ddd32ab8df2a5f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\internal_style.dart","hash":"974d0c452808a1c68d61285d0bd16b28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\relative_span_scanner.dart","hash":"b9c13cdd078c3b28c3392f0d6d5d647b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_path_l1_1_0.g.dart","hash":"42efc7a615bdc348ad78098c1cdb79b7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\parsed_path.dart","hash":"cb454929d7810d3ee5aa5fc28283d3fd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\flutter_riverpod.dart","hash":"05100b6f82b19ef0bab59f9f174ad39e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationexpandcollapsepattern.dart","hash":"8d6e1950b64962d48ef050d9517791be"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\url_launcher_windows.dart","hash":"17ff083c12565d73bcbd73eb0517016a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_header.dart","hash":"a4ee14a7e782832dcfbc9c8b1bba6f58"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\timeout.dart","hash":"6665bae4ddca65609834735a7f24c95f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parent_exception.dart","hash":"2ede71f09a240decbc57417850f8feb7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_capabilities_io.dart","hash":"0b279dcbda1933bafe0bd7d322e2000f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader5.dart","hash":"85574281bf7d7bee9722a21e092b4be0"},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf","hash":"e7069dfd19b331be16bed984668fe080"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\container.dart","hash":"b5a6037a3840b81b507f5d350ecbcfc2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\debug.dart","hash":"da2fb5c7eaae1fd58b34e80c4dad2cca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterable.dart","hash":"f0ae0acd94eb48615e14f6c4d1f5b8e0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\radio.dart","hash":"42df2f1a7ae133830d8c71decb094a5e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart","hash":"3ca8812a042f08605898cd939fc0974f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\mappers.dart","hash":"27bd31140f6d692c98f0cc901a7d77a1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel.dart","hash":"5875c344ee3ccdd069b4b7ff696432c4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\clipboard.dart","hash":"f63442b56372cdf284974de30fba136c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\sink.dart","hash":"93ac00707f7d2e5d4b863c54b11f2a9a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\gradient.dart","hash":"4e3fafe47b1073d4d546aa2a2d584710"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart","hash":"c2080626c8197add9dd213ba2b2ea79a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action.dart","hash":"6a3849c802c2fd63cd4d3db06470f387"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart","hash":"40a04e94b4e68da57cf200df6c661280"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetitempattern.dart","hash":"0b1037c34b64b5d7d84c6e578ab59974"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart","hash":"5e6f73850b640e3db6c2839a8b3b0b8f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.g.dart","hash":"a5df5f31e15cfee3902ff60a60eed5eb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\base.dart","hash":"34d65aad713399e0e95c6d52aea92d88"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\functions.dart","hash":"41f7bdb7d1eb3c86c21489902221b859"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationstylespattern.dart","hash":"a5c23bf569325f140ab7b7d88d3b683a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\dispatcher.dart","hash":"9de140992b1876855e65cdffbefe8a40"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart","hash":"e11d89b7d2933ba28814915b300af866"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effect_list.dart","hash":"e7da1eb4d5cb971f14a5cc5d487e80a4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart","hash":"3f17589464130c527c54bab5ded19c8b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart","hash":"7d4475d797ce6fece72d4fd77739f528"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast.dart","hash":"34cb3f67f2d538a80fb20ae30589d538"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\inline_span.dart","hash":"b36b5c0adbaf28834415cab7cf236586"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\align_effect.dart","hash":"4eded024c142173030b0fe3116f30c6d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\inbox_style_information.dart","hash":"b54d4d23f060b78a02290d93a10d3319"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose_family.dart","hash":"0dd5377006ddfc0b63c193276ef02d43"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_map.dart","hash":"9d273d5a3c1851b0313cd949e7f84355"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenser.dart","hash":"3fc24d3b43ff4a6b63811978cfb697e8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart","hash":"d26176ecba3541ce4aeb0ef89486df31"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quad.dart","hash":"375711cedfc8dfb78018a282ba880296"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_subscription.dart","hash":"e2d2090c2a39f7902893e64150fe82b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_string.dart","hash":"27e6c510107a34001ef90f889281633e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\repeating_animation_builder.dart","hash":"4a3dcf49e30c8511f9ee69ca6128b887"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix2.dart","hash":"5a770014b927807d1ef52e7b6e287897"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location_mixin.dart","hash":"6326660aedecbaed7a342070ba74de13"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\node_codec.dart","hash":"a40d7d4a17e700bbb41bf31de37c6bae"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style.dart","hash":"6928c6dcf177e8d03637ee7e015ff8cb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersist.dart","hash":"a1f73c43919636da8b8f9a657ca8cc14"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart","hash":"225d683fb2401c77aae17db2c95d0a02"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card_theme.dart","hash":"554306ec4df84e3dfc7ed4e63ceae74b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\character_data_parser.dart","hash":"7b4a3d153a0c2e22401073c511515325"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart","hash":"6ce7bea8fc63ae3a19131db10547ff2b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\binding.dart","hash":"a9f9101a72ae3969f82c0083a045779f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\highlighter.dart","hash":"5265b4bdec5c90bfd2937f140f3ba8fc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\team.dart","hash":"193d1801b76c52075287857a01d3fe83"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart","hash":"9c6dc856bf70678df688ea5a308290e3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\annotations.dart","hash":"b98145bd156a782be220cb3f652ba0a4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idispatch.dart","hash":"8ef246eaf180b7621f716282e295c950"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_mixin.dart","hash":"e103c51878b3741ffe4d81896876f3ef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\whitespace.dart","hash":"99d7e562270b8dd8f0522ff5019620cb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\local_platform.dart","hash":"9cc2170ec43e47681be6cb2a313ba1b5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart","hash":"53c58676c99bdf3839784d792c1c3d17"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\isolates.dart","hash":"36a99fab55346241cec61df175183d69"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker.dart","hash":"556c5677ab197ac52aaee6e02d6ebd70"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart","hash":"9621a4c337d24a926ff50126ce88d7fe"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart","hash":"d99d22e8a62a3ce1fa8b04b21702e1f6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.g.dart","hash":"ebee8885b5afd397cfa8920eeccf88e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\base.dart","hash":"d7d24730943cbf47d39aa11425ebf344"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\constant.dart","hash":"54356788d5c11fa49cae271d737b0c78"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid_windows.dart","hash":"659cff14f1665a31dec63407d7839624"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory_mixin.dart","hash":"47258dc751a1217744986101e934f62c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\_internal.dart","hash":"ef4618b5bf737a7625f62d841127c69d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock.dart","hash":"c31f7af379f7e5f653364d4a14a78750"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme_data.dart","hash":"2c38ead87a22902f0b6c73bac285c3ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_enum.dart","hash":"4817a73df1c313cf6a6eb86774e7fc99"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\lib\\plugin_platform_interface.dart","hash":"8e49d86f5f9c801960f1d579ca210eab"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart","hash":"ff836be2c45a3cd9f301d601cccf7ae0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\base.dart","hash":"a4eb00bf15ad2af7e8ef8480d7f26a29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\path_provider_platform_interface.dart","hash":"09b3f3b1ef14ce885c016f2eba98f3da"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\slide_effect.dart","hash":"a0d4a9c1b68cc6dbd6b64e41b7e92ae0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications.dart","hash":"672695b311530b8c64badc8eb93e6fd9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\normalizer.dart","hash":"8bd96caadcaefb063cca0c83d7707a57"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationandcondition.dart","hash":"c3b42ddc5c69d20f4bbfb3ccb3f30ffc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner_core-9.1.2\\LICENSE","hash":"3323850953be5c35d320c2035aad1a87"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog.dart","hash":"8a251fb90302207f7e9e3f95aca01a72"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\handler_transformer.dart","hash":"e358dbd512fac73db64b0628ad53bc82"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\LICENSE","hash":"6217a25f93e8cd70a46d36976630529f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart","hash":"c909abaa7c0b6b52aa22512668ededb0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\list_converter.dart","hash":"5f5f3a1074f40b8fc37c2b3ba5ec0432"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NativeAssetsManifest.json","hash":"f3a664e105b4f792c6c7fe4e4d22c398"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irunningobjecttable.dart","hash":"dfa3a8605c6665c94b8ca2bd43827718"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart","hash":"6e5b0197a79b966f3058972183b815a0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker.dart","hash":"2ec9f1a7465a01091d0fb1e48ae09fab"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_button.dart","hash":"03bba79b743a1422805600d8d348c106"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart","hash":"dd13dc6e713f88184d61169de451389b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\frustum.dart","hash":"c19a7119c5f0f19f3d0f4531c5345616"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart","hash":"f8ded7a3f53ded600055288202a36535"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpoint.dart","hash":"96c9d801d1879091246f0b107ee4147e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\uppercase.dart","hash":"00e2ecab2f5dd0c4f813bf6570d007c4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge_theme.dart","hash":"da1802b773732f65c4e80bbdb5ff020c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\src\\messages.g.dart","hash":"a6e5a05879e4b68ed3039be8d700bd6c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\curves.dart","hash":"5ebf390d29c2df54424ad03f3b3ee803"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_style.dart","hash":"b987d3cd7e9fb6c315cc761256ce124f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_image_io.dart","hash":"7f7fc8274f08decca0738d6873b9b8fa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid_linux.dart","hash":"9ee869577a0315e9f028e88f6cc33c7a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\text_direction.dart","hash":"45f61fb164130d22fda19cf94978853d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\texture.dart","hash":"e924e0f63c6bf206211fb6a6f319af53"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart","hash":"e7fb9fd369c9f97c921afb96147198d2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autofill.dart","hash":"900672c4f3a8c395331517ee4a59ea2c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensor.dart","hash":"9d1c0eb5292b2112e1b43affe9a2cadc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\tint_effect.dart","hash":"dbd8209d53e47e61541fe1c14e59c19e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha256.dart","hash":"d46b2577d6fe6a7c8f89b1de8fe9b880"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_server.dart","hash":"0b4a237293e913152ca376cdcfbe752a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\cancel_token.dart","hash":"254c9535d3cb04c28db0c51ada73e6fb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\proxy_provider_listenable.dart","hash":"2e59aadb17c005953c2accd529aced98"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme.dart","hash":"a93bdf24774a4f17d91eadb26603a2c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_channel-2.1.4\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_buffer.dart","hash":"22acb270c1bb267ee16b3d64a3faa825"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar_layout_delegate.dart","hash":"d2232e4bd0457a4a3eb6bd897846eb44"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_buffer.dart","hash":"f64837679a1abb526e942b166db5c244"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\legacy_api.dart","hash":"197929b9f3eecdb738b1d3e31c7481b8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document_fragment.dart","hash":"88acdeb4b5b5a9e5b057f7696935fc2e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\curves.dart","hash":"2fac118c3201a4bac960d7430ddda0c6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\factory.dart","hash":"63fa9307c55c93f4fde0e682e7da6503"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart","hash":"5588e04d2462fa3c03dc939826b0c8d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart","hash":"86827e5362f176a7e68d65c22420e837"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\listen_effect.dart","hash":"222071fadae509fb3c28ca2e5fff8f06"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_svg-2.3.0\\LICENSE","hash":"a02789da8b51e7b039db4810ec3a7d03"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_chrome.dart","hash":"bb208871e05247f3c1702ef1d4cb172d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanager.dart","hash":"9915c7d7ab3c9994e77dc4abfba9418d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart","hash":"6576b0da0c8edb1eaea39c7088dcc913"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bluetoothapis.g.dart","hash":"21dfa823454d051c097b62eb7499f71c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ierrorinfo.dart","hash":"7ec176456b796d360121e28a6af41a2a"},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","hash":"80b24d7e9d22ac22d59d17e1b83ee719"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_3.dart","hash":"9632b7c4c43e2e92f45bedc627663937"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iapplicationactivationmanager.dart","hash":"c96999a0782dffe9bf8eeaf394caf3bd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\lib\\shimmer.dart","hash":"49d17d6f2c4de81e5dc0cf98d720333a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart","hash":"48eacfdcc762ece187c27660f7010c77"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_anchor.dart","hash":"e7570654c0a436f6e9dd0d62c8df912d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_theme.dart","hash":"d291168e624df0fd07cf1a11ce6489a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart","hash":"fff2613591e3febf4c067fce116c105d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\src\\hct_solver.dart","hash":"2972206c70139c2948530bbb5c9cfa27"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart","hash":"284066476b8ec1cc92ff0011561ceffd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_viewport.dart","hash":"615c17d4e884a65d24a596112c37098b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pinned_header_sliver.dart","hash":"eba989b17aa7902153acc7df1658ba49"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\string_utils.dart","hash":"603b7b0647b2f77517d6e5cf1d073e5a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\boolean_selector-2.1.2\\LICENSE","hash":"83228a1ae32476770262d4ff2ac6f984"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_splitter.dart","hash":"508284c37de18e099acd673f1965ccc3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system.dart","hash":"dac02dc6cb13c753a5f3ae19976b1540"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\converter.dart","hash":"affb97b6cbd84919fa30ea3bcd5f12df"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart","hash":"9d21d08750f63eeb16370b13ff7829de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\headers.dart","hash":"12ada90523ca5fc00e317c0a59889a1c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\intl.dart","hash":"f0dd0e0193ab6bc6a1dc2a6cf6e1cd6b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notification_info.dart","hash":"5f02ac3087f8d081f489730eecb97f70"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfoldermanager.dart","hash":"49703a6e2b7dff13d801b6eb6e02062c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\node_list.dart","hash":"6b9e945de99fb44b45f72925b6e862b2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapter.dart","hash":"b3593abe51c68018faf79703c522773f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\stepper.dart","hash":"20a16b4f174e6bce075dcbfe68581c28"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart","hash":"03a019b76be5082eaff707596fc9f6ed"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jnumber.dart","hash":"46483f14160b780c8d1ae008588c50bb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_tree.dart","hash":"4f24c51c2701c07958c451114cd782d3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvirtualizeditempattern.dart","hash":"34ac34257c6ee30da8c0b6de4d0a5444"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation2.dart","hash":"c98cadb2fac8ead45ecaa10366da3ec9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\token.dart","hash":"5668ae4c673aeee9b233b0b024fcddf7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\view.dart","hash":"6f36125b419a1cc70316b6994433918a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\regexp.dart","hash":"10ca1bc893fd799f18a91afb7640ec26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\licenses.dart","hash":"eb2829db78e88b9a88e0013dd7d436e2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart","hash":"a38cc0128b89f1c9d566c6363cdb63ee"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart","hash":"179be66a83c076f437989e25cdc30a49"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\vote_buttons.dart","hash":"cc1f0acc7941fdcd1bc2ed72c04c9a81"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_transform-2.1.1\\LICENSE","hash":"901fb8012bd0bea60fea67092c26b918"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\url_launcher_linux.dart","hash":"5a4ec7ed205221c230844b97f4d0a27a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\toggle_effect.dart","hash":"959421bf7780ce3cb78244e6707be380"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_painter.dart","hash":"645e414df4ad6780c5bbe193972591ff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumstring.dart","hash":"68e28643e39694f628939978acdc52f5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\icon.dart","hash":"cb4cf0d998a65879bb40daf8db093eed"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_cache_manager-3.4.1\\LICENSE","hash":"7cd08032583ab0a8eca895b2365a4583"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\csslib-1.0.2\\LICENSE","hash":"d26b134ce6925adbbb07c08b02583fb8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality.dart","hash":"46e577ec532e21029e9cee153d7ca434"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\archive-4.0.9\\LICENSE","hash":"06d63878dac3459c0e43db2695de6807"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\windows_version_helper.dart","hash":"1f4f05a739274cdeb88c110bc6561ae8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\testing\\fake_platform.dart","hash":"f1a57183b9d9b863c00fcad39308d4c1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\sphere.dart","hash":"8b2f2f630b059eae09aa7e46fc3137b2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\element.dart","hash":"361f3bd2e6ba6710885e241d7574326b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iunknown.dart","hash":"314ca45445509ac0635a48d2dacca294"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\utils.dart","hash":"670717573525d5e0518a4063c6fd9231"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\validation.dart","hash":"f05c33bd910f900d035412bb6303e550"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid.dart","hash":"5261078afe15bcdc637478bb6d7f7e21"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location_database.dart","hash":"011e1e9f46dfe9400619c8e5103c30ef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid_value.dart","hash":"b95223379fd765fdba36bd57d890f63d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationnotcondition.dart","hash":"1fec236f729d3217c13d42295fe3faf5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\position.dart","hash":"24332e073ea65324af6702f2baa79438"}]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/app.dill b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/app.dill
new file mode 100644
index 0000000..c7d7215
Binary files /dev/null and b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/app.dill differ
diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/dart_build.d b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/dart_build.d
new file mode 100644
index 0000000..aca467e
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/dart_build.d
@@ -0,0 +1 @@
+ D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\dart_build_result.json: C:\\Users\\angel\\flutter\\bin\\cache\\dart-sdk\\version D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/dart_build.stamp b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/dart_build.stamp
new file mode 100644
index 0000000..afafce5
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/dart_build.stamp
@@ -0,0 +1 @@
+{"inputs":["C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\native_assets.dart","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","C:\\Users\\angel\\flutter\\bin\\cache\\dart-sdk\\version","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml","d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\dart_build_result.json","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\dart_build_result.json"]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/dart_build_result.json b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/dart_build_result.json
new file mode 100644
index 0000000..07b7a98
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/dart_build_result.json
@@ -0,0 +1 @@
+{"build_start":"2026-05-15T12:32:59.437301","build_end":"2026-05-15T12:33:16.643706","dependencies":["file:///C:/Users/angel/flutter/bin/cache/dart-sdk/version","file:///D:/YandexDisk/voidea/flutter/.dart_tool/package_config.json","file:///D:/YandexDisk/voidea/flutter/pubspec.yaml","file:///d:/yandexdisk/voidea/flutter/.dart_tool/package_config.json"],"code_assets":[],"data_assets":[]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/debug_android_application.stamp b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/debug_android_application.stamp
new file mode 100644
index 0000000..5d85ca3
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/debug_android_application.stamp
@@ -0,0 +1 @@
+{"inputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\app.dill","C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\icon_tree_shaker.dart","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml","C:\\Users\\angel\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\ink_sparkle.frag","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\stretch_effect.frag","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\native_assets.json","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\_fe_analyzer_shared-85.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer-7.6.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer_plugin-0.13.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ansicolor-2.0.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\archive-4.0.9\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\args-2.7.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\boolean_selector-2.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build-2.5.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_config-1.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_daemon-4.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_resolvers-2.5.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner-2.5.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner_core-9.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_collection-5.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_value-8.12.6\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image-3.4.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_platform_interface-4.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_web-1.3.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\checked_yaml-2.0.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_builder-4.11.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\convert-3.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\csslib-1.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_core-0.7.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_visitor-1.0.0+7.7.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dart_style-3.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio_web_adapter-2.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fake_async-1.3.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_cache_manager-3.4.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_lints-5.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_native_splash-2.4.7\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_linux-1.2.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_macos-3.1.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_web-1.2.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_svg-2.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed-2.5.8\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed_annotation-2.4.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\frontend_server_client-4.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\graphs-2.3.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\html-0.15.6\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http-1.6.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_multi_server-3.2.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\image-4.8.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\io-1.0.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\js-0.6.7\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_serializable-6.9.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker-11.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_flutter_testing-3.0.10\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_testing-3.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\lints-5.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\matcher-0.12.19\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\octo_image-2.1.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_config-2.2.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_parsing-1.1.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pedantic-1.11.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pool-1.5.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\posix-6.5.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pubspec_parse-1.5.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_analyzer_utils-0.5.9\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_annotation-2.6.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_generator-2.6.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\rxdart-0.28.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf-1.4.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf_web_socket-3.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_gen-2.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_helper-1.3.7\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite-2.4.2+1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_channel-2.1.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_transform-2.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\test_api-0.7.10\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timing-1.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\universal_io-2.3.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_web-2.4.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics-1.2.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_codec-1.1.13\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_compiler-1.2.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vm_service-15.2.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\watcher-1.2.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web-1.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket-1.0.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket_channel-3.0.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\LICENSE","C:\\Users\\angel\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE","C:\\Users\\angel\\flutter\\packages\\flutter\\LICENSE","D:\\YandexDisk\\voidea\\flutter\\DOES_NOT_EXIST_RERUN_FOR_WILDCARD1058567949"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts\\MaterialIcons-Regular.otf","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\ink_sparkle.frag","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\stretch_effect.frag","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.bin","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NativeAssetsManifest.json"]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/flutter_assets.d b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/flutter_assets.d
new file mode 100644
index 0000000..e8f205a
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/flutter_assets.d
@@ -0,0 +1 @@
+ D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts\\MaterialIcons-Regular.otf D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\ink_sparkle.frag D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\stretch_effect.frag D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.bin D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NativeAssetsManifest.json: D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml C:\\Users\\angel\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\ink_sparkle.frag C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\stretch_effect.frag D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\native_assets.json C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\_fe_analyzer_shared-85.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer-7.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer_plugin-0.13.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ansicolor-2.0.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\archive-4.0.9\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\args-2.7.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\boolean_selector-2.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build-2.5.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_config-1.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_daemon-4.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_resolvers-2.5.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner-2.5.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner_core-9.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_collection-5.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_value-8.12.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image-3.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_platform_interface-4.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_web-1.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\checked_yaml-2.0.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_builder-4.11.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\convert-3.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\csslib-1.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_core-0.7.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_visitor-1.0.0+7.7.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dart_style-3.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio_web_adapter-2.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fake_async-1.3.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_cache_manager-3.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_lints-5.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_native_splash-2.4.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_linux-1.2.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_macos-3.1.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_web-1.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_svg-2.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed-2.5.8\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed_annotation-2.4.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\frontend_server_client-4.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\graphs-2.3.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\html-0.15.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http-1.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_multi_server-3.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\image-4.8.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\io-1.0.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\js-0.6.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_serializable-6.9.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker-11.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_flutter_testing-3.0.10\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_testing-3.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\lints-5.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\matcher-0.12.19\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\octo_image-2.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_config-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_parsing-1.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pedantic-1.11.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pool-1.5.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\posix-6.5.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pubspec_parse-1.5.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_analyzer_utils-0.5.9\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_annotation-2.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_generator-2.6.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\rxdart-0.28.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf-1.4.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf_web_socket-3.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_gen-2.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_helper-1.3.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite-2.4.2+1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_channel-2.1.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_transform-2.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\test_api-0.7.10\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timing-1.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\universal_io-2.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_web-2.4.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics-1.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_codec-1.1.13\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_compiler-1.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vm_service-15.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\watcher-1.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web-1.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket-1.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket_channel-3.0.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\LICENSE C:\\Users\\angel\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE C:\\Users\\angel\\flutter\\packages\\flutter\\LICENSE D:\\YandexDisk\\voidea\\flutter\\DOES_NOT_EXIST_RERUN_FOR_WILDCARD1058567949
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/gen_dart_plugin_registrant.stamp b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/gen_dart_plugin_registrant.stamp
new file mode 100644
index 0000000..8752078
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/gen_dart_plugin_registrant.stamp
@@ -0,0 +1 @@
+{"inputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart"]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/gen_localizations.stamp b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/gen_localizations.stamp
new file mode 100644
index 0000000..1b2d28c
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/gen_localizations.stamp
@@ -0,0 +1 @@
+{"inputs":[],"outputs":[]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/install_code_assets.d b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/install_code_assets.d
new file mode 100644
index 0000000..396360b
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/install_code_assets.d
@@ -0,0 +1 @@
+ D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\native_assets.json:
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/install_code_assets.stamp b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/install_code_assets.stamp
new file mode 100644
index 0000000..3193656
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/install_code_assets.stamp
@@ -0,0 +1 @@
+{"inputs":["C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\native_assets.dart","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\native_assets.json","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\native_assets.json"]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/kernel_snapshot_program.d b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/kernel_snapshot_program.d
new file mode 100644
index 0000000..c6be326
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/kernel_snapshot_program.d
@@ -0,0 +1 @@
+D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\app.dill: D:\\YandexDisk\\voidea\\flutter\\lib\\main.dart D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\dart_plugin_registrant.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\material.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\services.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\flutter_riverpod.dart D:\\YandexDisk\\voidea\\flutter\\lib\\app.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\flutter_local_notifications.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\path_provider_android.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\lib\\sqflite_android.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\url_launcher_android.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\path_provider_foundation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\lib\\sqflite_darwin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\url_launcher_ios.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\connectivity_plus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\flutter_local_notifications_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\package_info_plus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\path_provider_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\share_plus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\url_launcher_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\url_launcher_macos.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\flutter_secure_storage_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\path_provider_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\lib\\speech_to_text_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\url_launcher_windows.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\about.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_buttons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_icons_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\adaptive_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\arc.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\autocomplete.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\choice_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\color_scheme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\colors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\curves.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_source.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_form_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expand_icon.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filter_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_sparkle.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_splash.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_well.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_decorator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\magnifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_localizations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_anchor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\motion.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\no_splash.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\predictive_back_page_transitions_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider_parts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scaffold.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_anchor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_view_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selectable_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selection_area.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shadows.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_parts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_value_indicator_shape.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar_layout_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\stepper.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tabs.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_form_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_visibility.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\typography.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\widgets.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_manifest.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\autofill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\browser_context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\clipboard.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\deferred_component.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flavor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flutter_version.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\font_loader.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_inserted_content.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_key.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_maps.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\live_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codec.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codecs.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_channel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_views.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\predictive_back_event.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\process_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\restoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\scribe.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\sensitive_content.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\spell_check.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_channels.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_chrome.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_navigator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_sound.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_boundary.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing_delta.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_formatter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_input.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_layout_metrics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\undo_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\riverpod.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\consumer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\framework.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\router\\app_router.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\theme\\app_theme.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\theme_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\flutter_local_notifications_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\flutter_local_notifications_plugin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_flutter_local_notifications.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\bitmap.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\icon.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\message.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_sound.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\person.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\schedule_mode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_picture_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_text_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\default_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\inbox_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\media_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\messaging_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\interruption_level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action_option.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_attachment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category_option.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_enabled_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\ios\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\typedefs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider_android_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\sqflite_platform_interface.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\foundation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\url_launcher_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\path_provider_foundation_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\connectivity_plus_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\collection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\src\\connectivity_plus_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\capabilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\icon.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\sound.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\timeout.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\path_provider_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\share_plus_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\src\\flutter_secure_storage_windows_ffi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\folders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\path_provider_windows_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\speech_to_text_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\src\\messages.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\cupertino.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\scheduler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\back_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\rendering.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\animation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math_64.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\gestures.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\material_color_utilities.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\painting.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\characters.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\actions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\adapter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app_lifecycle_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\async.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autofill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\banner.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\basic.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\container.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_button_item.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\date.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\decorated_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_selection_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\display_feature_sub_screen.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_boundary.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\expansible.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\feedback.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\flutter_logo.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\form.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\framework.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\heroes.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\localizations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\lookup_boundary.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\magnifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\media_query.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator_pop_handler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_transitions_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pages.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pinned_header_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_menu_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_selectable_region_context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pop_scope.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\radio_group.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_menu_anchor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_radio.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_tooltip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\repeating_animation_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\router.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\routes.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable_helpers.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selectable_region.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selection_container.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sensitive_content.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shared_app_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_floating_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_resizing_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_tree.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\slotted_render_object_widget.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\snapshot_widget.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spacer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spell_check.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\standard_component_type.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\stretch_effect.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\system_context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tap_region.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_anchors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\texture.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\title.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\toggleable.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\transitions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\undo_history.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\visibility.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_state.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\_background_isolate_binary_messenger_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\lib\\state_notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_controller.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\internals.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\builders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\internals.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\go_router.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\flutter_secure_storage.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\login_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\register_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\two_factor_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\forgot_password_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\reset_password_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\dashboard\\dashboard_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_list_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_view_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_create_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_edit_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_input_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_sessions_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_list_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_detail_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\notifications\\notifications_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\settings\\screens\\settings_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\admin\\screens\\admin_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\onboarding\\onboarding_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\shell.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\client.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\constants\\app_constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\lib\\plugin_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\typedefs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\timezone.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\clock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\callback_dispatcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\method_channel_mappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\mappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\tz_datetime_mapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\jni.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\jni_flutter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\path_provider_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqlite_api.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\factory_platform.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\annotations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\assertions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\capabilities.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\collections.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\isolates.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\key.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\licenses.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\memory_allocations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\node.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\object.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\persistent_hash_map.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\platform.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\print.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\serialization.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\timeline.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\unicode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\url_launcher_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\objective_c.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\ffi_bindings.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\method_channel_connectivity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\algorithms.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\boollist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\canonicalized_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\comparators.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\functions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\list_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\priority_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\queue_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set_controller.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\unmodifiable_wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\nm.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications_platform_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notifications_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\hint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\method_channel_package_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_attribute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_version_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\lib\\xdg_directories.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\cross_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\platform_interface\\share_plus_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\windows_version_helper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\ffi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\flutter_secure_storage_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\lib\\path_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\win32.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\guid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\win32_wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\method_channel_speech_to_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\adaptive_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\app.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\checkbox.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\colors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\cupertino_focus_halo.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\expansion_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_section.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\magnifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\radio.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\route.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sheet.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\slider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\spell_check_suggestions_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\switch.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\priority.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\semantics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\decorated_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\editable.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\error.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flex.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flow.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image_filter_config.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_body.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\object.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_group.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_tree.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\stack.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\texture.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\tweens.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\wrap.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\curves.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\error_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\frustum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\intersection_result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\noise.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\obb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\opengl.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\plane.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quad.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quaternion.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\ray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\sphere.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\triangle.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\utilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector4.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\arena.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\converter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\eager.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\events.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\force_press.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_details.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_settings.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\long_press.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multitap.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\resampler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\scale.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap_and_drag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\team.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\blend\\blend.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\contrast\\contrast.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dislike\\dislike_analyzer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_color.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_scheme.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\material_dynamic_colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\variant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\cam16.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\hct.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\viewing_conditions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\core_palette.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\tonal_palette.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_celebi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wsmeans.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wu.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_content.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_expressive.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fidelity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fruit_salad.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_monochrome.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_neutral.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_rainbow.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_tonal_spot.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_vibrant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\score\\score.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\temperature\\temperature_cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\color_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\math_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\string_utils.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\alignment.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\basic_types.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\border_radius.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\borders.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_fit.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\circle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\clip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\colors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\geometry.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\gradient.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_cache.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_stream.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\inline_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\linear_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\oval_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\star_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\strut_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_painter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_scaler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_features.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_browser_detection_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_web_image_info_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_image_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\physics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_platform_selectable_region_context_menu_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_html_element_view_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta_meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\builders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\listenable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\pragma.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\run_guarded.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose_family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose_family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stack_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common\\env.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\always_alive.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\async_selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\provider_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\container.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\listen.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\foundation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\proxy_provider_listenable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\ref.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\scheduler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\value_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose_family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\configuration.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\delegate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\information_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\match.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\inherited_router.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\custom_transition_page.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\router.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\state.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\test\\test_flutter_secure_storage_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\android_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\apple_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\ios_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\linux_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\macos_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\web_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\windows_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\flutter_animate.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\auth_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\utils\\validators.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\ideas_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\workspace_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\loading_indicator.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\error_display.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\empty_state.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\funnel_status_badge.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\idea.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\widgets\\funnel_kanban.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\intl.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\collaboration.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\vote_buttons.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\comment_thread.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\endpoints.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\disk_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_to_text.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\voice.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\workspace.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\notification_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\calendar_integration_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\disk_integration_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\exceptions.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\admin.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\tariff.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\auth.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\dio.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\date_time.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\env.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\exceptions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location_database.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\default.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\clock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\core_bindings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jarray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jimplementer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jni.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jreference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jvalues.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\lang.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\nio.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\util.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\jni_flutter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\method_channel_path_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\_internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_database_factory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sql.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\open_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\transaction.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_executor_iterate_ext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_ext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_debug.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command_executor_ext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\platform_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_import.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_method_channel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_capabilities_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_timeline_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\method_channel_url_launcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\pub_semver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\autorelease.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\block.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\c_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\cf_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\globals.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_array.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_date.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_dictionary.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_enumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_input_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_mutable_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_number.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_exported.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\observer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\os_version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\protocol_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\runtime_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\empty_unmodifiable_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\src\\network_manager_client.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\dbus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\dbus_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notification_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\platform_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\storage.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\x_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\method_channel\\method_channel_share.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\allocation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\arena.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf16.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\method_channel_flutter_secure_storage.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\bstr.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\callbacks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_metadata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_nodoc.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\dispatcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\exceptions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\functions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\guid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\inline.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\macros.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\propertykey.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\variant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winmd_constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winrt_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\dialogs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\filetime.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\int_to_hexstring.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\list_to_blob.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_ansi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string_array.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\unpack_utf16.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\advapi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bluetoothapis.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bthprops.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comctl32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comdlg32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\crypt32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dbghelp.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dwmapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dxva2.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\gdi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\iphlpapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\kernel32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\magnification.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\netapi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ntdll.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ole32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\oleaut32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\powrprof.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\propsys.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\rometadata.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\scarddlg.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\setupapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shell32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shlwapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\user32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\uxtheme.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\version.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wevtapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winmm.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winscard.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winspool.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wlanapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wtsapi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\xinput1_4.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_apiquery_l2_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_1.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_2.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_handle_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_path_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_sysinfo_l1_2_3.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_error_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_string_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_1.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_shcore_scaling_l1_1_1.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_wsl_api_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\combase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iagileobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iapplicationactivationmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfile.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfilesenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplication.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplicationsenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestospackagedependency.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependenciesenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependency.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackageid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestproperties.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxpackagereader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiocaptureclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclientduckingcontrol.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclockadjustment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiorenderclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiostreamvolume.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ibindctx.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ichannelaudiovolume.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iclassfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpoint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpointcontainer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idesktopwallpaper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idispatch.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumidlist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienummoniker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworkconnections.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumresources.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumspellingerror.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumstring.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumvariant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumwbemclassobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ierrorinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialogcustomize.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileisinuse.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileopendialog.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifilesavedialog.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinitializewithwindow.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinspectable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfolder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfoldermanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataassemblyimport.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenserex.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevicecollection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdeviceenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immendpoint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immnotificationclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imodalwindow.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imoniker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetwork.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworkconnection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanagerevents.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistfile.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistmemory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersiststream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipropertystore.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iprovideclassinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irestrictederrorinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irunningobjecttable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensorcollection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensordatareport.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensormanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isequentialstream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellfolder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemarray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemfilter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemimagefactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemresources.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdatalist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdual.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellservice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isimpleaudiovolume.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechaudioformat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechbasestream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttoken.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttokens.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoicestatus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechwaveformatex.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerchangedeventhandler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellingerror.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeventsource.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispnotifysource.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispvoice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\istream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isupporterrorinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\itypeinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationandcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationannotationpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationboolcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcacherequest.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcustomnavigationpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdockpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdragpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdroptargetpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement9.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelementarray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationexpandcollapsepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgriditempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgridpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationinvokepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationitemcontainerpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationlegacyiaccessiblepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationmultipleviewpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationnotcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationobjectmodelpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationorcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationpropertycondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactoryentry.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactorymapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationrangevaluepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationstylespattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationsynchronizedinputpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtableitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtablepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextchildpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtexteditpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrangearray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtogglepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtreewalker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvaluepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvirtualizeditempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationwindowpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iunknown.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuri.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ivirtualdesktopmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemclassobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemconfigurerefresher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemcontext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemhiperfenum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemlocator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemobjectaccess.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemrefresher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemservices.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwebauthenticationcoremanagerinterop.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwinhttprequest.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\contrast_curve.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\tone_delta_pair.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\src\\hct_solver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider_lab.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters_impl.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_positioner.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\tolerance.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\stack_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\logging.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\error_screen.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\cupertino.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\material.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\path_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\logging.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effect_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\flutter_animate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effects.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\lib\\shimmer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\global_state.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\plural_rules.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi_formatter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\micro_money.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\text_direction.dart D:\\YandexDisk\\voidea\\flutter\\lib\\api\\disk.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\cancel_token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\form_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\headers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\log.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\parameter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\redirect_record.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\tzdb.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\stopwatch.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\generated_bindings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\primitive_jarrays.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\accessors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jstring.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jlist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jboolean.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jbyte.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jcharacter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jdouble.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jfloat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jinteger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jlong.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jnumber.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jshort.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbuffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbyte_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jclass.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jprimitives.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jiterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jmap.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jset.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\generated_plugin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\kotlin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\method_invocation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\version_check.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\batch.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\cursor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\collection_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\path_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\value_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\utils\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\synchronized.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\arg_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\import_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\logger\\sqflite_logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\compat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\factory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_constraint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_union.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_address.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_client.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_client.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_call.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_response.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_server.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_signal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\posix.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\characters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\internal_style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\parsed_path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\posix.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\url.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\mime.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\_internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\breaks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_linux.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_macos.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_win32.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\chain.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\frame.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\unparsed_frame.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\log_record.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\warn.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\scroll_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_notifier_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\change_notifier_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\align_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\blur_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\box_shadow_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\callback_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\color_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\crossfade_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\custom_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\elevation_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\fade_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\flip_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\follow_path_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\listen_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\move_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\rotate_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\saturate_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\scale_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shader_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shake_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shimmer_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\slide_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\swap_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\then_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\tint_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\toggle_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\visibility_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\animation_controller_loop_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\num_duration_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\offset_copy_with_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\date_symbols.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\date_format_internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_computation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\regexp.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\string_stack.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format_field.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\compact_number_format.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\json_annotation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\legacy_api.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_uri.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapters\\io_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio\\dio_for_native.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\async.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\imply_content_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\progress_stream\\io_progress_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response\\response_stream_handler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\http_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file\\io_multipart_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\background_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\fused_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\sync_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\global_env_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\jni_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\local_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\testing\\fake_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\env_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\basic_lock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\reentrant_lock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\lock_extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\multi_lock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite_logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\patterns.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_uuid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_bus_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_error_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_interface_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspectable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_match_rule.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_member_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_message.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_tree.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_peer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_properties.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_read_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_write_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_server.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_multipart_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_shared.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\rng.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\validation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\parsing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v1.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8generic.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_chain.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\stack_zone_specification.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\vm_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\flutter_shaders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\allowed_keys_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\checked_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\enum_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_enum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_key.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_literal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\type_conversion.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_memoizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\byte_collector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\cancelable_operation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\chunked_stream_reader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\event_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_consumer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\future_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\lazy_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\null_stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\restartable_timer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\single_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\sink_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_closer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_splitter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\subscription_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed_stream_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\authentication_challenge.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\case_insensitive_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\http_date.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\media_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\consolidate_bytes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\transform_empty_to_null.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\default_mapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\entity_mapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\null_mapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\attribute_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\node_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\format_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parent_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parser_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\tag_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\type_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\ancestors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\comparison.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\descendants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\find.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\following.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\mutator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\nodes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\preceding.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\sibling.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_attributes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_children.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_visitor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_writer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\attribute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\cdata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\comment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\declaration.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\doctype.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document_fragment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\node.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\processing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\text.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\normalizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\pretty_writer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\visitor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\writer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\default_extension_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\bound_multipart_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\char_code.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\magic_number.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\crypto.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\fixnum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\animated_sampler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\shader_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\inkwell_shader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\set_uniforms.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\reject_errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\handler_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\stream_transformer_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\typed.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\scan.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\decoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\encoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\dtd\\external_id.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\namespace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\named_entities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\core.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name_matcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\node_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\predicate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml_events.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\prefix_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\simple_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hmac.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\md5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha1.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha256.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int32.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int64.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\intx.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\line_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\source_span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\charcodes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\event.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\event_codec.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\node_codec.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_decoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_encoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_decoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_encoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\cdata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\comment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\declaration.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\doctype.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\end_element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\processing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\start_element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\text.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\each_event.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\flatten.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\normalizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\subtree_selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\with_parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\event_attribute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\visitor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512_fastsinks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\utilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\error_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\frustum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\intersection_result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\noise.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\obb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\opengl.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\plane.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quad.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quaternion.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\ray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\sphere.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\triangle.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\utilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\eager_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\relative_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_with_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_buffers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\pragma.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\newline.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\annotator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\petitparser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\conversion_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\list_converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\named.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\term_glyph.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\highlighter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\delegate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\definition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\expression.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\matcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\character_data_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\ascii_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\unicode_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\top_level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\grammar.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\reference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\resolve.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\accept.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\continuation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\flatten.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\permute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\pick.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\trim.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\where.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any_of.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\char.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\digit.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\letter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\lowercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\none_of.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\uppercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\whitespace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\word.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\and.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\choice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\not.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\optional.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\sequence.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\settable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\skip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\end.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\epsilon.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\failure.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\label.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\position.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\predicate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\single_character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\unicode_character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\greedy.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\lazy.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\limited.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\possessive.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\repeating.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\separated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\unbounded.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\failure_joiner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\labeled.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\resolvable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\separated_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\reference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\undefined.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\reflection\\iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\sequential.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\code.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\optimize.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\char.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\digit.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\letter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lowercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\not.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\uppercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\whitespace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\word.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_9.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_match.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lookup.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterator.dart
diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/kernel_snapshot_program.stamp b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/kernel_snapshot_program.stamp
new file mode 100644
index 0000000..8a03f8c
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/kernel_snapshot_program.stamp
@@ -0,0 +1 @@
+{"inputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\common.dart","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","D:\\YandexDisk\\voidea\\flutter\\lib\\main.dart","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\dart_plugin_registrant.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\material.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\services.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\flutter_riverpod.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\app.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\flutter_local_notifications.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\path_provider_android.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\lib\\sqflite_android.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\url_launcher_android.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\path_provider_foundation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\lib\\sqflite_darwin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\url_launcher_ios.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\connectivity_plus.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\flutter_local_notifications_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\package_info_plus.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\path_provider_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\share_plus.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\url_launcher_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\url_launcher_macos.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\flutter_secure_storage_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\path_provider_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\lib\\speech_to_text_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\url_launcher_windows.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\about.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_buttons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_chip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_icons_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\adaptive_text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\arc.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\autocomplete.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\choice_chip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\color_scheme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\colors.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\constants.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\curves.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_source.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_form_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expand_icon.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filter_chip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_sparkle.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_splash.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_well.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_chip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_decorator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\magnifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_localizations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_anchor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_style.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\motion.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\no_splash.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\predictive_back_page_transitions_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider_parts.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scaffold.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_anchor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_view_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selectable_text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selection_area.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shadows.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_parts.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_value_indicator_shape.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar_layout_delegate.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\stepper.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_controller.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tabs.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_form_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_visibility.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\typography.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\widgets.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_manifest.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\autofill.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\browser_context_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\clipboard.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\deferred_component.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flavor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flutter_version.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\font_loader.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_inserted_content.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_key.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_maps.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\live_text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codec.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codecs.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_channel.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_views.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\predictive_back_event.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\process_text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\restoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\scribe.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\sensitive_content.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\service_extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\spell_check.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_channels.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_chrome.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_navigator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_sound.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_boundary.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing_delta.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_formatter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_input.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_layout_metrics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\undo_manager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\riverpod.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\consumer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\framework.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\router\\app_router.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\theme\\app_theme.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\theme_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\flutter_local_notifications_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\flutter_local_notifications_plugin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\initialization_settings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\notification_details.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_flutter_local_notifications.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\bitmap.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\icon.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\initialization_settings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\message.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel_group.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_details.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_sound.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\person.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\schedule_mode.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_picture_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_text_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\default_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\inbox_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\media_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\messaging_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\initialization_settings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\interruption_level.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action_option.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_attachment.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category_option.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_details.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_enabled_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\ios\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\typedefs.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider_android_real.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\sqflite_platform_interface.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\foundation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\link.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\url_launcher_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\src\\messages.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\path_provider_foundation_real.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\src\\messages.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\connectivity_plus_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\collection.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\src\\connectivity_plus_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\capabilities.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\icon.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\initialization_settings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\location.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\notification_details.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\sound.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\timeout.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\path_provider_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\share_plus_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\src\\messages.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\src\\messages.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\src\\flutter_secure_storage_windows_ffi.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\folders.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\path_provider_windows_real.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\speech_to_text_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\src\\messages.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\cupertino.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\scheduler.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\back_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\rendering.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\animation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math_64.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\gestures.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\material_color_utilities.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\painting.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\characters.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\actions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\adapter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app_lifecycle_listener.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\async.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autofill.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\banner.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\basic.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\container.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_button_item.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_controller.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\date.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\decorated_sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_selection_style.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\display_feature_sub_screen.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_boundary.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\expansible.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\feedback.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\flutter_logo.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\form.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\framework.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\heroes.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\localizations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\lookup_boundary.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\magnifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\media_query.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator_pop_handler.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overlay.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_transitions_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pages.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pinned_header_sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_menu_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_selectable_region_context_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pop_scope.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\radio_group.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_menu_anchor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_radio.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_tooltip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\repeating_animation_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\router.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\routes.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_delegate.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable_helpers.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selectable_region.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selection_container.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sensitive_content.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\service_extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shared_app_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_floating_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_resizing_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_tree.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\slotted_render_object_widget.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\snapshot_widget.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spacer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spell_check.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\standard_component_type.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\stretch_effect.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\system_context_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\table.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tap_region.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_anchors.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\texture.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\title.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\toggleable.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\transitions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_viewport.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\undo_history.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\viewport.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\visibility.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_state.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\_background_isolate_binary_messenger_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\lib\\state_notifier.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_controller.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\internals.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\builders.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\internals.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\go_router.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\flutter_secure_storage.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\login_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\register_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\two_factor_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\forgot_password_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\reset_password_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\dashboard\\dashboard_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_list_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_view_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_create_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_edit_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_input_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_sessions_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_list_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_detail_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\notifications\\notifications_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\settings\\screens\\settings_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\admin\\screens\\admin_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\onboarding\\onboarding_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\shell.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\client.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\constants\\app_constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\lib\\plugin_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\typedefs.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\timezone.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\clock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\callback_dispatcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\method_channel_mappers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\mappers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\tz_datetime_mapper.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\jni.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\jni_flutter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\path_provider_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqlite_api.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\factory_platform.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\annotations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\assertions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\capabilities.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\collections.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\constants.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\isolates.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\key.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\licenses.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\memory_allocations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\node.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\object.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\persistent_hash_map.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\platform.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\print.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\serialization.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\service_extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\timeline.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\unicode.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\url_launcher_platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\objective_c.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\ffi_bindings.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\method_channel_connectivity.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\algorithms.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\boollist.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\canonicalized_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\comparators.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\functions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_zip.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\list_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\priority_queue.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\queue_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set_controller.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\unmodifiable_wrappers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\wrappers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\nm.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications_platform_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notifications_manager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\hint.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\method_channel_package_info.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\path.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_attribute.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_version_info.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\lib\\xdg_directories.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\cross_file.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\platform_interface\\share_plus_platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\windows_version_helper.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\ffi.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\flutter_secure_storage_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\lib\\path_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\win32.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\guid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\win32_wrappers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\method_channel_speech_to_text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\adaptive_text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\app.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\checkbox.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\colors.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\constants.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\cupertino_focus_halo.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\expansion_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_section.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\magnifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\picker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\radio.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\route.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sheet.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\slider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\spell_check_suggestions_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\switch.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\priority.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\service_extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\semantics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\box.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\decorated_sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\editable.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\error.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flex.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flow.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image_filter_config.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_body.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\object.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\service_extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_group.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_tree.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\stack.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\texture.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\tweens.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\wrap.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_style.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\curves.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\colors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\error_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\frustum.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\intersection_result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\noise.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\obb3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\opengl.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\plane.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quad.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quaternion.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\ray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\sphere.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\triangle.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\utilities.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector4.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\arena.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\constants.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\converter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\eager.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\events.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\force_press.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_details.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_settings.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\long_press.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multitap.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\resampler.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\scale.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap_and_drag.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\team.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\blend\\blend.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\contrast\\contrast.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dislike\\dislike_analyzer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_color.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_scheme.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\material_dynamic_colors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\variant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\cam16.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\hct.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\viewing_conditions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\core_palette.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\tonal_palette.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_celebi.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wsmeans.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wu.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_content.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_expressive.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fidelity.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fruit_salad.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_monochrome.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_neutral.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_rainbow.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_tonal_spot.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_vibrant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\score\\score.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\temperature\\temperature_cache.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\color_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\math_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\string_utils.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\alignment.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\basic_types.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\border_radius.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\borders.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_fit.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\circle_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\clip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\colors.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\geometry.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\gradient.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_cache.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_provider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_stream.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\inline_span.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\linear_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\oval_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\star_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\strut_style.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_painter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_scaler.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_span.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_style.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\constants.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_features.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_browser_detection_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_web_image_info_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_image_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\physics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_platform_selectable_region_context_menu_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_html_element_view_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta_meta.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\builders.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\listenable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\pragma.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\run_guarded.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose_family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose_family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stack_trace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common\\env.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\always_alive.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\async_selector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\provider_base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\element.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\container.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\listen.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\foundation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\proxy_provider_listenable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\ref.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\selector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\scheduler.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\value_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose_family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\configuration.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\delegate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\information_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\match.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\errors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\inherited_router.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\custom_transition_page.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\router.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\state.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\test\\test_flutter_secure_storage_platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\android_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\apple_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\ios_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\linux_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\macos_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\web_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\windows_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\flutter_animate.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\auth_provider.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\utils\\validators.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\ideas_provider.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\workspace_provider.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\loading_indicator.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\error_display.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\empty_state.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\funnel_status_badge.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\idea.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\widgets\\funnel_kanban.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\intl.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\collaboration.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\vote_buttons.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\comment_thread.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\endpoints.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\disk_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_to_text.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\voice.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\workspace.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\notification_provider.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\calendar_integration_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\disk_integration_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\exceptions.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\admin.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\tariff.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\auth.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\dio.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\date_time.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\env.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\exceptions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location_database.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\default.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\clock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\core_bindings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\errors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jarray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jimplementer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jni.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jobject.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jreference.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jvalues.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\lang.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\nio.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\util.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\jni_flutter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\method_channel_path_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\_internal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_database_factory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sql.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\open_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\transaction.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\constant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_executor_iterate_ext.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_ext.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_debug.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command_executor_ext.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\platform_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_import.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_method_channel.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_capabilities_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_timeline_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\method_channel_url_launcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\pub_semver.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\autorelease.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\block.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\c_bindings_generated.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\cf_string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\converter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\globals.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\internal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_array.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_date.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_dictionary.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_enumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_input_stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_mutable_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_number.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_exported.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\observer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\os_version.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\protocol_builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\runtime_bindings_generated.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\selector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\empty_unmodifiable_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\src\\network_manager_client.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\dbus.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\dbus_wrapper.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notification_info.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\platform_info.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\storage.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\context.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id_real.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\x_file.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\method_channel\\method_channel_share.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\allocation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\arena.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf16.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf8.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\method_channel_flutter_secure_storage.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\bstr.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\callbacks.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_metadata.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_nodoc.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\dispatcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\exceptions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\functions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\guid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\inline.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\macros.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\propertykey.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\variant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winmd_constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winrt_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\dialogs.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\filetime.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\int_to_hexstring.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\list_to_blob.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_ansi.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string_array.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\unpack_utf16.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\advapi32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bluetoothapis.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bthprops.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comctl32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comdlg32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\crypt32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dbghelp.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dwmapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dxva2.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\gdi32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\iphlpapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\kernel32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\magnification.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\netapi32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ntdll.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ole32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\oleaut32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\powrprof.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\propsys.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\rometadata.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\scarddlg.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\setupapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shell32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shlwapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\user32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\uxtheme.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\version.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wevtapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winmm.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winscard.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winspool.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wlanapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wtsapi32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\xinput1_4.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_apiquery_l2_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_1.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_2.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_handle_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_path_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_sysinfo_l1_2_3.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_error_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_string_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_1.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_shcore_scaling_l1_1_1.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_wsl_api_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\combase.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iagileobject.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iapplicationactivationmanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfactory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfile.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfilesenumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplication.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplicationsenumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestospackagedependency.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependenciesenumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependency.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackageid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestproperties.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader6.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader7.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxpackagereader.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiocaptureclient.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclientduckingcontrol.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclockadjustment.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiorenderclient.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionenumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiostreamvolume.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ibindctx.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ichannelaudiovolume.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iclassfactory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpoint.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpointcontainer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idesktopwallpaper.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idispatch.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumidlist.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienummoniker.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworkconnections.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworks.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumresources.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumspellingerror.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumstring.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumvariant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumwbemclassobject.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ierrorinfo.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialogcustomize.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileisinuse.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileopendialog.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifilesavedialog.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinitializewithwindow.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinspectable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfolder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfoldermanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataassemblyimport.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenserex.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevice.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevicecollection.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdeviceenumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immendpoint.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immnotificationclient.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imodalwindow.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imoniker.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetwork.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworkconnection.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanagerevents.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersist.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistfile.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistmemory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersiststream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipropertystore.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iprovideclassinfo.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irestrictederrorinfo.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irunningobjecttable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensorcollection.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensordatareport.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensormanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isequentialstream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellfolder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemarray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemfilter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemimagefactory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemresources.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdatalist.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdual.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellservice.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isimpleaudiovolume.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechaudioformat.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechbasestream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttoken.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttokens.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoice.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoicestatus.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechwaveformatex.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerchangedeventhandler.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerfactory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellingerror.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeventsource.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispnotifysource.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispvoice.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\istream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isupporterrorinfo.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\itypeinfo.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation6.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationandcondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationannotationpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationboolcondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcacherequest.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcustomnavigationpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdockpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdragpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdroptargetpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement6.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement7.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement8.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement9.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelementarray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationexpandcollapsepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgriditempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgridpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationinvokepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationitemcontainerpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationlegacyiaccessiblepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationmultipleviewpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationnotcondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationobjectmodelpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationorcondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationpropertycondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactoryentry.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactorymapping.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationrangevaluepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollitempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionitempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetitempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationstylespattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationsynchronizedinputpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtableitempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtablepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextchildpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtexteditpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrangearray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtogglepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtreewalker.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvaluepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvirtualizeditempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationwindowpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iunknown.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuri.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ivirtualdesktopmanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemclassobject.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemconfigurerefresher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemcontext.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemhiperfenum.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemlocator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemobjectaccess.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemrefresher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemservices.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwebauthenticationcoremanagerinterop.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwinhttprequest.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\contrast_curve.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\tone_delta_pair.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\src\\hct_solver.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider_lab.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters_impl.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_positioner.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\tolerance.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\stack_trace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\logging.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\error_screen.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\cupertino.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\material.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\path_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\logging.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effect_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\flutter_animate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapters.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effects.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\lib\\shimmer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\global_state.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\plural_rules.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi_formatter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\micro_money.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser_base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\text_direction.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\api\\disk.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\cancel_token.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\form_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\headers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\log.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\parameter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\redirect_record.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\tzdb.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\stopwatch.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\generated_bindings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\primitive_jarrays.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\accessors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jstring.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jlist.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jboolean.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jbyte.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jcharacter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jdouble.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jfloat.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jinteger.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jlong.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jnumber.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jshort.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbuffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbyte_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jclass.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jprimitives.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jiterator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jmap.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jset.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\generated_plugin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\kotlin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\method_invocation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\version_check.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\batch.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\cursor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\collection_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\path_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\value_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\utils\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\synchronized.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\arg_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\import_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\logger\\sqflite_logger.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\compat.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\constant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\factory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_constraint.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_range.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_union.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_generated.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_address.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_client.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_client.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_call.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_response.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object_manager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_server.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_signal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_value.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\posix.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\file_system.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\characters.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\internal_style.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\parsed_path.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\posix.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\url.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\mime.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\_internal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\breaks.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\table.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_linux.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_macos.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_win32.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\chain.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\frame.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\trace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\unparsed_frame.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\level.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\log_record.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\logger.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\warn.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\scroll_adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_notifier_adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\change_notifier_adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\align_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\blur_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\box_shadow_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\callback_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\color_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\crossfade_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\custom_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\elevation_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\fade_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\flip_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\follow_path_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\listen_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\move_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\rotate_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\saturate_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\scale_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shader_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shake_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shimmer_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\slide_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\swap_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\then_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\tint_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\toggle_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\visibility_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\animation_controller_loop_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\num_duration_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\offset_copy_with_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\date_symbols.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\date_format_internal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_computation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\regexp.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\string_stack.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format_field.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format_parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\compact_number_format.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\json_annotation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\legacy_api.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_uri.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapters\\io_adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio\\dio_for_native.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\async.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\imply_content_type.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\progress_stream\\io_progress_stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response\\response_stream_handler.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\http_parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file\\io_multipart_file.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\background_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\fused_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\sync_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\global_env_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\jni_bindings_generated.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\local_platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\testing\\fake_platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\env_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\basic_lock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\reentrant_lock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\lock_extension.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\multi_lock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite_logger.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\patterns.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_uuid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_bus_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_error_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_interface_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspectable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_match_rule.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_member_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_message.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_manager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_tree.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_peer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_properties.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_read_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_write_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_server.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\extension.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_multipart_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_shared.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_type.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\rng.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\validation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\parsing.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid_value.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v1.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v6.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v7.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8generic.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_chain.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\stack_zone_specification.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_trace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\vm_trace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\flutter_shaders.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\allowed_keys_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\checked_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\enum_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_converter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_enum.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_key.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_literal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_value.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher_string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\type_conversion.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_cache.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_memoizer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\byte_collector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\cancelable_operation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\chunked_stream_reader.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\event_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\future.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_consumer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_subscription.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\future_group.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\lazy_stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\null_stream_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\restartable_timer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\error.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\future.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\value.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\single_subscription_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\sink_base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_closer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_completer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_group.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_queue.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_completer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_splitter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_subscription_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_zip.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\subscription_stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed_stream_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\authentication_challenge.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\case_insensitive_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\http_date.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\media_type.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\consolidate_bytes.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\transform_empty_to_null.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\default_mapping.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\entity_mapping.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\null_mapping.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\attribute_type.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\node_type.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\format_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parent_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parser_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\tag_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\type_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\ancestors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\comparison.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\descendants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\find.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\following.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\mutator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\nodes.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\parent.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\preceding.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\sibling.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_attributes.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_children.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_parent.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_visitor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_writer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\attribute.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\cdata.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\comment.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\declaration.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\doctype.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document_fragment.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\element.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\node.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\processing.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\text.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\token.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\normalizer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\pretty_writer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\visitor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\writer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\default_extension_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\bound_multipart_stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\char_code.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\magic_number.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\crypto.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\fixnum.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\animated_sampler.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\shader_builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\inkwell_shader.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\set_uniforms.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed\\stream_subscription.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\reject_errors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\handler_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\stream_transformer_wrapper.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\typed.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\string_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\scan.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\decoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\encoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\dtd\\external_id.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\namespace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\named_entities.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\core.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name_matcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\node_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\predicate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml_events.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_value.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\prefix_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\simple_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hmac.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\md5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha1.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha256.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int32.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int64.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\intx.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\line_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\span_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\string_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\source_span.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\charcodes.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\context.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\token.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\event.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\event_codec.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\node_codec.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_decoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_encoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_decoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_encoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\cdata.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\comment.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\declaration.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\doctype.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\end_element.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\processing.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\start_element.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\text.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\each_event.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\flatten.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\normalizer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\subtree_selector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\with_parent.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\event_attribute.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\visitor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512_fastsinks.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\utilities.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\colors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\error_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\frustum.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\intersection_result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\noise.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\obb3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\opengl.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\plane.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quad.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quaternion.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\ray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\sphere.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\triangle.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\utilities.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\charcode.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\eager_span_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\relative_span_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\file.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_with_context.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_queue.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_buffers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\pragma.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\token.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\newline.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_location.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_parent.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\annotator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\petitparser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\conversion_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\list_converter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\named.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\term_glyph.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\highlighter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\delegate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\definition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\expression.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\matcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\cache.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\character_data_parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\ascii_glyph_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\glyph_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\unicode_glyph_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\top_level.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\charcode.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\colors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\grammar.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\reference.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\resolve.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\group.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\accept.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\constant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\continuation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\flatten.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\permute.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\pick.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\trim.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\where.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any_of.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\char.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\digit.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\letter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\lowercase.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\none_of.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\pattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\range.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\uppercase.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\whitespace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\word.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\and.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\choice.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\not.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\optional.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\sequence.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\settable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\skip.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\end.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\epsilon.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\failure.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\label.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\position.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\character.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\converter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\pattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\predicate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\single_character.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\unicode_character.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\character.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\greedy.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\lazy.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\limited.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\possessive.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\repeating.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\separated.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\unbounded.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\failure_joiner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\labeled.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\resolvable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\separated_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\reference.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\undefined.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\reflection\\iterable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_pattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\sequential.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\constant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\code.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\optimize.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\char.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\digit.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\letter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lowercase.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\not.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\range.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\uppercase.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\whitespace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\word.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_6.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_7.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_8.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_9.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_match.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lookup.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterator.dart"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\app.dill","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\app.dill"]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/native_assets.json b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/native_assets.json
new file mode 100644
index 0000000..523bfc7
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/native_assets.json
@@ -0,0 +1 @@
+{"format-version":[1,0,0],"native-assets":{}}
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/outputs.json b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/outputs.json
new file mode 100644
index 0000000..a10800b
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/outputs.json
@@ -0,0 +1 @@
+["D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts\\MaterialIcons-Regular.otf","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\ink_sparkle.frag","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\stretch_effect.frag","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.bin","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NativeAssetsManifest.json"]
\ No newline at end of file
diff --git a/flutter/.dart_tool/flutter_build/dart_plugin_registrant.dart b/flutter/.dart_tool/flutter_build/dart_plugin_registrant.dart
new file mode 100644
index 0000000..542b7b2
--- /dev/null
+++ b/flutter/.dart_tool/flutter_build/dart_plugin_registrant.dart
@@ -0,0 +1,262 @@
+//
+// Generated file. Do not edit.
+// This file is generated from template in file `flutter_tools/lib/src/flutter_plugins.dart`.
+//
+
+// @dart = 3.4
+
+import 'dart:io'; // flutter_ignore: dart_io_import.
+import 'package:flutter_local_notifications/flutter_local_notifications.dart' as flutter_local_notifications;
+import 'package:path_provider_android/path_provider_android.dart' as path_provider_android;
+import 'package:sqflite_android/sqflite_android.dart' as sqflite_android;
+import 'package:url_launcher_android/url_launcher_android.dart' as url_launcher_android;
+import 'package:flutter_local_notifications/flutter_local_notifications.dart' as flutter_local_notifications;
+import 'package:path_provider_foundation/path_provider_foundation.dart' as path_provider_foundation;
+import 'package:sqflite_darwin/sqflite_darwin.dart' as sqflite_darwin;
+import 'package:url_launcher_ios/url_launcher_ios.dart' as url_launcher_ios;
+import 'package:connectivity_plus/connectivity_plus.dart' as connectivity_plus;
+import 'package:flutter_local_notifications_linux/flutter_local_notifications_linux.dart' as flutter_local_notifications_linux;
+import 'package:package_info_plus/package_info_plus.dart' as package_info_plus;
+import 'package:path_provider_linux/path_provider_linux.dart' as path_provider_linux;
+import 'package:share_plus/share_plus.dart' as share_plus;
+import 'package:url_launcher_linux/url_launcher_linux.dart' as url_launcher_linux;
+import 'package:flutter_local_notifications/flutter_local_notifications.dart' as flutter_local_notifications;
+import 'package:path_provider_foundation/path_provider_foundation.dart' as path_provider_foundation;
+import 'package:sqflite_darwin/sqflite_darwin.dart' as sqflite_darwin;
+import 'package:url_launcher_macos/url_launcher_macos.dart' as url_launcher_macos;
+import 'package:flutter_secure_storage_windows/flutter_secure_storage_windows.dart' as flutter_secure_storage_windows;
+import 'package:package_info_plus/package_info_plus.dart' as package_info_plus;
+import 'package:path_provider_windows/path_provider_windows.dart' as path_provider_windows;
+import 'package:share_plus/share_plus.dart' as share_plus;
+import 'package:speech_to_text_windows/speech_to_text_windows.dart' as speech_to_text_windows;
+import 'package:url_launcher_windows/url_launcher_windows.dart' as url_launcher_windows;
+
+@pragma('vm:entry-point')
+class _PluginRegistrant {
+
+ @pragma('vm:entry-point')
+ static void register() {
+ if (Platform.isAndroid) {
+ try {
+ flutter_local_notifications.AndroidFlutterLocalNotificationsPlugin.registerWith();
+ } catch (err) {
+ print(
+ '`flutter_local_notifications` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ try {
+ path_provider_android.PathProviderAndroid.registerWith();
+ } catch (err) {
+ print(
+ '`path_provider_android` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ try {
+ sqflite_android.SqfliteAndroid.registerWith();
+ } catch (err) {
+ print(
+ '`sqflite_android` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ try {
+ url_launcher_android.UrlLauncherAndroid.registerWith();
+ } catch (err) {
+ print(
+ '`url_launcher_android` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ } else if (Platform.isIOS) {
+ try {
+ flutter_local_notifications.IOSFlutterLocalNotificationsPlugin.registerWith();
+ } catch (err) {
+ print(
+ '`flutter_local_notifications` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ try {
+ path_provider_foundation.PathProviderFoundation.registerWith();
+ } catch (err) {
+ print(
+ '`path_provider_foundation` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ try {
+ sqflite_darwin.SqfliteDarwin.registerWith();
+ } catch (err) {
+ print(
+ '`sqflite_darwin` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ try {
+ url_launcher_ios.UrlLauncherIOS.registerWith();
+ } catch (err) {
+ print(
+ '`url_launcher_ios` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ } else if (Platform.isLinux) {
+ try {
+ connectivity_plus.ConnectivityPlusLinuxPlugin.registerWith();
+ } catch (err) {
+ print(
+ '`connectivity_plus` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ try {
+ flutter_local_notifications_linux.LinuxFlutterLocalNotificationsPlugin.registerWith();
+ } catch (err) {
+ print(
+ '`flutter_local_notifications_linux` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ try {
+ package_info_plus.PackageInfoPlusLinuxPlugin.registerWith();
+ } catch (err) {
+ print(
+ '`package_info_plus` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ try {
+ path_provider_linux.PathProviderLinux.registerWith();
+ } catch (err) {
+ print(
+ '`path_provider_linux` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ try {
+ share_plus.SharePlusLinuxPlugin.registerWith();
+ } catch (err) {
+ print(
+ '`share_plus` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ try {
+ url_launcher_linux.UrlLauncherLinux.registerWith();
+ } catch (err) {
+ print(
+ '`url_launcher_linux` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ } else if (Platform.isMacOS) {
+ try {
+ flutter_local_notifications.MacOSFlutterLocalNotificationsPlugin.registerWith();
+ } catch (err) {
+ print(
+ '`flutter_local_notifications` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ try {
+ path_provider_foundation.PathProviderFoundation.registerWith();
+ } catch (err) {
+ print(
+ '`path_provider_foundation` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ try {
+ sqflite_darwin.SqfliteDarwin.registerWith();
+ } catch (err) {
+ print(
+ '`sqflite_darwin` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ try {
+ url_launcher_macos.UrlLauncherMacOS.registerWith();
+ } catch (err) {
+ print(
+ '`url_launcher_macos` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ } else if (Platform.isWindows) {
+ try {
+ flutter_secure_storage_windows.FlutterSecureStorageWindows.registerWith();
+ } catch (err) {
+ print(
+ '`flutter_secure_storage_windows` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ try {
+ package_info_plus.PackageInfoPlusWindowsPlugin.registerWith();
+ } catch (err) {
+ print(
+ '`package_info_plus` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ try {
+ path_provider_windows.PathProviderWindows.registerWith();
+ } catch (err) {
+ print(
+ '`path_provider_windows` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ try {
+ share_plus.SharePlusWindowsPlugin.registerWith();
+ } catch (err) {
+ print(
+ '`share_plus` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ try {
+ speech_to_text_windows.SpeechToTextWindows.registerWith();
+ } catch (err) {
+ print(
+ '`speech_to_text_windows` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ try {
+ url_launcher_windows.UrlLauncherWindows.registerWith();
+ } catch (err) {
+ print(
+ '`url_launcher_windows` threw an error: $err. '
+ 'The app may not function as expected until you remove this plugin from pubspec.yaml'
+ );
+ }
+
+ }
+ }
+}
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/.lock b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/.lock
new file mode 100644
index 0000000..1ae82a1
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/.lock
@@ -0,0 +1 @@
+Last acquired by C:\Users\angel\flutter\bin\cache\dart-sdk\bin\dart.exe (pid 48536) running file:///C:/Users/angel/flutter/bin/cache/flutter_tools.snapshot on 2026-05-15 12:33:08.791541.
\ No newline at end of file
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/dependencies.dependencies_hash_file.json b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/dependencies.dependencies_hash_file.json
new file mode 100644
index 0000000..c553865
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/dependencies.dependencies_hash_file.json
@@ -0,0 +1 @@
+{"file_system":[],"environment":[{"key":"PATH","hash":5744524113912922215},{"key":"PROGRAMDATA","hash":-3479985355006727299},{"key":"SYSTEMDRIVE","hash":2892017696301558487},{"key":"SYSTEMROOT","hash":2713241238173206065},{"key":"TEMP","hash":-5046929535283615468},{"key":"TMP","hash":-5046929535283615468},{"key":"USERPROFILE","hash":-6023473899643495512},{"key":"WINDIR","hash":2713241238173206065}]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/hook.dependencies_hash_file.json b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/hook.dependencies_hash_file.json
new file mode 100644
index 0000000..1463db5
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/hook.dependencies_hash_file.json
@@ -0,0 +1 @@
+{"file_system":[{"path":"d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json","hash":4956111781633966257},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","hash":4956111781633966257},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\dart-sdk\\version","hash":-1483076285095613998}],"environment":[]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/hook.dill b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/hook.dill
new file mode 100644
index 0000000..17efdcb
Binary files /dev/null and b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/hook.dill differ
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/hook.dill.d b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/hook.dill.d
new file mode 100644
index 0000000..fb99bfb
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/hook.dill.d
@@ -0,0 +1 @@
+d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\hooks_runner\\objective_c\\193e397ea4\\hook.dill: d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json c:\\users\\angel\\appdata\\local\\pub\\cache\\hosted\\pub.dev\\objective_c-9.3.0\\hook\\build.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\code_assets.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\hooks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\logging.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\cbuilder\\compiler_resolver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\architecture.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\c_compiler_config.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\code_asset.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\config.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\ios_sdk.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\link_mode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\link_mode_preference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\os.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\testing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\api\\build_and_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\api\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\api\\linker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\config.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\encoded_asset.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\test.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\user_defines.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\validation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\log_record.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\android_ndk.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\apple_clang.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\clang.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\gcc.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\msvc.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\recognizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool_error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool_instance.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool_resolver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\utils\\env_from_bat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\syntax.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\collection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\validation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\args_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\crypto.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\record_use.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\hooks\\syntax.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\metadata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\utils\\datetime.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\yaml.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\glob.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\utils\\run_process.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\utils\\sem_version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\pub_semver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\list_local_fs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\algorithms.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\boollist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\canonicalized_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\comparators.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\functions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\list_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\priority_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\queue_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set_controller.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\unmodifiable_wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hmac.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\md5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha1.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha256.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta_meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\definition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\loading_unit.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\recordings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\reference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\error_listener.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\loader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_document.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_node.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\memory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\ast.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\list_tree.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_constraint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_union.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\local.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\empty_unmodifiable_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512_fastsinks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\canonicalization_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\helper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\serialization_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\syntax.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\source_span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\charcodes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\equality.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\event.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\null_span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_node_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\operations.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\async.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\patterns.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_with_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_file_system_entity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_random_access_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\error_codes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\file_system_entity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\characters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\internal_style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\parsed_path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\posix.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\url.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_memoizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\byte_collector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\cancelable_operation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\chunked_stream_reader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\event_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_consumer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\future_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\lazy_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\null_stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\restartable_timer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\single_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\sink_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_closer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_splitter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\subscription_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed_stream_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\line_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\term_glyph.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\highlighter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\error_codes_dart_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\clock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\common.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file_stat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\node.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\reject_errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\handler_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\stream_transformer_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\typed.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\eager_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\relative_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\ascii_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\unicode_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\top_level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\common.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file_system_entity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_random_access_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_file_system_entity.dart
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/input.json b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/input.json
new file mode 100644
index 0000000..3225b81
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/input.json
@@ -0,0 +1,29 @@
+{
+ "assets": {},
+ "config": {
+ "build_asset_types": [
+ "code_assets/code"
+ ],
+ "extensions": {
+ "code_assets": {
+ "android": {
+ "target_ndk_api": 24
+ },
+ "c_compiler": {
+ "ar": "C:\\Users\\angel\\AppData\\Local\\Android\\sdk\\ndk\\28.2.13676358\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\llvm-ar.exe",
+ "cc": "C:\\Users\\angel\\AppData\\Local\\Android\\sdk\\ndk\\28.2.13676358\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang.exe",
+ "ld": "C:\\Users\\angel\\AppData\\Local\\Android\\sdk\\ndk\\28.2.13676358\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\ld.lld.exe"
+ },
+ "link_mode_preference": "dynamic",
+ "target_architecture": "arm64",
+ "target_os": "android"
+ }
+ },
+ "linking_enabled": false
+ },
+ "out_dir_shared": "D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\hooks_runner\\shared\\objective_c\\build\\",
+ "out_file": "D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\hooks_runner\\objective_c\\193e397ea4\\output.json",
+ "package_name": "objective_c",
+ "package_root": "C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\",
+ "user_defines": {}
+}
\ No newline at end of file
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/output.json b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/output.json
new file mode 100644
index 0000000..de5fd7b
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/output.json
@@ -0,0 +1,5 @@
+{
+ "assets_for_linking": {},
+ "status": "success",
+ "timestamp": "2026-05-15 12:30:00.000"
+}
\ No newline at end of file
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/stderr.txt b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/stderr.txt
new file mode 100644
index 0000000..e69de29
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/stdout.txt b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/stdout.txt
new file mode 100644
index 0000000..c21eb7b
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/stdout.txt
@@ -0,0 +1 @@
+Running `(cd C:\Users\angel\AppData\Local\Pub\Cache\hosted\pub.dev\objective_c-9.3.0\; PATH=C:\Program Files\Android\Android Studio\jbr\bin;C:\Python\Python38-32\Scripts\;C:\Python\Python38-32\;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\LonWorks\bin;C:\Users\angel\AppData\Local\Microsoft\WindowsApps;C:\adb;D:\BatchApkTool;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Git\cmd;C:\Program Files\nodejs\;C:\Users\angel\AppData\Local\Microsoft\WindowsApps;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Users\angel\AppData\Roaming\npm;C:\Users\angel\AppData\Local\Python\bin;C:\Users\angel\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\angel\flutter\bin PROGRAMDATA=C:\ProgramData SYSTEMDRIVE=C: SYSTEMROOT=C:\WINDOWS TEMP=C:\Users\angel\AppData\Local\Temp TMP=C:\Users\angel\AppData\Local\Temp USERPROFILE=C:\Users\angel WINDIR=C:\WINDOWS C:\Users\angel\flutter\bin\cache\dart-sdk\bin\dart --packages=D:\YandexDisk\voidea\flutter\.dart_tool\package_config.json D:\YandexDisk\voidea\flutter\.dart_tool\hooks_runner\objective_c\193e397ea4\hook.dill --config=D:\YandexDisk\voidea\flutter\.dart_tool\hooks_runner\objective_c\193e397ea4\input.json )`.
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/.lock b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/.lock
new file mode 100644
index 0000000..cc22b11
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/.lock
@@ -0,0 +1 @@
+Last acquired by C:\Users\angel\flutter\bin\cache\dart-sdk\bin\dart.exe (pid 48536) running file:///C:/Users/angel/flutter/bin/cache/flutter_tools.snapshot on 2026-05-15 12:32:59.667160.
\ No newline at end of file
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/dependencies.dependencies_hash_file.json b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/dependencies.dependencies_hash_file.json
new file mode 100644
index 0000000..c553865
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/dependencies.dependencies_hash_file.json
@@ -0,0 +1 @@
+{"file_system":[],"environment":[{"key":"PATH","hash":5744524113912922215},{"key":"PROGRAMDATA","hash":-3479985355006727299},{"key":"SYSTEMDRIVE","hash":2892017696301558487},{"key":"SYSTEMROOT","hash":2713241238173206065},{"key":"TEMP","hash":-5046929535283615468},{"key":"TMP","hash":-5046929535283615468},{"key":"USERPROFILE","hash":-6023473899643495512},{"key":"WINDIR","hash":2713241238173206065}]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/hook.dependencies_hash_file.json b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/hook.dependencies_hash_file.json
new file mode 100644
index 0000000..1463db5
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/hook.dependencies_hash_file.json
@@ -0,0 +1 @@
+{"file_system":[{"path":"d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json","hash":4956111781633966257},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","hash":4956111781633966257},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\dart-sdk\\version","hash":-1483076285095613998}],"environment":[]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/hook.dill b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/hook.dill
new file mode 100644
index 0000000..17efdcb
Binary files /dev/null and b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/hook.dill differ
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/hook.dill.d b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/hook.dill.d
new file mode 100644
index 0000000..e5cc60e
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/hook.dill.d
@@ -0,0 +1 @@
+d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\hooks_runner\\objective_c\\4d03ae159a\\hook.dill: d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json c:\\users\\angel\\appdata\\local\\pub\\cache\\hosted\\pub.dev\\objective_c-9.3.0\\hook\\build.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\code_assets.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\hooks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\logging.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\cbuilder\\compiler_resolver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\architecture.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\c_compiler_config.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\code_asset.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\config.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\ios_sdk.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\link_mode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\link_mode_preference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\os.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\testing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\api\\build_and_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\api\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\api\\linker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\config.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\encoded_asset.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\test.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\user_defines.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\validation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\log_record.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\android_ndk.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\apple_clang.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\clang.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\gcc.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\msvc.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\recognizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool_error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool_instance.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool_resolver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\utils\\env_from_bat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\syntax.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\collection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\validation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\args_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\crypto.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\record_use.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\hooks\\syntax.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\metadata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\utils\\datetime.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\yaml.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\glob.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\utils\\run_process.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\utils\\sem_version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\pub_semver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\list_local_fs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\algorithms.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\boollist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\canonicalized_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\comparators.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\functions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\list_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\priority_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\queue_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set_controller.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\unmodifiable_wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hmac.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\md5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha1.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha256.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta_meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\definition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\loading_unit.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\recordings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\reference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\error_listener.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\loader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_document.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_node.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\memory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\ast.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\list_tree.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_constraint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_union.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\local.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\empty_unmodifiable_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512_fastsinks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\canonicalization_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\helper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\serialization_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\syntax.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\source_span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\charcodes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\equality.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\event.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\null_span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_node_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\operations.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\async.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\patterns.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_with_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_file_system_entity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_random_access_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\error_codes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\file_system_entity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\characters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\internal_style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\parsed_path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\posix.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\url.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_memoizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\byte_collector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\cancelable_operation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\chunked_stream_reader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\event_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_consumer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\future_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\lazy_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\null_stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\restartable_timer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\single_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\sink_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_closer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_splitter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\subscription_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed_stream_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\line_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\term_glyph.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\highlighter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\error_codes_dart_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\clock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\common.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file_stat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\node.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\reject_errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\handler_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\stream_transformer_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\typed.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\eager_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\relative_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\ascii_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\unicode_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\top_level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\common.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file_system_entity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_random_access_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_file_system_entity.dart
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/input.json b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/input.json
new file mode 100644
index 0000000..c5078b5
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/input.json
@@ -0,0 +1,29 @@
+{
+ "assets": {},
+ "config": {
+ "build_asset_types": [
+ "code_assets/code"
+ ],
+ "extensions": {
+ "code_assets": {
+ "android": {
+ "target_ndk_api": 24
+ },
+ "c_compiler": {
+ "ar": "C:\\Users\\angel\\AppData\\Local\\Android\\sdk\\ndk\\28.2.13676358\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\llvm-ar.exe",
+ "cc": "C:\\Users\\angel\\AppData\\Local\\Android\\sdk\\ndk\\28.2.13676358\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang.exe",
+ "ld": "C:\\Users\\angel\\AppData\\Local\\Android\\sdk\\ndk\\28.2.13676358\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\ld.lld.exe"
+ },
+ "link_mode_preference": "dynamic",
+ "target_architecture": "arm",
+ "target_os": "android"
+ }
+ },
+ "linking_enabled": false
+ },
+ "out_dir_shared": "D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\hooks_runner\\shared\\objective_c\\build\\",
+ "out_file": "D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\hooks_runner\\objective_c\\4d03ae159a\\output.json",
+ "package_name": "objective_c",
+ "package_root": "C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\",
+ "user_defines": {}
+}
\ No newline at end of file
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/output.json b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/output.json
new file mode 100644
index 0000000..3dccd06
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/output.json
@@ -0,0 +1,5 @@
+{
+ "assets_for_linking": {},
+ "status": "success",
+ "timestamp": "2026-05-15 12:33:07.000"
+}
\ No newline at end of file
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/stderr.txt b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/stderr.txt
new file mode 100644
index 0000000..e69de29
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/stdout.txt b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/stdout.txt
new file mode 100644
index 0000000..ad63f80
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/stdout.txt
@@ -0,0 +1 @@
+Running `(cd C:\Users\angel\AppData\Local\Pub\Cache\hosted\pub.dev\objective_c-9.3.0\; PATH=C:\Program Files\Android\Android Studio\jbr\bin;C:\Python\Python38-32\Scripts\;C:\Python\Python38-32\;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\LonWorks\bin;C:\Users\angel\AppData\Local\Microsoft\WindowsApps;C:\adb;D:\BatchApkTool;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Git\cmd;C:\Program Files\nodejs\;C:\Users\angel\AppData\Local\Microsoft\WindowsApps;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Users\angel\AppData\Roaming\npm;C:\Users\angel\AppData\Local\Python\bin;C:\Users\angel\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\angel\flutter\bin PROGRAMDATA=C:\ProgramData SYSTEMDRIVE=C: SYSTEMROOT=C:\WINDOWS TEMP=C:\Users\angel\AppData\Local\Temp TMP=C:\Users\angel\AppData\Local\Temp USERPROFILE=C:\Users\angel WINDIR=C:\WINDOWS C:\Users\angel\flutter\bin\cache\dart-sdk\bin\dart --packages=D:\YandexDisk\voidea\flutter\.dart_tool\package_config.json D:\YandexDisk\voidea\flutter\.dart_tool\hooks_runner\objective_c\4d03ae159a\hook.dill --config=D:\YandexDisk\voidea\flutter\.dart_tool\hooks_runner\objective_c\4d03ae159a\input.json )`.
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/.lock b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/.lock
new file mode 100644
index 0000000..98fbf1f
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/.lock
@@ -0,0 +1 @@
+Last acquired by C:\Users\angel\flutter\bin\cache\dart-sdk\bin\dart.exe (pid 48536) running file:///C:/Users/angel/flutter/bin/cache/flutter_tools.snapshot on 2026-05-15 12:33:08.894477.
\ No newline at end of file
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/dependencies.dependencies_hash_file.json b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/dependencies.dependencies_hash_file.json
new file mode 100644
index 0000000..c553865
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/dependencies.dependencies_hash_file.json
@@ -0,0 +1 @@
+{"file_system":[],"environment":[{"key":"PATH","hash":5744524113912922215},{"key":"PROGRAMDATA","hash":-3479985355006727299},{"key":"SYSTEMDRIVE","hash":2892017696301558487},{"key":"SYSTEMROOT","hash":2713241238173206065},{"key":"TEMP","hash":-5046929535283615468},{"key":"TMP","hash":-5046929535283615468},{"key":"USERPROFILE","hash":-6023473899643495512},{"key":"WINDIR","hash":2713241238173206065}]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/hook.dependencies_hash_file.json b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/hook.dependencies_hash_file.json
new file mode 100644
index 0000000..1463db5
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/hook.dependencies_hash_file.json
@@ -0,0 +1 @@
+{"file_system":[{"path":"d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json","hash":4956111781633966257},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","hash":4956111781633966257},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\dart-sdk\\version","hash":-1483076285095613998}],"environment":[]}
\ No newline at end of file
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/hook.dill b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/hook.dill
new file mode 100644
index 0000000..17efdcb
Binary files /dev/null and b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/hook.dill differ
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/hook.dill.d b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/hook.dill.d
new file mode 100644
index 0000000..a9ce968
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/hook.dill.d
@@ -0,0 +1 @@
+d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\hooks_runner\\objective_c\\f81b4c71b9\\hook.dill: d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json c:\\users\\angel\\appdata\\local\\pub\\cache\\hosted\\pub.dev\\objective_c-9.3.0\\hook\\build.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\code_assets.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\hooks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\logging.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\cbuilder\\compiler_resolver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\architecture.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\c_compiler_config.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\code_asset.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\config.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\ios_sdk.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\link_mode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\link_mode_preference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\os.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\testing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\api\\build_and_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\api\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\api\\linker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\config.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\encoded_asset.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\test.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\user_defines.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\validation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\log_record.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\android_ndk.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\apple_clang.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\clang.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\gcc.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\msvc.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\recognizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool_error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool_instance.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool_resolver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\utils\\env_from_bat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\syntax.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\collection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\validation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\args_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\crypto.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\record_use.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\hooks\\syntax.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\metadata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\utils\\datetime.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\yaml.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\glob.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\utils\\run_process.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\utils\\sem_version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\pub_semver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\list_local_fs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\algorithms.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\boollist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\canonicalized_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\comparators.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\functions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\list_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\priority_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\queue_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set_controller.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\unmodifiable_wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hmac.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\md5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha1.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha256.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta_meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\definition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\loading_unit.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\recordings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\reference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\error_listener.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\loader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_document.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_node.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\memory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\ast.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\list_tree.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_constraint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_union.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\local.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\empty_unmodifiable_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512_fastsinks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\canonicalization_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\helper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\serialization_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\syntax.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\source_span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\charcodes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\equality.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\event.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\null_span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_node_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\operations.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\async.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\patterns.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_with_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_file_system_entity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_random_access_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\error_codes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\file_system_entity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\characters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\internal_style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\parsed_path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\posix.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\url.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_memoizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\byte_collector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\cancelable_operation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\chunked_stream_reader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\event_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_consumer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\future_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\lazy_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\null_stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\restartable_timer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\single_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\sink_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_closer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_splitter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\subscription_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed_stream_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\line_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\term_glyph.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\highlighter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\error_codes_dart_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\clock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\common.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file_stat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\node.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\reject_errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\handler_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\stream_transformer_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\typed.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\eager_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\relative_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\ascii_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\unicode_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\top_level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\common.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file_system_entity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_random_access_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_file_system_entity.dart
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/input.json b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/input.json
new file mode 100644
index 0000000..e798f1c
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/input.json
@@ -0,0 +1,29 @@
+{
+ "assets": {},
+ "config": {
+ "build_asset_types": [
+ "code_assets/code"
+ ],
+ "extensions": {
+ "code_assets": {
+ "android": {
+ "target_ndk_api": 24
+ },
+ "c_compiler": {
+ "ar": "C:\\Users\\angel\\AppData\\Local\\Android\\sdk\\ndk\\28.2.13676358\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\llvm-ar.exe",
+ "cc": "C:\\Users\\angel\\AppData\\Local\\Android\\sdk\\ndk\\28.2.13676358\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang.exe",
+ "ld": "C:\\Users\\angel\\AppData\\Local\\Android\\sdk\\ndk\\28.2.13676358\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\ld.lld.exe"
+ },
+ "link_mode_preference": "dynamic",
+ "target_architecture": "x64",
+ "target_os": "android"
+ }
+ },
+ "linking_enabled": false
+ },
+ "out_dir_shared": "D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\hooks_runner\\shared\\objective_c\\build\\",
+ "out_file": "D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\hooks_runner\\objective_c\\f81b4c71b9\\output.json",
+ "package_name": "objective_c",
+ "package_root": "C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\",
+ "user_defines": {}
+}
\ No newline at end of file
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/output.json b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/output.json
new file mode 100644
index 0000000..faa9d07
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/output.json
@@ -0,0 +1,5 @@
+{
+ "assets_for_linking": {},
+ "status": "success",
+ "timestamp": "2026-05-15 12:33:16.000"
+}
\ No newline at end of file
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/stderr.txt b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/stderr.txt
new file mode 100644
index 0000000..e69de29
diff --git a/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/stdout.txt b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/stdout.txt
new file mode 100644
index 0000000..09167a9
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/stdout.txt
@@ -0,0 +1 @@
+Running `(cd C:\Users\angel\AppData\Local\Pub\Cache\hosted\pub.dev\objective_c-9.3.0\; PATH=C:\Program Files\Android\Android Studio\jbr\bin;C:\Python\Python38-32\Scripts\;C:\Python\Python38-32\;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\LonWorks\bin;C:\Users\angel\AppData\Local\Microsoft\WindowsApps;C:\adb;D:\BatchApkTool;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Git\cmd;C:\Program Files\nodejs\;C:\Users\angel\AppData\Local\Microsoft\WindowsApps;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Users\angel\AppData\Roaming\npm;C:\Users\angel\AppData\Local\Python\bin;C:\Users\angel\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\angel\flutter\bin PROGRAMDATA=C:\ProgramData SYSTEMDRIVE=C: SYSTEMROOT=C:\WINDOWS TEMP=C:\Users\angel\AppData\Local\Temp TMP=C:\Users\angel\AppData\Local\Temp USERPROFILE=C:\Users\angel WINDIR=C:\WINDOWS C:\Users\angel\flutter\bin\cache\dart-sdk\bin\dart --packages=D:\YandexDisk\voidea\flutter\.dart_tool\package_config.json D:\YandexDisk\voidea\flutter\.dart_tool\hooks_runner\objective_c\f81b4c71b9\hook.dill --config=D:\YandexDisk\voidea\flutter\.dart_tool\hooks_runner\objective_c\f81b4c71b9\input.json )`.
diff --git a/flutter/.dart_tool/hooks_runner/shared/objective_c/.lock b/flutter/.dart_tool/hooks_runner/shared/objective_c/.lock
new file mode 100644
index 0000000..35a0178
--- /dev/null
+++ b/flutter/.dart_tool/hooks_runner/shared/objective_c/.lock
@@ -0,0 +1 @@
+Last acquired by C:\Users\angel\flutter\bin\cache\dart-sdk\bin\dart.exe (pid 48536) running file:///C:/Users/angel/flutter/bin/cache/flutter_tools.snapshot on 2026-05-15 12:33:08.891479.
\ No newline at end of file
diff --git a/flutter/.dart_tool/package_config.json b/flutter/.dart_tool/package_config.json
new file mode 100644
index 0000000..b340055
--- /dev/null
+++ b/flutter/.dart_tool/package_config.json
@@ -0,0 +1,1024 @@
+{
+ "configVersion": 2,
+ "packages": [
+ {
+ "name": "_fe_analyzer_shared",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/_fe_analyzer_shared-85.0.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.5"
+ },
+ {
+ "name": "analyzer",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer-7.6.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.5"
+ },
+ {
+ "name": "analyzer_plugin",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer_plugin-0.13.4",
+ "packageUri": "lib/",
+ "languageVersion": "3.5"
+ },
+ {
+ "name": "ansicolor",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/ansicolor-2.0.3",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "archive",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/archive-4.0.9",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "args",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.7.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.3"
+ },
+ {
+ "name": "async",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.13.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "boolean_selector",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.1"
+ },
+ {
+ "name": "build",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/build-2.5.4",
+ "packageUri": "lib/",
+ "languageVersion": "3.7"
+ },
+ {
+ "name": "build_config",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/build_config-1.1.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.6"
+ },
+ {
+ "name": "build_daemon",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/build_daemon-4.1.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.7"
+ },
+ {
+ "name": "build_resolvers",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/build_resolvers-2.5.4",
+ "packageUri": "lib/",
+ "languageVersion": "3.7"
+ },
+ {
+ "name": "build_runner",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner-2.5.4",
+ "packageUri": "lib/",
+ "languageVersion": "3.7"
+ },
+ {
+ "name": "build_runner_core",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner_core-9.1.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.7"
+ },
+ {
+ "name": "built_collection",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/built_collection-5.1.1",
+ "packageUri": "lib/",
+ "languageVersion": "2.12"
+ },
+ {
+ "name": "built_value",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/built_value-8.12.6",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "cached_network_image",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/cached_network_image-3.4.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "cached_network_image_platform_interface",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/cached_network_image_platform_interface-4.1.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "cached_network_image_web",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/cached_network_image_web-1.3.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "characters",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.4.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "checked_yaml",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/checked_yaml-2.0.4",
+ "packageUri": "lib/",
+ "languageVersion": "3.8"
+ },
+ {
+ "name": "clock",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "code_assets",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/code_assets-1.0.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.9"
+ },
+ {
+ "name": "code_builder",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/code_builder-4.11.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.7"
+ },
+ {
+ "name": "collection",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.19.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "connectivity_plus",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/connectivity_plus-6.1.5",
+ "packageUri": "lib/",
+ "languageVersion": "3.2"
+ },
+ {
+ "name": "connectivity_plus_platform_interface",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/connectivity_plus_platform_interface-2.1.0",
+ "packageUri": "lib/",
+ "languageVersion": "2.18"
+ },
+ {
+ "name": "convert",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "cross_file",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/cross_file-0.3.5+2",
+ "packageUri": "lib/",
+ "languageVersion": "3.8"
+ },
+ {
+ "name": "crypto",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.7",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "csslib",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/csslib-1.0.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.1"
+ },
+ {
+ "name": "custom_lint_core",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/custom_lint_core-0.7.5",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "custom_lint_visitor",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/custom_lint_visitor-1.0.0+7.7.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "dart_style",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/dart_style-3.1.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.7"
+ },
+ {
+ "name": "dbus",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/dbus-0.7.12",
+ "packageUri": "lib/",
+ "languageVersion": "2.17"
+ },
+ {
+ "name": "dio",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/dio-5.9.2",
+ "packageUri": "lib/",
+ "languageVersion": "2.18"
+ },
+ {
+ "name": "dio_web_adapter",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/dio_web_adapter-2.1.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.3"
+ },
+ {
+ "name": "fake_async",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.3",
+ "packageUri": "lib/",
+ "languageVersion": "3.3"
+ },
+ {
+ "name": "ffi",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.2.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.7"
+ },
+ {
+ "name": "file",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/file-7.0.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "fixnum",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/fixnum-1.1.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.1"
+ },
+ {
+ "name": "flutter",
+ "rootUri": "file:///C:/Users/angel/flutter/packages/flutter",
+ "packageUri": "lib/",
+ "languageVersion": "3.9"
+ },
+ {
+ "name": "flutter_animate",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_animate-4.5.2",
+ "packageUri": "lib/",
+ "languageVersion": "2.17"
+ },
+ {
+ "name": "flutter_cache_manager",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_cache_manager-3.4.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "flutter_lints",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-5.0.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.5"
+ },
+ {
+ "name": "flutter_local_notifications",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_local_notifications-18.0.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.1"
+ },
+ {
+ "name": "flutter_local_notifications_linux",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_local_notifications_linux-5.0.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.1"
+ },
+ {
+ "name": "flutter_local_notifications_platform_interface",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_local_notifications_platform_interface-8.0.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.1"
+ },
+ {
+ "name": "flutter_native_splash",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_native_splash-2.4.7",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "flutter_riverpod",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_riverpod-2.6.1",
+ "packageUri": "lib/",
+ "languageVersion": "2.17"
+ },
+ {
+ "name": "flutter_secure_storage",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_secure_storage-9.2.4",
+ "packageUri": "lib/",
+ "languageVersion": "2.12"
+ },
+ {
+ "name": "flutter_secure_storage_linux",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_secure_storage_linux-1.2.3",
+ "packageUri": "lib/",
+ "languageVersion": "2.12"
+ },
+ {
+ "name": "flutter_secure_storage_macos",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_secure_storage_macos-3.1.3",
+ "packageUri": "lib/",
+ "languageVersion": "2.12"
+ },
+ {
+ "name": "flutter_secure_storage_platform_interface",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_secure_storage_platform_interface-1.1.2",
+ "packageUri": "lib/",
+ "languageVersion": "2.12"
+ },
+ {
+ "name": "flutter_secure_storage_web",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_secure_storage_web-1.2.1",
+ "packageUri": "lib/",
+ "languageVersion": "2.12"
+ },
+ {
+ "name": "flutter_secure_storage_windows",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_secure_storage_windows-3.1.2",
+ "packageUri": "lib/",
+ "languageVersion": "2.12"
+ },
+ {
+ "name": "flutter_shaders",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_shaders-0.1.3",
+ "packageUri": "lib/",
+ "languageVersion": "2.19"
+ },
+ {
+ "name": "flutter_svg",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_svg-2.3.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.9"
+ },
+ {
+ "name": "flutter_test",
+ "rootUri": "file:///C:/Users/angel/flutter/packages/flutter_test",
+ "packageUri": "lib/",
+ "languageVersion": "3.9"
+ },
+ {
+ "name": "flutter_web_plugins",
+ "rootUri": "file:///C:/Users/angel/flutter/packages/flutter_web_plugins",
+ "packageUri": "lib/",
+ "languageVersion": "3.9"
+ },
+ {
+ "name": "freezed",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/freezed-2.5.8",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "freezed_annotation",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/freezed_annotation-2.4.4",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "frontend_server_client",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/frontend_server_client-4.0.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "glob",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/glob-2.1.3",
+ "packageUri": "lib/",
+ "languageVersion": "3.3"
+ },
+ {
+ "name": "go_router",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/go_router-14.8.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "graphs",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/graphs-2.3.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "hooks",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/hooks-1.0.3",
+ "packageUri": "lib/",
+ "languageVersion": "3.10"
+ },
+ {
+ "name": "html",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/html-0.15.6",
+ "packageUri": "lib/",
+ "languageVersion": "3.2"
+ },
+ {
+ "name": "http",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/http-1.6.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "http_multi_server",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/http_multi_server-3.2.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.2"
+ },
+ {
+ "name": "http_parser",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.1.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "image",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/image-4.8.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "intl",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.19.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "io",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/io-1.0.5",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "jni",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/jni-1.0.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.3"
+ },
+ {
+ "name": "jni_flutter",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/jni_flutter-1.0.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.3"
+ },
+ {
+ "name": "js",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.7",
+ "packageUri": "lib/",
+ "languageVersion": "2.19"
+ },
+ {
+ "name": "json_annotation",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/json_annotation-4.9.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "json_serializable",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/json_serializable-6.9.5",
+ "packageUri": "lib/",
+ "languageVersion": "3.6"
+ },
+ {
+ "name": "leak_tracker",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/leak_tracker-11.0.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.2"
+ },
+ {
+ "name": "leak_tracker_flutter_testing",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/leak_tracker_flutter_testing-3.0.10",
+ "packageUri": "lib/",
+ "languageVersion": "3.2"
+ },
+ {
+ "name": "leak_tracker_testing",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/leak_tracker_testing-3.0.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.2"
+ },
+ {
+ "name": "lints",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/lints-5.1.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.6"
+ },
+ {
+ "name": "logging",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/logging-1.3.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "matcher",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.19",
+ "packageUri": "lib/",
+ "languageVersion": "3.7"
+ },
+ {
+ "name": "material_color_utilities",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.13.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.5"
+ },
+ {
+ "name": "meta",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.17.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.5"
+ },
+ {
+ "name": "mime",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/mime-2.0.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.2"
+ },
+ {
+ "name": "native_toolchain_c",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/native_toolchain_c-0.17.6",
+ "packageUri": "lib/",
+ "languageVersion": "3.10"
+ },
+ {
+ "name": "nm",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/nm-0.5.0",
+ "packageUri": "lib/",
+ "languageVersion": "2.12"
+ },
+ {
+ "name": "objective_c",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/objective_c-9.3.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.10"
+ },
+ {
+ "name": "octo_image",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/octo_image-2.1.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "package_config",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/package_config-2.2.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "package_info_plus",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/package_info_plus-8.3.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.3"
+ },
+ {
+ "name": "package_info_plus_platform_interface",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/package_info_plus_platform_interface-3.2.1",
+ "packageUri": "lib/",
+ "languageVersion": "2.18"
+ },
+ {
+ "name": "path",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.9.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "path_parsing",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/path_parsing-1.1.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.3"
+ },
+ {
+ "name": "path_provider",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.1.5",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "path_provider_android",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.3.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.9"
+ },
+ {
+ "name": "path_provider_foundation",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_foundation-2.6.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.10"
+ },
+ {
+ "name": "path_provider_linux",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.2.1",
+ "packageUri": "lib/",
+ "languageVersion": "2.19"
+ },
+ {
+ "name": "path_provider_platform_interface",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.1.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "path_provider_windows",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.3.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.2"
+ },
+ {
+ "name": "pedantic",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/pedantic-1.11.1",
+ "packageUri": "lib/",
+ "languageVersion": "2.12"
+ },
+ {
+ "name": "petitparser",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/petitparser-7.0.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.8"
+ },
+ {
+ "name": "platform",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.6",
+ "packageUri": "lib/",
+ "languageVersion": "3.2"
+ },
+ {
+ "name": "plugin_platform_interface",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.8",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "pool",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/pool-1.5.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "posix",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/posix-6.5.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "pub_semver",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/pub_semver-2.2.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "pubspec_parse",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/pubspec_parse-1.5.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.6"
+ },
+ {
+ "name": "record_use",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/record_use-0.6.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.10"
+ },
+ {
+ "name": "riverpod",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/riverpod-2.6.1",
+ "packageUri": "lib/",
+ "languageVersion": "2.17"
+ },
+ {
+ "name": "riverpod_analyzer_utils",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/riverpod_analyzer_utils-0.5.9",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "riverpod_annotation",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/riverpod_annotation-2.6.1",
+ "packageUri": "lib/",
+ "languageVersion": "2.17"
+ },
+ {
+ "name": "riverpod_generator",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/riverpod_generator-2.6.4",
+ "packageUri": "lib/",
+ "languageVersion": "2.17"
+ },
+ {
+ "name": "rxdart",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/rxdart-0.28.0",
+ "packageUri": "lib/",
+ "languageVersion": "2.12"
+ },
+ {
+ "name": "share_plus",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/share_plus-10.1.4",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "share_plus_platform_interface",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/share_plus_platform_interface-5.0.2",
+ "packageUri": "lib/",
+ "languageVersion": "2.18"
+ },
+ {
+ "name": "shelf",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/shelf-1.4.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "shelf_web_socket",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_web_socket-3.0.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.5"
+ },
+ {
+ "name": "shimmer",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/shimmer-3.0.0",
+ "packageUri": "lib/",
+ "languageVersion": "2.17"
+ },
+ {
+ "name": "sky_engine",
+ "rootUri": "file:///C:/Users/angel/flutter/bin/cache/pkg/sky_engine",
+ "packageUri": "lib/",
+ "languageVersion": "3.9"
+ },
+ {
+ "name": "source_gen",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/source_gen-2.0.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.6"
+ },
+ {
+ "name": "source_helper",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/source_helper-1.3.7",
+ "packageUri": "lib/",
+ "languageVersion": "3.6"
+ },
+ {
+ "name": "source_span",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.10.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.1"
+ },
+ {
+ "name": "speech_to_text",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/speech_to_text-7.3.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.3"
+ },
+ {
+ "name": "speech_to_text_platform_interface",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/speech_to_text_platform_interface-2.3.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "speech_to_text_windows",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/speech_to_text_windows-1.0.0+beta.8",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "sqflite",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/sqflite-2.4.2+1",
+ "packageUri": "lib/",
+ "languageVersion": "3.10"
+ },
+ {
+ "name": "sqflite_android",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/sqflite_android-2.4.2+3",
+ "packageUri": "lib/",
+ "languageVersion": "3.10"
+ },
+ {
+ "name": "sqflite_common",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/sqflite_common-2.5.7",
+ "packageUri": "lib/",
+ "languageVersion": "3.10"
+ },
+ {
+ "name": "sqflite_darwin",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/sqflite_darwin-2.4.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.7"
+ },
+ {
+ "name": "sqflite_platform_interface",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/sqflite_platform_interface-2.4.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.5"
+ },
+ {
+ "name": "stack_trace",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.12.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "state_notifier",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/state_notifier-1.0.0",
+ "packageUri": "lib/",
+ "languageVersion": "2.12"
+ },
+ {
+ "name": "stream_channel",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.4",
+ "packageUri": "lib/",
+ "languageVersion": "3.3"
+ },
+ {
+ "name": "stream_transform",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/stream_transform-2.1.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.1"
+ },
+ {
+ "name": "string_scanner",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.4.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.1"
+ },
+ {
+ "name": "synchronized",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/synchronized-3.4.0+1",
+ "packageUri": "lib/",
+ "languageVersion": "3.11"
+ },
+ {
+ "name": "term_glyph",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.1"
+ },
+ {
+ "name": "test_api",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.7.10",
+ "packageUri": "lib/",
+ "languageVersion": "3.7"
+ },
+ {
+ "name": "timezone",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/timezone-0.10.1",
+ "packageUri": "lib/",
+ "languageVersion": "2.19"
+ },
+ {
+ "name": "timing",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/timing-1.0.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "typed_data",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.4.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.5"
+ },
+ {
+ "name": "universal_io",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/universal_io-2.3.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.6"
+ },
+ {
+ "name": "url_launcher",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher-6.3.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.6"
+ },
+ {
+ "name": "url_launcher_android",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_android-6.3.29",
+ "packageUri": "lib/",
+ "languageVersion": "3.9"
+ },
+ {
+ "name": "url_launcher_ios",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_ios-6.4.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.10"
+ },
+ {
+ "name": "url_launcher_linux",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_linux-3.2.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.8"
+ },
+ {
+ "name": "url_launcher_macos",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_macos-3.2.5",
+ "packageUri": "lib/",
+ "languageVersion": "3.9"
+ },
+ {
+ "name": "url_launcher_platform_interface",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_platform_interface-2.3.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.1"
+ },
+ {
+ "name": "url_launcher_web",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_web-2.4.3",
+ "packageUri": "lib/",
+ "languageVersion": "3.10"
+ },
+ {
+ "name": "url_launcher_windows",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_windows-3.1.5",
+ "packageUri": "lib/",
+ "languageVersion": "3.8"
+ },
+ {
+ "name": "uuid",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/uuid-4.5.3",
+ "packageUri": "lib/",
+ "languageVersion": "3.0"
+ },
+ {
+ "name": "vector_graphics",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/vector_graphics-1.2.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.9"
+ },
+ {
+ "name": "vector_graphics_codec",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/vector_graphics_codec-1.1.13",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "vector_graphics_compiler",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/vector_graphics_compiler-1.2.2",
+ "packageUri": "lib/",
+ "languageVersion": "3.9"
+ },
+ {
+ "name": "vector_math",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.2.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.1"
+ },
+ {
+ "name": "vm_service",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/vm_service-15.2.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.5"
+ },
+ {
+ "name": "watcher",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/watcher-1.2.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "web",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/web-1.1.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "web_socket",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket-1.0.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "web_socket_channel",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket_channel-3.0.3",
+ "packageUri": "lib/",
+ "languageVersion": "3.3"
+ },
+ {
+ "name": "win32",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/win32-5.15.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.8"
+ },
+ {
+ "name": "xdg_directories",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.1.0",
+ "packageUri": "lib/",
+ "languageVersion": "3.3"
+ },
+ {
+ "name": "xml",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/xml-6.6.1",
+ "packageUri": "lib/",
+ "languageVersion": "3.8"
+ },
+ {
+ "name": "yaml",
+ "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/yaml-3.1.3",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ },
+ {
+ "name": "voidea_app",
+ "rootUri": "../",
+ "packageUri": "lib/",
+ "languageVersion": "3.4"
+ }
+ ],
+ "generator": "pub",
+ "generatorVersion": "3.11.5",
+ "flutterRoot": "file:///C:/Users/angel/flutter",
+ "flutterVersion": "3.41.9",
+ "pubCache": "file:///C:/Users/angel/AppData/Local/Pub/Cache"
+}
diff --git a/flutter/.dart_tool/package_graph.json b/flutter/.dart_tool/package_graph.json
new file mode 100644
index 0000000..0cd4182
--- /dev/null
+++ b/flutter/.dart_tool/package_graph.json
@@ -0,0 +1,1674 @@
+{
+ "roots": [
+ "voidea_app"
+ ],
+ "packages": [
+ {
+ "name": "voidea_app",
+ "version": "1.0.0+1",
+ "dependencies": [
+ "cached_network_image",
+ "connectivity_plus",
+ "dio",
+ "flutter",
+ "flutter_animate",
+ "flutter_local_notifications",
+ "flutter_native_splash",
+ "flutter_riverpod",
+ "flutter_secure_storage",
+ "flutter_svg",
+ "freezed_annotation",
+ "go_router",
+ "intl",
+ "json_annotation",
+ "package_info_plus",
+ "path_provider",
+ "riverpod_annotation",
+ "share_plus",
+ "shimmer",
+ "speech_to_text",
+ "url_launcher"
+ ],
+ "devDependencies": [
+ "build_runner",
+ "flutter_lints",
+ "flutter_test",
+ "freezed",
+ "json_serializable",
+ "riverpod_generator"
+ ]
+ },
+ {
+ "name": "flutter_lints",
+ "version": "5.0.0",
+ "dependencies": [
+ "lints"
+ ]
+ },
+ {
+ "name": "build_runner",
+ "version": "2.5.4",
+ "dependencies": [
+ "analyzer",
+ "args",
+ "async",
+ "build",
+ "build_config",
+ "build_daemon",
+ "build_resolvers",
+ "build_runner_core",
+ "code_builder",
+ "collection",
+ "crypto",
+ "dart_style",
+ "frontend_server_client",
+ "glob",
+ "graphs",
+ "http",
+ "http_multi_server",
+ "io",
+ "js",
+ "logging",
+ "meta",
+ "mime",
+ "package_config",
+ "path",
+ "pool",
+ "pub_semver",
+ "pubspec_parse",
+ "shelf",
+ "shelf_web_socket",
+ "stack_trace",
+ "stream_transform",
+ "timing",
+ "watcher",
+ "web",
+ "web_socket_channel",
+ "yaml"
+ ]
+ },
+ {
+ "name": "riverpod_generator",
+ "version": "2.6.4",
+ "dependencies": [
+ "analyzer",
+ "build",
+ "build_config",
+ "collection",
+ "crypto",
+ "meta",
+ "path",
+ "riverpod_analyzer_utils",
+ "riverpod_annotation",
+ "source_gen"
+ ]
+ },
+ {
+ "name": "json_serializable",
+ "version": "6.9.5",
+ "dependencies": [
+ "analyzer",
+ "async",
+ "build",
+ "build_config",
+ "collection",
+ "dart_style",
+ "json_annotation",
+ "meta",
+ "path",
+ "pub_semver",
+ "pubspec_parse",
+ "source_gen",
+ "source_helper"
+ ]
+ },
+ {
+ "name": "freezed",
+ "version": "2.5.8",
+ "dependencies": [
+ "analyzer",
+ "build",
+ "build_config",
+ "collection",
+ "dart_style",
+ "freezed_annotation",
+ "json_annotation",
+ "meta",
+ "source_gen"
+ ]
+ },
+ {
+ "name": "flutter_test",
+ "version": "0.0.0",
+ "dependencies": [
+ "clock",
+ "collection",
+ "fake_async",
+ "flutter",
+ "leak_tracker_flutter_testing",
+ "matcher",
+ "meta",
+ "path",
+ "stack_trace",
+ "stream_channel",
+ "test_api",
+ "vector_math"
+ ]
+ },
+ {
+ "name": "flutter_svg",
+ "version": "2.3.0",
+ "dependencies": [
+ "flutter",
+ "http",
+ "vector_graphics",
+ "vector_graphics_codec",
+ "vector_graphics_compiler"
+ ]
+ },
+ {
+ "name": "package_info_plus",
+ "version": "8.3.1",
+ "dependencies": [
+ "clock",
+ "ffi",
+ "flutter",
+ "flutter_web_plugins",
+ "http",
+ "meta",
+ "package_info_plus_platform_interface",
+ "path",
+ "web",
+ "win32"
+ ]
+ },
+ {
+ "name": "connectivity_plus",
+ "version": "6.1.5",
+ "dependencies": [
+ "collection",
+ "connectivity_plus_platform_interface",
+ "flutter",
+ "flutter_web_plugins",
+ "meta",
+ "nm",
+ "web"
+ ]
+ },
+ {
+ "name": "path_provider",
+ "version": "2.1.5",
+ "dependencies": [
+ "flutter",
+ "path_provider_android",
+ "path_provider_foundation",
+ "path_provider_linux",
+ "path_provider_platform_interface",
+ "path_provider_windows"
+ ]
+ },
+ {
+ "name": "url_launcher",
+ "version": "6.3.2",
+ "dependencies": [
+ "flutter",
+ "url_launcher_android",
+ "url_launcher_ios",
+ "url_launcher_linux",
+ "url_launcher_macos",
+ "url_launcher_platform_interface",
+ "url_launcher_web",
+ "url_launcher_windows"
+ ]
+ },
+ {
+ "name": "flutter_native_splash",
+ "version": "2.4.7",
+ "dependencies": [
+ "ansicolor",
+ "args",
+ "flutter",
+ "flutter_web_plugins",
+ "html",
+ "image",
+ "meta",
+ "path",
+ "universal_io",
+ "xml",
+ "yaml"
+ ]
+ },
+ {
+ "name": "shimmer",
+ "version": "3.0.0",
+ "dependencies": [
+ "flutter"
+ ]
+ },
+ {
+ "name": "flutter_animate",
+ "version": "4.5.2",
+ "dependencies": [
+ "flutter",
+ "flutter_shaders"
+ ]
+ },
+ {
+ "name": "cached_network_image",
+ "version": "3.4.1",
+ "dependencies": [
+ "cached_network_image_platform_interface",
+ "cached_network_image_web",
+ "flutter",
+ "flutter_cache_manager",
+ "octo_image"
+ ]
+ },
+ {
+ "name": "intl",
+ "version": "0.19.0",
+ "dependencies": [
+ "clock",
+ "meta",
+ "path"
+ ]
+ },
+ {
+ "name": "flutter_local_notifications",
+ "version": "18.0.1",
+ "dependencies": [
+ "clock",
+ "flutter",
+ "flutter_local_notifications_linux",
+ "flutter_local_notifications_platform_interface",
+ "timezone"
+ ]
+ },
+ {
+ "name": "share_plus",
+ "version": "10.1.4",
+ "dependencies": [
+ "cross_file",
+ "ffi",
+ "file",
+ "flutter",
+ "flutter_web_plugins",
+ "meta",
+ "mime",
+ "share_plus_platform_interface",
+ "url_launcher_linux",
+ "url_launcher_platform_interface",
+ "url_launcher_web",
+ "url_launcher_windows",
+ "web",
+ "win32"
+ ]
+ },
+ {
+ "name": "speech_to_text",
+ "version": "7.3.0",
+ "dependencies": [
+ "clock",
+ "flutter",
+ "flutter_web_plugins",
+ "json_annotation",
+ "meta",
+ "pedantic",
+ "speech_to_text_platform_interface",
+ "speech_to_text_windows",
+ "web"
+ ]
+ },
+ {
+ "name": "flutter_secure_storage",
+ "version": "9.2.4",
+ "dependencies": [
+ "flutter",
+ "flutter_secure_storage_linux",
+ "flutter_secure_storage_macos",
+ "flutter_secure_storage_platform_interface",
+ "flutter_secure_storage_web",
+ "flutter_secure_storage_windows",
+ "meta"
+ ]
+ },
+ {
+ "name": "json_annotation",
+ "version": "4.9.0",
+ "dependencies": [
+ "meta"
+ ]
+ },
+ {
+ "name": "freezed_annotation",
+ "version": "2.4.4",
+ "dependencies": [
+ "collection",
+ "json_annotation",
+ "meta"
+ ]
+ },
+ {
+ "name": "dio",
+ "version": "5.9.2",
+ "dependencies": [
+ "async",
+ "collection",
+ "dio_web_adapter",
+ "http_parser",
+ "meta",
+ "mime",
+ "path"
+ ]
+ },
+ {
+ "name": "go_router",
+ "version": "14.8.1",
+ "dependencies": [
+ "collection",
+ "flutter",
+ "flutter_web_plugins",
+ "logging",
+ "meta"
+ ]
+ },
+ {
+ "name": "riverpod_annotation",
+ "version": "2.6.1",
+ "dependencies": [
+ "meta",
+ "riverpod"
+ ]
+ },
+ {
+ "name": "flutter_riverpod",
+ "version": "2.6.1",
+ "dependencies": [
+ "collection",
+ "flutter",
+ "meta",
+ "riverpod",
+ "state_notifier"
+ ]
+ },
+ {
+ "name": "flutter",
+ "version": "0.0.0",
+ "dependencies": [
+ "characters",
+ "collection",
+ "material_color_utilities",
+ "meta",
+ "sky_engine",
+ "vector_math"
+ ]
+ },
+ {
+ "name": "lints",
+ "version": "5.1.1",
+ "dependencies": []
+ },
+ {
+ "name": "yaml",
+ "version": "3.1.3",
+ "dependencies": [
+ "collection",
+ "source_span",
+ "string_scanner"
+ ]
+ },
+ {
+ "name": "web_socket_channel",
+ "version": "3.0.3",
+ "dependencies": [
+ "async",
+ "crypto",
+ "stream_channel",
+ "web",
+ "web_socket"
+ ]
+ },
+ {
+ "name": "web",
+ "version": "1.1.1",
+ "dependencies": []
+ },
+ {
+ "name": "watcher",
+ "version": "1.2.1",
+ "dependencies": [
+ "async",
+ "path"
+ ]
+ },
+ {
+ "name": "timing",
+ "version": "1.0.2",
+ "dependencies": [
+ "json_annotation"
+ ]
+ },
+ {
+ "name": "stream_transform",
+ "version": "2.1.1",
+ "dependencies": []
+ },
+ {
+ "name": "stack_trace",
+ "version": "1.12.1",
+ "dependencies": [
+ "path"
+ ]
+ },
+ {
+ "name": "shelf_web_socket",
+ "version": "3.0.0",
+ "dependencies": [
+ "shelf",
+ "stream_channel",
+ "web_socket_channel"
+ ]
+ },
+ {
+ "name": "shelf",
+ "version": "1.4.2",
+ "dependencies": [
+ "async",
+ "collection",
+ "http_parser",
+ "path",
+ "stack_trace",
+ "stream_channel"
+ ]
+ },
+ {
+ "name": "pubspec_parse",
+ "version": "1.5.0",
+ "dependencies": [
+ "checked_yaml",
+ "collection",
+ "json_annotation",
+ "pub_semver",
+ "yaml"
+ ]
+ },
+ {
+ "name": "pub_semver",
+ "version": "2.2.0",
+ "dependencies": [
+ "collection"
+ ]
+ },
+ {
+ "name": "pool",
+ "version": "1.5.2",
+ "dependencies": [
+ "async",
+ "stack_trace"
+ ]
+ },
+ {
+ "name": "path",
+ "version": "1.9.1",
+ "dependencies": []
+ },
+ {
+ "name": "package_config",
+ "version": "2.2.0",
+ "dependencies": [
+ "path"
+ ]
+ },
+ {
+ "name": "mime",
+ "version": "2.0.0",
+ "dependencies": []
+ },
+ {
+ "name": "meta",
+ "version": "1.17.0",
+ "dependencies": []
+ },
+ {
+ "name": "logging",
+ "version": "1.3.0",
+ "dependencies": []
+ },
+ {
+ "name": "js",
+ "version": "0.6.7",
+ "dependencies": [
+ "meta"
+ ]
+ },
+ {
+ "name": "io",
+ "version": "1.0.5",
+ "dependencies": [
+ "meta",
+ "path",
+ "string_scanner"
+ ]
+ },
+ {
+ "name": "http_multi_server",
+ "version": "3.2.2",
+ "dependencies": [
+ "async"
+ ]
+ },
+ {
+ "name": "http",
+ "version": "1.6.0",
+ "dependencies": [
+ "async",
+ "http_parser",
+ "meta",
+ "web"
+ ]
+ },
+ {
+ "name": "graphs",
+ "version": "2.3.2",
+ "dependencies": [
+ "collection"
+ ]
+ },
+ {
+ "name": "glob",
+ "version": "2.1.3",
+ "dependencies": [
+ "async",
+ "collection",
+ "file",
+ "path",
+ "string_scanner"
+ ]
+ },
+ {
+ "name": "frontend_server_client",
+ "version": "4.0.0",
+ "dependencies": [
+ "async",
+ "path"
+ ]
+ },
+ {
+ "name": "dart_style",
+ "version": "3.1.1",
+ "dependencies": [
+ "analyzer",
+ "args",
+ "collection",
+ "package_config",
+ "path",
+ "pub_semver",
+ "source_span",
+ "yaml"
+ ]
+ },
+ {
+ "name": "crypto",
+ "version": "3.0.7",
+ "dependencies": [
+ "typed_data"
+ ]
+ },
+ {
+ "name": "collection",
+ "version": "1.19.1",
+ "dependencies": []
+ },
+ {
+ "name": "code_builder",
+ "version": "4.11.1",
+ "dependencies": [
+ "built_collection",
+ "built_value",
+ "collection",
+ "matcher",
+ "meta"
+ ]
+ },
+ {
+ "name": "build_runner_core",
+ "version": "9.1.2",
+ "dependencies": [
+ "analyzer",
+ "async",
+ "build",
+ "build_config",
+ "build_resolvers",
+ "build_runner",
+ "built_collection",
+ "built_value",
+ "collection",
+ "convert",
+ "crypto",
+ "glob",
+ "graphs",
+ "json_annotation",
+ "logging",
+ "meta",
+ "package_config",
+ "path",
+ "pool",
+ "timing",
+ "watcher",
+ "yaml"
+ ]
+ },
+ {
+ "name": "build_resolvers",
+ "version": "2.5.4",
+ "dependencies": [
+ "analyzer",
+ "async",
+ "build",
+ "build_runner_core",
+ "collection",
+ "convert",
+ "crypto",
+ "graphs",
+ "logging",
+ "package_config",
+ "path",
+ "pool",
+ "pub_semver",
+ "stream_transform"
+ ]
+ },
+ {
+ "name": "build_daemon",
+ "version": "4.1.1",
+ "dependencies": [
+ "built_collection",
+ "built_value",
+ "crypto",
+ "http_multi_server",
+ "logging",
+ "path",
+ "pool",
+ "shelf",
+ "shelf_web_socket",
+ "stream_transform",
+ "watcher",
+ "web_socket_channel"
+ ]
+ },
+ {
+ "name": "build_config",
+ "version": "1.1.2",
+ "dependencies": [
+ "checked_yaml",
+ "json_annotation",
+ "path",
+ "pubspec_parse",
+ "yaml"
+ ]
+ },
+ {
+ "name": "build",
+ "version": "2.5.4",
+ "dependencies": [
+ "analyzer",
+ "async",
+ "build_runner_core",
+ "built_collection",
+ "built_value",
+ "convert",
+ "crypto",
+ "glob",
+ "graphs",
+ "logging",
+ "meta",
+ "package_config",
+ "path",
+ "pool"
+ ]
+ },
+ {
+ "name": "async",
+ "version": "2.13.1",
+ "dependencies": [
+ "collection",
+ "meta"
+ ]
+ },
+ {
+ "name": "args",
+ "version": "2.7.0",
+ "dependencies": []
+ },
+ {
+ "name": "analyzer",
+ "version": "7.6.0",
+ "dependencies": [
+ "_fe_analyzer_shared",
+ "collection",
+ "convert",
+ "crypto",
+ "glob",
+ "meta",
+ "package_config",
+ "path",
+ "pub_semver",
+ "source_span",
+ "watcher",
+ "yaml"
+ ]
+ },
+ {
+ "name": "source_gen",
+ "version": "2.0.0",
+ "dependencies": [
+ "analyzer",
+ "async",
+ "build",
+ "dart_style",
+ "glob",
+ "path",
+ "pub_semver",
+ "source_span",
+ "yaml"
+ ]
+ },
+ {
+ "name": "riverpod_analyzer_utils",
+ "version": "0.5.9",
+ "dependencies": [
+ "analyzer",
+ "collection",
+ "crypto",
+ "custom_lint_core",
+ "freezed_annotation",
+ "meta",
+ "path",
+ "source_span"
+ ]
+ },
+ {
+ "name": "source_helper",
+ "version": "1.3.7",
+ "dependencies": [
+ "analyzer",
+ "source_gen"
+ ]
+ },
+ {
+ "name": "stream_channel",
+ "version": "2.1.4",
+ "dependencies": [
+ "async"
+ ]
+ },
+ {
+ "name": "leak_tracker_flutter_testing",
+ "version": "3.0.10",
+ "dependencies": [
+ "flutter",
+ "leak_tracker",
+ "leak_tracker_testing",
+ "matcher",
+ "meta"
+ ]
+ },
+ {
+ "name": "vector_math",
+ "version": "2.2.0",
+ "dependencies": []
+ },
+ {
+ "name": "clock",
+ "version": "1.1.2",
+ "dependencies": []
+ },
+ {
+ "name": "fake_async",
+ "version": "1.3.3",
+ "dependencies": [
+ "clock",
+ "collection"
+ ]
+ },
+ {
+ "name": "matcher",
+ "version": "0.12.19",
+ "dependencies": [
+ "async",
+ "meta",
+ "stack_trace",
+ "term_glyph",
+ "test_api"
+ ]
+ },
+ {
+ "name": "test_api",
+ "version": "0.7.10",
+ "dependencies": [
+ "async",
+ "boolean_selector",
+ "collection",
+ "meta",
+ "source_span",
+ "stack_trace",
+ "stream_channel",
+ "string_scanner",
+ "term_glyph"
+ ]
+ },
+ {
+ "name": "vector_graphics_compiler",
+ "version": "1.2.2",
+ "dependencies": [
+ "args",
+ "meta",
+ "path",
+ "path_parsing",
+ "vector_graphics_codec",
+ "xml"
+ ]
+ },
+ {
+ "name": "vector_graphics_codec",
+ "version": "1.1.13",
+ "dependencies": []
+ },
+ {
+ "name": "vector_graphics",
+ "version": "1.2.1",
+ "dependencies": [
+ "flutter",
+ "http",
+ "vector_graphics_codec"
+ ]
+ },
+ {
+ "name": "win32",
+ "version": "5.15.0",
+ "dependencies": [
+ "ffi"
+ ]
+ },
+ {
+ "name": "package_info_plus_platform_interface",
+ "version": "3.2.1",
+ "dependencies": [
+ "flutter",
+ "meta",
+ "plugin_platform_interface"
+ ]
+ },
+ {
+ "name": "flutter_web_plugins",
+ "version": "0.0.0",
+ "dependencies": [
+ "flutter"
+ ]
+ },
+ {
+ "name": "ffi",
+ "version": "2.2.0",
+ "dependencies": []
+ },
+ {
+ "name": "nm",
+ "version": "0.5.0",
+ "dependencies": [
+ "dbus"
+ ]
+ },
+ {
+ "name": "connectivity_plus_platform_interface",
+ "version": "2.1.0",
+ "dependencies": [
+ "flutter",
+ "meta",
+ "plugin_platform_interface"
+ ]
+ },
+ {
+ "name": "path_provider_windows",
+ "version": "2.3.0",
+ "dependencies": [
+ "ffi",
+ "flutter",
+ "path",
+ "path_provider_platform_interface"
+ ]
+ },
+ {
+ "name": "path_provider_platform_interface",
+ "version": "2.1.2",
+ "dependencies": [
+ "flutter",
+ "platform",
+ "plugin_platform_interface"
+ ]
+ },
+ {
+ "name": "path_provider_linux",
+ "version": "2.2.1",
+ "dependencies": [
+ "ffi",
+ "flutter",
+ "path",
+ "path_provider_platform_interface",
+ "xdg_directories"
+ ]
+ },
+ {
+ "name": "path_provider_foundation",
+ "version": "2.6.0",
+ "dependencies": [
+ "ffi",
+ "flutter",
+ "objective_c",
+ "path_provider_platform_interface"
+ ]
+ },
+ {
+ "name": "path_provider_android",
+ "version": "2.3.1",
+ "dependencies": [
+ "flutter",
+ "jni",
+ "jni_flutter",
+ "path_provider_platform_interface"
+ ]
+ },
+ {
+ "name": "url_launcher_windows",
+ "version": "3.1.5",
+ "dependencies": [
+ "flutter",
+ "url_launcher_platform_interface"
+ ]
+ },
+ {
+ "name": "url_launcher_web",
+ "version": "2.4.3",
+ "dependencies": [
+ "flutter",
+ "flutter_web_plugins",
+ "url_launcher_platform_interface",
+ "web"
+ ]
+ },
+ {
+ "name": "url_launcher_platform_interface",
+ "version": "2.3.2",
+ "dependencies": [
+ "flutter",
+ "plugin_platform_interface"
+ ]
+ },
+ {
+ "name": "url_launcher_macos",
+ "version": "3.2.5",
+ "dependencies": [
+ "flutter",
+ "url_launcher_platform_interface"
+ ]
+ },
+ {
+ "name": "url_launcher_linux",
+ "version": "3.2.2",
+ "dependencies": [
+ "flutter",
+ "url_launcher_platform_interface"
+ ]
+ },
+ {
+ "name": "url_launcher_ios",
+ "version": "6.4.1",
+ "dependencies": [
+ "flutter",
+ "url_launcher_platform_interface"
+ ]
+ },
+ {
+ "name": "url_launcher_android",
+ "version": "6.3.29",
+ "dependencies": [
+ "flutter",
+ "url_launcher_platform_interface"
+ ]
+ },
+ {
+ "name": "ansicolor",
+ "version": "2.0.3",
+ "dependencies": []
+ },
+ {
+ "name": "xml",
+ "version": "6.6.1",
+ "dependencies": [
+ "collection",
+ "meta",
+ "petitparser"
+ ]
+ },
+ {
+ "name": "universal_io",
+ "version": "2.3.1",
+ "dependencies": [
+ "collection",
+ "meta",
+ "typed_data"
+ ]
+ },
+ {
+ "name": "image",
+ "version": "4.8.0",
+ "dependencies": [
+ "archive",
+ "meta",
+ "xml"
+ ]
+ },
+ {
+ "name": "html",
+ "version": "0.15.6",
+ "dependencies": [
+ "csslib",
+ "source_span"
+ ]
+ },
+ {
+ "name": "flutter_shaders",
+ "version": "0.1.3",
+ "dependencies": [
+ "flutter",
+ "vector_math"
+ ]
+ },
+ {
+ "name": "octo_image",
+ "version": "2.1.0",
+ "dependencies": [
+ "flutter"
+ ]
+ },
+ {
+ "name": "flutter_cache_manager",
+ "version": "3.4.1",
+ "dependencies": [
+ "clock",
+ "collection",
+ "file",
+ "flutter",
+ "http",
+ "path",
+ "path_provider",
+ "rxdart",
+ "sqflite",
+ "uuid"
+ ]
+ },
+ {
+ "name": "cached_network_image_web",
+ "version": "1.3.1",
+ "dependencies": [
+ "cached_network_image_platform_interface",
+ "flutter",
+ "flutter_cache_manager",
+ "web"
+ ]
+ },
+ {
+ "name": "cached_network_image_platform_interface",
+ "version": "4.1.1",
+ "dependencies": [
+ "flutter",
+ "flutter_cache_manager"
+ ]
+ },
+ {
+ "name": "timezone",
+ "version": "0.10.1",
+ "dependencies": [
+ "http",
+ "path"
+ ]
+ },
+ {
+ "name": "flutter_local_notifications_platform_interface",
+ "version": "8.0.0",
+ "dependencies": [
+ "flutter",
+ "plugin_platform_interface"
+ ]
+ },
+ {
+ "name": "flutter_local_notifications_linux",
+ "version": "5.0.0",
+ "dependencies": [
+ "dbus",
+ "ffi",
+ "flutter",
+ "flutter_local_notifications_platform_interface",
+ "path",
+ "xdg_directories"
+ ]
+ },
+ {
+ "name": "file",
+ "version": "7.0.1",
+ "dependencies": [
+ "meta",
+ "path"
+ ]
+ },
+ {
+ "name": "share_plus_platform_interface",
+ "version": "5.0.2",
+ "dependencies": [
+ "cross_file",
+ "flutter",
+ "meta",
+ "mime",
+ "path_provider",
+ "plugin_platform_interface",
+ "uuid"
+ ]
+ },
+ {
+ "name": "cross_file",
+ "version": "0.3.5+2",
+ "dependencies": [
+ "meta",
+ "web"
+ ]
+ },
+ {
+ "name": "speech_to_text_windows",
+ "version": "1.0.0+beta.8",
+ "dependencies": [
+ "flutter",
+ "speech_to_text_platform_interface"
+ ]
+ },
+ {
+ "name": "pedantic",
+ "version": "1.11.1",
+ "dependencies": []
+ },
+ {
+ "name": "speech_to_text_platform_interface",
+ "version": "2.3.0",
+ "dependencies": [
+ "flutter",
+ "meta",
+ "plugin_platform_interface"
+ ]
+ },
+ {
+ "name": "flutter_secure_storage_windows",
+ "version": "3.1.2",
+ "dependencies": [
+ "ffi",
+ "flutter",
+ "flutter_secure_storage_platform_interface",
+ "path",
+ "path_provider",
+ "win32"
+ ]
+ },
+ {
+ "name": "flutter_secure_storage_web",
+ "version": "1.2.1",
+ "dependencies": [
+ "flutter",
+ "flutter_secure_storage_platform_interface",
+ "flutter_web_plugins",
+ "js"
+ ]
+ },
+ {
+ "name": "flutter_secure_storage_platform_interface",
+ "version": "1.1.2",
+ "dependencies": [
+ "flutter",
+ "plugin_platform_interface"
+ ]
+ },
+ {
+ "name": "flutter_secure_storage_macos",
+ "version": "3.1.3",
+ "dependencies": [
+ "flutter",
+ "flutter_secure_storage_platform_interface"
+ ]
+ },
+ {
+ "name": "flutter_secure_storage_linux",
+ "version": "1.2.3",
+ "dependencies": [
+ "flutter",
+ "flutter_secure_storage_platform_interface"
+ ]
+ },
+ {
+ "name": "dio_web_adapter",
+ "version": "2.1.2",
+ "dependencies": [
+ "dio",
+ "http_parser",
+ "meta",
+ "web"
+ ]
+ },
+ {
+ "name": "http_parser",
+ "version": "4.1.2",
+ "dependencies": [
+ "collection",
+ "source_span",
+ "string_scanner",
+ "typed_data"
+ ]
+ },
+ {
+ "name": "riverpod",
+ "version": "2.6.1",
+ "dependencies": [
+ "collection",
+ "meta",
+ "stack_trace",
+ "state_notifier"
+ ]
+ },
+ {
+ "name": "state_notifier",
+ "version": "1.0.0",
+ "dependencies": [
+ "meta"
+ ]
+ },
+ {
+ "name": "sky_engine",
+ "version": "0.0.0",
+ "dependencies": []
+ },
+ {
+ "name": "material_color_utilities",
+ "version": "0.13.0",
+ "dependencies": [
+ "collection"
+ ]
+ },
+ {
+ "name": "characters",
+ "version": "1.4.1",
+ "dependencies": []
+ },
+ {
+ "name": "string_scanner",
+ "version": "1.4.1",
+ "dependencies": [
+ "source_span"
+ ]
+ },
+ {
+ "name": "source_span",
+ "version": "1.10.2",
+ "dependencies": [
+ "collection",
+ "path",
+ "term_glyph"
+ ]
+ },
+ {
+ "name": "web_socket",
+ "version": "1.0.1",
+ "dependencies": [
+ "web"
+ ]
+ },
+ {
+ "name": "checked_yaml",
+ "version": "2.0.4",
+ "dependencies": [
+ "json_annotation",
+ "source_span",
+ "yaml"
+ ]
+ },
+ {
+ "name": "typed_data",
+ "version": "1.4.0",
+ "dependencies": [
+ "collection"
+ ]
+ },
+ {
+ "name": "built_value",
+ "version": "8.12.6",
+ "dependencies": [
+ "built_collection",
+ "collection",
+ "fixnum",
+ "meta"
+ ]
+ },
+ {
+ "name": "built_collection",
+ "version": "5.1.1",
+ "dependencies": []
+ },
+ {
+ "name": "convert",
+ "version": "3.1.2",
+ "dependencies": [
+ "typed_data"
+ ]
+ },
+ {
+ "name": "_fe_analyzer_shared",
+ "version": "85.0.0",
+ "dependencies": [
+ "meta"
+ ]
+ },
+ {
+ "name": "custom_lint_core",
+ "version": "0.7.5",
+ "dependencies": [
+ "analyzer",
+ "analyzer_plugin",
+ "collection",
+ "custom_lint_visitor",
+ "glob",
+ "matcher",
+ "meta",
+ "package_config",
+ "path",
+ "pubspec_parse",
+ "source_span",
+ "uuid",
+ "yaml"
+ ]
+ },
+ {
+ "name": "leak_tracker_testing",
+ "version": "3.0.2",
+ "dependencies": [
+ "leak_tracker",
+ "matcher",
+ "meta"
+ ]
+ },
+ {
+ "name": "leak_tracker",
+ "version": "11.0.2",
+ "dependencies": [
+ "clock",
+ "collection",
+ "meta",
+ "path",
+ "vm_service"
+ ]
+ },
+ {
+ "name": "term_glyph",
+ "version": "1.2.2",
+ "dependencies": []
+ },
+ {
+ "name": "boolean_selector",
+ "version": "2.1.2",
+ "dependencies": [
+ "source_span",
+ "string_scanner"
+ ]
+ },
+ {
+ "name": "path_parsing",
+ "version": "1.1.0",
+ "dependencies": [
+ "meta",
+ "vector_math"
+ ]
+ },
+ {
+ "name": "plugin_platform_interface",
+ "version": "2.1.8",
+ "dependencies": [
+ "meta"
+ ]
+ },
+ {
+ "name": "dbus",
+ "version": "0.7.12",
+ "dependencies": [
+ "args",
+ "ffi",
+ "meta",
+ "xml"
+ ]
+ },
+ {
+ "name": "platform",
+ "version": "3.1.6",
+ "dependencies": []
+ },
+ {
+ "name": "xdg_directories",
+ "version": "1.1.0",
+ "dependencies": [
+ "meta",
+ "path"
+ ]
+ },
+ {
+ "name": "objective_c",
+ "version": "9.3.0",
+ "dependencies": [
+ "code_assets",
+ "collection",
+ "ffi",
+ "hooks",
+ "logging",
+ "native_toolchain_c",
+ "pub_semver"
+ ]
+ },
+ {
+ "name": "jni_flutter",
+ "version": "1.0.1",
+ "dependencies": [
+ "flutter",
+ "jni"
+ ]
+ },
+ {
+ "name": "jni",
+ "version": "1.0.0",
+ "dependencies": [
+ "args",
+ "collection",
+ "ffi",
+ "meta",
+ "package_config",
+ "path",
+ "plugin_platform_interface"
+ ]
+ },
+ {
+ "name": "petitparser",
+ "version": "7.0.2",
+ "dependencies": [
+ "collection",
+ "meta"
+ ]
+ },
+ {
+ "name": "archive",
+ "version": "4.0.9",
+ "dependencies": [
+ "path",
+ "posix"
+ ]
+ },
+ {
+ "name": "csslib",
+ "version": "1.0.2",
+ "dependencies": [
+ "source_span"
+ ]
+ },
+ {
+ "name": "uuid",
+ "version": "4.5.3",
+ "dependencies": [
+ "crypto",
+ "fixnum"
+ ]
+ },
+ {
+ "name": "sqflite",
+ "version": "2.4.2+1",
+ "dependencies": [
+ "flutter",
+ "path",
+ "sqflite_android",
+ "sqflite_common",
+ "sqflite_darwin",
+ "sqflite_platform_interface"
+ ]
+ },
+ {
+ "name": "rxdart",
+ "version": "0.28.0",
+ "dependencies": []
+ },
+ {
+ "name": "fixnum",
+ "version": "1.1.1",
+ "dependencies": []
+ },
+ {
+ "name": "custom_lint_visitor",
+ "version": "1.0.0+7.7.0",
+ "dependencies": [
+ "analyzer"
+ ]
+ },
+ {
+ "name": "analyzer_plugin",
+ "version": "0.13.4",
+ "dependencies": [
+ "analyzer",
+ "collection",
+ "dart_style",
+ "path",
+ "pub_semver",
+ "yaml"
+ ]
+ },
+ {
+ "name": "vm_service",
+ "version": "15.2.0",
+ "dependencies": []
+ },
+ {
+ "name": "native_toolchain_c",
+ "version": "0.17.6",
+ "dependencies": [
+ "code_assets",
+ "glob",
+ "hooks",
+ "logging",
+ "meta",
+ "pub_semver"
+ ]
+ },
+ {
+ "name": "hooks",
+ "version": "1.0.3",
+ "dependencies": [
+ "collection",
+ "crypto",
+ "logging",
+ "meta",
+ "pub_semver",
+ "record_use",
+ "yaml"
+ ]
+ },
+ {
+ "name": "code_assets",
+ "version": "1.0.0",
+ "dependencies": [
+ "collection",
+ "hooks"
+ ]
+ },
+ {
+ "name": "posix",
+ "version": "6.5.0",
+ "dependencies": [
+ "ffi",
+ "meta",
+ "path"
+ ]
+ },
+ {
+ "name": "sqflite_common",
+ "version": "2.5.7",
+ "dependencies": [
+ "meta",
+ "path",
+ "synchronized"
+ ]
+ },
+ {
+ "name": "sqflite_platform_interface",
+ "version": "2.4.0",
+ "dependencies": [
+ "flutter",
+ "meta",
+ "platform",
+ "plugin_platform_interface",
+ "sqflite_common"
+ ]
+ },
+ {
+ "name": "sqflite_darwin",
+ "version": "2.4.2",
+ "dependencies": [
+ "flutter",
+ "meta",
+ "path",
+ "sqflite_common",
+ "sqflite_platform_interface"
+ ]
+ },
+ {
+ "name": "sqflite_android",
+ "version": "2.4.2+3",
+ "dependencies": [
+ "flutter",
+ "path",
+ "sqflite_common",
+ "sqflite_platform_interface"
+ ]
+ },
+ {
+ "name": "record_use",
+ "version": "0.6.0",
+ "dependencies": [
+ "collection",
+ "meta",
+ "pub_semver"
+ ]
+ },
+ {
+ "name": "synchronized",
+ "version": "3.4.0+1",
+ "dependencies": []
+ }
+ ],
+ "configVersion": 1
+}
\ No newline at end of file
diff --git a/flutter/.dart_tool/version b/flutter/.dart_tool/version
new file mode 100644
index 0000000..d81f957
--- /dev/null
+++ b/flutter/.dart_tool/version
@@ -0,0 +1 @@
+3.41.9
\ No newline at end of file
diff --git a/flutter/.flutter-plugins-dependencies b/flutter/.flutter-plugins-dependencies
new file mode 100644
index 0000000..56ebec5
--- /dev/null
+++ b/flutter/.flutter-plugins-dependencies
@@ -0,0 +1 @@
+{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"connectivity_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\connectivity_plus-6.1.5\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"flutter_local_notifications","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_local_notifications-18.0.1\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"flutter_native_splash","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_native_splash-2.4.7\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"flutter_secure_storage","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_secure_storage-9.2.4\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"package_info_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\package_info_plus-8.3.1\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"path_provider_foundation","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.6.0\\\\","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"share_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\share_plus-10.1.4\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"speech_to_text","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\speech_to_text-7.3.0\\\\","shared_darwin_source":true,"native_build":true,"dependencies":[],"dev_dependency":false},{"name":"sqflite_darwin","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\sqflite_darwin-2.4.2\\\\","shared_darwin_source":true,"native_build":true,"dependencies":[],"dev_dependency":false},{"name":"url_launcher_ios","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\url_launcher_ios-6.4.1\\\\","native_build":true,"dependencies":[],"dev_dependency":false}],"android":[{"name":"connectivity_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\connectivity_plus-6.1.5\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"flutter_local_notifications","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_local_notifications-18.0.1\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"flutter_native_splash","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_native_splash-2.4.7\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"flutter_secure_storage","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_secure_storage-9.2.4\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"jni","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\jni-1.0.0\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"jni_flutter","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\jni_flutter-1.0.1\\\\","native_build":true,"dependencies":["jni"],"dev_dependency":false},{"name":"package_info_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\package_info_plus-8.3.1\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"path_provider_android","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_android-2.3.1\\\\","native_build":false,"dependencies":["jni","jni_flutter"],"dev_dependency":false},{"name":"share_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\share_plus-10.1.4\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"speech_to_text","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\speech_to_text-7.3.0\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"sqflite_android","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\sqflite_android-2.4.2+3\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"url_launcher_android","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\url_launcher_android-6.3.29\\\\","native_build":true,"dependencies":[],"dev_dependency":false}],"macos":[{"name":"connectivity_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\connectivity_plus-6.1.5\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"flutter_local_notifications","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_local_notifications-18.0.1\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"flutter_secure_storage_macos","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_secure_storage_macos-3.1.3\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"package_info_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\package_info_plus-8.3.1\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"path_provider_foundation","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.6.0\\\\","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"share_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\share_plus-10.1.4\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"speech_to_text","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\speech_to_text-7.3.0\\\\","shared_darwin_source":true,"native_build":true,"dependencies":[],"dev_dependency":false},{"name":"sqflite_darwin","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\sqflite_darwin-2.4.2\\\\","shared_darwin_source":true,"native_build":true,"dependencies":[],"dev_dependency":false},{"name":"url_launcher_macos","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\url_launcher_macos-3.2.5\\\\","native_build":true,"dependencies":[],"dev_dependency":false}],"linux":[{"name":"connectivity_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\connectivity_plus-6.1.5\\\\","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"flutter_local_notifications_linux","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_local_notifications_linux-5.0.0\\\\","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"flutter_secure_storage_linux","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_secure_storage_linux-1.2.3\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"jni","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\jni-1.0.0\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"package_info_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\package_info_plus-8.3.1\\\\","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"path_provider_linux","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_linux-2.2.1\\\\","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"share_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\share_plus-10.1.4\\\\","native_build":false,"dependencies":["url_launcher_linux"],"dev_dependency":false},{"name":"url_launcher_linux","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\url_launcher_linux-3.2.2\\\\","native_build":true,"dependencies":[],"dev_dependency":false}],"windows":[{"name":"connectivity_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\connectivity_plus-6.1.5\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"flutter_secure_storage_windows","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_secure_storage_windows-3.1.2\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"jni","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\jni-1.0.0\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"package_info_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\package_info_plus-8.3.1\\\\","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"path_provider_windows","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_windows-2.3.0\\\\","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"share_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\share_plus-10.1.4\\\\","native_build":true,"dependencies":["url_launcher_windows"],"dev_dependency":false},{"name":"speech_to_text_windows","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\speech_to_text_windows-1.0.0+beta.8\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"url_launcher_windows","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\url_launcher_windows-3.1.5\\\\","native_build":true,"dependencies":[],"dev_dependency":false}],"web":[{"name":"connectivity_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\connectivity_plus-6.1.5\\\\","dependencies":[],"dev_dependency":false},{"name":"flutter_native_splash","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_native_splash-2.4.7\\\\","dependencies":[],"dev_dependency":false},{"name":"flutter_secure_storage_web","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_secure_storage_web-1.2.1\\\\","dependencies":[],"dev_dependency":false},{"name":"package_info_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\package_info_plus-8.3.1\\\\","dependencies":[],"dev_dependency":false},{"name":"share_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\share_plus-10.1.4\\\\","dependencies":["url_launcher_web"],"dev_dependency":false},{"name":"speech_to_text","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\speech_to_text-7.3.0\\\\","dependencies":[],"dev_dependency":false},{"name":"url_launcher_web","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\url_launcher_web-2.4.3\\\\","dependencies":[],"dev_dependency":false}]},"dependencyGraph":[{"name":"connectivity_plus","dependencies":[]},{"name":"flutter_local_notifications","dependencies":["flutter_local_notifications_linux"]},{"name":"flutter_local_notifications_linux","dependencies":[]},{"name":"flutter_native_splash","dependencies":[]},{"name":"flutter_secure_storage","dependencies":["flutter_secure_storage_linux","flutter_secure_storage_macos","flutter_secure_storage_web","flutter_secure_storage_windows"]},{"name":"flutter_secure_storage_linux","dependencies":[]},{"name":"flutter_secure_storage_macos","dependencies":[]},{"name":"flutter_secure_storage_web","dependencies":[]},{"name":"flutter_secure_storage_windows","dependencies":["path_provider"]},{"name":"jni","dependencies":[]},{"name":"jni_flutter","dependencies":["jni"]},{"name":"package_info_plus","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":["jni","jni_flutter"]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]},{"name":"share_plus","dependencies":["url_launcher_web","url_launcher_windows","url_launcher_linux"]},{"name":"speech_to_text","dependencies":["speech_to_text_windows"]},{"name":"speech_to_text_windows","dependencies":[]},{"name":"sqflite","dependencies":["sqflite_android","sqflite_darwin"]},{"name":"sqflite_android","dependencies":[]},{"name":"sqflite_darwin","dependencies":[]},{"name":"url_launcher","dependencies":["url_launcher_android","url_launcher_ios","url_launcher_linux","url_launcher_macos","url_launcher_web","url_launcher_windows"]},{"name":"url_launcher_android","dependencies":[]},{"name":"url_launcher_ios","dependencies":[]},{"name":"url_launcher_linux","dependencies":[]},{"name":"url_launcher_macos","dependencies":[]},{"name":"url_launcher_web","dependencies":[]},{"name":"url_launcher_windows","dependencies":[]}],"date_created":"2026-05-15 12:22:25.298844","version":"3.41.9","swift_package_manager_enabled":{"ios":false,"macos":false}}
\ No newline at end of file
diff --git a/flutter/.metadata b/flutter/.metadata
new file mode 100644
index 0000000..b069bf4
--- /dev/null
+++ b/flutter/.metadata
@@ -0,0 +1,36 @@
+# 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 and should not be manually edited.
+
+version:
+ revision: "00b0c91f06209d9e4a41f71b7a512d6eb3b9c694"
+ channel: "stable"
+
+project_type: app
+
+# Tracks metadata for the flutter migrate command
+migration:
+ platforms:
+ - platform: root
+ create_revision: 00b0c91f06209d9e4a41f71b7a512d6eb3b9c694
+ base_revision: 00b0c91f06209d9e4a41f71b7a512d6eb3b9c694
+ - platform: android
+ create_revision: 00b0c91f06209d9e4a41f71b7a512d6eb3b9c694
+ base_revision: 00b0c91f06209d9e4a41f71b7a512d6eb3b9c694
+ - platform: ios
+ create_revision: 00b0c91f06209d9e4a41f71b7a512d6eb3b9c694
+ base_revision: 00b0c91f06209d9e4a41f71b7a512d6eb3b9c694
+ - platform: web
+ create_revision: 00b0c91f06209d9e4a41f71b7a512d6eb3b9c694
+ base_revision: 00b0c91f06209d9e4a41f71b7a512d6eb3b9c694
+
+ # 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/flutter/README.md b/flutter/README.md
new file mode 100644
index 0000000..f5f6149
--- /dev/null
+++ b/flutter/README.md
@@ -0,0 +1,115 @@
+# VoIdea Flutter App
+
+Мобильное приложение для голосового управления идеями.
+
+## Требования
+
+- Flutter SDK 3.22+ (https://flutter.dev)
+- Dart 3.4+
+- Android Studio / Xcode (для сборки)
+
+## Установка
+
+```bash
+cd flutter
+
+# 1. Сгенерировать platform-специфичные файлы (android/ios/web)
+# НЕ ИСПОЛЬЗУЙТЕ flutter create . — это перезапишет lib/
+# Используйте скрипт:
+.\init_project.ps1
+
+# 2. Установить зависимости
+flutter clean
+flutter pub get
+
+# 3. Если ошибка "namespace not specified" (старый device_info):
+.\fix_build.ps1
+
+# 4. Запустить (выбрать Chrome/Edge для web, или подключить Android/iOS)
+flutter run
+
+# 5. Собрать APK
+# debug (для тестирования):
+flutter build apk --debug --dart-define=API_BASE_URL=http://10.0.2.2:8000/api/v1
+# release (для публикации):
+flutter build apk --release --dart-define=API_BASE_URL=https://voidea.app/api/v1
+# APK будет в: build/app/outputs/flutter-apk/app-release.apk
+# split per ABI (меньше размер):
+flutter build apk --split-per-abi --release
+
+# 6. Собрать IPA (требуется macOS + Xcode)
+flutter build ios --release
+
+# 7. AppBundle (Google Play)
+flutter build appbundle --release
+```
+
+## Известные проблемы и решения
+
+### dot-shorthands error
+```
+Error: This requires the experimental 'dot-shorthands' language feature.
+```
+Причина: `flutter create` сгенерировал шаблонный `lib/main.dart` с синтаксисом `.fromSeed()`.
+Решение: перегенерировать платформенные папки через `init_project.ps1` (он не трогает `lib/`).
+
+## Переменные окружения
+
+Установите через `--dart-define`:
+
+```bash
+flutter run --dart-define=API_BASE_URL=https://voidea.app/api/v1
+```
+
+## Структура проекта
+
+```
+flutter/
+├── lib/
+│ ├── main.dart # Entry point
+│ ├── app.dart # MaterialApp.router
+│ ├── core/
+│ │ ├── api/ # Dio client, endpoints, exceptions
+│ │ ├── theme/ # Material 3 theme (light/dark)
+│ │ ├── router/ # go_router config
+│ │ ├── constants/ # App constants, colors, funnel config
+│ │ └── utils/ # Validators
+│ ├── models/ # Data classes (auth, idea, workspace...)
+│ ├── providers/ # Riverpod state (auth, ideas, workspace...)
+│ ├── widgets/ # Shared widgets (loading, error, vote...)
+│ └── features/ # Feature-first structure
+│ ├── auth/ # Login, register, 2FA, password reset
+│ ├── dashboard/ # Main dashboard with list/kanban toggle
+│ ├── ideas/ # CRUD, view, edit, funnel, kanban
+│ ├── voice/ # Voice input, sessions
+│ ├── workspaces/ # Workspace list, detail, members
+│ ├── notifications/ # Notification list
+│ ├── settings/ # Profile, theme, integrations, logout
+│ ├── integrations/ # Calendar connection UI
+│ ├── onboarding/ # Onboarding slides
+│ └── admin/ # Admin panel (7 tabs)
+├── test/ # Widget tests
+├── assets/ # Static assets
+├── pubspec.yaml
+└── analysis_options.yaml
+```
+
+## Фичи
+
+- **Голосовой ввод** через speech_to_text (Native Android/iOS)
+- **Воронка идей**: 6 статусов (raw → retrospective), Kanban-доска
+- **Рабочие пространства**: личные и командные, управление участниками
+- **Совместная работа**: голосования, комментарии, лента активности
+- **Календарь**: Google, Яндекс, Apple (CalDAV)
+- **Уведомления**: push, in-app, unread badge
+- **Админ-панель**: статистика, пользователи, агенты, логи, тарифы, бот, сервисы
+- **Тёмная/светлая тема**: переключение, сохранение в Secure Storage
+- **Анимации**: flutter_animate (fade, slide, scale)
+
+## Сборка для VPS
+
+Установите `API_BASE_URL` на продакшн-адрес:
+
+```bash
+flutter build apk --release --dart-define=API_BASE_URL=https://voidea.app/api/v1
+```
diff --git a/flutter/analysis_options.yaml b/flutter/analysis_options.yaml
new file mode 100644
index 0000000..0aac023
--- /dev/null
+++ b/flutter/analysis_options.yaml
@@ -0,0 +1,8 @@
+include: package:flutter_lints/flutter.yaml
+
+linter:
+ rules:
+ prefer_const_constructors: true
+ prefer_const_declarations: true
+ avoid_print: true
+ prefer_single_quotes: true
diff --git a/flutter/android/.gitignore b/flutter/android/.gitignore
new file mode 100644
index 0000000..be3943c
--- /dev/null
+++ b/flutter/android/.gitignore
@@ -0,0 +1,14 @@
+gradle-wrapper.jar
+/.gradle
+/captures/
+/gradlew
+/gradlew.bat
+/local.properties
+GeneratedPluginRegistrant.java
+.cxx/
+
+# Remember to never publicly share your keystore.
+# See https://flutter.dev/to/reference-keystore
+key.properties
+**/*.keystore
+**/*.jks
diff --git a/flutter/android/app/build.gradle.kts b/flutter/android/app/build.gradle.kts
new file mode 100644
index 0000000..0502afd
--- /dev/null
+++ b/flutter/android/app/build.gradle.kts
@@ -0,0 +1,44 @@
+plugins {
+ id("com.android.application")
+ id("kotlin-android")
+ // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
+ id("dev.flutter.flutter-gradle-plugin")
+}
+
+android {
+ namespace = "com.voidea.voidea_app"
+ compileSdk = flutter.compileSdkVersion
+ ndkVersion = flutter.ndkVersion
+
+ compileOptions {
+ sourceCompatibility = JavaVersion.VERSION_17
+ targetCompatibility = JavaVersion.VERSION_17
+ }
+
+ kotlinOptions {
+ jvmTarget = JavaVersion.VERSION_17.toString()
+ }
+
+ defaultConfig {
+ // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
+ applicationId = "com.voidea.voidea_app"
+ // You can update the following values to match your application needs.
+ // For more information, see: https://flutter.dev/to/review-gradle-config.
+ minSdk = flutter.minSdkVersion
+ targetSdk = flutter.targetSdkVersion
+ versionCode = flutter.versionCode
+ versionName = flutter.versionName
+ }
+
+ 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.getByName("debug")
+ }
+ }
+}
+
+flutter {
+ source = "../.."
+}
diff --git a/flutter/android/app/src/debug/AndroidManifest.xml b/flutter/android/app/src/debug/AndroidManifest.xml
new file mode 100644
index 0000000..399f698
--- /dev/null
+++ b/flutter/android/app/src/debug/AndroidManifest.xml
@@ -0,0 +1,7 @@
+
+
+
+
diff --git a/flutter/android/app/src/main/AndroidManifest.xml b/flutter/android/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..bee216e
--- /dev/null
+++ b/flutter/android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/flutter/android/app/src/main/kotlin/com/voidea/voidea_app/MainActivity.kt b/flutter/android/app/src/main/kotlin/com/voidea/voidea_app/MainActivity.kt
new file mode 100644
index 0000000..0f58761
--- /dev/null
+++ b/flutter/android/app/src/main/kotlin/com/voidea/voidea_app/MainActivity.kt
@@ -0,0 +1,5 @@
+package com.voidea.voidea_app
+
+import io.flutter.embedding.android.FlutterActivity
+
+class MainActivity : FlutterActivity()
diff --git a/flutter/android/app/src/main/res/drawable-v21/launch_background.xml b/flutter/android/app/src/main/res/drawable-v21/launch_background.xml
new file mode 100644
index 0000000..f74085f
--- /dev/null
+++ b/flutter/android/app/src/main/res/drawable-v21/launch_background.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/flutter/android/app/src/main/res/drawable/launch_background.xml b/flutter/android/app/src/main/res/drawable/launch_background.xml
new file mode 100644
index 0000000..304732f
--- /dev/null
+++ b/flutter/android/app/src/main/res/drawable/launch_background.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/flutter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/flutter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000..db77bb4
Binary files /dev/null and b/flutter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/flutter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/flutter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000..17987b7
Binary files /dev/null and b/flutter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/flutter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/flutter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000..09d4391
Binary files /dev/null and b/flutter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/flutter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/flutter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000..d5f1c8d
Binary files /dev/null and b/flutter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/flutter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/flutter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 0000000..4d6372e
Binary files /dev/null and b/flutter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/flutter/android/app/src/main/res/values-night/styles.xml b/flutter/android/app/src/main/res/values-night/styles.xml
new file mode 100644
index 0000000..06952be
--- /dev/null
+++ b/flutter/android/app/src/main/res/values-night/styles.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
diff --git a/flutter/android/app/src/main/res/values/styles.xml b/flutter/android/app/src/main/res/values/styles.xml
new file mode 100644
index 0000000..cb1ef88
--- /dev/null
+++ b/flutter/android/app/src/main/res/values/styles.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
diff --git a/flutter/android/app/src/profile/AndroidManifest.xml b/flutter/android/app/src/profile/AndroidManifest.xml
new file mode 100644
index 0000000..399f698
--- /dev/null
+++ b/flutter/android/app/src/profile/AndroidManifest.xml
@@ -0,0 +1,7 @@
+
+
+
+
diff --git a/flutter/android/build.gradle.kts b/flutter/android/build.gradle.kts
new file mode 100644
index 0000000..dbee657
--- /dev/null
+++ b/flutter/android/build.gradle.kts
@@ -0,0 +1,24 @@
+allprojects {
+ repositories {
+ google()
+ mavenCentral()
+ }
+}
+
+val newBuildDir: Directory =
+ rootProject.layout.buildDirectory
+ .dir("../../build")
+ .get()
+rootProject.layout.buildDirectory.value(newBuildDir)
+
+subprojects {
+ val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name)
+ project.layout.buildDirectory.value(newSubprojectBuildDir)
+}
+subprojects {
+ project.evaluationDependsOn(":app")
+}
+
+tasks.register("clean") {
+ delete(rootProject.layout.buildDirectory)
+}
diff --git a/flutter/android/gradle.properties b/flutter/android/gradle.properties
new file mode 100644
index 0000000..fbee1d8
--- /dev/null
+++ b/flutter/android/gradle.properties
@@ -0,0 +1,2 @@
+org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError
+android.useAndroidX=true
diff --git a/flutter/android/gradle/wrapper/gradle-wrapper.properties b/flutter/android/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..e4ef43f
--- /dev/null
+++ b/flutter/android/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,5 @@
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-all.zip
diff --git a/flutter/android/settings.gradle.kts b/flutter/android/settings.gradle.kts
new file mode 100644
index 0000000..ca7fe06
--- /dev/null
+++ b/flutter/android/settings.gradle.kts
@@ -0,0 +1,26 @@
+pluginManagement {
+ val flutterSdkPath =
+ run {
+ val properties = java.util.Properties()
+ file("local.properties").inputStream().use { properties.load(it) }
+ val flutterSdkPath = properties.getProperty("flutter.sdk")
+ require(flutterSdkPath != null) { "flutter.sdk not set in local.properties" }
+ flutterSdkPath
+ }
+
+ includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
+
+ repositories {
+ google()
+ mavenCentral()
+ gradlePluginPortal()
+ }
+}
+
+plugins {
+ id("dev.flutter.flutter-plugin-loader") version "1.0.0"
+ id("com.android.application") version "8.11.1" apply false
+ id("org.jetbrains.kotlin.android") version "2.2.20" apply false
+}
+
+include(":app")
diff --git a/flutter/android/voidea_app_android.iml b/flutter/android/voidea_app_android.iml
new file mode 100644
index 0000000..3bc4b3b
--- /dev/null
+++ b/flutter/android/voidea_app_android.iml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/flutter/build/app/intermediates/flutter/debug/.last_build_id b/flutter/build/app/intermediates/flutter/debug/.last_build_id
new file mode 100644
index 0000000..4fed406
--- /dev/null
+++ b/flutter/build/app/intermediates/flutter/debug/.last_build_id
@@ -0,0 +1 @@
+2b318bb073ec36e02164ec9484e62b1a
\ No newline at end of file
diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_assets/AssetManifest.bin b/flutter/build/app/intermediates/flutter/debug/flutter_assets/AssetManifest.bin
new file mode 100644
index 0000000..86d111f
Binary files /dev/null and b/flutter/build/app/intermediates/flutter/debug/flutter_assets/AssetManifest.bin differ
diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_assets/FontManifest.json b/flutter/build/app/intermediates/flutter/debug/flutter_assets/FontManifest.json
new file mode 100644
index 0000000..3abf18c
--- /dev/null
+++ b/flutter/build/app/intermediates/flutter/debug/flutter_assets/FontManifest.json
@@ -0,0 +1 @@
+[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]}]
\ No newline at end of file
diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_assets/NOTICES.Z b/flutter/build/app/intermediates/flutter/debug/flutter_assets/NOTICES.Z
new file mode 100644
index 0000000..2bb2b73
Binary files /dev/null and b/flutter/build/app/intermediates/flutter/debug/flutter_assets/NOTICES.Z differ
diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_assets/NativeAssetsManifest.json b/flutter/build/app/intermediates/flutter/debug/flutter_assets/NativeAssetsManifest.json
new file mode 100644
index 0000000..523bfc7
--- /dev/null
+++ b/flutter/build/app/intermediates/flutter/debug/flutter_assets/NativeAssetsManifest.json
@@ -0,0 +1 @@
+{"format-version":[1,0,0],"native-assets":{}}
\ No newline at end of file
diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_assets/fonts/MaterialIcons-Regular.otf b/flutter/build/app/intermediates/flutter/debug/flutter_assets/fonts/MaterialIcons-Regular.otf
new file mode 100644
index 0000000..8c99266
Binary files /dev/null and b/flutter/build/app/intermediates/flutter/debug/flutter_assets/fonts/MaterialIcons-Regular.otf differ
diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_assets/isolate_snapshot_data b/flutter/build/app/intermediates/flutter/debug/flutter_assets/isolate_snapshot_data
new file mode 100644
index 0000000..6b90f32
Binary files /dev/null and b/flutter/build/app/intermediates/flutter/debug/flutter_assets/isolate_snapshot_data differ
diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_assets/kernel_blob.bin b/flutter/build/app/intermediates/flutter/debug/flutter_assets/kernel_blob.bin
new file mode 100644
index 0000000..c7d7215
Binary files /dev/null and b/flutter/build/app/intermediates/flutter/debug/flutter_assets/kernel_blob.bin differ
diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_assets/shaders/ink_sparkle.frag b/flutter/build/app/intermediates/flutter/debug/flutter_assets/shaders/ink_sparkle.frag
new file mode 100644
index 0000000..bba8a05
Binary files /dev/null and b/flutter/build/app/intermediates/flutter/debug/flutter_assets/shaders/ink_sparkle.frag differ
diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_assets/shaders/stretch_effect.frag b/flutter/build/app/intermediates/flutter/debug/flutter_assets/shaders/stretch_effect.frag
new file mode 100644
index 0000000..adebca0
Binary files /dev/null and b/flutter/build/app/intermediates/flutter/debug/flutter_assets/shaders/stretch_effect.frag differ
diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_assets/vm_snapshot_data b/flutter/build/app/intermediates/flutter/debug/flutter_assets/vm_snapshot_data
new file mode 100644
index 0000000..6a4dc29
Binary files /dev/null and b/flutter/build/app/intermediates/flutter/debug/flutter_assets/vm_snapshot_data differ
diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_build.d b/flutter/build/app/intermediates/flutter/debug/flutter_build.d
new file mode 100644
index 0000000..bd7ffe0
--- /dev/null
+++ b/flutter/build/app/intermediates/flutter/debug/flutter_build.d
@@ -0,0 +1 @@
+ D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.bin D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NativeAssetsManifest.json D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts\\MaterialIcons-Regular.otf D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\ink_sparkle.frag D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\stretch_effect.frag D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data: C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\_fe_analyzer_shared-85.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer-7.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer_plugin-0.13.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ansicolor-2.0.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\archive-4.0.9\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\args-2.7.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\async.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_memoizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\byte_collector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\cancelable_operation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\chunked_stream_reader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\event_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_consumer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\future_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\lazy_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\null_stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\restartable_timer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\single_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\sink_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_closer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\handler_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\reject_errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\stream_transformer_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\typed.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_splitter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\subscription_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed_stream_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\boolean_selector-2.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build-2.5.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_config-1.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_daemon-4.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_resolvers-2.5.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner-2.5.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner_core-9.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_collection-5.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_value-8.12.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image-3.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_platform_interface-4.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_web-1.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\characters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters_impl.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\breaks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\table.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\checked_yaml-2.0.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\clock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\clock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\default.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\stopwatch.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_builder-4.11.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\collection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\algorithms.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\boollist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\canonicalized_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\comparators.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\empty_unmodifiable_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\functions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\list_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\priority_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\queue_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set_controller.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\unmodifiable_wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\connectivity_plus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\src\\connectivity_plus_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\connectivity_plus_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\method_channel_connectivity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\convert-3.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\cross_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\x_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\crypto.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hmac.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\md5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha1.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha256.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512_fastsinks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\csslib-1.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_core-0.7.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_visitor-1.0.0+7.7.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dart_style-3.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\dbus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_address.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_client.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_server.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_bus_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_client.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_error_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_interface_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspectable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_match_rule.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_member_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_message.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_call.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_response.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_tree.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_peer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_properties.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_read_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_server.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_signal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_uuid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_write_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\dio.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapters\\io_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\cancel_token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio\\dio_for_native.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\form_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\headers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\imply_content_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\log.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file\\io_multipart_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\parameter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\progress_stream\\io_progress_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\redirect_record.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response\\response_stream_handler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\background_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\fused_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\sync_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\consolidate_bytes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\transform_empty_to_null.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio_web_adapter-2.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fake_async-1.3.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\ffi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\allocation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\arena.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf16.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\fixnum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int32.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int64.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\intx.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\utilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\flutter_animate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\change_notifier_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\scroll_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_notifier_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effect_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\align_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\blur_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\box_shadow_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\callback_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\color_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\crossfade_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\custom_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effects.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\elevation_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\fade_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\flip_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\follow_path_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\listen_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\move_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\rotate_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\saturate_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\scale_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shader_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shake_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shimmer_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\slide_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\swap_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\then_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\tint_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\toggle_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\visibility_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\animation_controller_loop_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\num_duration_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\offset_copy_with_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\flutter_animate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\warn.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_cache_manager-3.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_lints-5.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\flutter_local_notifications.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\callback_dispatcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\flutter_local_notifications_plugin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_flutter_local_notifications.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\bitmap.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\icon.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\message.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\method_channel_mappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_sound.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\person.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\schedule_mode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_picture_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_text_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\default_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\inbox_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\media_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\messaging_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\interruption_level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\mappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action_option.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_attachment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category_option.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_enabled_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\ios\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\typedefs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\tz_datetime_mapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\flutter_local_notifications_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\dbus_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications_platform_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\capabilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\hint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\icon.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\sound.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\timeout.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notification_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notifications_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\platform_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\posix.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\storage.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\flutter_local_notifications_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\typedefs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_native_splash-2.4.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\flutter_riverpod.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\builders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\consumer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\framework.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\internals.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\flutter_secure_storage.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\android_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\apple_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\ios_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\linux_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\macos_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\web_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\windows_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\test\\test_flutter_secure_storage_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_linux-1.2.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_macos-3.1.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\flutter_secure_storage_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\method_channel_flutter_secure_storage.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_web-1.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\flutter_secure_storage_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\src\\flutter_secure_storage_windows_ffi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\flutter_shaders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\animated_sampler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\inkwell_shader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\set_uniforms.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\shader_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_svg-2.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed-2.5.8\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed_annotation-2.4.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\frontend_server_client-4.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\go_router.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\configuration.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\delegate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\information_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\logging.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\match.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\error_screen.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\inherited_router.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\cupertino.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\custom_transition_page.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\material.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\path_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\router.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\state.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\graphs-2.3.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\html-0.15.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http-1.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_multi_server-3.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\http_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\authentication_challenge.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\case_insensitive_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\charcodes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\decoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\encoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\http_date.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\media_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\scan.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\image-4.8.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\date_symbols.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\intl.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\date_format_internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\global_state.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi_formatter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\compact_number_format.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_computation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format_field.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\micro_money.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\regexp.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\string_stack.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\text_direction.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\plural_rules.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\io-1.0.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\_internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\jni.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\accessors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\core_bindings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jarray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jclass.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jimplementer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jni.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jprimitives.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jreference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jvalues.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\kotlin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jboolean.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jbyte.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jcharacter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jdouble.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jfloat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jinteger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jlong.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jnumber.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jshort.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jstring.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\lang.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\method_invocation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbuffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbyte_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\nio.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\primitive_jarrays.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\generated_bindings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\global_env_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\jni_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jiterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jlist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jmap.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jset.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\util.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\version_check.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\jni_flutter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\generated_plugin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\jni_flutter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\js-0.6.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\json_annotation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\allowed_keys_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\checked_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\enum_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_enum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_key.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_literal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_serializable-6.9.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker-11.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_flutter_testing-3.0.10\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_testing-3.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\lints-5.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\logging.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\log_record.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\matcher-0.12.19\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\blend\\blend.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\contrast\\contrast.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dislike\\dislike_analyzer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_color.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_scheme.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\material_dynamic_colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\contrast_curve.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\tone_delta_pair.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\variant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\cam16.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\hct.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\src\\hct_solver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\viewing_conditions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\material_color_utilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\core_palette.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\tonal_palette.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_celebi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wsmeans.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wu.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider_lab.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_content.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_expressive.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fidelity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fruit_salad.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_monochrome.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_neutral.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_rainbow.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_tonal_spot.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_vibrant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\score\\score.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\temperature\\temperature_cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\color_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\math_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\string_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta_meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\mime.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\bound_multipart_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\char_code.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\default_extension_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\magic_number.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_multipart_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_shared.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\nm.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\src\\network_manager_client.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\objective_c.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\autorelease.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\block.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\c_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\cf_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\globals.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_array.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_date.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_dictionary.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_enumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_input_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_mutable_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_number.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_exported.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\observer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\os_version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\protocol_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\runtime_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\octo_image-2.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_config-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\package_info_plus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_attribute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_version_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\method_channel_package_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\characters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\internal_style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\parsed_path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\posix.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\url.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_parsing-1.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\lib\\path_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\path_provider_android.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider_android_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\path_provider_foundation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\ffi_bindings.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\path_provider_foundation_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\path_provider_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\path_provider_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\path_provider_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\method_channel_path_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\path_provider_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\folders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\guid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\path_provider_windows_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\win32_wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pedantic-1.11.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\core.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\definition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\expression.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\matcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\petitparser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\grammar.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\reference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\undefined.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\reference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\resolve.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\accept.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_match.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\continuation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\flatten.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\permute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\pick.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\trim.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\where.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any_of.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\char.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\digit.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\letter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\lowercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\none_of.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\char.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\digit.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\letter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lookup.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lowercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\not.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\uppercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\whitespace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\word.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\uppercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\code.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\optimize.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\whitespace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\word.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\and.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\choice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\delegate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_9.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\not.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\optional.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\sequence.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\settable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\skip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\end.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\epsilon.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\failure.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\label.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\newline.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\position.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\predicate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\single_character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\unicode_character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\greedy.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\lazy.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\limited.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\possessive.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\repeating.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\separated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\unbounded.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\failure_joiner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\labeled.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\resolvable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\separated_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\sequential.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\reflection\\iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\pragma.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\local_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\testing\\fake_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\lib\\plugin_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pool-1.5.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\posix-6.5.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\pub_semver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\patterns.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_constraint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_union.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pubspec_parse-1.5.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\riverpod.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose_family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\builders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common\\env.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\always_alive.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\async_selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\container.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\foundation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\listen.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\provider_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\proxy_provider_listenable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\ref.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\scheduler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\value_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\internals.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\listenable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose_family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\pragma.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\run_guarded.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stack_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_controller.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose_family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_analyzer_utils-0.5.9\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_annotation-2.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_generator-2.6.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\rxdart-0.28.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\share_plus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\windows_version_helper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\method_channel\\method_channel_share.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\platform_interface\\share_plus_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\share_plus_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf-1.4.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf_web_socket-3.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\lib\\shimmer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_gen-2.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_helper-1.3.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\source_span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\highlighter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_with_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_to_text.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\method_channel_speech_to_text.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\speech_to_text_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\lib\\speech_to_text_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite-2.4.2+1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\lib\\sqflite_android.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite_logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sql.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqlite_api.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\arg_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\batch.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\collection_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\compat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\cursor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_executor_iterate_ext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_ext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\env_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\logger\\sqflite_logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\factory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\import_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\open_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\path_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_database_factory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_debug.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command_executor_ext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\transaction.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\value_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\utils\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\lib\\sqflite_darwin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\sqflite_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\factory_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\platform_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_import.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_method_channel.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\chain.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\frame.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_chain.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\stack_zone_specification.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\unparsed_frame.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\vm_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\stack_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\lib\\state_notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_channel-2.1.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_transform-2.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\eager_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\line_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\relative_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\basic_lock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\lock_extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\multi_lock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\reentrant_lock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\synchronized.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\ascii_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\top_level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\unicode_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\term_glyph.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\test_api-0.7.10\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\date_time.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\env.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\exceptions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location_database.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\tzdb.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\timezone.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timing-1.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_buffers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\universal_io-2.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\legacy_api.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\type_conversion.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_uri.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\url_launcher_android.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\url_launcher_ios.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\url_launcher_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\url_launcher_macos.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\method_channel_url_launcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\url_launcher_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\url_launcher_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_web-2.4.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\url_launcher_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\parsing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\rng.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v1.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8generic.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\validation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics-1.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_codec-1.1.13\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_compiler-1.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\error_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\frustum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\intersection_result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\noise.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\obb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\opengl.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\plane.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quad.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quaternion.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\ray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\sphere.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\triangle.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\utilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\error_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\frustum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\intersection_result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\noise.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\obb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\opengl.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\plane.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quad.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quaternion.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\ray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\sphere.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\triangle.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\utilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math_64.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vm_service-15.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\watcher-1.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web-1.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket-1.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket_channel-3.0.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\bstr.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\callbacks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iagileobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iapplicationactivationmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfile.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfilesenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplication.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplicationsenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestospackagedependency.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependenciesenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependency.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackageid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestproperties.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxpackagereader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiocaptureclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclientduckingcontrol.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclockadjustment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiorenderclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiostreamvolume.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ibindctx.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ichannelaudiovolume.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iclassfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpoint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpointcontainer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idesktopwallpaper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idispatch.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumidlist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienummoniker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworkconnections.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumresources.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumspellingerror.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumstring.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumvariant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumwbemclassobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ierrorinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialogcustomize.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileisinuse.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileopendialog.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifilesavedialog.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinitializewithwindow.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinspectable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfolder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfoldermanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataassemblyimport.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenserex.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevicecollection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdeviceenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immendpoint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immnotificationclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imodalwindow.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imoniker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetwork.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworkconnection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanagerevents.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistfile.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistmemory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersiststream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipropertystore.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iprovideclassinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irestrictederrorinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irunningobjecttable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensorcollection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensordatareport.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensormanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isequentialstream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellfolder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemarray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemfilter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemimagefactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemresources.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdatalist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdual.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellservice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isimpleaudiovolume.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechaudioformat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechbasestream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttoken.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttokens.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoicestatus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechwaveformatex.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerchangedeventhandler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellingerror.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeventsource.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispnotifysource.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispvoice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\istream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isupporterrorinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\itypeinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationandcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationannotationpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationboolcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcacherequest.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcustomnavigationpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdockpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdragpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdroptargetpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement9.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelementarray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationexpandcollapsepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgriditempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgridpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationinvokepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationitemcontainerpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationlegacyiaccessiblepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationmultipleviewpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationnotcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationobjectmodelpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationorcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationpropertycondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactoryentry.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactorymapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationrangevaluepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationstylespattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationsynchronizedinputpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtableitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtablepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextchildpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtexteditpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrangearray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtogglepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtreewalker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvaluepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvirtualizeditempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationwindowpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iunknown.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuri.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ivirtualdesktopmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemclassobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemconfigurerefresher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemcontext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemhiperfenum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemlocator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemobjectaccess.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemrefresher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemservices.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwebauthenticationcoremanagerinterop.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwinhttprequest.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\combase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_metadata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_nodoc.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\dispatcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\exceptions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\_internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\dialogs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\filetime.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\int_to_hexstring.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\list_to_blob.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_ansi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string_array.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\unpack_utf16.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\functions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\guid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\inline.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\macros.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\propertykey.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\variant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\advapi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_apiquery_l2_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_1.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_2.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_handle_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_path_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_sysinfo_l1_2_3.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_error_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_string_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_1.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_shcore_scaling_l1_1_1.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_wsl_api_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bluetoothapis.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bthprops.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comctl32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comdlg32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\crypt32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dbghelp.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dwmapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dxva2.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\gdi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\iphlpapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\kernel32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\magnification.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\netapi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ntdll.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ole32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\oleaut32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\powrprof.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\propsys.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\rometadata.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\scarddlg.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\setupapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shell32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shlwapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\user32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\uxtheme.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\version.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wevtapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winmm.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winscard.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winspool.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wlanapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wtsapi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\xinput1_4.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winmd_constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winrt_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\win32.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\lib\\xdg_directories.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\dtd\\external_id.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\default_mapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\entity_mapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\named_entities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\null_mapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\attribute_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\node_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\format_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parent_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parser_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\tag_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\type_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\ancestors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\comparison.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\descendants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\find.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\following.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\mutator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\nodes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\preceding.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\sibling.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_attributes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_children.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_visitor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_writer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\attribute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\cdata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\comment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\declaration.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\doctype.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document_fragment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\node.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\processing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\text.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\character_data_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name_matcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\namespace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\node_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\predicate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\prefix_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\simple_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\normalizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\pretty_writer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\visitor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\writer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\annotator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\event_codec.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\node_codec.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_decoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_encoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_decoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_encoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\event.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\cdata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\comment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\declaration.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\doctype.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\end_element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\processing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\start_element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\text.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\each_event.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\flatten.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\normalizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\subtree_selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\with_parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\conversion_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\event_attribute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\list_converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\named.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\visitor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml_events.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\LICENSE C:\\Users\\angel\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf C:\\Users\\angel\\flutter\\bin\\cache\\dart-sdk\\version C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp C:\\Users\\angel\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE C:\\Users\\angel\\flutter\\packages\\flutter\\LICENSE C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\animation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\cupertino.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\foundation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\gestures.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\material.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\painting.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\physics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\rendering.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\scheduler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\semantics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\services.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\curves.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\adaptive_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\app.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\checkbox.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\colors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\cupertino_focus_halo.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\expansion_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_section.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\magnifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\radio.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\route.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sheet.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\slider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\spell_check_suggestions_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\switch.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\dart_plugin_registrant.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_capabilities_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_features.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_timeline_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\annotations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\assertions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\capabilities.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\collections.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\isolates.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\key.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\licenses.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\memory_allocations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\node.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\object.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\persistent_hash_map.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\platform.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\print.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\serialization.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\timeline.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\unicode.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\arena.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\converter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\eager.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\events.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\force_press.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_details.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_settings.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\long_press.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multitap.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\resampler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\scale.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap_and_drag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\team.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\about.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_buttons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_icons_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\adaptive_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\arc.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\autocomplete.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\back_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\choice_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\color_scheme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\colors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\curves.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_source.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_form_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expand_icon.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filter_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_sparkle.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_splash.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_well.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_decorator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\magnifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_localizations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_anchor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\motion.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\no_splash.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\predictive_back_page_transitions_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider_parts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scaffold.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_anchor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_view_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selectable_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selection_area.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\ink_sparkle.frag C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\stretch_effect.frag C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shadows.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_parts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_value_indicator_shape.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar_layout_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\stepper.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tabs.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_form_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_visibility.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\typography.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_web_image_info_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\alignment.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\basic_types.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\border_radius.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\borders.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_fit.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\circle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\clip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\colors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\geometry.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\gradient.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_cache.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_stream.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\inline_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\linear_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\oval_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\star_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\strut_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_painter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_scaler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\tolerance.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\utils.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\decorated_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\editable.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\error.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flex.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flow.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image_filter_config.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_body.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\object.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_group.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_tree.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\stack.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\texture.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\tweens.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\wrap.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\priority.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\_background_isolate_binary_messenger_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_manifest.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\autofill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\browser_context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\clipboard.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\deferred_component.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flavor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flutter_version.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\font_loader.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_inserted_content.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_key.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_maps.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\live_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codec.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codecs.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_channel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_views.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\predictive_back_event.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\process_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\restoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\scribe.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\sensitive_content.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\spell_check.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_channels.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_chrome.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_navigator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_sound.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_boundary.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing_delta.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_formatter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_input.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_layout_metrics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\undo_manager.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_html_element_view_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_platform_selectable_region_context_menu_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_browser_detection_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_image_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_linux.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_macos.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_positioner.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_win32.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\actions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\adapter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app_lifecycle_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\async.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autofill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\banner.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\basic.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\container.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_button_item.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\date.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\decorated_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_selection_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\display_feature_sub_screen.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_boundary.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\expansible.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\feedback.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\flutter_logo.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\form.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\framework.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\heroes.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\localizations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\lookup_boundary.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\magnifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\media_query.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator_pop_handler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_transitions_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pages.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pinned_header_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_menu_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_selectable_region_context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pop_scope.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\radio_group.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_menu_anchor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_radio.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_tooltip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\repeating_animation_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\router.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\routes.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable_helpers.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selectable_region.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selection_container.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sensitive_content.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shared_app_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_floating_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_resizing_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_tree.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\slotted_render_object_widget.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\snapshot_widget.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spacer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spell_check.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\standard_component_type.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\stretch_effect.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\system_context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tap_region.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_anchors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\texture.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\title.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\toggleable.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\transitions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\undo_history.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\visibility.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_state.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\widgets.dart C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\common.dart C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\icon_tree_shaker.dart C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\native_assets.dart D:\\YandexDisk\\voidea\\flutter\\DOES_NOT_EXIST_RERUN_FOR_WILDCARD1058567949 D:\\YandexDisk\\voidea\\flutter\\lib\\api\\disk.dart D:\\YandexDisk\\voidea\\flutter\\lib\\app.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\client.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\endpoints.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\exceptions.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\constants\\app_constants.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\router\\app_router.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\theme\\app_theme.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\utils\\validators.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\admin\\screens\\admin_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\forgot_password_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\login_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\register_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\reset_password_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\two_factor_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\dashboard\\dashboard_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_create_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_edit_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_list_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_view_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\widgets\\funnel_kanban.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\calendar_integration_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\disk_integration_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\notifications\\notifications_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\onboarding\\onboarding_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\settings\\screens\\settings_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_input_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_sessions_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_detail_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_list_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\main.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\admin.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\auth.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\collaboration.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\idea.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\tariff.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\voice.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\workspace.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\auth_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\disk_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\ideas_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\notification_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\theme_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\workspace_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\comment_thread.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\empty_state.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\error_display.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\funnel_status_badge.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\loading_indicator.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\shell.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\vote_buttons.dart D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml
\ No newline at end of file
diff --git a/flutter/build/app/intermediates/flutter/debug/libs.jar b/flutter/build/app/intermediates/flutter/debug/libs.jar
new file mode 100644
index 0000000..58f42d9
Binary files /dev/null and b/flutter/build/app/intermediates/flutter/debug/libs.jar differ
diff --git a/flutter/build/app/intermediates/incremental/mergeDebugShaders/merger.xml b/flutter/build/app/intermediates/incremental/mergeDebugShaders/merger.xml
new file mode 100644
index 0000000..77eeb5e
--- /dev/null
+++ b/flutter/build/app/intermediates/incremental/mergeDebugShaders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/flutter/build/app/tmp/packJniLibsflutterBuildDebug/MANIFEST.MF b/flutter/build/app/tmp/packJniLibsflutterBuildDebug/MANIFEST.MF
new file mode 100644
index 0000000..59499bc
--- /dev/null
+++ b/flutter/build/app/tmp/packJniLibsflutterBuildDebug/MANIFEST.MF
@@ -0,0 +1,2 @@
+Manifest-Version: 1.0
+
diff --git a/flutter/build/connectivity_plus/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/connectivity_plus/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
new file mode 100644
index 0000000..1211b1e
--- /dev/null
+++ b/flutter/build/connectivity_plus/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
@@ -0,0 +1,6 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=1
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
+coreLibraryDesugaringEnabled=false
diff --git a/flutter/build/connectivity_plus/intermediates/incremental/mergeDebugAssets/merger.xml b/flutter/build/connectivity_plus/intermediates/incremental/mergeDebugAssets/merger.xml
new file mode 100644
index 0000000..aee9b0a
--- /dev/null
+++ b/flutter/build/connectivity_plus/intermediates/incremental/mergeDebugAssets/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/flutter/build/connectivity_plus/intermediates/incremental/mergeDebugShaders/merger.xml b/flutter/build/connectivity_plus/intermediates/incremental/mergeDebugShaders/merger.xml
new file mode 100644
index 0000000..d4b0877
--- /dev/null
+++ b/flutter/build/connectivity_plus/intermediates/incremental/mergeDebugShaders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/flutter/build/eb9ddc103a0f084dff021ac4bc0cf326/_composite.stamp b/flutter/build/eb9ddc103a0f084dff021ac4bc0cf326/_composite.stamp
new file mode 100644
index 0000000..1b2d28c
--- /dev/null
+++ b/flutter/build/eb9ddc103a0f084dff021ac4bc0cf326/_composite.stamp
@@ -0,0 +1 @@
+{"inputs":[],"outputs":[]}
\ No newline at end of file
diff --git a/flutter/build/eb9ddc103a0f084dff021ac4bc0cf326/gen_dart_plugin_registrant.stamp b/flutter/build/eb9ddc103a0f084dff021ac4bc0cf326/gen_dart_plugin_registrant.stamp
new file mode 100644
index 0000000..8752078
--- /dev/null
+++ b/flutter/build/eb9ddc103a0f084dff021ac4bc0cf326/gen_dart_plugin_registrant.stamp
@@ -0,0 +1 @@
+{"inputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart"]}
\ No newline at end of file
diff --git a/flutter/build/eb9ddc103a0f084dff021ac4bc0cf326/gen_localizations.stamp b/flutter/build/eb9ddc103a0f084dff021ac4bc0cf326/gen_localizations.stamp
new file mode 100644
index 0000000..1b2d28c
--- /dev/null
+++ b/flutter/build/eb9ddc103a0f084dff021ac4bc0cf326/gen_localizations.stamp
@@ -0,0 +1 @@
+{"inputs":[],"outputs":[]}
\ No newline at end of file
diff --git a/flutter/build/flutter_local_notifications/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/flutter_local_notifications/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
new file mode 100644
index 0000000..eb9ba5e
--- /dev/null
+++ b/flutter/build/flutter_local_notifications/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
@@ -0,0 +1,7 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=1
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
+coreLibraryDesugaringEnabled=true
+desugarJdkLib=com.android.tools:desugar_jdk_libs:1.2.2
diff --git a/flutter/build/flutter_local_notifications/intermediates/incremental/mergeDebugAssets/merger.xml b/flutter/build/flutter_local_notifications/intermediates/incremental/mergeDebugAssets/merger.xml
new file mode 100644
index 0000000..f6f54d3
--- /dev/null
+++ b/flutter/build/flutter_local_notifications/intermediates/incremental/mergeDebugAssets/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/flutter/build/flutter_local_notifications/intermediates/incremental/mergeDebugShaders/merger.xml b/flutter/build/flutter_local_notifications/intermediates/incremental/mergeDebugShaders/merger.xml
new file mode 100644
index 0000000..7a7eff4
--- /dev/null
+++ b/flutter/build/flutter_local_notifications/intermediates/incremental/mergeDebugShaders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/flutter/build/flutter_native_splash/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/flutter_native_splash/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
new file mode 100644
index 0000000..1211b1e
--- /dev/null
+++ b/flutter/build/flutter_native_splash/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
@@ -0,0 +1,6 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=1
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
+coreLibraryDesugaringEnabled=false
diff --git a/flutter/build/flutter_native_splash/intermediates/incremental/mergeDebugAssets/merger.xml b/flutter/build/flutter_native_splash/intermediates/incremental/mergeDebugAssets/merger.xml
new file mode 100644
index 0000000..b7aaac5
--- /dev/null
+++ b/flutter/build/flutter_native_splash/intermediates/incremental/mergeDebugAssets/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/flutter/build/flutter_native_splash/intermediates/incremental/mergeDebugShaders/merger.xml b/flutter/build/flutter_native_splash/intermediates/incremental/mergeDebugShaders/merger.xml
new file mode 100644
index 0000000..39eec40
--- /dev/null
+++ b/flutter/build/flutter_native_splash/intermediates/incremental/mergeDebugShaders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/flutter/build/flutter_secure_storage/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/flutter_secure_storage/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
new file mode 100644
index 0000000..1211b1e
--- /dev/null
+++ b/flutter/build/flutter_secure_storage/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
@@ -0,0 +1,6 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=1
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
+coreLibraryDesugaringEnabled=false
diff --git a/flutter/build/jni/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/jni/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
new file mode 100644
index 0000000..1211b1e
--- /dev/null
+++ b/flutter/build/jni/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
@@ -0,0 +1,6 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=1
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
+coreLibraryDesugaringEnabled=false
diff --git a/flutter/build/jni_flutter/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/jni_flutter/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
new file mode 100644
index 0000000..1211b1e
--- /dev/null
+++ b/flutter/build/jni_flutter/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
@@ -0,0 +1,6 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=1
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
+coreLibraryDesugaringEnabled=false
diff --git a/flutter/build/package_info_plus/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/package_info_plus/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
new file mode 100644
index 0000000..1211b1e
--- /dev/null
+++ b/flutter/build/package_info_plus/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
@@ -0,0 +1,6 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=1
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
+coreLibraryDesugaringEnabled=false
diff --git a/flutter/build/reports/problems/problems-report.html b/flutter/build/reports/problems/problems-report.html
new file mode 100644
index 0000000..4b47f2c
--- /dev/null
+++ b/flutter/build/reports/problems/problems-report.html
@@ -0,0 +1,663 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ Gradle Configuration Cache
+
+
+
+
+
+
+ Loading...
+
+
+
+
+
+
+
diff --git a/flutter/build/share_plus/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/share_plus/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
new file mode 100644
index 0000000..1211b1e
--- /dev/null
+++ b/flutter/build/share_plus/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
@@ -0,0 +1,6 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=1
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
+coreLibraryDesugaringEnabled=false
diff --git a/flutter/build/speech_to_text/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/speech_to_text/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
new file mode 100644
index 0000000..1211b1e
--- /dev/null
+++ b/flutter/build/speech_to_text/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
@@ -0,0 +1,6 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=1
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
+coreLibraryDesugaringEnabled=false
diff --git a/flutter/build/sqflite_android/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/sqflite_android/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
new file mode 100644
index 0000000..1211b1e
--- /dev/null
+++ b/flutter/build/sqflite_android/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
@@ -0,0 +1,6 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=1
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
+coreLibraryDesugaringEnabled=false
diff --git a/flutter/build/url_launcher_android/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/url_launcher_android/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
new file mode 100644
index 0000000..1211b1e
--- /dev/null
+++ b/flutter/build/url_launcher_android/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
@@ -0,0 +1,6 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=1
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
+coreLibraryDesugaringEnabled=false
diff --git a/flutter/fix_build.ps1 b/flutter/fix_build.ps1
new file mode 100644
index 0000000..68e8ec1
--- /dev/null
+++ b/flutter/fix_build.ps1
@@ -0,0 +1,34 @@
+# Fix Flutter Android build: AGP 8.x namespace issue with old device_info package
+# Run AFTER: flutter create --project-name voidea_app --org com.voidea .
+# Сценарий: ищет device_info-2.0.3 в pub-cache и патчит build.gradle
+
+param (
+ [string]$PubCachePath = "$env:USERPROFILE\AppData\Local\Pub\Cache"
+)
+
+Write-Host "Fixing device_info namespace for AGP 8+..." -ForegroundColor Cyan
+
+$deviceInfoDir = Get-ChildItem -Path "$PubCachePath\hosted\pub.dev" -Directory -Filter "device_info-*" | Sort-Object Name -Descending | Select-Object -First 1
+
+if (-not $deviceInfoDir) {
+ Write-Host "device_info not found in pub cache. Run flutter pub get first." -ForegroundColor Yellow
+ exit 1
+}
+
+$buildGradle = Join-Path $deviceInfoDir.FullName "android\build.gradle"
+if (-not (Test-Path $buildGradle)) {
+ Write-Host "build.gradle not found at $buildGradle" -ForegroundColor Red
+ exit 1
+}
+
+$content = Get-Content $buildGradle -Raw
+
+if ($content -match "namespace\s+") {
+ Write-Host "namespace already set in $buildGradle" -ForegroundColor Green
+} else {
+ $fixed = $content -replace "(android\s*\{)", "`$1`n namespace 'com.voidea.app'"
+ Set-Content -Path $buildGradle -Value $fixed
+ Write-Host "Patched namespace in $buildGradle" -ForegroundColor Green
+}
+
+Write-Host "Done. Run 'flutter run' now." -ForegroundColor Cyan
diff --git a/flutter/fix_build.sh b/flutter/fix_build.sh
new file mode 100644
index 0000000..caa4371
--- /dev/null
+++ b/flutter/fix_build.sh
@@ -0,0 +1,32 @@
+#!/bin/bash
+# Fix Flutter Android build: AGP 8.x namespace issue with old device_info package
+# Run AFTER: flutter create --project-name voidea_app --org com.voidea .
+# Usage: bash fix_build.sh
+
+set -e
+
+PUB_CACHE="${FLUTTER_ROOT:-$HOME/flutter}/.pub-cache/hosted/pub.dev"
+
+echo "Fixing device_info namespace for AGP 8+..."
+
+DEVICE_INFO_DIR=$(ls -d "$PUB_CACHE"/device_info-* 2>/dev/null | sort -V | tail -1)
+
+if [ -z "$DEVICE_INFO_DIR" ]; then
+ echo "device_info not found in pub cache. Run flutter pub get first."
+ exit 1
+fi
+
+BUILD_GRADLE="$DEVICE_INFO_DIR/android/build.gradle"
+if [ ! -f "$BUILD_GRADLE" ]; then
+ echo "build.gradle not found at $BUILD_GRADLE"
+ exit 1
+fi
+
+if grep -q "namespace " "$BUILD_GRADLE"; then
+ echo "namespace already set in $BUILD_GRADLE"
+else
+ sed -i 's/android {/android {\n namespace "com.voidea.app"/' "$BUILD_GRADLE"
+ echo "Patched namespace in $BUILD_GRADLE"
+fi
+
+echo "Done. Run 'flutter run' now."
diff --git a/flutter/init_project.ps1 b/flutter/init_project.ps1
new file mode 100644
index 0000000..0927804
--- /dev/null
+++ b/flutter/init_project.ps1
@@ -0,0 +1,83 @@
+# Инициализация Flutter-проекта VoIdea
+# Создаёт platform-папки (android/ios/web) не трогая наши lib/ файлы
+
+param (
+ [string]$ProjectDir = $PSScriptRoot
+)
+
+Write-Host "=== VoIdea Flutter Project Init ===" -ForegroundColor Cyan
+
+# 1. Удаляем пустые папки android/ios/web которые мы создали вручную
+Write-Host "`n[1/5] Cleaning stub folders..." -ForegroundColor Yellow
+$stubs = @("android", "ios", "web")
+foreach ($dir in $stubs) {
+ $path = Join-Path $ProjectDir $dir
+ if (Test-Path $path) {
+ Remove-Item -Recurse -Force $path
+ Write-Host " Removed $dir"
+ }
+}
+
+# 2. Создаём временный проект
+Write-Host "`n[2/5] Creating temp Flutter project..." -ForegroundColor Yellow
+$tempDir = Join-Path $env:TEMP "voidea_flutter_temp_$(Get-Random)"
+New-Item -ItemType Directory -Path $tempDir -Force | Out-Null
+flutter create --android-language kotlin --project-name voidea_app --org com.voidea --platforms android,ios,web $tempDir 2>&1 | Out-Null
+if (-not (Test-Path (Join-Path $tempDir "android"))) {
+ Write-Host "ERROR: flutter create failed. Check Flutter SDK installation." -ForegroundColor Red
+ exit 1
+}
+Write-Host " Temp project created at $tempDir"
+
+# 3. Копируем platform-папки в наш проект
+Write-Host "`n[3/5] Copying platform folders..." -ForegroundColor Yellow
+$folders = @("android", "ios", "web")
+foreach ($folder in $folders) {
+ $src = Join-Path $tempDir $folder
+ $dst = Join-Path $ProjectDir $folder
+ if (Test-Path $src) {
+ Copy-Item -Recurse -Force $src $dst
+ Write-Host " Copied $folder"
+ }
+}
+
+# Копируем .metadata (нужен Flutter tools)
+Copy-Item (Join-Path $tempDir ".metadata") (Join-Path $ProjectDir ".metadata") -Force
+Write-Host " Copied .metadata"
+
+# 4. Удаляем временный проект
+Write-Host "`n[4/5] Cleaning up..." -ForegroundColor Yellow
+Remove-Item -Recurse -Force $tempDir
+Write-Host " Temp project removed"
+
+# 5. Проверяем что наши lib/ файлы на месте
+Write-Host "`n[5/5] Verifying..." -ForegroundColor Yellow
+$ourFiles = @(
+ "lib/main.dart",
+ "lib/app.dart",
+ "lib/core/theme/app_theme.dart",
+ "lib/core/router/app_router.dart",
+ "lib/core/api/client.dart",
+ "lib/providers/auth_provider.dart"
+)
+$allOk = $true
+foreach ($file in $ourFiles) {
+ $path = Join-Path $ProjectDir $file
+ if (Test-Path $path) {
+ Write-Host " OK $file"
+ } else {
+ Write-Host " MISSING $file" -ForegroundColor Red
+ $allOk = $false
+ }
+}
+
+Write-Host "`n================================" -ForegroundColor Cyan
+if ($allOk) {
+ Write-Host "SUCCESS! Run these commands:" -ForegroundColor Green
+ Write-Host " cd flutter"
+ Write-Host " flutter clean"
+ Write-Host " flutter pub get"
+ Write-Host " flutter run"
+} else {
+ Write-Host "Some files are missing. Check git status." -ForegroundColor Red
+}
diff --git a/flutter/ios/.gitignore b/flutter/ios/.gitignore
new file mode 100644
index 0000000..7a7f987
--- /dev/null
+++ b/flutter/ios/.gitignore
@@ -0,0 +1,34 @@
+**/dgph
+*.mode1v3
+*.mode2v3
+*.moved-aside
+*.pbxuser
+*.perspectivev3
+**/*sync/
+.sconsign.dblite
+.tags*
+**/.vagrant/
+**/DerivedData/
+Icon?
+**/Pods/
+**/.symlinks/
+profile
+xcuserdata
+**/.generated/
+Flutter/App.framework
+Flutter/Flutter.framework
+Flutter/Flutter.podspec
+Flutter/Generated.xcconfig
+Flutter/ephemeral/
+Flutter/app.flx
+Flutter/app.zip
+Flutter/flutter_assets/
+Flutter/flutter_export_environment.sh
+ServiceDefinitions.json
+Runner/GeneratedPluginRegistrant.*
+
+# Exceptions to above rules.
+!default.mode1v3
+!default.mode2v3
+!default.pbxuser
+!default.perspectivev3
diff --git a/flutter/ios/Flutter/AppFrameworkInfo.plist b/flutter/ios/Flutter/AppFrameworkInfo.plist
new file mode 100644
index 0000000..391a902
--- /dev/null
+++ b/flutter/ios/Flutter/AppFrameworkInfo.plist
@@ -0,0 +1,24 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ en
+ CFBundleExecutable
+ App
+ CFBundleIdentifier
+ io.flutter.flutter.app
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ App
+ CFBundlePackageType
+ FMWK
+ CFBundleShortVersionString
+ 1.0
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ 1.0
+
+
diff --git a/flutter/ios/Flutter/Debug.xcconfig b/flutter/ios/Flutter/Debug.xcconfig
new file mode 100644
index 0000000..592ceee
--- /dev/null
+++ b/flutter/ios/Flutter/Debug.xcconfig
@@ -0,0 +1 @@
+#include "Generated.xcconfig"
diff --git a/flutter/ios/Flutter/Release.xcconfig b/flutter/ios/Flutter/Release.xcconfig
new file mode 100644
index 0000000..592ceee
--- /dev/null
+++ b/flutter/ios/Flutter/Release.xcconfig
@@ -0,0 +1 @@
+#include "Generated.xcconfig"
diff --git a/flutter/ios/Runner.xcodeproj/project.pbxproj b/flutter/ios/Runner.xcodeproj/project.pbxproj
new file mode 100644
index 0000000..95b6eae
--- /dev/null
+++ b/flutter/ios/Runner.xcodeproj/project.pbxproj
@@ -0,0 +1,620 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 54;
+ objects = {
+
+/* Begin PBXBuildFile section */
+ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
+ 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
+ 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
+ 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
+ 7884E8682EC3CC0700C636F2 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7884E8672EC3CC0400C636F2 /* SceneDelegate.swift */; };
+ 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
+ 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
+ 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXContainerItemProxy section */
+ 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 97C146E61CF9000F007C117D /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 97C146ED1CF9000F007C117D;
+ remoteInfo = Runner;
+ };
+/* End PBXContainerItemProxy section */
+
+/* Begin PBXCopyFilesBuildPhase section */
+ 9705A1C41CF9048500538489 /* Embed Frameworks */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = "";
+ dstSubfolderSpec = 10;
+ files = (
+ );
+ name = "Embed Frameworks";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXCopyFilesBuildPhase section */
+
+/* Begin PBXFileReference section */
+ 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; };
+ 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; };
+ 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; };
+ 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
+ 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; };
+ 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; };
+ 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
+ 7884E8672EC3CC0400C636F2 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; };
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; };
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; };
+ 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; };
+ 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
+ 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
+ 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
+ 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+ 97C146EB1CF9000F007C117D /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ 331C8082294A63A400263BE5 /* RunnerTests */ = {
+ isa = PBXGroup;
+ children = (
+ 331C807B294A618700263BE5 /* RunnerTests.swift */,
+ );
+ path = RunnerTests;
+ sourceTree = "";
+ };
+ 9740EEB11CF90186004384FC /* Flutter */ = {
+ isa = PBXGroup;
+ children = (
+ 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */,
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
+ 9740EEB31CF90195004384FC /* Generated.xcconfig */,
+ );
+ name = Flutter;
+ sourceTree = "";
+ };
+ 97C146E51CF9000F007C117D = {
+ isa = PBXGroup;
+ children = (
+ 9740EEB11CF90186004384FC /* Flutter */,
+ 97C146F01CF9000F007C117D /* Runner */,
+ 97C146EF1CF9000F007C117D /* Products */,
+ 331C8082294A63A400263BE5 /* RunnerTests */,
+ );
+ sourceTree = "";
+ };
+ 97C146EF1CF9000F007C117D /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 97C146EE1CF9000F007C117D /* Runner.app */,
+ 331C8081294A63A400263BE5 /* RunnerTests.xctest */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ 97C146F01CF9000F007C117D /* Runner */ = {
+ isa = PBXGroup;
+ children = (
+ 97C146FA1CF9000F007C117D /* Main.storyboard */,
+ 97C146FD1CF9000F007C117D /* Assets.xcassets */,
+ 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
+ 97C147021CF9000F007C117D /* Info.plist */,
+ 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
+ 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
+ 74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
+ 7884E8672EC3CC0400C636F2 /* SceneDelegate.swift */,
+ 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
+ );
+ path = Runner;
+ sourceTree = "";
+ };
+/* End PBXGroup section */
+
+/* Begin PBXNativeTarget section */
+ 331C8080294A63A400263BE5 /* RunnerTests */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
+ buildPhases = (
+ 331C807D294A63A400263BE5 /* Sources */,
+ 331C807F294A63A400263BE5 /* Resources */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 331C8086294A63A400263BE5 /* PBXTargetDependency */,
+ );
+ name = RunnerTests;
+ productName = RunnerTests;
+ productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */;
+ productType = "com.apple.product-type.bundle.unit-test";
+ };
+ 97C146ED1CF9000F007C117D /* Runner */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
+ buildPhases = (
+ 9740EEB61CF901F6004384FC /* Run Script */,
+ 97C146EA1CF9000F007C117D /* Sources */,
+ 97C146EB1CF9000F007C117D /* Frameworks */,
+ 97C146EC1CF9000F007C117D /* Resources */,
+ 9705A1C41CF9048500538489 /* Embed Frameworks */,
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = Runner;
+ productName = Runner;
+ productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
+ productType = "com.apple.product-type.application";
+ };
+/* End PBXNativeTarget section */
+
+/* Begin PBXProject section */
+ 97C146E61CF9000F007C117D /* Project object */ = {
+ isa = PBXProject;
+ attributes = {
+ BuildIndependentTargetsInParallel = YES;
+ LastUpgradeCheck = 1510;
+ ORGANIZATIONNAME = "";
+ TargetAttributes = {
+ 331C8080294A63A400263BE5 = {
+ CreatedOnToolsVersion = 14.0;
+ TestTargetID = 97C146ED1CF9000F007C117D;
+ };
+ 97C146ED1CF9000F007C117D = {
+ CreatedOnToolsVersion = 7.3.1;
+ LastSwiftMigration = 1100;
+ };
+ };
+ };
+ buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
+ compatibilityVersion = "Xcode 9.3";
+ developmentRegion = en;
+ hasScannedForEncodings = 0;
+ knownRegions = (
+ en,
+ Base,
+ );
+ mainGroup = 97C146E51CF9000F007C117D;
+ productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
+ projectDirPath = "";
+ projectRoot = "";
+ targets = (
+ 97C146ED1CF9000F007C117D /* Runner */,
+ 331C8080294A63A400263BE5 /* RunnerTests */,
+ );
+ };
+/* End PBXProject section */
+
+/* Begin PBXResourcesBuildPhase section */
+ 331C807F294A63A400263BE5 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 97C146EC1CF9000F007C117D /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
+ 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
+ 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
+ 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXResourcesBuildPhase section */
+
+/* Begin PBXShellScriptBuildPhase section */
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
+ isa = PBXShellScriptBuildPhase;
+ alwaysOutOfDate = 1;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputPaths = (
+ "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
+ );
+ name = "Thin Binary";
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
+ };
+ 9740EEB61CF901F6004384FC /* Run Script */ = {
+ isa = PBXShellScriptBuildPhase;
+ alwaysOutOfDate = 1;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputPaths = (
+ );
+ name = "Run Script";
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
+ };
+/* End PBXShellScriptBuildPhase section */
+
+/* Begin PBXSourcesBuildPhase section */
+ 331C807D294A63A400263BE5 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 97C146EA1CF9000F007C117D /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
+ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
+ 7884E8682EC3CC0700C636F2 /* SceneDelegate.swift in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXSourcesBuildPhase section */
+
+/* Begin PBXTargetDependency section */
+ 331C8086294A63A400263BE5 /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ target = 97C146ED1CF9000F007C117D /* Runner */;
+ targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */;
+ };
+/* End PBXTargetDependency section */
+
+/* Begin PBXVariantGroup section */
+ 97C146FA1CF9000F007C117D /* Main.storyboard */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 97C146FB1CF9000F007C117D /* Base */,
+ );
+ name = Main.storyboard;
+ sourceTree = "";
+ };
+ 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 97C147001CF9000F007C117D /* Base */,
+ );
+ name = LaunchScreen.storyboard;
+ sourceTree = "";
+ };
+/* End PBXVariantGroup section */
+
+/* Begin XCBuildConfiguration section */
+ 249021D3217E4FDB00AE95B9 /* Profile */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ 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_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ 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_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ SDKROOT = iphoneos;
+ SUPPORTED_PLATFORMS = iphoneos;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Profile;
+ };
+ 249021D4217E4FDB00AE95B9 /* Profile */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.voidea.voideaApp;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Profile;
+ };
+ 331C8088294A63A400263BE5 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 1;
+ GENERATE_INFOPLIST_FILE = YES;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.voidea.voideaApp.RunnerTests;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ SWIFT_VERSION = 5.0;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
+ };
+ name = Debug;
+ };
+ 331C8089294A63A400263BE5 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 1;
+ GENERATE_INFOPLIST_FILE = YES;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.voidea.voideaApp.RunnerTests;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_VERSION = 5.0;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
+ };
+ name = Release;
+ };
+ 331C808A294A63A400263BE5 /* Profile */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 1;
+ GENERATE_INFOPLIST_FILE = YES;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.voidea.voideaApp.RunnerTests;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_VERSION = 5.0;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
+ };
+ name = Profile;
+ };
+ 97C147031CF9000F007C117D /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ 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_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ 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_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = dwarf;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_TESTABILITY = YES;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ 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_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
+ MTL_ENABLE_DEBUG_INFO = YES;
+ ONLY_ACTIVE_ARCH = YES;
+ SDKROOT = iphoneos;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ };
+ name = Debug;
+ };
+ 97C147041CF9000F007C117D /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ 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_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ 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_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ SDKROOT = iphoneos;
+ SUPPORTED_PLATFORMS = iphoneos;
+ SWIFT_COMPILATION_MODE = wholemodule;
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Release;
+ };
+ 97C147061CF9000F007C117D /* Debug */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.voidea.voideaApp;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Debug;
+ };
+ 97C147071CF9000F007C117D /* Release */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.voidea.voideaApp;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Release;
+ };
+/* End XCBuildConfiguration section */
+
+/* Begin XCConfigurationList section */
+ 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 331C8088294A63A400263BE5 /* Debug */,
+ 331C8089294A63A400263BE5 /* Release */,
+ 331C808A294A63A400263BE5 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 97C147031CF9000F007C117D /* Debug */,
+ 97C147041CF9000F007C117D /* Release */,
+ 249021D3217E4FDB00AE95B9 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 97C147061CF9000F007C117D /* Debug */,
+ 97C147071CF9000F007C117D /* Release */,
+ 249021D4217E4FDB00AE95B9 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+/* End XCConfigurationList section */
+ };
+ rootObject = 97C146E61CF9000F007C117D /* Project object */;
+}
diff --git a/flutter/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/flutter/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000..919434a
--- /dev/null
+++ b/flutter/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 0000000..18d9810
--- /dev/null
+++ b/flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 0000000..f9b0d7c
--- /dev/null
+++ b/flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/flutter/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/flutter/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
new file mode 100644
index 0000000..e3773d4
--- /dev/null
+++ b/flutter/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
@@ -0,0 +1,101 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/flutter/ios/Runner.xcworkspace/contents.xcworkspacedata b/flutter/ios/Runner.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000..1d526a1
--- /dev/null
+++ b/flutter/ios/Runner.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/flutter/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/flutter/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 0000000..18d9810
--- /dev/null
+++ b/flutter/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/flutter/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/flutter/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 0000000..f9b0d7c
--- /dev/null
+++ b/flutter/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/flutter/ios/Runner/AppDelegate.swift b/flutter/ios/Runner/AppDelegate.swift
new file mode 100644
index 0000000..c30b367
--- /dev/null
+++ b/flutter/ios/Runner/AppDelegate.swift
@@ -0,0 +1,16 @@
+import Flutter
+import UIKit
+
+@main
+@objc class AppDelegate: FlutterAppDelegate, FlutterImplicitEngineDelegate {
+ override func application(
+ _ application: UIApplication,
+ didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
+ ) -> Bool {
+ return super.application(application, didFinishLaunchingWithOptions: launchOptions)
+ }
+
+ func didInitializeImplicitFlutterEngine(_ engineBridge: FlutterImplicitEngineBridge) {
+ GeneratedPluginRegistrant.register(with: engineBridge.pluginRegistry)
+ }
+}
diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 0000000..d36b1fa
--- /dev/null
+++ b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
@@ -0,0 +1,122 @@
+{
+ "images" : [
+ {
+ "size" : "20x20",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-20x20@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "20x20",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-20x20@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-29x29@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-29x29@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-29x29@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-40x40@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-40x40@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "60x60",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-60x60@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "60x60",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-60x60@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "20x20",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-20x20@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "20x20",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-20x20@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-29x29@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-29x29@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-40x40@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-40x40@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "76x76",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-76x76@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "76x76",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-76x76@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "83.5x83.5",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-83.5x83.5@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "1024x1024",
+ "idiom" : "ios-marketing",
+ "filename" : "Icon-App-1024x1024@1x.png",
+ "scale" : "1x"
+ }
+ ],
+ "info" : {
+ "version" : 1,
+ "author" : "xcode"
+ }
+}
diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
new file mode 100644
index 0000000..dc9ada4
Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ
diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
new file mode 100644
index 0000000..7353c41
Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ
diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
new file mode 100644
index 0000000..797d452
Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ
diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
new file mode 100644
index 0000000..6ed2d93
Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ
diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
new file mode 100644
index 0000000..4cd7b00
Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ
diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
new file mode 100644
index 0000000..fe73094
Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ
diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
new file mode 100644
index 0000000..321773c
Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ
diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
new file mode 100644
index 0000000..797d452
Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ
diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
new file mode 100644
index 0000000..502f463
Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ
diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
new file mode 100644
index 0000000..0ec3034
Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ
diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
new file mode 100644
index 0000000..0ec3034
Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ
diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
new file mode 100644
index 0000000..e9f5fea
Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ
diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
new file mode 100644
index 0000000..84ac32a
Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ
diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
new file mode 100644
index 0000000..8953cba
Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ
diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
new file mode 100644
index 0000000..0467bf1
Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ
diff --git a/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
new file mode 100644
index 0000000..0bedcf2
--- /dev/null
+++ b/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
@@ -0,0 +1,23 @@
+{
+ "images" : [
+ {
+ "idiom" : "universal",
+ "filename" : "LaunchImage.png",
+ "scale" : "1x"
+ },
+ {
+ "idiom" : "universal",
+ "filename" : "LaunchImage@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "idiom" : "universal",
+ "filename" : "LaunchImage@3x.png",
+ "scale" : "3x"
+ }
+ ],
+ "info" : {
+ "version" : 1,
+ "author" : "xcode"
+ }
+}
diff --git a/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ
diff --git a/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ
diff --git a/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ
diff --git a/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
new file mode 100644
index 0000000..89c2725
--- /dev/null
+++ b/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
@@ -0,0 +1,5 @@
+# Launch Screen Assets
+
+You can customize the launch screen with your own desired assets by replacing the image files in this directory.
+
+You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images.
\ No newline at end of file
diff --git a/flutter/ios/Runner/Base.lproj/LaunchScreen.storyboard b/flutter/ios/Runner/Base.lproj/LaunchScreen.storyboard
new file mode 100644
index 0000000..f2e259c
--- /dev/null
+++ b/flutter/ios/Runner/Base.lproj/LaunchScreen.storyboard
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/flutter/ios/Runner/Base.lproj/Main.storyboard b/flutter/ios/Runner/Base.lproj/Main.storyboard
new file mode 100644
index 0000000..f3c2851
--- /dev/null
+++ b/flutter/ios/Runner/Base.lproj/Main.storyboard
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/flutter/ios/Runner/Info.plist b/flutter/ios/Runner/Info.plist
new file mode 100644
index 0000000..b9a4e7d
--- /dev/null
+++ b/flutter/ios/Runner/Info.plist
@@ -0,0 +1,70 @@
+
+
+
+
+ CADisableMinimumFrameDurationOnPhone
+
+ CFBundleDevelopmentRegion
+ $(DEVELOPMENT_LANGUAGE)
+ CFBundleDisplayName
+ Voidea App
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIdentifier
+ $(PRODUCT_BUNDLE_IDENTIFIER)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ voidea_app
+ CFBundlePackageType
+ APPL
+ CFBundleShortVersionString
+ $(FLUTTER_BUILD_NAME)
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ $(FLUTTER_BUILD_NUMBER)
+ LSRequiresIPhoneOS
+
+ UIApplicationSceneManifest
+
+ UIApplicationSupportsMultipleScenes
+
+ UISceneConfigurations
+
+ UIWindowSceneSessionRoleApplication
+
+
+ UISceneClassName
+ UIWindowScene
+ UISceneConfigurationName
+ flutter
+ UISceneDelegateClassName
+ $(PRODUCT_MODULE_NAME).SceneDelegate
+ UISceneStoryboardFile
+ Main
+
+
+
+
+ UIApplicationSupportsIndirectInputEvents
+
+ UILaunchStoryboardName
+ LaunchScreen
+ UIMainStoryboardFile
+ Main
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+
+
diff --git a/flutter/ios/Runner/Runner-Bridging-Header.h b/flutter/ios/Runner/Runner-Bridging-Header.h
new file mode 100644
index 0000000..308a2a5
--- /dev/null
+++ b/flutter/ios/Runner/Runner-Bridging-Header.h
@@ -0,0 +1 @@
+#import "GeneratedPluginRegistrant.h"
diff --git a/flutter/ios/Runner/SceneDelegate.swift b/flutter/ios/Runner/SceneDelegate.swift
new file mode 100644
index 0000000..b9ce8ea
--- /dev/null
+++ b/flutter/ios/Runner/SceneDelegate.swift
@@ -0,0 +1,6 @@
+import Flutter
+import UIKit
+
+class SceneDelegate: FlutterSceneDelegate {
+
+}
diff --git a/flutter/ios/RunnerTests/RunnerTests.swift b/flutter/ios/RunnerTests/RunnerTests.swift
new file mode 100644
index 0000000..86a7c3b
--- /dev/null
+++ b/flutter/ios/RunnerTests/RunnerTests.swift
@@ -0,0 +1,12 @@
+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/flutter/lib/api/disk.dart b/flutter/lib/api/disk.dart
new file mode 100644
index 0000000..3ebbf03
--- /dev/null
+++ b/flutter/lib/api/disk.dart
@@ -0,0 +1,51 @@
+import '../core/api/client.dart';
+import '../core/api/endpoints.dart';
+
+class DiskApi {
+ final ApiClient _api;
+
+ DiskApi(this._api);
+
+ Future> getProviders() async {
+ final resp = await _api.get(Endpoints.diskProviders);
+ final list = resp.data['providers'] as List? ?? [];
+ return list.map((e) => e as String).toList();
+ }
+
+ Future