commit 1172d2bc0bafb0b3f562107d670c99c7c8c20ec8 Author: Hokori Date: Wed May 27 22:32:30 2026 +0800 first commit diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..b5bae78 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,109 @@ +name: 'publish' + +# on: +# push: +# tags: +# - 'v*' + +jobs: + publish-tauri: + permissions: + contents: write + strategy: + fail-fast: false + matrix: + include: + - platform: 'macos-latest' # for Arm based macs (M1 and above). + args: '--target aarch64-apple-darwin' + - platform: 'macos-latest' # for Intel based macs. + args: '--target x86_64-apple-darwin' + - platform: 'ubuntu-22.04' + args: '' + - platform: 'windows-latest' + args: '' + + runs-on: ${{ matrix.platform }} + steps: + - uses: actions/checkout@v4 + + - name: install dependencies (ubuntu only) + if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above. + run: | + sudo apt-get update + sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf + + # 添加 macOS 依赖安装,包括 sharp 需要的构建工具 + - name: install dependencies (macos only) + if: matrix.platform == 'macos-latest' + run: | + # 安装 sharp 需要的构建工具和库 + brew install pkg-config cairo pango libpng jpeg giflib librsvg pixman + # 设置 pkg-config 路径 + echo "PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/opt/homebrew/lib/pkgconfig" >> $GITHUB_ENV + + # 新增 pnpm/action-setup 来安装 pnpm + - name: setup pnpm + uses: pnpm/action-setup@v3 + with: + version: 8 # 你可以在此指定 pnpm 的版本 + + # 修改 setup-node 的缓存为 pnpm + - name: setup node + uses: actions/setup-node@v4 + with: + node-version: lts/* + cache: 'pnpm' + + # 设置 Python 环境以解决 sharp 依赖问题 + - name: setup python + uses: actions/setup-python@v4 + with: + python-version: '3.11' # 使用 3.11 版本以确保 distutils 可用 + + # 安装 setuptools 以提供 distutils + - name: install setuptools + run: pip install setuptools + + # 设置 sharp 构建环境变量 + - name: setup sharp build environment + if: matrix.platform == 'macos-latest' + run: | + echo "SHARP_IGNORE_GLOBAL_LIBVIPS=1" >> $GITHUB_ENV + echo "npm_config_arch=${{ matrix.args == '--target aarch64-apple-darwin' && 'arm64' || 'x64' }}" >> $GITHUB_ENV + + - name: install Rust stable + uses: dtolnay/rust-toolchain@stable + with: + # Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds. + targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }} + + - name: Rust cache + uses: swatinem/rust-cache@v2 + with: + workspaces: './src-tauri -> target' + + # 缓存 node_modules 以加速构建 + - name: cache node_modules + uses: actions/cache@v3 + with: + path: node_modules + key: ${{ matrix.platform }}-node-modules-${{ hashFiles('pnpm-lock.yaml') }} + restore-keys: | + ${{ matrix.platform }}-node-modules- + + # 修改依赖安装命令为 pnpm install + - name: install frontend dependencies + # If you don't have `beforeBuildCommand` configured you may want to build your frontend here too. + run: pnpm install + + - uses: tauri-apps/tauri-action@v0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tagName: app-${{ github.ref_name }} + releaseName: 'App ${{ github.ref_name }}' + releaseBody: 'See the assets to download this version and install.' + releaseDraft: true + prerelease: false + args: ${{ matrix.args }} + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5c4bf80 --- /dev/null +++ b/.gitignore @@ -0,0 +1,25 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? +CLAUDE.md \ No newline at end of file diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..cf4385b --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,7 @@ +{ + "recommendations": [ + "Vue.volar", + "tauri-apps.tauri-vscode", + "rust-lang.rust-analyzer" + ] +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..124ab1c --- /dev/null +++ b/README.md @@ -0,0 +1,219 @@ +# TMS Tools - 工单管理工具 + +[![Tauri](https://img.shields.io/badge/Tauri-2.0-blue?logo=tauri)](https://tauri.app) +[![Vue 3](https://img.shields.io/badge/Vue-3.5-green?logo=vue.js)](https://vuejs.org) +[![Element Plus](https://img.shields.io/badge/Element%20Plus-2.10-blue)](https://element-plus.org) + +TMS Tools 是一款基于 Tauri + Vue 3 开发的桌面应用程序,用于管理影院技术支持工单。支持工单的创建、反馈、关闭以及批量操作功能。 + +## 功能特性 + +### 核心功能 +- **用户登录** - 对接 c.baobaot.com 平台认证 +- **工单创建** - 根据影院编码自动创建技术支持工单 +- **工单反馈** - 提交工单处理结果和解决方案 +- **工单关闭** - 完成工单并关闭 +- **批量操作** - 支持批量反馈和关闭今日/本月工单 + +### 数据管理 +- 每个用户拥有独立的数据表 +- 支持查看今日/本月工单列表 +- 工单状态筛选(已反馈/未反馈、已关闭/未关闭) +- 实时同步远程平台数据 + +### 界面特性 +- 响应式布局设计 +- 左侧操作面板,右侧工单列表 +- 实时日志输出 +- 工单全选/多选操作 +- Element Plus 组件库提供美观的 UI + +## 技术栈 + +### 前端 +- **Vue 3** - 渐进式 JavaScript 框架 +- **Vue Router 4** - 路由管理 +- **Element Plus** - UI 组件库 +- **Vite** - 构建工具 + +### 后端 +- **Tauri 2** - Rust 驱动的桌面应用框架 +- **Rust** - 系统级编程语言 +- **Tokio** - 异步运行时 +- **tokio-postgres** - PostgreSQL 异步驱动 +- **reqwest** - HTTP 客户端 +- **scraper** - HTML 解析 + +### 外部服务 +- **c.baobaot.com** - TMS 工单平台 API +- **PostgreSQL** - 数据持久化存储 + +## 项目结构 + +``` +tms_tools/ +├── src/ # 前端源码 +│ ├── components/ # Vue 组件 +│ │ └── Login.vue # 登录组件 +│ ├── service/ # 业务页面 +│ │ └── workorder.vue # 工单管理主页面 +│ ├── router/ # 路由配置 +│ │ └── index.js # 路由定义 +│ ├── App.vue # 根组件 +│ └── main.js # 入口文件 +├── src-tauri/ # Tauri/Rust 后端 +│ ├── src/ +│ │ ├── lib.rs # 主库文件(Tauri 命令) +│ │ └── main.rs # 程序入口 +│ ├── tms_service/ # TMS 服务模块 +│ │ └── src/lib.rs # 工单操作 API 封装 +│ ├── html_scraper/ # HTML 解析工具 +│ │ └── src/lib.rs # 网页内容解析 +│ ├── Cargo.toml # Rust 依赖配置 +│ └── tauri.conf.json # Tauri 配置 +├── package.json # Node.js 依赖 +├── index.html # HTML 入口 +└── README.md # 项目说明 +``` + +## 安装与运行 + +### 环境要求 +- [Node.js](https://nodejs.org/) (v18 或更高版本) +- [Rust](https://www.rust-lang.org/tools/install) (最新稳定版) +- [pnpm](https://pnpm.io/) (推荐 ) 或 npm + +### 开发模式 + +```bash +# 安装前端依赖 +pnpm install + +# 运行开发服务器 +pnpm tauri dev +``` + +### 构建生产版本 + +```bash +# 构建桌面应用 +pnpm tauri build +``` + +构建完成后,安装包将位于 `src-tauri/target/release/bundle/` 目录。 + +## 使用说明 + +### 1. 登录 +- 启动应用后进入登录页面 +- 输入用户名和密码 +- 首次登录会自动创建用户数据表 + +### 2. 工单操作 + +#### 创建工单 +1. 输入影院编码 (n2nip) +2. 填写问题描述 +3. 选择联系方式(微信/手机)并填写号码 +4. 点击"创建工单"按钮 +5. 系统自动创建工单并返回工单 ID + +#### 反馈工单 +1. 填写工单 ID 和处理结果 +2. 点击"反馈工单"按钮 +3. 或选择"反馈今日工单"批量处理 + +#### 关闭工单 +1. 填写工单 ID +2. 点击"关闭工单"按钮 +3. 或选择"关闭今日工单"批量处理 + +### 3. 工单列表 +- 切换"今日工单"或"本月工单"查看不同范围 +- 使用筛选器过滤已反馈/未反馈、已关闭/未关闭的工单 +- 点击"全选"批量选择工单 +- 选中后可批量反馈或关闭 + +## API 接口 + +### Tauri 命令 + +| 命令 | 描述 | +|------|------| +| `login` | 用户登录验证 | +| `get_cookie` | 获取当前登录 Cookie | +| `get_dashboard_username` | 获取仪表板用户名 | +| `get_workorders` | 获取工单列表 | +| `create_ticket_command` | 创建工单 | +| `insert_workorder` | 插入工单到数据库 | +| `feedback_workorder` | 反馈单个工单 | +| `feedback_today_workorders` | 批量反馈今日工单 | +| `feedback_selected_workorders` | 反馈选中的工单 | +| `close_workorder` | 关闭单个工单 | +| `close_today_workorders` | 批量关闭今日工单 | +| `close_selected_workorders` | 关闭选中的工单 | + +## 配置说明 + +### 数据库配置 + +本应用使用 **PostgreSQL** 数据库进行数据持久化存储。数据库连接配置通过本地配置文件管理。 + +#### 配置文件位置 +所有平台统一使用 `~/.config/` 目录: +- **macOS**: `~/.config/tms_tools/config.toml` +- **Windows**: `~/.config/tms_tools/config.toml` +- **Linux**: `~/.config/tms_tools/config.toml` + +#### 配置文件格式 + +在启动应用前,需要手动创建配置文件: + +```toml +database_url = "postgres://用户名:密码@主机地址:端口/数据库名" +``` + +**示例:** +```toml +database_url = "postgres://tmstools:521707@localhost:5432/tmstools" +``` + +#### 启动检查 + +应用启动时会自动检查配置文件: +- ✅ 配置文件存在且格式正确 → 正常启动 +- ❌ 配置文件不存在 → 弹出错误提示,点击确定后退出 +- ❌ 数据库连接失败 → 在登录时提示错误 + +## 开发计划 + +- [ ] 支持离线模式 +- [ ] 添加工单导出功能(Excel/PDF) +- [ ] 实现工单搜索功能 +- [ ] 添加数据统计报表 +- [ ] 支持多语言切换 + +## 许可证 + +本项目采用 MIT 许可证 - 详见 [LICENSE](LICENSE) 文件 + +## 贡献指南 + +欢迎提交 Issue 和 Pull Request! + +1. Fork 本仓库 +2. 创建特性分支 (`git checkout -b feature/AmazingFeature`) +3. 提交更改 (`git commit -m 'Add some AmazingFeature'`) +4. 推送到分支 (`git push origin feature/AmazingFeature`) +5. 创建 Pull Request + +## 联系方式 + +如有问题或建议,欢迎通过以下方式联系: + +- 提交 [GitHub Issue](https://github.com/yourusername/tms_tools/issues) +- 发送邮件至: your.email@example.com + +--- + +**注意**: 本工具仅供学习和内部使用,请遵守相关平台的使用条款。 \ No newline at end of file diff --git a/config.example.toml b/config.example.toml new file mode 100644 index 0000000..f07e469 --- /dev/null +++ b/config.example.toml @@ -0,0 +1,6 @@ +# tms_tools 配置文件示例 +# 将此文件复制到 ~/.config/tms_tools/config.toml 并进行修改 + +# 数据库连接字符串 +# 格式: postgres://用户名:密码@主机:端口/数据库名 +database_url = "postgres://tmstools:521707@honulla.com:5432/tmstools" diff --git a/index.html b/index.html new file mode 100644 index 0000000..a181da1 --- /dev/null +++ b/index.html @@ -0,0 +1,14 @@ + + + + + + + Tauri + Vue 3 App + + + +
+ + + diff --git a/package.json b/package.json new file mode 100644 index 0000000..4ee9dd5 --- /dev/null +++ b/package.json @@ -0,0 +1,25 @@ +{ + "name": "tms_tools", + "private": true, + "version": "0.1.5", + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build", + "preview": "vite preview", + "tauri": "tauri" + }, + "dependencies": { + "@tauri-apps/api": "^2", + "@tauri-apps/plugin-opener": "^2", + "element-plus": "^2.10.4", + "tauri": "^0.15.0", + "vue": "^3.5.13", + "vue-router": "^4.5.1" + }, + "devDependencies": { + "@tauri-apps/cli": "^2", + "@vitejs/plugin-vue": "^5.2.1", + "vite": "^6.0.3" + } +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 0000000..7d230ec --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,6757 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + '@tauri-apps/api': + specifier: ^2 + version: 2.6.0 + '@tauri-apps/plugin-opener': + specifier: ^2 + version: 2.4.0 + element-plus: + specifier: ^2.10.4 + version: 2.10.4(vue@3.5.17) + tauri: + specifier: ^0.15.0 + version: 0.15.0 + vue: + specifier: ^3.5.13 + version: 3.5.17 + vue-router: + specifier: ^4.5.1 + version: 4.5.1(vue@3.5.17) + devDependencies: + '@tauri-apps/cli': + specifier: ^2 + version: 2.6.2 + '@vitejs/plugin-vue': + specifier: ^5.2.1 + version: 5.2.4(vite@6.3.5(@types/node@24.5.1))(vue@3.5.17) + vite: + specifier: ^6.0.3 + version: 6.3.5(@types/node@24.5.1) + +packages: + + '@babel/helper-string-parser@7.27.1': + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.27.1': + resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} + engines: {node: '>=6.9.0'} + + '@babel/parser@7.28.0': + resolution: {integrity: sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/types@7.28.0': + resolution: {integrity: sha512-jYnje+JyZG5YThjHiF28oT4SIZLnYOcSBb6+SDaFIyzDVSkXQmQQYclJ2R+YxcdmK0AX6x1E5OQNtuh3jHDrUg==} + engines: {node: '>=6.9.0'} + + '@ctrl/tinycolor@3.6.1': + resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==} + engines: {node: '>=10'} + + '@element-plus/icons-vue@2.3.1': + resolution: {integrity: sha512-XxVUZv48RZAd87ucGS48jPf6pKu0yV5UCg9f4FFwtrYxXOwWuVJo6wOvSLKEoMQKjv8GsX/mhP6UsC1lRwbUWg==} + peerDependencies: + vue: ^3.2.0 + + '@esbuild/aix-ppc64@0.25.6': + resolution: {integrity: sha512-ShbM/3XxwuxjFiuVBHA+d3j5dyac0aEVVq1oluIDf71hUw0aRF59dV/efUsIwFnR6m8JNM2FjZOzmaZ8yG61kw==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.25.6': + resolution: {integrity: sha512-hd5zdUarsK6strW+3Wxi5qWws+rJhCCbMiC9QZyzoxfk5uHRIE8T287giQxzVpEvCwuJ9Qjg6bEjcRJcgfLqoA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.25.6': + resolution: {integrity: sha512-S8ToEOVfg++AU/bHwdksHNnyLyVM+eMVAOf6yRKFitnwnbwwPNqKr3srzFRe7nzV69RQKb5DgchIX5pt3L53xg==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.25.6': + resolution: {integrity: sha512-0Z7KpHSr3VBIO9A/1wcT3NTy7EB4oNC4upJ5ye3R7taCc2GUdeynSLArnon5G8scPwaU866d3H4BCrE5xLW25A==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.25.6': + resolution: {integrity: sha512-FFCssz3XBavjxcFxKsGy2DYK5VSvJqa6y5HXljKzhRZ87LvEi13brPrf/wdyl/BbpbMKJNOr1Sd0jtW4Ge1pAA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.25.6': + resolution: {integrity: sha512-GfXs5kry/TkGM2vKqK2oyiLFygJRqKVhawu3+DOCk7OxLy/6jYkWXhlHwOoTb0WqGnWGAS7sooxbZowy+pK9Yg==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.25.6': + resolution: {integrity: sha512-aoLF2c3OvDn2XDTRvn8hN6DRzVVpDlj2B/F66clWd/FHLiHaG3aVZjxQX2DYphA5y/evbdGvC6Us13tvyt4pWg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.25.6': + resolution: {integrity: sha512-2SkqTjTSo2dYi/jzFbU9Plt1vk0+nNg8YC8rOXXea+iA3hfNJWebKYPs3xnOUf9+ZWhKAaxnQNUf2X9LOpeiMQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.25.6': + resolution: {integrity: sha512-b967hU0gqKd9Drsh/UuAm21Khpoh6mPBSgz8mKRq4P5mVK8bpA+hQzmm/ZwGVULSNBzKdZPQBRT3+WuVavcWsQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.25.6': + resolution: {integrity: sha512-SZHQlzvqv4Du5PrKE2faN0qlbsaW/3QQfUUc6yO2EjFcA83xnwm91UbEEVx4ApZ9Z5oG8Bxz4qPE+HFwtVcfyw==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.25.6': + resolution: {integrity: sha512-aHWdQ2AAltRkLPOsKdi3xv0mZ8fUGPdlKEjIEhxCPm5yKEThcUjHpWB1idN74lfXGnZ5SULQSgtr5Qos5B0bPw==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.25.6': + resolution: {integrity: sha512-VgKCsHdXRSQ7E1+QXGdRPlQ/e08bN6WMQb27/TMfV+vPjjTImuT9PmLXupRlC90S1JeNNW5lzkAEO/McKeJ2yg==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.25.6': + resolution: {integrity: sha512-WViNlpivRKT9/py3kCmkHnn44GkGXVdXfdc4drNmRl15zVQ2+D2uFwdlGh6IuK5AAnGTo2qPB1Djppj+t78rzw==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.25.6': + resolution: {integrity: sha512-wyYKZ9NTdmAMb5730I38lBqVu6cKl4ZfYXIs31Baf8aoOtB4xSGi3THmDYt4BTFHk7/EcVixkOV2uZfwU3Q2Jw==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.25.6': + resolution: {integrity: sha512-KZh7bAGGcrinEj4qzilJ4hqTY3Dg2U82c8bv+e1xqNqZCrCyc+TL9AUEn5WGKDzm3CfC5RODE/qc96OcbIe33w==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.25.6': + resolution: {integrity: sha512-9N1LsTwAuE9oj6lHMyyAM+ucxGiVnEqUdp4v7IaMmrwb06ZTEVCIs3oPPplVsnjPfyjmxwHxHMF8b6vzUVAUGw==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.25.6': + resolution: {integrity: sha512-A6bJB41b4lKFWRKNrWoP2LHsjVzNiaurf7wyj/XtFNTsnPuxwEBWHLty+ZE0dWBKuSK1fvKgrKaNjBS7qbFKig==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-arm64@0.25.6': + resolution: {integrity: sha512-IjA+DcwoVpjEvyxZddDqBY+uJ2Snc6duLpjmkXm/v4xuS3H+3FkLZlDm9ZsAbF9rsfP3zeA0/ArNDORZgrxR/Q==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.25.6': + resolution: {integrity: sha512-dUXuZr5WenIDlMHdMkvDc1FAu4xdWixTCRgP7RQLBOkkGgwuuzaGSYcOpW4jFxzpzL1ejb8yF620UxAqnBrR9g==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-arm64@0.25.6': + resolution: {integrity: sha512-l8ZCvXP0tbTJ3iaqdNf3pjaOSd5ex/e6/omLIQCVBLmHTlfXW3zAxQ4fnDmPLOB1x9xrcSi/xtCWFwCZRIaEwg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.25.6': + resolution: {integrity: sha512-hKrmDa0aOFOr71KQ/19JC7az1P0GWtCN1t2ahYAf4O007DHZt/dW8ym5+CUdJhQ/qkZmI1HAF8KkJbEFtCL7gw==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openharmony-arm64@0.25.6': + resolution: {integrity: sha512-+SqBcAWoB1fYKmpWoQP4pGtx+pUUC//RNYhFdbcSA16617cchuryuhOCRpPsjCblKukAckWsV+aQ3UKT/RMPcA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/sunos-x64@0.25.6': + resolution: {integrity: sha512-dyCGxv1/Br7MiSC42qinGL8KkG4kX0pEsdb0+TKhmJZgCUDBGmyo1/ArCjNGiOLiIAgdbWgmWgib4HoCi5t7kA==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.25.6': + resolution: {integrity: sha512-42QOgcZeZOvXfsCBJF5Afw73t4veOId//XD3i+/9gSkhSV6Gk3VPlWncctI+JcOyERv85FUo7RxuxGy+z8A43Q==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.25.6': + resolution: {integrity: sha512-4AWhgXmDuYN7rJI6ORB+uU9DHLq/erBbuMoAuB4VWJTu5KtCgcKYPynF0YI1VkBNuEfjNlLrFr9KZPJzrtLkrQ==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.25.6': + resolution: {integrity: sha512-NgJPHHbEpLQgDH2MjQu90pzW/5vvXIZ7KOnPyNBm92A6WgZ/7b6fJyUBjoumLqeOQQGqY2QjQxRo97ah4Sj0cA==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + + '@floating-ui/core@1.7.2': + resolution: {integrity: sha512-wNB5ooIKHQc+Kui96jE/n69rHFWAVoxn5CAzL1Xdd8FG03cgY3MLO+GF9U3W737fYDSgPWA6MReKhBQBop6Pcw==} + + '@floating-ui/dom@1.7.2': + resolution: {integrity: sha512-7cfaOQuCS27HD7DX+6ib2OrnW+b4ZBwDNnCcT0uTyidcmyWb03FnQqJybDBoCnpdxwBSfA94UAYlRCt7mV+TbA==} + + '@floating-ui/utils@0.2.10': + resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==} + + '@isaacs/balanced-match@4.0.1': + resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==} + engines: {node: 20 || >=22} + + '@isaacs/brace-expansion@5.0.0': + resolution: {integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==} + engines: {node: 20 || >=22} + + '@jridgewell/sourcemap-codec@1.5.4': + resolution: {integrity: sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==} + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@rollup/rollup-android-arm-eabi@4.45.0': + resolution: {integrity: sha512-2o/FgACbji4tW1dzXOqAV15Eu7DdgbKsF2QKcxfG4xbh5iwU7yr5RRP5/U+0asQliSYv5M4o7BevlGIoSL0LXg==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.45.0': + resolution: {integrity: sha512-PSZ0SvMOjEAxwZeTx32eI/j5xSYtDCRxGu5k9zvzoY77xUNssZM+WV6HYBLROpY5CkXsbQjvz40fBb7WPwDqtQ==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.45.0': + resolution: {integrity: sha512-BA4yPIPssPB2aRAWzmqzQ3y2/KotkLyZukVB7j3psK/U3nVJdceo6qr9pLM2xN6iRP/wKfxEbOb1yrlZH6sYZg==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.45.0': + resolution: {integrity: sha512-Pr2o0lvTwsiG4HCr43Zy9xXrHspyMvsvEw4FwKYqhli4FuLE5FjcZzuQ4cfPe0iUFCvSQG6lACI0xj74FDZKRA==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.45.0': + resolution: {integrity: sha512-lYE8LkE5h4a/+6VnnLiL14zWMPnx6wNbDG23GcYFpRW1V9hYWHAw9lBZ6ZUIrOaoK7NliF1sdwYGiVmziUF4vA==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.45.0': + resolution: {integrity: sha512-PVQWZK9sbzpvqC9Q0GlehNNSVHR+4m7+wET+7FgSnKG3ci5nAMgGmr9mGBXzAuE5SvguCKJ6mHL6vq1JaJ/gvw==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.45.0': + resolution: {integrity: sha512-hLrmRl53prCcD+YXTfNvXd776HTxNh8wPAMllusQ+amcQmtgo3V5i/nkhPN6FakW+QVLoUUr2AsbtIRPFU3xIA==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.45.0': + resolution: {integrity: sha512-XBKGSYcrkdiRRjl+8XvrUR3AosXU0NvF7VuqMsm7s5nRy+nt58ZMB19Jdp1RdqewLcaYnpk8zeVs/4MlLZEJxw==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.45.0': + resolution: {integrity: sha512-fRvZZPUiBz7NztBE/2QnCS5AtqLVhXmUOPj9IHlfGEXkapgImf4W9+FSkL8cWqoAjozyUzqFmSc4zh2ooaeF6g==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.45.0': + resolution: {integrity: sha512-Btv2WRZOcUGi8XU80XwIvzTg4U6+l6D0V6sZTrZx214nrwxw5nAi8hysaXj/mctyClWgesyuxbeLylCBNauimg==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-loongarch64-gnu@4.45.0': + resolution: {integrity: sha512-Li0emNnwtUZdLwHjQPBxn4VWztcrw/h7mgLyHiEI5Z0MhpeFGlzaiBHpSNVOMB/xucjXTTcO+dhv469Djr16KA==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-powerpc64le-gnu@4.45.0': + resolution: {integrity: sha512-sB8+pfkYx2kvpDCfd63d5ScYT0Fz1LO6jIb2zLZvmK9ob2D8DeVqrmBDE0iDK8KlBVmsTNzrjr3G1xV4eUZhSw==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.45.0': + resolution: {integrity: sha512-5GQ6PFhh7E6jQm70p1aW05G2cap5zMOvO0se5JMecHeAdj5ZhWEHbJ4hiKpfi1nnnEdTauDXxPgXae/mqjow9w==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-riscv64-musl@4.45.0': + resolution: {integrity: sha512-N/euLsBd1rekWcuduakTo/dJw6U6sBP3eUq+RXM9RNfPuWTvG2w/WObDkIvJ2KChy6oxZmOSC08Ak2OJA0UiAA==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.45.0': + resolution: {integrity: sha512-2l9sA7d7QdikL0xQwNMO3xURBUNEWyHVHfAsHsUdq+E/pgLTUcCE+gih5PCdmyHmfTDeXUWVhqL0WZzg0nua3g==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.45.0': + resolution: {integrity: sha512-XZdD3fEEQcwG2KrJDdEQu7NrHonPxxaV0/w2HpvINBdcqebz1aL+0vM2WFJq4DeiAVT6F5SUQas65HY5JDqoPw==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.45.0': + resolution: {integrity: sha512-7ayfgvtmmWgKWBkCGg5+xTQ0r5V1owVm67zTrsEY1008L5ro7mCyGYORomARt/OquB9KY7LpxVBZes+oSniAAQ==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-win32-arm64-msvc@4.45.0': + resolution: {integrity: sha512-B+IJgcBnE2bm93jEW5kHisqvPITs4ddLOROAcOc/diBgrEiQJJ6Qcjby75rFSmH5eMGrqJryUgJDhrfj942apQ==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.45.0': + resolution: {integrity: sha512-+CXwwG66g0/FpWOnP/v1HnrGVSOygK/osUbu3wPRy8ECXjoYKjRAyfxYpDQOfghC5qPJYLPH0oN4MCOjwgdMug==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.45.0': + resolution: {integrity: sha512-SRf1cytG7wqcHVLrBc9VtPK4pU5wxiB/lNIkNmW2ApKXIg+RpqwHfsaEK+e7eH4A1BpI6BX/aBWXxZCIrJg3uA==} + cpu: [x64] + os: [win32] + + '@sindresorhus/is@0.14.0': + resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} + engines: {node: '>=6'} + + '@sindresorhus/is@0.7.0': + resolution: {integrity: sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==} + engines: {node: '>=4'} + + '@sindresorhus/is@4.6.0': + resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} + engines: {node: '>=10'} + + '@sxzz/popperjs-es@2.11.7': + resolution: {integrity: sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==} + + '@szmarczak/http-timer@1.1.2': + resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} + engines: {node: '>=6'} + + '@szmarczak/http-timer@4.0.6': + resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} + engines: {node: '>=10'} + + '@tauri-apps/api@2.6.0': + resolution: {integrity: sha512-hRNcdercfgpzgFrMXWwNDBN0B7vNzOzRepy6ZAmhxi5mDLVPNrTpo9MGg2tN/F7JRugj4d2aF7E1rtPXAHaetg==} + + '@tauri-apps/cli-darwin-arm64@2.6.2': + resolution: {integrity: sha512-YlvT+Yb7u2HplyN2Cf/nBplCQARC/I4uedlYHlgtxg6rV7xbo9BvG1jLOo29IFhqA2rOp5w1LtgvVGwsOf2kxw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@tauri-apps/cli-darwin-x64@2.6.2': + resolution: {integrity: sha512-21gdPWfv1bP8rkTdCL44in70QcYcPaDM70L+y78N8TkBuC+/+wqnHcwwjzb+mUyck6UoEw2DORagSI/oKKUGJw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@tauri-apps/cli-linux-arm-gnueabihf@2.6.2': + resolution: {integrity: sha512-MW8Y6HqHS5yzQkwGoLk/ZyE1tWpnz/seDoY4INsbvUZdknuUf80yn3H+s6eGKtT/0Bfqon/W9sY7pEkgHRPQgA==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + + '@tauri-apps/cli-linux-arm64-gnu@2.6.2': + resolution: {integrity: sha512-9PdINTUtnyrnQt9hvC4y1m0NoxKSw/wUB9OTBAQabPj8WLAdvySWiUpEiqJjwLhlu4T6ltXZRpNTEzous3/RXg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@tauri-apps/cli-linux-arm64-musl@2.6.2': + resolution: {integrity: sha512-LrcJTRr7FrtQlTDkYaRXIGo/8YU/xkWmBPC646WwKNZ/S6yqCiDcOMoPe7Cx4ZvcG6sK6LUCLQMfaSNEL7PT0A==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@tauri-apps/cli-linux-riscv64-gnu@2.6.2': + resolution: {integrity: sha512-GnTshO/BaZ9KGIazz2EiFfXGWgLur5/pjqklRA/ck42PGdUQJhV/Ao7A7TdXPjqAzpFxNo6M/Hx0GCH2iMS7IA==} + engines: {node: '>= 10'} + cpu: [riscv64] + os: [linux] + + '@tauri-apps/cli-linux-x64-gnu@2.6.2': + resolution: {integrity: sha512-QDG3WeJD6UJekmrtVPCJRzlKgn9sGzhvD58oAw5gIU+DRovgmmG2U1jH9fS361oYGjWWO7d/KM9t0kugZzi4lQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@tauri-apps/cli-linux-x64-musl@2.6.2': + resolution: {integrity: sha512-TNVTDDtnWzuVqWBFdZ4+8ZTg17tc21v+CT5XBQ+KYCoYtCrIaHpW04fS5Tmudi+vYdBwoPDfwpKEB6LhCeFraQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@tauri-apps/cli-win32-arm64-msvc@2.6.2': + resolution: {integrity: sha512-z77C1oa/hMLO/jM1JF39tK3M3v9nou7RsBnQoOY54z5WPcpVAbS0XdFhXB7sSN72BOiO3moDky9lQANQz6L3CA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@tauri-apps/cli-win32-ia32-msvc@2.6.2': + resolution: {integrity: sha512-TmD8BbzbjluBw8+QEIWUVmFa9aAluSkT1N937n1mpYLXcPbTpbunqRFiIznTwupoJNJIdtpF/t7BdZDRh5rrcg==} + engines: {node: '>= 10'} + cpu: [ia32] + os: [win32] + + '@tauri-apps/cli-win32-x64-msvc@2.6.2': + resolution: {integrity: sha512-ItB8RCKk+nCmqOxOvbNtltz6x1A4QX6cSM21kj3NkpcnjT9rHSMcfyf8WVI2fkoMUJR80iqCblUX6ARxC3lj6w==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@tauri-apps/cli@2.6.2': + resolution: {integrity: sha512-s1/eyBHxk0wG1blLeOY2IDjgZcxVrkxU5HFL8rNDwjYGr0o7yr3RAtwmuUPhz13NO+xGAL1bJZaLFBdp+5joKg==} + engines: {node: '>= 10'} + hasBin: true + + '@tauri-apps/plugin-opener@2.4.0': + resolution: {integrity: sha512-43VyN8JJtvKWJY72WI/KNZszTpDpzHULFxQs0CJBIYUdCRowQ6Q1feWTDb979N7nldqSuDOaBupZ6wz2nvuWwQ==} + + '@tauri-apps/tauri-inliner@1.14.1': + resolution: {integrity: sha512-IXlPbWXpKNz0dz1fplPAetBBzKA8kUaOvrrpyJ0jvxMihI9vKHaKP4GDyF89XCi0edXKv2MM+MWaaPVcmy12Bg==} + deprecated: Tauri now uses a custom protocol for asset loading so this package is not used anymore. + hasBin: true + + '@tauri-apps/toml@2.2.4': + resolution: {integrity: sha512-NJV/pdgJObDlDWi5+MTHZ2qyNvdL0dlHqQ72nzQYXWbW1LHMPXgCJYl0pLqL1XxxLtxtInYbtVCGVAcwhGxdkw==} + + '@types/cacheable-request@6.0.3': + resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} + + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + + '@types/glob@7.2.0': + resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} + + '@types/http-cache-semantics@4.0.4': + resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} + + '@types/keyv@3.1.4': + resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} + + '@types/lodash-es@4.17.12': + resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==} + + '@types/lodash@4.17.20': + resolution: {integrity: sha512-H3MHACvFUEiujabxhaI/ImO6gUrd8oOurg7LQtS7mbwIXA/cUqWrvBsaeJ23aZEPk1TAYkurjfMbSELfoCXlGA==} + + '@types/minimatch@6.0.0': + resolution: {integrity: sha512-zmPitbQ8+6zNutpwgcQuLcsEpn/Cj54Kbn7L5pX0Os5kdWplB7xPgEh/g+SWOB/qmows2gpuCaPyduq8ZZRnxA==} + deprecated: This is a stub types definition. minimatch provides its own type definitions, so you do not need this installed. + + '@types/node@24.5.1': + resolution: {integrity: sha512-/SQdmUP2xa+1rdx7VwB9yPq8PaKej8TD5cQ+XfKDPWWC+VDJU4rvVVagXqKUzhKjtFoNA8rXDJAkCxQPAe00+Q==} + + '@types/q@1.5.8': + resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==} + + '@types/responselike@1.0.3': + resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} + + '@types/web-bluetooth@0.0.16': + resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==} + + '@vitejs/plugin-vue@5.2.4': + resolution: {integrity: sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==} + engines: {node: ^18.0.0 || >=20.0.0} + peerDependencies: + vite: ^5.0.0 || ^6.0.0 + vue: ^3.2.25 + + '@vue/compiler-core@3.5.17': + resolution: {integrity: sha512-Xe+AittLbAyV0pabcN7cP7/BenRBNcteM4aSDCtRvGw0d9OL+HG1u/XHLY/kt1q4fyMeZYXyIYrsHuPSiDPosA==} + + '@vue/compiler-dom@3.5.17': + resolution: {integrity: sha512-+2UgfLKoaNLhgfhV5Ihnk6wB4ljyW1/7wUIog2puUqajiC29Lp5R/IKDdkebh9jTbTogTbsgB+OY9cEWzG95JQ==} + + '@vue/compiler-sfc@3.5.17': + resolution: {integrity: sha512-rQQxbRJMgTqwRugtjw0cnyQv9cP4/4BxWfTdRBkqsTfLOHWykLzbOc3C4GGzAmdMDxhzU/1Ija5bTjMVrddqww==} + + '@vue/compiler-ssr@3.5.17': + resolution: {integrity: sha512-hkDbA0Q20ZzGgpj5uZjb9rBzQtIHLS78mMilwrlpWk2Ep37DYntUz0PonQ6kr113vfOEdM+zTBuJDaceNIW0tQ==} + + '@vue/devtools-api@6.6.4': + resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==} + + '@vue/reactivity@3.5.17': + resolution: {integrity: sha512-l/rmw2STIscWi7SNJp708FK4Kofs97zc/5aEPQh4bOsReD/8ICuBcEmS7KGwDj5ODQLYWVN2lNibKJL1z5b+Lw==} + + '@vue/runtime-core@3.5.17': + resolution: {integrity: sha512-QQLXa20dHg1R0ri4bjKeGFKEkJA7MMBxrKo2G+gJikmumRS7PTD4BOU9FKrDQWMKowz7frJJGqBffYMgQYS96Q==} + + '@vue/runtime-dom@3.5.17': + resolution: {integrity: sha512-8El0M60TcwZ1QMz4/os2MdlQECgGoVHPuLnQBU3m9h3gdNRW9xRmI8iLS4t/22OQlOE6aJvNNlBiCzPHur4H9g==} + + '@vue/server-renderer@3.5.17': + resolution: {integrity: sha512-BOHhm8HalujY6lmC3DbqF6uXN/K00uWiEeF22LfEsm9Q93XeJ/plHTepGwf6tqFcF7GA5oGSSAAUock3VvzaCA==} + peerDependencies: + vue: 3.5.17 + + '@vue/shared@3.5.17': + resolution: {integrity: sha512-CabR+UN630VnsJO/jHWYBC1YVXyMq94KKp6iF5MQgZJs5I8cmjw6oVMO1oDbtBkENSHSSn/UadWlW/OAgdmKrg==} + + '@vueuse/core@9.13.0': + resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==} + + '@vueuse/metadata@9.13.0': + resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==} + + '@vueuse/shared@9.13.0': + resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==} + + abab@2.0.6: + resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + deprecated: Use your platform's native atob() and btoa() methods instead + + acorn-globals@6.0.0: + resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==} + + acorn-walk@7.2.0: + resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} + engines: {node: '>=0.4.0'} + + acorn@7.4.1: + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + engines: {node: '>=0.4.0'} + hasBin: true + + aggregate-error@3.1.0: + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} + engines: {node: '>=8'} + + ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + + ansi-align@3.0.1: + resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} + + ansi-escapes@4.3.2: + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} + + ansi-regex@2.1.1: + resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} + engines: {node: '>=0.10.0'} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-styles@2.2.1: + resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} + engines: {node: '>=0.10.0'} + + ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + + aproba@1.2.0: + resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==} + + arch@2.2.0: + resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} + + archive-type@4.0.0: + resolution: {integrity: sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==} + engines: {node: '>=4'} + + are-we-there-yet@1.1.7: + resolution: {integrity: sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==} + deprecated: This package is no longer supported. + + argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + + array-buffer-byte-length@1.0.2: + resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} + engines: {node: '>= 0.4'} + + array-find-index@1.0.2: + resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} + engines: {node: '>=0.10.0'} + + array-flatten@3.0.0: + resolution: {integrity: sha512-zPMVc3ZYlGLNk4mpK1NzP2wg0ml9t7fUgDsayR5Y5rSzxQilzR9FGu/EH2jQOcKSAeAfWeylyW8juy3OkWRvNA==} + + array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + + array.prototype.reduce@1.0.8: + resolution: {integrity: sha512-DwuEqgXFBwbmZSRqt3BpQigWNUoqw9Ml2dTWdF3B2zQlQX4OeUE0zyuzX0fX0IbTvjdkZbcBTU3idgpO78qkTw==} + engines: {node: '>= 0.4'} + + arraybuffer.prototype.slice@1.0.4: + resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} + engines: {node: '>= 0.4'} + + arrify@2.0.1: + resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} + engines: {node: '>=8'} + + asap@2.0.6: + resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} + + asn1@0.2.6: + resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} + + assert-plus@1.0.0: + resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} + engines: {node: '>=0.8'} + + async-function@1.0.0: + resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} + engines: {node: '>= 0.4'} + + async-validator@4.2.5: + resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==} + + asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + + at-least-node@1.0.0: + resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} + engines: {node: '>= 4.0.0'} + + available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} + + aws-sign2@0.7.0: + resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} + + aws4@1.13.2: + resolution: {integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + + bcrypt-pbkdf@1.0.2: + resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} + + bin-build@3.0.0: + resolution: {integrity: sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA==} + engines: {node: '>=4'} + + bin-check@4.1.0: + resolution: {integrity: sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==} + engines: {node: '>=4'} + + bin-version-check@4.0.0: + resolution: {integrity: sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==} + engines: {node: '>=6'} + + bin-version@3.1.0: + resolution: {integrity: sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==} + engines: {node: '>=6'} + + bin-wrapper@4.1.0: + resolution: {integrity: sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q==} + engines: {node: '>=6'} + + binary-extensions@2.3.0: + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} + + bl@1.2.3: + resolution: {integrity: sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==} + + bl@4.1.0: + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + + boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + + boxen@4.2.0: + resolution: {integrity: sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==} + engines: {node: '>=8'} + + brace-expansion@1.1.12: + resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + browser-process-hrtime@1.0.0: + resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} + + buffer-alloc-unsafe@1.1.0: + resolution: {integrity: sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==} + + buffer-alloc@1.2.0: + resolution: {integrity: sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==} + + buffer-crc32@0.2.13: + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + + buffer-fill@1.0.0: + resolution: {integrity: sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==} + + buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + + cacheable-lookup@5.0.4: + resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} + engines: {node: '>=10.6.0'} + + cacheable-request@2.1.4: + resolution: {integrity: sha512-vag0O2LKZ/najSoUwDbVlnlCFvhBE/7mGTY2B5FgCBDcRD+oVV1HYTOwM6JZfMg/hIcM6IwnTZ1uQQL5/X3xIQ==} + + cacheable-request@6.1.0: + resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} + engines: {node: '>=8'} + + cacheable-request@7.0.4: + resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} + engines: {node: '>=8'} + + call-bind-apply-helpers@1.0.2: + resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} + engines: {node: '>= 0.4'} + + call-bind@1.0.8: + resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} + engines: {node: '>= 0.4'} + + call-bound@1.0.4: + resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} + engines: {node: '>= 0.4'} + + camelcase-keys@2.1.0: + resolution: {integrity: sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==} + engines: {node: '>=0.10.0'} + + camelcase@2.1.1: + resolution: {integrity: sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==} + engines: {node: '>=0.10.0'} + + camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + + caseless@0.12.0: + resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} + + caw@2.0.1: + resolution: {integrity: sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==} + engines: {node: '>=4'} + + chalk@1.1.3: + resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} + engines: {node: '>=0.10.0'} + + chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + + chalk@3.0.0: + resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} + engines: {node: '>=8'} + + chalk@4.1.0: + resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==} + engines: {node: '>=10'} + + chardet@0.7.0: + resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + + charset@1.0.1: + resolution: {integrity: sha512-6dVyOOYjpfFcL1Y4qChrAoQLRHvj2ziyhcm0QJlhOcAhykL/k1kTUPbeo+87MNRTRdk2OIIsIXbuF3x2wi5EXg==} + engines: {node: '>=4.0.0'} + + cheerio@0.22.0: + resolution: {integrity: sha512-8/MzidM6G/TgRelkzDG13y3Y9LxBjCb+8yOEZ9+wwq5gVF2w2pV0wmHvjfT0RvuxGyR7UEuK36r+yYMbT4uKgA==} + engines: {node: '>= 0.6'} + + chokidar@3.5.0: + resolution: {integrity: sha512-JgQM9JS92ZbFR4P90EvmzNpSGhpPBGBSj10PILeDyYFwp4h2/D9OM03wsJ4zW1fEp4ka2DGrnUeD7FuvQ2aZ2Q==} + engines: {node: '>= 8.10.0'} + + chownr@1.1.4: + resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} + + ci-info@2.0.0: + resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} + + clean-stack@2.2.0: + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} + engines: {node: '>=6'} + + cli-boxes@2.2.1: + resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} + engines: {node: '>=6'} + + cli-cursor@3.1.0: + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} + engines: {node: '>=8'} + + cli-width@3.0.0: + resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} + engines: {node: '>= 10'} + + clone-deep@4.0.1: + resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + engines: {node: '>=6'} + + clone-response@1.0.2: + resolution: {integrity: sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==} + + clone-response@1.0.3: + resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} + + coa@2.0.2: + resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==} + engines: {node: '>= 4.0'} + + code-point-at@1.1.0: + resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==} + engines: {node: '>=0.10.0'} + + color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + color-string@1.9.1: + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + + color@3.2.1: + resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==} + + combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + config-chain@1.1.13: + resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} + + configstore@5.0.1: + resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==} + engines: {node: '>=8'} + + console-control-strings@1.1.0: + resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} + + console-stream@0.1.1: + resolution: {integrity: sha512-QC/8l9e6ofi6nqZ5PawlDgzmMw3OxIXtvolBzap/F4UDBJlDaZRSNbL/lb41C29FcbSJncBFlJFj2WJoNyZRfQ==} + + content-disposition@0.5.4: + resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} + engines: {node: '>= 0.6'} + + core-util-is@1.0.2: + resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} + + core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + + cross-spawn@5.1.0: + resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} + + cross-spawn@6.0.6: + resolution: {integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==} + engines: {node: '>=4.8'} + + cross-spawn@7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} + + crypto-random-string@2.0.0: + resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} + engines: {node: '>=8'} + + css-select-base-adapter@0.1.1: + resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==} + + css-select@1.2.0: + resolution: {integrity: sha512-dUQOBoqdR7QwV90WysXPLXG5LO7nhYBgiWVfxF80DKPF8zx1t/pUd2FYy73emg3zrjtM6dzmYgbHKfV2rxiHQA==} + + css-select@2.1.0: + resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==} + + css-tree@1.0.0-alpha.37: + resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==} + engines: {node: '>=8.0.0'} + + css-tree@1.1.3: + resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} + engines: {node: '>=8.0.0'} + + css-what@2.1.3: + resolution: {integrity: sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==} + + css-what@3.4.2: + resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==} + engines: {node: '>= 6'} + + csso@4.2.0: + resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} + engines: {node: '>=8.0.0'} + + cssom@0.3.8: + resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} + + cssom@0.4.4: + resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} + + cssstyle@2.3.0: + resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} + engines: {node: '>=8'} + + csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + + currently-unhandled@0.4.1: + resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} + engines: {node: '>=0.10.0'} + + dashdash@1.14.1: + resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} + engines: {node: '>=0.10'} + + data-urls@2.0.0: + resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} + engines: {node: '>=10'} + + data-view-buffer@1.0.2: + resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} + engines: {node: '>= 0.4'} + + data-view-byte-length@1.0.2: + resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} + engines: {node: '>= 0.4'} + + data-view-byte-offset@1.0.1: + resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} + engines: {node: '>= 0.4'} + + dayjs@1.11.13: + resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==} + + debug@4.4.3: + resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + + decimal.js@10.6.0: + resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==} + + decode-uri-component@0.2.2: + resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} + engines: {node: '>=0.10'} + + decompress-response@3.3.0: + resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==} + engines: {node: '>=4'} + + decompress-response@4.2.1: + resolution: {integrity: sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==} + engines: {node: '>=8'} + + decompress-response@6.0.0: + resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} + engines: {node: '>=10'} + + decompress-tar@4.1.1: + resolution: {integrity: sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==} + engines: {node: '>=4'} + + decompress-tarbz2@4.1.1: + resolution: {integrity: sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==} + engines: {node: '>=4'} + + decompress-targz@4.1.1: + resolution: {integrity: sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==} + engines: {node: '>=4'} + + decompress-unzip@4.0.1: + resolution: {integrity: sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==} + engines: {node: '>=4'} + + decompress@4.2.1: + resolution: {integrity: sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==} + engines: {node: '>=4'} + + deep-extend@0.6.0: + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} + + deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + + defer-to-connect@1.1.3: + resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} + + defer-to-connect@2.0.1: + resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} + engines: {node: '>=10'} + + define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + + define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + + delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + + delegates@1.0.0: + resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} + + detect-libc@1.0.3: + resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} + engines: {node: '>=0.10'} + hasBin: true + + dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + + dom-serializer@0.1.1: + resolution: {integrity: sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==} + + domelementtype@1.3.1: + resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} + + domexception@2.0.1: + resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==} + engines: {node: '>=8'} + deprecated: Use your platform's native DOMException instead + + domhandler@2.4.2: + resolution: {integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==} + + domutils@1.5.1: + resolution: {integrity: sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw==} + + domutils@1.7.0: + resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} + + dot-prop@5.3.0: + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} + + download@6.2.5: + resolution: {integrity: sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==} + engines: {node: '>=4'} + + download@7.1.0: + resolution: {integrity: sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==} + engines: {node: '>=6'} + + dunder-proto@1.0.1: + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} + engines: {node: '>= 0.4'} + + duplexer3@0.1.5: + resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==} + + ecc-jsbn@0.1.2: + resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} + + element-plus@2.10.4: + resolution: {integrity: sha512-UD4elWHrCnp1xlPhbXmVcaKFLCRaRAY6WWRwemGfGW3ceIjXm9fSYc9RNH3AiOEA6Ds1p9ZvhCs76CR9J8Vd+A==} + peerDependencies: + vue: ^3.2.0 + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + end-of-stream@1.4.5: + resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==} + + entities@1.1.2: + resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + error-ex@1.3.4: + resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==} + + es-abstract@1.24.0: + resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==} + engines: {node: '>= 0.4'} + + es-array-method-boxes-properly@1.0.0: + resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} + + es-define-property@1.0.1: + resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + es-object-atoms@1.1.1: + resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} + engines: {node: '>= 0.4'} + + es-set-tostringtag@2.1.0: + resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} + engines: {node: '>= 0.4'} + + es-to-primitive@1.3.0: + resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} + engines: {node: '>= 0.4'} + + es6-promise@4.2.8: + resolution: {integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==} + + esbuild@0.25.6: + resolution: {integrity: sha512-GVuzuUwtdsghE3ocJ9Bs8PNoF13HNQ5TXbEi2AhvVb8xU1Iwt9Fos9FEamfoee+u/TOsn7GUWc04lz46n2bbTg==} + engines: {node: '>=18'} + hasBin: true + + escape-goat@2.1.1: + resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==} + engines: {node: '>=8'} + + escape-html@1.0.3: + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + + escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + + escodegen@1.14.3: + resolution: {integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==} + engines: {node: '>=4.0'} + hasBin: true + + esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + + estraverse@4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} + + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + + eventemitter3@4.0.7: + resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + + exec-buffer@3.2.0: + resolution: {integrity: sha512-wsiD+2Tp6BWHoVv3B+5Dcx6E7u5zky+hUwOHjuH2hKSLR3dvRmX8fk8UD8uqQixHs4Wk6eDmiegVrMPjKj7wpA==} + engines: {node: '>=4'} + + execa@0.7.0: + resolution: {integrity: sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==} + engines: {node: '>=4'} + + execa@1.0.0: + resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} + engines: {node: '>=6'} + + execa@4.1.0: + resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} + engines: {node: '>=10'} + + executable@4.1.1: + resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==} + engines: {node: '>=4'} + + expand-template@2.0.3: + resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} + engines: {node: '>=6'} + + ext-list@2.2.2: + resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==} + engines: {node: '>=0.10.0'} + + ext-name@5.0.0: + resolution: {integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==} + engines: {node: '>=4'} + + extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + + external-editor@3.1.0: + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} + engines: {node: '>=4'} + + extsprintf@1.3.0: + resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} + engines: {'0': node >=0.6.0} + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-glob@3.2.4: + resolution: {integrity: sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==} + engines: {node: '>=8'} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + + fastq@1.19.1: + resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} + + fd-slicer@1.1.0: + resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + + fdir@6.4.6: + resolution: {integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + figures@1.7.0: + resolution: {integrity: sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==} + engines: {node: '>=0.10.0'} + + figures@3.2.0: + resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} + engines: {node: '>=8'} + + file-type@12.4.2: + resolution: {integrity: sha512-UssQP5ZgIOKelfsaB5CuGAL+Y+q7EmONuiwF3N5HAH0t27rvrttgi6Ra9k/+DVaY9UF6+ybxu5pOXLUdA8N7Vg==} + engines: {node: '>=8'} + + file-type@3.9.0: + resolution: {integrity: sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==} + engines: {node: '>=0.10.0'} + + file-type@4.4.0: + resolution: {integrity: sha512-f2UbFQEk7LXgWpi5ntcO86OeA/cC80fuDDDaX/fZ2ZGel+AF7leRQqBBW1eJNiiQkrZlAoM6P+VYP5P6bOlDEQ==} + engines: {node: '>=4'} + + file-type@5.2.0: + resolution: {integrity: sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==} + engines: {node: '>=4'} + + file-type@6.2.0: + resolution: {integrity: sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==} + engines: {node: '>=4'} + + file-type@8.1.0: + resolution: {integrity: sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==} + engines: {node: '>=6'} + + filename-reserved-regex@2.0.0: + resolution: {integrity: sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==} + engines: {node: '>=4'} + + filenamify@2.1.0: + resolution: {integrity: sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==} + engines: {node: '>=4'} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + find-up@1.1.2: + resolution: {integrity: sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==} + engines: {node: '>=0.10.0'} + + find-versions@3.2.0: + resolution: {integrity: sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==} + engines: {node: '>=6'} + + follow-redirects@1.15.11: + resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + + for-each@0.3.5: + resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} + engines: {node: '>= 0.4'} + + forever-agent@0.6.1: + resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} + + form-data@2.3.3: + resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} + engines: {node: '>= 0.12'} + + from2@2.3.0: + resolution: {integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==} + + fs-constants@1.0.0: + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + + fs-extra@9.0.1: + resolution: {integrity: sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ==} + engines: {node: '>=10'} + + fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + function.prototype.name@1.1.8: + resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} + engines: {node: '>= 0.4'} + + functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + + gauge@2.7.4: + resolution: {integrity: sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==} + deprecated: This package is no longer supported. + + get-intrinsic@1.3.0: + resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} + engines: {node: '>= 0.4'} + + get-proto@1.0.1: + resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} + engines: {node: '>= 0.4'} + + get-proxy@2.1.0: + resolution: {integrity: sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==} + engines: {node: '>=4'} + + get-stdin@4.0.1: + resolution: {integrity: sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==} + engines: {node: '>=0.10.0'} + + get-stream@2.3.1: + resolution: {integrity: sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==} + engines: {node: '>=0.10.0'} + + get-stream@3.0.0: + resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==} + engines: {node: '>=4'} + + get-stream@4.1.0: + resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} + engines: {node: '>=6'} + + get-stream@5.2.0: + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} + + get-symbol-description@1.1.0: + resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} + engines: {node: '>= 0.4'} + + getpass@0.1.7: + resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} + + github-from-package@0.0.0: + resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + deprecated: Glob versions prior to v9 are no longer supported + + global-dirs@2.1.0: + resolution: {integrity: sha512-MG6kdOUh/xBnyo9cJFeIKkLEc1AyFq42QTU4XiX51i2NEdxLxLWXIjEjmqKeSuKR7pAZjTqUVoT2b2huxVLgYQ==} + engines: {node: '>=8'} + + globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} + + globby@10.0.2: + resolution: {integrity: sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==} + engines: {node: '>=8'} + + gopd@1.2.0: + resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} + engines: {node: '>= 0.4'} + + got@11.8.6: + resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} + engines: {node: '>=10.19.0'} + + got@7.1.0: + resolution: {integrity: sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==} + engines: {node: '>=4'} + + got@8.3.2: + resolution: {integrity: sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==} + engines: {node: '>=4'} + + got@9.6.0: + resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} + engines: {node: '>=8.6'} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + har-schema@2.0.0: + resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==} + engines: {node: '>=4'} + + har-validator@5.1.5: + resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==} + engines: {node: '>=6'} + deprecated: this library is no longer supported + + has-ansi@2.0.0: + resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} + engines: {node: '>=0.10.0'} + + has-bigints@1.1.0: + resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} + engines: {node: '>= 0.4'} + + has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + + has-proto@1.2.0: + resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} + engines: {node: '>= 0.4'} + + has-symbol-support-x@1.4.2: + resolution: {integrity: sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==} + + has-symbols@1.1.0: + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + engines: {node: '>= 0.4'} + + has-to-string-tag-x@1.4.1: + resolution: {integrity: sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==} + + has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} + + has-unicode@2.0.1: + resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} + + has-yarn@2.1.0: + resolution: {integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==} + engines: {node: '>=8'} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + + html-encoding-sniffer@2.0.1: + resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==} + engines: {node: '>=10'} + + htmlparser2@3.10.1: + resolution: {integrity: sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==} + + http-cache-semantics@3.8.1: + resolution: {integrity: sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==} + + http-cache-semantics@4.2.0: + resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==} + + http-proxy@1.18.1: + resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} + engines: {node: '>=8.0.0'} + + http-signature@1.2.0: + resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==} + engines: {node: '>=0.8', npm: '>=1.3.7'} + + http2-wrapper@1.0.3: + resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} + engines: {node: '>=10.19.0'} + + human-signals@1.1.1: + resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} + engines: {node: '>=8.12.0'} + + iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + + iconv-lite@0.5.2: + resolution: {integrity: sha512-kERHXvpSaB4aU3eANwidg79K8FlrN77m8G9V+0vOR3HYaRifrlwMEpT7ZBJqLSEIHnEgJTHcWK82wwLwwKwtag==} + engines: {node: '>=0.10.0'} + + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + + imagemin-optipng@8.0.0: + resolution: {integrity: sha512-CUGfhfwqlPjAC0rm8Fy+R2DJDBGjzy2SkfyT09L8rasnF9jSoHFqJ1xxSZWK6HVPZBMhGPMxCTL70OgTHlLF5A==} + engines: {node: '>=10'} + + imagemin-pngquant@9.0.1: + resolution: {integrity: sha512-PYyo9G/xwddf+Qqlqe3onz5ZH7p6vHYVVkiuuczUjxZmfekyY77RXaOA/AR6FnVoeQxGa/pDtEK5xUKOcVo+sA==} + engines: {node: '>=10'} + + imagemin-zopfli@7.0.0: + resolution: {integrity: sha512-nmffj58rVb0O3AlCZLBBVKGyZ5MYPZZfKxUhvA7bwPGougHl/F7EUKSse9jkgXjdvtJYG2ojJeh5N67mYgBM9g==} + engines: {node: '>=10'} + + imagemin@7.0.1: + resolution: {integrity: sha512-33AmZ+xjZhg2JMCe+vDf6a9mzWukE7l+wAtesjE7KyteqqKjzxv7aVQeWnul1Ve26mWvEQqyPwl0OctNBfSR9w==} + engines: {node: '>=8'} + + import-lazy@2.1.0: + resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==} + engines: {node: '>=4'} + + import-lazy@3.1.0: + resolution: {integrity: sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==} + engines: {node: '>=6'} + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + indent-string@2.1.0: + resolution: {integrity: sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==} + engines: {node: '>=0.10.0'} + + indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + + inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + ini@1.3.7: + resolution: {integrity: sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ==} + + ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + + inquirer@7.3.3: + resolution: {integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==} + engines: {node: '>=8.0.0'} + + internal-slot@1.1.0: + resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} + engines: {node: '>= 0.4'} + + into-stream@3.1.0: + resolution: {integrity: sha512-TcdjPibTksa1NQximqep2r17ISRiNE9fwlfbg3F8ANdvP5/yrFTew86VcO//jk4QTaMlbjypPBq76HN2zaKfZQ==} + engines: {node: '>=4'} + + ip-regex@2.1.0: + resolution: {integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==} + engines: {node: '>=4'} + + is-array-buffer@3.0.5: + resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} + engines: {node: '>= 0.4'} + + is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + + is-arrayish@0.3.4: + resolution: {integrity: sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==} + + is-async-function@2.1.1: + resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==} + engines: {node: '>= 0.4'} + + is-bigint@1.1.0: + resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} + engines: {node: '>= 0.4'} + + is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + + is-boolean-object@1.2.2: + resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} + engines: {node: '>= 0.4'} + + is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + + is-ci@2.0.0: + resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} + hasBin: true + + is-core-module@2.16.1: + resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} + engines: {node: '>= 0.4'} + + is-data-view@1.0.2: + resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} + engines: {node: '>= 0.4'} + + is-date-object@1.1.0: + resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} + engines: {node: '>= 0.4'} + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-finalizationregistry@1.1.1: + resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} + engines: {node: '>= 0.4'} + + is-finite@1.1.0: + resolution: {integrity: sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==} + engines: {node: '>=0.10.0'} + + is-fullwidth-code-point@1.0.0: + resolution: {integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==} + engines: {node: '>=0.10.0'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-generator-function@1.1.0: + resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==} + engines: {node: '>= 0.4'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-installed-globally@0.3.2: + resolution: {integrity: sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g==} + engines: {node: '>=8'} + + is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} + + is-natural-number@4.0.1: + resolution: {integrity: sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==} + + is-negative-zero@2.0.3: + resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} + engines: {node: '>= 0.4'} + + is-npm@4.0.0: + resolution: {integrity: sha512-96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig==} + engines: {node: '>=8'} + + is-number-object@1.1.1: + resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} + engines: {node: '>= 0.4'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-obj@2.0.0: + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} + + is-object@1.0.2: + resolution: {integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==} + + is-path-inside@3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} + + is-plain-obj@1.1.0: + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} + + is-plain-object@2.0.4: + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} + + is-png@2.0.0: + resolution: {integrity: sha512-4KPGizaVGj2LK7xwJIz8o5B2ubu1D/vcQsgOGFEDlpcvgZHto4gBnyd0ig7Ws+67ixmwKoNmu0hYnpo6AaKb5g==} + engines: {node: '>=8'} + + is-port-reachable@3.1.0: + resolution: {integrity: sha512-vjc0SSRNZ32s9SbZBzGaiP6YVB+xglLShhgZD/FHMZUXBvQWaV9CtzgeVhjccFJrI6RAMV+LX7NYxueW/A8W5A==} + engines: {node: '>=8'} + + is-potential-custom-element-name@1.0.1: + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + + is-reachable@5.0.0: + resolution: {integrity: sha512-frRPbdrQWEqbnF1il9Dyrf52Q40exkHdo4/grWMjHrBn4G1DKC9sbuQihgANkJPNi2eosU4AXBsrITdXmc3IQg==} + engines: {node: '>=10'} + + is-regex@1.2.1: + resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} + engines: {node: '>= 0.4'} + + is-retry-allowed@1.2.0: + resolution: {integrity: sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==} + engines: {node: '>=0.10.0'} + + is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} + + is-shared-array-buffer@1.0.4: + resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} + engines: {node: '>= 0.4'} + + is-stream@1.1.0: + resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} + engines: {node: '>=0.10.0'} + + is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + + is-string@1.1.1: + resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} + engines: {node: '>= 0.4'} + + is-symbol@1.1.1: + resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} + engines: {node: '>= 0.4'} + + is-typed-array@1.1.15: + resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} + engines: {node: '>= 0.4'} + + is-typedarray@1.0.0: + resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} + + is-utf8@0.2.1: + resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==} + + is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} + + is-weakref@1.1.1: + resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==} + engines: {node: '>= 0.4'} + + is-weakset@2.0.4: + resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} + engines: {node: '>= 0.4'} + + is-yarn-global@0.3.0: + resolution: {integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==} + + isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + + isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + + isbinaryfile@4.0.6: + resolution: {integrity: sha512-ORrEy+SNVqUhrCaal4hA4fBzhggQQ+BaLntyPOdoEiwlKZW9BZiJXjg3RMiruE4tPEI3pyVPpySHQF/dKWperg==} + engines: {node: '>= 8.0.0'} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + isobject@3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} + + isstream@0.1.2: + resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} + + isurl@1.0.0: + resolution: {integrity: sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==} + engines: {node: '>= 4'} + + js-yaml@3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + hasBin: true + + jsbn@0.1.1: + resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} + + jschardet@2.3.0: + resolution: {integrity: sha512-6I6xT7XN/7sBB7q8ObzKbmv5vN+blzLcboDE1BNEsEfmRXJValMxO6OIRT69ylPBRemS3rw6US+CMCar0OBc9g==} + engines: {node: '>=0.1.90'} + + jsdom@16.4.0: + resolution: {integrity: sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w==} + engines: {node: '>=10'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + + json-buffer@3.0.0: + resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-schema@0.4.0: + resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} + + json-stringify-safe@5.0.1: + resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + + jsonfile@6.2.0: + resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==} + + jsprim@1.4.2: + resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==} + engines: {node: '>=0.6.0'} + + junk@3.1.0: + resolution: {integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==} + engines: {node: '>=8'} + + keyv@3.0.0: + resolution: {integrity: sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==} + + keyv@3.1.0: + resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==} + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + + latest-version@5.1.0: + resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==} + engines: {node: '>=8'} + + levn@0.3.0: + resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==} + engines: {node: '>= 0.8.0'} + + load-json-file@1.1.0: + resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==} + engines: {node: '>=0.10.0'} + + lodash-es@4.17.21: + resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} + + lodash-unified@1.0.3: + resolution: {integrity: sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==} + peerDependencies: + '@types/lodash-es': '*' + lodash: '*' + lodash-es: '*' + + lodash.assignin@4.2.0: + resolution: {integrity: sha512-yX/rx6d/UTVh7sSVWVSIMjfnz95evAgDFdb1ZozC35I9mSFCkmzptOzevxjgbQUsc78NR44LVHWjsoMQXy9FDg==} + + lodash.bind@4.2.1: + resolution: {integrity: sha512-lxdsn7xxlCymgLYo1gGvVrfHmkjDiyqVv62FAeF2i5ta72BipE1SLxw8hPEPLhD4/247Ijw07UQH7Hq/chT5LA==} + + lodash.defaults@4.2.0: + resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==} + + lodash.filter@4.6.0: + resolution: {integrity: sha512-pXYUy7PR8BCLwX5mgJ/aNtyOvuJTdZAo9EQFUvMIYugqmJxnrYaANvTbgndOzHSCSR0wnlBBfRXJL5SbWxo3FQ==} + + lodash.flatten@4.4.0: + resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==} + + lodash.foreach@4.5.0: + resolution: {integrity: sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ==} + + lodash.map@4.6.0: + resolution: {integrity: sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==} + + lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + + lodash.pick@4.4.0: + resolution: {integrity: sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==} + deprecated: This package is deprecated. Use destructuring assignment syntax instead. + + lodash.reduce@4.6.0: + resolution: {integrity: sha512-6raRe2vxCYBhpBu+B+TtNGUzah+hQjVdu3E17wfusjyrXBka2nBS8OH/gjVZ5PvHOhWmIZTYri09Z6n/QfnNMw==} + + lodash.reject@4.6.0: + resolution: {integrity: sha512-qkTuvgEzYdyhiJBx42YPzPo71R1aEr0z79kAv7Ixg8wPFEjgRgJdUsGMG3Hf3OYSF/kHI79XhNlt+5Ar6OzwxQ==} + + lodash.some@4.6.0: + resolution: {integrity: sha512-j7MJE+TuT51q9ggt4fSgVqro163BEFjAt3u97IqU+JA2DkWl80nFTrowzLpZ/BnpN7rrl0JA/593NAdd8p/scQ==} + + lodash@4.17.20: + resolution: {integrity: sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==} + + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + logalot@2.1.0: + resolution: {integrity: sha512-Ah4CgdSRfeCJagxQhcVNMi9BfGYyEKLa6d7OA6xSbld/Hg3Cf2QiOa1mDpmG7Ve8LOH6DN3mdttzjQAvWTyVkw==} + engines: {node: '>=0.10.0'} + + longest@1.0.1: + resolution: {integrity: sha512-k+yt5n3l48JU4k8ftnKG6V7u32wyH2NfKzeMto9F/QRE0amxy/LayxwlvjjkZEIzqR+19IrtFO8p5kB9QaYUFg==} + engines: {node: '>=0.10.0'} + + loud-rejection@1.6.0: + resolution: {integrity: sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==} + engines: {node: '>=0.10.0'} + + lowercase-keys@1.0.0: + resolution: {integrity: sha512-RPlX0+PHuvxVDZ7xX+EBVAp4RsVxP/TdDSN2mJYdiq1Lc4Hz7EUSjUI7RZrKKlmrIzVhf6Jo2stj7++gVarS0A==} + engines: {node: '>=0.10.0'} + + lowercase-keys@1.0.1: + resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} + engines: {node: '>=0.10.0'} + + lowercase-keys@2.0.0: + resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} + engines: {node: '>=8'} + + lpad-align@1.1.2: + resolution: {integrity: sha512-MMIcFmmR9zlGZtBcFOows6c2COMekHCIFJz3ew/rRpKZ1wR4mXDPzvcVqLarux8M33X4TPSq2Jdw8WJj0q0KbQ==} + engines: {node: '>=0.10.0'} + hasBin: true + + lru-cache@4.1.5: + resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} + + lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + + magic-string@0.30.17: + resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} + + make-dir@1.3.0: + resolution: {integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==} + engines: {node: '>=4'} + + make-dir@3.1.0: + resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} + engines: {node: '>=8'} + + map-obj@1.0.1: + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} + engines: {node: '>=0.10.0'} + + math-intrinsics@1.1.0: + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + engines: {node: '>= 0.4'} + + mdn-data@2.0.14: + resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} + + mdn-data@2.0.4: + resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==} + + memoize-one@6.0.0: + resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==} + + meow@3.7.0: + resolution: {integrity: sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==} + engines: {node: '>=0.10.0'} + + merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-db@1.54.0: + resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + mime@2.6.0: + resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} + engines: {node: '>=4.0.0'} + hasBin: true + + mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + + mimic-response@1.0.1: + resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} + engines: {node: '>=4'} + + mimic-response@2.1.0: + resolution: {integrity: sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==} + engines: {node: '>=8'} + + mimic-response@3.1.0: + resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} + engines: {node: '>=10'} + + minimatch@10.0.3: + resolution: {integrity: sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==} + engines: {node: 20 || >=22} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimist@1.2.5: + resolution: {integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + mkdirp-classic@0.5.3: + resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} + + mkdirp@0.5.6: + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + hasBin: true + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + mute-stream@0.0.8: + resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + napi-build-utils@1.0.2: + resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} + + nice-try@1.0.5: + resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} + + node-abi@2.30.1: + resolution: {integrity: sha512-/2D0wOQPgaUWzVSVgRMx+trKJRC2UG4SUc4oCJoXx9Uxjtp0Vy3/kt7zcbxHF8+Z/pK3UloLWzBISg72brfy1w==} + + node-addon-api@3.2.1: + resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} + + normalize-package-data@2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + + normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + normalize-url@2.0.1: + resolution: {integrity: sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==} + engines: {node: '>=4'} + + normalize-url@4.5.1: + resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} + engines: {node: '>=8'} + + normalize-url@6.1.0: + resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} + engines: {node: '>=10'} + + normalize-wheel-es@1.2.0: + resolution: {integrity: sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==} + + npm-conf@1.1.3: + resolution: {integrity: sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==} + engines: {node: '>=4'} + + npm-run-path@2.0.2: + resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} + engines: {node: '>=4'} + + npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + + npmlog@4.1.2: + resolution: {integrity: sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==} + deprecated: This package is no longer supported. + + nth-check@1.0.2: + resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==} + + number-is-nan@1.0.1: + resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==} + engines: {node: '>=0.10.0'} + + nwsapi@2.2.22: + resolution: {integrity: sha512-ujSMe1OWVn55euT1ihwCI1ZcAaAU3nxUiDwfDQldc51ZXaB9m2AyOn6/jh1BLe2t/G8xd6uKG1UBF2aZJeg2SQ==} + + oauth-sign@0.9.0: + resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + object-inspect@1.13.4: + resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} + engines: {node: '>= 0.4'} + + object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + + object.assign@4.1.7: + resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} + engines: {node: '>= 0.4'} + + object.getownpropertydescriptors@2.1.8: + resolution: {integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==} + engines: {node: '>= 0.8'} + + object.values@1.2.1: + resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==} + engines: {node: '>= 0.4'} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + + optionator@0.8.3: + resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==} + engines: {node: '>= 0.8.0'} + + optipng-bin@7.0.1: + resolution: {integrity: sha512-W99mpdW7Nt2PpFiaO+74pkht7KEqkXkeRomdWXfEz3SALZ6hns81y/pm1dsGZ6ItUIfchiNIP6ORDr1zETU1jA==} + engines: {node: '>=10'} + hasBin: true + + os-filter-obj@2.0.0: + resolution: {integrity: sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==} + engines: {node: '>=4'} + + os-tmpdir@1.0.2: + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} + engines: {node: '>=0.10.0'} + + ow@0.17.0: + resolution: {integrity: sha512-i3keDzDQP5lWIe4oODyDFey1qVrq2hXKTuTH2VpqwpYtzPiKZt2ziRI4NBQmgW40AnV5Euz17OyWweCb+bNEQA==} + engines: {node: '>=10'} + + own-keys@1.0.1: + resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} + engines: {node: '>= 0.4'} + + p-any@3.0.0: + resolution: {integrity: sha512-5rqbqfsRWNb0sukt0awwgJMlaep+8jV45S15SKKB34z4UuzjcofIfnriCBhWjZP2jbVtjt9yRl7buB6RlKsu9w==} + engines: {node: '>=10'} + + p-cancelable@0.3.0: + resolution: {integrity: sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==} + engines: {node: '>=4'} + + p-cancelable@0.4.1: + resolution: {integrity: sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==} + engines: {node: '>=4'} + + p-cancelable@1.1.0: + resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} + engines: {node: '>=6'} + + p-cancelable@2.1.1: + resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} + engines: {node: '>=8'} + + p-event@1.3.0: + resolution: {integrity: sha512-hV1zbA7gwqPVFcapfeATaNjQ3J0NuzorHPyG8GPL9g/Y/TplWVBVoCKCXL6Ej2zscrCEv195QNWJXuBH6XZuzA==} + engines: {node: '>=4'} + + p-event@2.3.1: + resolution: {integrity: sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==} + engines: {node: '>=6'} + + p-finally@1.0.0: + resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} + engines: {node: '>=4'} + + p-is-promise@1.1.0: + resolution: {integrity: sha512-zL7VE4JVS2IFSkR2GQKDSPEVxkoH43/p7oEnwpdCndKYJO0HVeRB7fA8TJwuLOTBREtK0ea8eHaxdwcpob5dmg==} + engines: {node: '>=4'} + + p-map-series@1.0.0: + resolution: {integrity: sha512-4k9LlvY6Bo/1FcIdV33wqZQES0Py+iKISU9Uc8p8AjWoZPnFKMpVIVD3s0EYn4jzLh1I+WeUZkJ0Yoa4Qfw3Kg==} + engines: {node: '>=4'} + + p-pipe@3.1.0: + resolution: {integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==} + engines: {node: '>=8'} + + p-reduce@1.0.0: + resolution: {integrity: sha512-3Tx1T3oM1xO/Y8Gj0sWyE78EIJZ+t+aEmXUdvQgvGmSMri7aPTHoovbXEreWKkL5j21Er60XAWLTzKbAKYOujQ==} + engines: {node: '>=4'} + + p-some@5.0.0: + resolution: {integrity: sha512-Js5XZxo6vHjB9NOYAzWDYAIyyiPvva0DWESAIWIK7uhSpGsyg5FwUPxipU/SOQx5x9EqhOh545d1jo6cVkitig==} + engines: {node: '>=10'} + + p-timeout@1.2.1: + resolution: {integrity: sha512-gb0ryzr+K2qFqFv6qi3khoeqMZF/+ajxQipEF6NteZVnvz9tzdsfAVj3lYtn1gAXvH5lfLwfxEII799gt/mRIA==} + engines: {node: '>=4'} + + p-timeout@2.0.1: + resolution: {integrity: sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==} + engines: {node: '>=4'} + + p-timeout@3.2.0: + resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} + engines: {node: '>=8'} + + p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + + package-json@6.5.0: + resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==} + engines: {node: '>=8'} + + parse-json@2.2.0: + resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==} + engines: {node: '>=0.10.0'} + + parse5@5.1.1: + resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==} + + path-exists@2.1.0: + resolution: {integrity: sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==} + engines: {node: '>=0.10.0'} + + path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + + path-key@2.0.1: + resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} + engines: {node: '>=4'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-type@1.1.0: + resolution: {integrity: sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==} + engines: {node: '>=0.10.0'} + + path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + + pend@1.2.0: + resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} + + performance-now@2.1.0: + resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + picomatch@4.0.2: + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} + + pify@2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + + pify@3.0.0: + resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} + engines: {node: '>=4'} + + pify@4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + + pinkie-promise@2.0.1: + resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==} + engines: {node: '>=0.10.0'} + + pinkie@2.0.4: + resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==} + engines: {node: '>=0.10.0'} + + png2icons@2.0.1: + resolution: {integrity: sha512-GDEQJr8OG4e6JMp7mABtXFSEpgJa1CCpbQiAR+EjhkHJHnUL9zPPtbOrjsMD8gUbikgv3j7x404b0YJsV3aVFA==} + hasBin: true + + pngquant-bin@6.0.1: + resolution: {integrity: sha512-Q3PUyolfktf+hYio6wsg3SanQzEU/v8aICg/WpzxXcuCMRb7H2Q81okfpcEztbMvw25ILjd3a87doj2N9kvbpQ==} + engines: {node: '>=10'} + hasBin: true + + possible-typed-array-names@1.1.0: + resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} + engines: {node: '>= 0.4'} + + postcss@8.5.6: + resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} + engines: {node: ^10 || ^12 || >=14} + + prebuild-install@6.1.4: + resolution: {integrity: sha512-Z4vpywnK1lBg+zdPCVCsKq0xO66eEV9rWo2zrROGGiRS4JtueBOdlB1FnY8lcy7JsUud/Q3ijUxyWN26Ika0vQ==} + engines: {node: '>=6'} + hasBin: true + + prelude-ls@1.1.2: + resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} + engines: {node: '>= 0.8.0'} + + prepend-http@1.0.4: + resolution: {integrity: sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==} + engines: {node: '>=0.10.0'} + + prepend-http@2.0.0: + resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} + engines: {node: '>=4'} + + prepend-http@3.0.1: + resolution: {integrity: sha512-BLxfZh+m6UiAiCPZFJ4+vYoL7NrRs5XgCTRrjseATAggXhdZKKxn+JUNmuVYWY23bDHgaEHodxw8mnmtVEDtHw==} + engines: {node: '>=8'} + + process-nextick-args@2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + + promise@7.3.1: + resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} + + proto-list@1.2.4: + resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} + + pseudomap@1.0.2: + resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} + + psl@1.15.0: + resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==} + + pump@3.0.3: + resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + pupa@2.1.1: + resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==} + engines: {node: '>=8'} + + q@1.5.1: + resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} + engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + deprecated: |- + You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. + + (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) + + qs@6.5.3: + resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==} + engines: {node: '>=0.6'} + + query-string@5.1.1: + resolution: {integrity: sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==} + engines: {node: '>=0.10.0'} + + querystringify@2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + quick-lru@5.1.1: + resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} + engines: {node: '>=10'} + + rc@1.2.8: + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} + hasBin: true + + read-chunk@3.2.0: + resolution: {integrity: sha512-CEjy9LCzhmD7nUpJ1oVOE6s/hBkejlcJEgLQHVnQznOSilOPb+kpKktlLfFDK3/WP43+F80xkUTM2VOkYoSYvQ==} + engines: {node: '>=6'} + + read-pkg-up@1.0.1: + resolution: {integrity: sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==} + engines: {node: '>=0.10.0'} + + read-pkg@1.1.0: + resolution: {integrity: sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==} + engines: {node: '>=0.10.0'} + + readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + + readdirp@3.5.0: + resolution: {integrity: sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==} + engines: {node: '>=8.10.0'} + + redent@1.0.0: + resolution: {integrity: sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==} + engines: {node: '>=0.10.0'} + + reflect.getprototypeof@1.0.10: + resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} + engines: {node: '>= 0.4'} + + regexp.prototype.flags@1.5.4: + resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} + engines: {node: '>= 0.4'} + + registry-auth-token@4.2.2: + resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==} + engines: {node: '>=6.0.0'} + + registry-url@5.1.0: + resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} + engines: {node: '>=8'} + + repeating@2.0.1: + resolution: {integrity: sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==} + engines: {node: '>=0.10.0'} + + replace-ext@1.0.1: + resolution: {integrity: sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==} + engines: {node: '>= 0.10'} + + request-promise-core@1.1.4: + resolution: {integrity: sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==} + engines: {node: '>=0.10.0'} + peerDependencies: + request: ^2.34 + + request-promise-native@1.0.9: + resolution: {integrity: sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==} + engines: {node: '>=0.12.0'} + deprecated: request-promise-native has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142 + peerDependencies: + request: ^2.34 + + request@2.88.2: + resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==} + engines: {node: '>= 6'} + deprecated: request has been deprecated, see https://github.com/request/request/issues/3142 + + requires-port@1.0.0: + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + + resolve-alpn@1.2.1: + resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} + + resolve@1.22.10: + resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} + engines: {node: '>= 0.4'} + hasBin: true + + responselike@1.0.2: + resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==} + + responselike@2.0.1: + resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} + + restore-cursor@3.1.0: + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + engines: {node: '>=8'} + + reusify@1.1.0: + resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rimraf@2.7.1: + resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true + + rollup@4.45.0: + resolution: {integrity: sha512-WLjEcJRIo7i3WDDgOIJqVI2d+lAC3EwvOGy+Xfq6hs+GQuAA4Di/H72xmXkOhrIWFg2PFYSKZYfH0f4vfKXN4A==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + router-ips@1.0.0: + resolution: {integrity: sha512-yBo6F52Un/WYioXbedBGvrKIiofbwt+4cUhdqDb9fNMJBI4D4jOy7jlxxaRVEvICPKU7xMmJDtDFR6YswX/sFQ==} + engines: {node: '>=4'} + + run-async@2.4.1: + resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} + engines: {node: '>=0.12.0'} + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + rxjs@6.6.7: + resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} + engines: {npm: '>=2.0.0'} + + safe-array-concat@1.1.3: + resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} + engines: {node: '>=0.4'} + + safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safe-push-apply@1.0.0: + resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} + engines: {node: '>= 0.4'} + + safe-regex-test@1.1.0: + resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} + engines: {node: '>= 0.4'} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + sax@1.2.4: + resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} + + saxes@5.0.1: + resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} + engines: {node: '>=10'} + + seek-bzip@1.0.6: + resolution: {integrity: sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==} + hasBin: true + + semver-diff@3.1.1: + resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==} + engines: {node: '>=8'} + + semver-regex@2.0.0: + resolution: {integrity: sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==} + engines: {node: '>=6'} + + semver-truncate@1.1.2: + resolution: {integrity: sha512-V1fGg9i4CL3qesB6U0L6XAm4xOJiHmt4QAacazumuasc03BvtFGIMCduv01JWQ69Nv+JST9TqhSCiJoxoY031w==} + engines: {node: '>=0.10.0'} + + semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + hasBin: true + + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + + semver@7.3.4: + resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==} + engines: {node: '>=10'} + hasBin: true + + set-blocking@2.0.0: + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + + set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + + set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} + + set-proto@1.0.0: + resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==} + engines: {node: '>= 0.4'} + + shallow-clone@3.0.1: + resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} + engines: {node: '>=8'} + + sharp@0.27.0: + resolution: {integrity: sha512-II+YBCW3JuVWQZdpTEA2IBjJcYXPuoKo3AUqYuW+FK9Um93v2gPE2ihICCsN5nHTUoP8WCjqA83c096e8n//Rw==} + engines: {node: '>=10'} + + shebang-command@1.2.0: + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@1.0.0: + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + side-channel-list@1.0.0: + resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} + engines: {node: '>= 0.4'} + + side-channel-map@1.0.1: + resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} + engines: {node: '>= 0.4'} + + side-channel-weakmap@1.0.2: + resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} + engines: {node: '>= 0.4'} + + side-channel@1.1.0: + resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} + engines: {node: '>= 0.4'} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + simple-concat@1.0.1: + resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} + + simple-get@3.1.1: + resolution: {integrity: sha512-CQ5LTKGfCpvE1K0n2us+kuMPbk/q0EKl82s4aheV9oXjFEz6W/Y7oQFVJuU6QG77hRT4Ghb5RURteF5vnWjupA==} + + simple-get@4.0.1: + resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==} + + simple-swizzle@0.2.4: + resolution: {integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==} + + slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + + sort-keys-length@1.0.1: + resolution: {integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==} + engines: {node: '>=0.10.0'} + + sort-keys@1.1.2: + resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==} + engines: {node: '>=0.10.0'} + + sort-keys@2.0.0: + resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==} + engines: {node: '>=4'} + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + spdx-correct@3.2.0: + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + + spdx-exceptions@2.5.0: + resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} + + spdx-expression-parse@3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + + spdx-license-ids@3.0.22: + resolution: {integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==} + + sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + + squeak@1.3.0: + resolution: {integrity: sha512-YQL1ulInM+ev8nXX7vfXsCsDh6IqXlrremc1hzi77776BtpWgYJUMto3UM05GSAaGzJgWekszjoKDrVNB5XG+A==} + engines: {node: '>=0.10.0'} + + sshpk@1.18.0: + resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} + engines: {node: '>=0.10.0'} + hasBin: true + + stable@0.1.8: + resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} + deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' + + stealthy-require@1.1.1: + resolution: {integrity: sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==} + engines: {node: '>=0.10.0'} + + stop-iteration-iterator@1.1.0: + resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} + engines: {node: '>= 0.4'} + + strict-uri-encode@1.1.0: + resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==} + engines: {node: '>=0.10.0'} + + string-width@1.0.2: + resolution: {integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==} + engines: {node: '>=0.10.0'} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string.prototype.trim@1.2.10: + resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} + engines: {node: '>= 0.4'} + + string.prototype.trimend@1.0.9: + resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} + engines: {node: '>= 0.4'} + + string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} + + string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + + strip-ansi@3.0.1: + resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} + engines: {node: '>=0.10.0'} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-bom@2.0.0: + resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==} + engines: {node: '>=0.10.0'} + + strip-dirs@2.1.0: + resolution: {integrity: sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==} + + strip-eof@1.0.0: + resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} + engines: {node: '>=0.10.0'} + + strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + + strip-indent@1.0.1: + resolution: {integrity: sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==} + engines: {node: '>=0.10.0'} + hasBin: true + + strip-json-comments@2.0.1: + resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} + engines: {node: '>=0.10.0'} + + strip-outer@1.0.1: + resolution: {integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==} + engines: {node: '>=0.10.0'} + + supports-color@2.0.0: + resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} + engines: {node: '>=0.8.0'} + + supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + svgo@1.3.2: + resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==} + engines: {node: '>=4.0.0'} + deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x. + hasBin: true + + symbol-tree@3.2.4: + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + + tar-fs@2.1.4: + resolution: {integrity: sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==} + + tar-stream@1.6.2: + resolution: {integrity: sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==} + engines: {node: '>= 0.8.0'} + + tar-stream@2.2.0: + resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} + engines: {node: '>=6'} + + tauri@0.15.0: + resolution: {integrity: sha512-5zPhs7s4NyoUZEUWF9tOM3LCIgMGAc6c6tFONpXc2S41dK/Yk90JFC0z51HQMs/lrkA4AbU8f3EzMCM4WWY20Q==} + engines: {node: '>= 10.17.0', npm: '>= 6.6.0', yarn: '>= 1.19.1'} + + temp-dir@1.0.0: + resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==} + engines: {node: '>=4'} + + tempfile@2.0.0: + resolution: {integrity: sha512-ZOn6nJUgvgC09+doCEF3oB+r3ag7kUvlsXEGX069QRD60p+P3uP7XG9N2/at+EyIRGSN//ZY3LyEotA1YpmjuA==} + engines: {node: '>=4'} + + term-size@2.2.1: + resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} + engines: {node: '>=8'} + + then-fs@2.0.0: + resolution: {integrity: sha512-5ffcBcU+vFUCYDNi/o507IqjqrTkuGsLVZ1Fp50hwgZRY7ufVFa9jFfTy5uZ2QnSKacKigWKeaXkOqLa4DsjLw==} + + through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + + timed-out@4.0.1: + resolution: {integrity: sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==} + engines: {node: '>=0.10.0'} + + tinyglobby@0.2.14: + resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} + engines: {node: '>=12.0.0'} + + tmp@0.0.33: + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} + engines: {node: '>=0.6.0'} + + to-buffer@1.2.1: + resolution: {integrity: sha512-tB82LpAIWjhLYbqjx3X4zEeHN6M8CiuOEy2JY8SEQVdYRe3CCHOFaqrBW1doLDrfpWhplcW7BL+bO3/6S3pcDQ==} + engines: {node: '>= 0.4'} + + to-readable-stream@1.0.0: + resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} + engines: {node: '>=6'} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + tough-cookie@2.5.0: + resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==} + engines: {node: '>=0.8'} + + tough-cookie@3.0.1: + resolution: {integrity: sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==} + engines: {node: '>=6'} + + tr46@2.1.0: + resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} + engines: {node: '>=8'} + + trim-newlines@1.0.0: + resolution: {integrity: sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==} + engines: {node: '>=0.10.0'} + + trim-repeated@1.0.0: + resolution: {integrity: sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==} + engines: {node: '>=0.10.0'} + + tslib@1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + + tunnel-agent@0.6.0: + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} + + tweetnacl@0.14.5: + resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} + + type-check@0.3.2: + resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==} + engines: {node: '>= 0.8.0'} + + type-fest@0.11.0: + resolution: {integrity: sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==} + engines: {node: '>=8'} + + type-fest@0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} + + type-fest@0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} + + typed-array-buffer@1.0.3: + resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} + engines: {node: '>= 0.4'} + + typed-array-byte-length@1.0.3: + resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} + engines: {node: '>= 0.4'} + + typed-array-byte-offset@1.0.4: + resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} + engines: {node: '>= 0.4'} + + typed-array-length@1.0.7: + resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} + engines: {node: '>= 0.4'} + + typedarray-to-buffer@3.1.5: + resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} + + uglify-js@3.19.3: + resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} + engines: {node: '>=0.8.0'} + hasBin: true + + unbox-primitive@1.1.0: + resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} + engines: {node: '>= 0.4'} + + unbzip2-stream@1.4.3: + resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==} + + undici-types@7.12.0: + resolution: {integrity: sha512-goOacqME2GYyOZZfb5Lgtu+1IDmAlAEu5xnD3+xTzS10hT0vzpf0SPjkXwAw9Jm+4n/mQGDP3LO8CPbYROeBfQ==} + + unique-string@2.0.0: + resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} + engines: {node: '>=8'} + + universalify@1.0.0: + resolution: {integrity: sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==} + engines: {node: '>= 10.0.0'} + + universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} + + unquote@1.1.1: + resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} + + update-notifier@4.1.3: + resolution: {integrity: sha512-Yld6Z0RyCYGB6ckIjffGOSOmHXj1gMeE7aROz4MG+XMkmixBX4jUngrGXNYz7wPKBmtoD4MnBa2Anu7RSKht/A==} + engines: {node: '>=8'} + + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + + url-parse-lax@1.0.0: + resolution: {integrity: sha512-BVA4lR5PIviy2PMseNd2jbFQ+jwSwQGdJejf5ctd1rEXt0Ypd7yanUK9+lYechVlN5VaTJGsu2U/3MDDu6KgBA==} + engines: {node: '>=0.10.0'} + + url-parse-lax@3.0.0: + resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} + engines: {node: '>=4'} + + url-parse@1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + + url-to-options@1.0.1: + resolution: {integrity: sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A==} + engines: {node: '>= 4'} + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + util.promisify@1.0.1: + resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} + + uuid@3.4.0: + resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} + deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. + hasBin: true + + validate-npm-package-license@3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + + verror@1.10.0: + resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} + engines: {'0': node >=0.6.0} + + vite@6.3.5: + resolution: {integrity: sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 + jiti: '>=1.21.0' + less: '*' + lightningcss: ^1.21.0 + sass: '*' + sass-embedded: '*' + stylus: '*' + sugarss: '*' + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + jiti: + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + + vue-demi@0.14.10: + resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==} + engines: {node: '>=12'} + hasBin: true + peerDependencies: + '@vue/composition-api': ^1.0.0-rc.1 + vue: ^3.0.0-0 || ^2.6.0 + peerDependenciesMeta: + '@vue/composition-api': + optional: true + + vue-router@4.5.1: + resolution: {integrity: sha512-ogAF3P97NPm8fJsE4by9dwSYtDwXIY1nFY9T6DyQnGHd1E2Da94w9JIolpe42LJGIl0DwOHBi8TcRPlPGwbTtw==} + peerDependencies: + vue: ^3.2.0 + + vue@3.5.17: + resolution: {integrity: sha512-LbHV3xPN9BeljML+Xctq4lbz2lVHCR6DtbpTf5XIO6gugpXUN49j2QQPcMj086r9+AkJ0FfUT8xjulKKBkkr9g==} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + w3c-hr-time@1.0.2: + resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} + deprecated: Use your platform's native performance.now() and performance.timeOrigin. + + w3c-xmlserializer@2.0.0: + resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} + engines: {node: '>=10'} + + webidl-conversions@5.0.0: + resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} + engines: {node: '>=8'} + + webidl-conversions@6.1.0: + resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} + engines: {node: '>=10.4'} + + webpack-merge@5.7.3: + resolution: {integrity: sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA==} + engines: {node: '>=10.0.0'} + + webpack-shell-plugin@0.5.0: + resolution: {integrity: sha512-BJMcVgXzA7Yc/Dq9JFj/wvquYG5qP3lgmCpMYzhP1a+LxZ/z3TbqKJ3W2xTkzQqBeYsgTdOcSdZ/+qYoFBhMhA==} + + whatwg-encoding@1.0.5: + resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} + + whatwg-mimetype@2.3.0: + resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} + + whatwg-url@8.7.0: + resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} + engines: {node: '>=10'} + + which-boxed-primitive@1.1.1: + resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} + engines: {node: '>= 0.4'} + + which-builtin-type@1.2.1: + resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} + engines: {node: '>= 0.4'} + + which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} + + which-typed-array@1.1.19: + resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} + engines: {node: '>= 0.4'} + + which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + wide-align@1.1.5: + resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} + + widest-line@3.1.0: + resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} + engines: {node: '>=8'} + + wildcard@2.0.1: + resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} + + with-open-file@0.1.7: + resolution: {integrity: sha512-ecJS2/oHtESJ1t3ZfMI3B7KIDKyfN0O16miWxdn30zdh66Yd3LsRFebXZXq6GU4xfxLf6nVxp9kIqElb5fqczA==} + engines: {node: '>=6'} + + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + write-file-atomic@3.0.3: + resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} + + ws@7.5.10: + resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} + engines: {node: '>=8.3.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + xdg-basedir@4.0.0: + resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} + engines: {node: '>=8'} + + xml-name-validator@3.0.0: + resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} + + xmlchars@2.2.0: + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + + xtend@4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} + + yallist@2.1.2: + resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} + + yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + + yauzl@2.10.0: + resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + + zopflipng-bin@6.0.1: + resolution: {integrity: sha512-+aybvXv/xafL6I67uSH5yLHrSy4/OaSOV9tniw4yZFIHpINXUcctVHE/WzHxOONrL2GHzJ8Fd4iDrNyaS6TVbg==} + engines: {node: '>=10'} + hasBin: true + +snapshots: + + '@babel/helper-string-parser@7.27.1': {} + + '@babel/helper-validator-identifier@7.27.1': {} + + '@babel/parser@7.28.0': + dependencies: + '@babel/types': 7.28.0 + + '@babel/types@7.28.0': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + + '@ctrl/tinycolor@3.6.1': {} + + '@element-plus/icons-vue@2.3.1(vue@3.5.17)': + dependencies: + vue: 3.5.17 + + '@esbuild/aix-ppc64@0.25.6': + optional: true + + '@esbuild/android-arm64@0.25.6': + optional: true + + '@esbuild/android-arm@0.25.6': + optional: true + + '@esbuild/android-x64@0.25.6': + optional: true + + '@esbuild/darwin-arm64@0.25.6': + optional: true + + '@esbuild/darwin-x64@0.25.6': + optional: true + + '@esbuild/freebsd-arm64@0.25.6': + optional: true + + '@esbuild/freebsd-x64@0.25.6': + optional: true + + '@esbuild/linux-arm64@0.25.6': + optional: true + + '@esbuild/linux-arm@0.25.6': + optional: true + + '@esbuild/linux-ia32@0.25.6': + optional: true + + '@esbuild/linux-loong64@0.25.6': + optional: true + + '@esbuild/linux-mips64el@0.25.6': + optional: true + + '@esbuild/linux-ppc64@0.25.6': + optional: true + + '@esbuild/linux-riscv64@0.25.6': + optional: true + + '@esbuild/linux-s390x@0.25.6': + optional: true + + '@esbuild/linux-x64@0.25.6': + optional: true + + '@esbuild/netbsd-arm64@0.25.6': + optional: true + + '@esbuild/netbsd-x64@0.25.6': + optional: true + + '@esbuild/openbsd-arm64@0.25.6': + optional: true + + '@esbuild/openbsd-x64@0.25.6': + optional: true + + '@esbuild/openharmony-arm64@0.25.6': + optional: true + + '@esbuild/sunos-x64@0.25.6': + optional: true + + '@esbuild/win32-arm64@0.25.6': + optional: true + + '@esbuild/win32-ia32@0.25.6': + optional: true + + '@esbuild/win32-x64@0.25.6': + optional: true + + '@floating-ui/core@1.7.2': + dependencies: + '@floating-ui/utils': 0.2.10 + + '@floating-ui/dom@1.7.2': + dependencies: + '@floating-ui/core': 1.7.2 + '@floating-ui/utils': 0.2.10 + + '@floating-ui/utils@0.2.10': {} + + '@isaacs/balanced-match@4.0.1': {} + + '@isaacs/brace-expansion@5.0.0': + dependencies: + '@isaacs/balanced-match': 4.0.1 + + '@jridgewell/sourcemap-codec@1.5.4': {} + + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.19.1 + + '@rollup/rollup-android-arm-eabi@4.45.0': + optional: true + + '@rollup/rollup-android-arm64@4.45.0': + optional: true + + '@rollup/rollup-darwin-arm64@4.45.0': + optional: true + + '@rollup/rollup-darwin-x64@4.45.0': + optional: true + + '@rollup/rollup-freebsd-arm64@4.45.0': + optional: true + + '@rollup/rollup-freebsd-x64@4.45.0': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.45.0': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.45.0': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.45.0': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.45.0': + optional: true + + '@rollup/rollup-linux-loongarch64-gnu@4.45.0': + optional: true + + '@rollup/rollup-linux-powerpc64le-gnu@4.45.0': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.45.0': + optional: true + + '@rollup/rollup-linux-riscv64-musl@4.45.0': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.45.0': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.45.0': + optional: true + + '@rollup/rollup-linux-x64-musl@4.45.0': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.45.0': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.45.0': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.45.0': + optional: true + + '@sindresorhus/is@0.14.0': {} + + '@sindresorhus/is@0.7.0': {} + + '@sindresorhus/is@4.6.0': {} + + '@sxzz/popperjs-es@2.11.7': {} + + '@szmarczak/http-timer@1.1.2': + dependencies: + defer-to-connect: 1.1.3 + + '@szmarczak/http-timer@4.0.6': + dependencies: + defer-to-connect: 2.0.1 + + '@tauri-apps/api@2.6.0': {} + + '@tauri-apps/cli-darwin-arm64@2.6.2': + optional: true + + '@tauri-apps/cli-darwin-x64@2.6.2': + optional: true + + '@tauri-apps/cli-linux-arm-gnueabihf@2.6.2': + optional: true + + '@tauri-apps/cli-linux-arm64-gnu@2.6.2': + optional: true + + '@tauri-apps/cli-linux-arm64-musl@2.6.2': + optional: true + + '@tauri-apps/cli-linux-riscv64-gnu@2.6.2': + optional: true + + '@tauri-apps/cli-linux-x64-gnu@2.6.2': + optional: true + + '@tauri-apps/cli-linux-x64-musl@2.6.2': + optional: true + + '@tauri-apps/cli-win32-arm64-msvc@2.6.2': + optional: true + + '@tauri-apps/cli-win32-ia32-msvc@2.6.2': + optional: true + + '@tauri-apps/cli-win32-x64-msvc@2.6.2': + optional: true + + '@tauri-apps/cli@2.6.2': + optionalDependencies: + '@tauri-apps/cli-darwin-arm64': 2.6.2 + '@tauri-apps/cli-darwin-x64': 2.6.2 + '@tauri-apps/cli-linux-arm-gnueabihf': 2.6.2 + '@tauri-apps/cli-linux-arm64-gnu': 2.6.2 + '@tauri-apps/cli-linux-arm64-musl': 2.6.2 + '@tauri-apps/cli-linux-riscv64-gnu': 2.6.2 + '@tauri-apps/cli-linux-x64-gnu': 2.6.2 + '@tauri-apps/cli-linux-x64-musl': 2.6.2 + '@tauri-apps/cli-win32-arm64-msvc': 2.6.2 + '@tauri-apps/cli-win32-ia32-msvc': 2.6.2 + '@tauri-apps/cli-win32-x64-msvc': 2.6.2 + + '@tauri-apps/plugin-opener@2.4.0': + dependencies: + '@tauri-apps/api': 2.6.0 + + '@tauri-apps/tauri-inliner@1.14.1': + dependencies: + ansi-escapes: 4.3.2 + ansi-styles: 4.3.0 + chalk: 3.0.0 + charset: 1.0.1 + cheerio: 0.22.0 + debug: 4.4.3 + es6-promise: 4.2.8 + iconv-lite: 0.5.2 + jschardet: 2.3.0 + lodash: 4.17.21 + mime: 2.6.0 + minimist: 1.2.5 + request: 2.88.2 + svgo: 1.3.2 + then-fs: 2.0.0 + uglify-js: 3.19.3 + update-notifier: 4.1.3 + transitivePeerDependencies: + - supports-color + + '@tauri-apps/toml@2.2.4': {} + + '@types/cacheable-request@6.0.3': + dependencies: + '@types/http-cache-semantics': 4.0.4 + '@types/keyv': 3.1.4 + '@types/node': 24.5.1 + '@types/responselike': 1.0.3 + + '@types/estree@1.0.8': {} + + '@types/glob@7.2.0': + dependencies: + '@types/minimatch': 6.0.0 + '@types/node': 24.5.1 + + '@types/http-cache-semantics@4.0.4': {} + + '@types/keyv@3.1.4': + dependencies: + '@types/node': 24.5.1 + + '@types/lodash-es@4.17.12': + dependencies: + '@types/lodash': 4.17.20 + + '@types/lodash@4.17.20': {} + + '@types/minimatch@6.0.0': + dependencies: + minimatch: 10.0.3 + + '@types/node@24.5.1': + dependencies: + undici-types: 7.12.0 + + '@types/q@1.5.8': {} + + '@types/responselike@1.0.3': + dependencies: + '@types/node': 24.5.1 + + '@types/web-bluetooth@0.0.16': {} + + '@vitejs/plugin-vue@5.2.4(vite@6.3.5(@types/node@24.5.1))(vue@3.5.17)': + dependencies: + vite: 6.3.5(@types/node@24.5.1) + vue: 3.5.17 + + '@vue/compiler-core@3.5.17': + dependencies: + '@babel/parser': 7.28.0 + '@vue/shared': 3.5.17 + entities: 4.5.0 + estree-walker: 2.0.2 + source-map-js: 1.2.1 + + '@vue/compiler-dom@3.5.17': + dependencies: + '@vue/compiler-core': 3.5.17 + '@vue/shared': 3.5.17 + + '@vue/compiler-sfc@3.5.17': + dependencies: + '@babel/parser': 7.28.0 + '@vue/compiler-core': 3.5.17 + '@vue/compiler-dom': 3.5.17 + '@vue/compiler-ssr': 3.5.17 + '@vue/shared': 3.5.17 + estree-walker: 2.0.2 + magic-string: 0.30.17 + postcss: 8.5.6 + source-map-js: 1.2.1 + + '@vue/compiler-ssr@3.5.17': + dependencies: + '@vue/compiler-dom': 3.5.17 + '@vue/shared': 3.5.17 + + '@vue/devtools-api@6.6.4': {} + + '@vue/reactivity@3.5.17': + dependencies: + '@vue/shared': 3.5.17 + + '@vue/runtime-core@3.5.17': + dependencies: + '@vue/reactivity': 3.5.17 + '@vue/shared': 3.5.17 + + '@vue/runtime-dom@3.5.17': + dependencies: + '@vue/reactivity': 3.5.17 + '@vue/runtime-core': 3.5.17 + '@vue/shared': 3.5.17 + csstype: 3.1.3 + + '@vue/server-renderer@3.5.17(vue@3.5.17)': + dependencies: + '@vue/compiler-ssr': 3.5.17 + '@vue/shared': 3.5.17 + vue: 3.5.17 + + '@vue/shared@3.5.17': {} + + '@vueuse/core@9.13.0(vue@3.5.17)': + dependencies: + '@types/web-bluetooth': 0.0.16 + '@vueuse/metadata': 9.13.0 + '@vueuse/shared': 9.13.0(vue@3.5.17) + vue-demi: 0.14.10(vue@3.5.17) + transitivePeerDependencies: + - '@vue/composition-api' + - vue + + '@vueuse/metadata@9.13.0': {} + + '@vueuse/shared@9.13.0(vue@3.5.17)': + dependencies: + vue-demi: 0.14.10(vue@3.5.17) + transitivePeerDependencies: + - '@vue/composition-api' + - vue + + abab@2.0.6: {} + + acorn-globals@6.0.0: + dependencies: + acorn: 7.4.1 + acorn-walk: 7.2.0 + + acorn-walk@7.2.0: {} + + acorn@7.4.1: {} + + aggregate-error@3.1.0: + dependencies: + clean-stack: 2.2.0 + indent-string: 4.0.0 + + ajv@6.12.6: + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + + ansi-align@3.0.1: + dependencies: + string-width: 4.2.3 + + ansi-escapes@4.3.2: + dependencies: + type-fest: 0.21.3 + + ansi-regex@2.1.1: {} + + ansi-regex@5.0.1: {} + + ansi-styles@2.2.1: {} + + ansi-styles@3.2.1: + dependencies: + color-convert: 1.9.3 + + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 + + anymatch@3.1.3: + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + + aproba@1.2.0: {} + + arch@2.2.0: {} + + archive-type@4.0.0: + dependencies: + file-type: 4.4.0 + + are-we-there-yet@1.1.7: + dependencies: + delegates: 1.0.0 + readable-stream: 2.3.8 + + argparse@1.0.10: + dependencies: + sprintf-js: 1.0.3 + + array-buffer-byte-length@1.0.2: + dependencies: + call-bound: 1.0.4 + is-array-buffer: 3.0.5 + + array-find-index@1.0.2: {} + + array-flatten@3.0.0: {} + + array-union@2.1.0: {} + + array.prototype.reduce@1.0.8: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-array-method-boxes-properly: 1.0.0 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + is-string: 1.1.1 + + arraybuffer.prototype.slice@1.0.4: + dependencies: + array-buffer-byte-length: 1.0.2 + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + is-array-buffer: 3.0.5 + + arrify@2.0.1: {} + + asap@2.0.6: {} + + asn1@0.2.6: + dependencies: + safer-buffer: 2.1.2 + + assert-plus@1.0.0: {} + + async-function@1.0.0: {} + + async-validator@4.2.5: {} + + asynckit@0.4.0: {} + + at-least-node@1.0.0: {} + + available-typed-arrays@1.0.7: + dependencies: + possible-typed-array-names: 1.1.0 + + aws-sign2@0.7.0: {} + + aws4@1.13.2: {} + + balanced-match@1.0.2: {} + + base64-js@1.5.1: {} + + bcrypt-pbkdf@1.0.2: + dependencies: + tweetnacl: 0.14.5 + + bin-build@3.0.0: + dependencies: + decompress: 4.2.1 + download: 6.2.5 + execa: 0.7.0 + p-map-series: 1.0.0 + tempfile: 2.0.0 + + bin-check@4.1.0: + dependencies: + execa: 0.7.0 + executable: 4.1.1 + + bin-version-check@4.0.0: + dependencies: + bin-version: 3.1.0 + semver: 5.7.2 + semver-truncate: 1.1.2 + + bin-version@3.1.0: + dependencies: + execa: 1.0.0 + find-versions: 3.2.0 + + bin-wrapper@4.1.0: + dependencies: + bin-check: 4.1.0 + bin-version-check: 4.0.0 + download: 7.1.0 + import-lazy: 3.1.0 + os-filter-obj: 2.0.0 + pify: 4.0.1 + + binary-extensions@2.3.0: {} + + bl@1.2.3: + dependencies: + readable-stream: 2.3.8 + safe-buffer: 5.2.1 + + bl@4.1.0: + dependencies: + buffer: 5.7.1 + inherits: 2.0.4 + readable-stream: 3.6.2 + + boolbase@1.0.0: {} + + boxen@4.2.0: + dependencies: + ansi-align: 3.0.1 + camelcase: 5.3.1 + chalk: 3.0.0 + cli-boxes: 2.2.1 + string-width: 4.2.3 + term-size: 2.2.1 + type-fest: 0.8.1 + widest-line: 3.1.0 + + brace-expansion@1.1.12: + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + + braces@3.0.3: + dependencies: + fill-range: 7.1.1 + + browser-process-hrtime@1.0.0: {} + + buffer-alloc-unsafe@1.1.0: {} + + buffer-alloc@1.2.0: + dependencies: + buffer-alloc-unsafe: 1.1.0 + buffer-fill: 1.0.0 + + buffer-crc32@0.2.13: {} + + buffer-fill@1.0.0: {} + + buffer@5.7.1: + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + + cacheable-lookup@5.0.4: {} + + cacheable-request@2.1.4: + dependencies: + clone-response: 1.0.2 + get-stream: 3.0.0 + http-cache-semantics: 3.8.1 + keyv: 3.0.0 + lowercase-keys: 1.0.0 + normalize-url: 2.0.1 + responselike: 1.0.2 + + cacheable-request@6.1.0: + dependencies: + clone-response: 1.0.3 + get-stream: 5.2.0 + http-cache-semantics: 4.2.0 + keyv: 3.1.0 + lowercase-keys: 2.0.0 + normalize-url: 4.5.1 + responselike: 1.0.2 + + cacheable-request@7.0.4: + dependencies: + clone-response: 1.0.3 + get-stream: 5.2.0 + http-cache-semantics: 4.2.0 + keyv: 4.5.4 + lowercase-keys: 2.0.0 + normalize-url: 6.1.0 + responselike: 2.0.1 + + call-bind-apply-helpers@1.0.2: + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + + call-bind@1.0.8: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + get-intrinsic: 1.3.0 + set-function-length: 1.2.2 + + call-bound@1.0.4: + dependencies: + call-bind-apply-helpers: 1.0.2 + get-intrinsic: 1.3.0 + + camelcase-keys@2.1.0: + dependencies: + camelcase: 2.1.1 + map-obj: 1.0.1 + + camelcase@2.1.1: {} + + camelcase@5.3.1: {} + + caseless@0.12.0: {} + + caw@2.0.1: + dependencies: + get-proxy: 2.1.0 + isurl: 1.0.0 + tunnel-agent: 0.6.0 + url-to-options: 1.0.1 + + chalk@1.1.3: + dependencies: + ansi-styles: 2.2.1 + escape-string-regexp: 1.0.5 + has-ansi: 2.0.0 + strip-ansi: 3.0.1 + supports-color: 2.0.0 + + chalk@2.4.2: + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + + chalk@3.0.0: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + chalk@4.1.0: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + chardet@0.7.0: {} + + charset@1.0.1: {} + + cheerio@0.22.0: + dependencies: + css-select: 1.2.0 + dom-serializer: 0.1.1 + entities: 1.1.2 + htmlparser2: 3.10.1 + lodash.assignin: 4.2.0 + lodash.bind: 4.2.1 + lodash.defaults: 4.2.0 + lodash.filter: 4.6.0 + lodash.flatten: 4.4.0 + lodash.foreach: 4.5.0 + lodash.map: 4.6.0 + lodash.merge: 4.6.2 + lodash.pick: 4.4.0 + lodash.reduce: 4.6.0 + lodash.reject: 4.6.0 + lodash.some: 4.6.0 + + chokidar@3.5.0: + dependencies: + anymatch: 3.1.3 + braces: 3.0.3 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.5.0 + optionalDependencies: + fsevents: 2.3.3 + + chownr@1.1.4: {} + + ci-info@2.0.0: {} + + clean-stack@2.2.0: {} + + cli-boxes@2.2.1: {} + + cli-cursor@3.1.0: + dependencies: + restore-cursor: 3.1.0 + + cli-width@3.0.0: {} + + clone-deep@4.0.1: + dependencies: + is-plain-object: 2.0.4 + kind-of: 6.0.3 + shallow-clone: 3.0.1 + + clone-response@1.0.2: + dependencies: + mimic-response: 1.0.1 + + clone-response@1.0.3: + dependencies: + mimic-response: 1.0.1 + + coa@2.0.2: + dependencies: + '@types/q': 1.5.8 + chalk: 2.4.2 + q: 1.5.1 + + code-point-at@1.1.0: {} + + color-convert@1.9.3: + dependencies: + color-name: 1.1.3 + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + + color-name@1.1.3: {} + + color-name@1.1.4: {} + + color-string@1.9.1: + dependencies: + color-name: 1.1.4 + simple-swizzle: 0.2.4 + + color@3.2.1: + dependencies: + color-convert: 1.9.3 + color-string: 1.9.1 + + combined-stream@1.0.8: + dependencies: + delayed-stream: 1.0.0 + + commander@2.20.3: {} + + concat-map@0.0.1: {} + + config-chain@1.1.13: + dependencies: + ini: 1.3.8 + proto-list: 1.2.4 + + configstore@5.0.1: + dependencies: + dot-prop: 5.3.0 + graceful-fs: 4.2.11 + make-dir: 3.1.0 + unique-string: 2.0.0 + write-file-atomic: 3.0.3 + xdg-basedir: 4.0.0 + + console-control-strings@1.1.0: {} + + console-stream@0.1.1: {} + + content-disposition@0.5.4: + dependencies: + safe-buffer: 5.2.1 + + core-util-is@1.0.2: {} + + core-util-is@1.0.3: {} + + cross-spawn@5.1.0: + dependencies: + lru-cache: 4.1.5 + shebang-command: 1.2.0 + which: 1.3.1 + + cross-spawn@6.0.6: + dependencies: + nice-try: 1.0.5 + path-key: 2.0.1 + semver: 5.7.2 + shebang-command: 1.2.0 + which: 1.3.1 + + cross-spawn@7.0.3: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + + crypto-random-string@2.0.0: {} + + css-select-base-adapter@0.1.1: {} + + css-select@1.2.0: + dependencies: + boolbase: 1.0.0 + css-what: 2.1.3 + domutils: 1.5.1 + nth-check: 1.0.2 + + css-select@2.1.0: + dependencies: + boolbase: 1.0.0 + css-what: 3.4.2 + domutils: 1.7.0 + nth-check: 1.0.2 + + css-tree@1.0.0-alpha.37: + dependencies: + mdn-data: 2.0.4 + source-map: 0.6.1 + + css-tree@1.1.3: + dependencies: + mdn-data: 2.0.14 + source-map: 0.6.1 + + css-what@2.1.3: {} + + css-what@3.4.2: {} + + csso@4.2.0: + dependencies: + css-tree: 1.1.3 + + cssom@0.3.8: {} + + cssom@0.4.4: {} + + cssstyle@2.3.0: + dependencies: + cssom: 0.3.8 + + csstype@3.1.3: {} + + currently-unhandled@0.4.1: + dependencies: + array-find-index: 1.0.2 + + dashdash@1.14.1: + dependencies: + assert-plus: 1.0.0 + + data-urls@2.0.0: + dependencies: + abab: 2.0.6 + whatwg-mimetype: 2.3.0 + whatwg-url: 8.7.0 + + data-view-buffer@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + data-view-byte-length@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + data-view-byte-offset@1.0.1: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + dayjs@1.11.13: {} + + debug@4.4.3: + dependencies: + ms: 2.1.3 + + decamelize@1.2.0: {} + + decimal.js@10.6.0: {} + + decode-uri-component@0.2.2: {} + + decompress-response@3.3.0: + dependencies: + mimic-response: 1.0.1 + + decompress-response@4.2.1: + dependencies: + mimic-response: 2.1.0 + + decompress-response@6.0.0: + dependencies: + mimic-response: 3.1.0 + + decompress-tar@4.1.1: + dependencies: + file-type: 5.2.0 + is-stream: 1.1.0 + tar-stream: 1.6.2 + + decompress-tarbz2@4.1.1: + dependencies: + decompress-tar: 4.1.1 + file-type: 6.2.0 + is-stream: 1.1.0 + seek-bzip: 1.0.6 + unbzip2-stream: 1.4.3 + + decompress-targz@4.1.1: + dependencies: + decompress-tar: 4.1.1 + file-type: 5.2.0 + is-stream: 1.1.0 + + decompress-unzip@4.0.1: + dependencies: + file-type: 3.9.0 + get-stream: 2.3.1 + pify: 2.3.0 + yauzl: 2.10.0 + + decompress@4.2.1: + dependencies: + decompress-tar: 4.1.1 + decompress-tarbz2: 4.1.1 + decompress-targz: 4.1.1 + decompress-unzip: 4.0.1 + graceful-fs: 4.2.11 + make-dir: 1.3.0 + pify: 2.3.0 + strip-dirs: 2.1.0 + + deep-extend@0.6.0: {} + + deep-is@0.1.4: {} + + defer-to-connect@1.1.3: {} + + defer-to-connect@2.0.1: {} + + define-data-property@1.1.4: + dependencies: + es-define-property: 1.0.1 + es-errors: 1.3.0 + gopd: 1.2.0 + + define-properties@1.2.1: + dependencies: + define-data-property: 1.1.4 + has-property-descriptors: 1.0.2 + object-keys: 1.1.1 + + delayed-stream@1.0.0: {} + + delegates@1.0.0: {} + + detect-libc@1.0.3: {} + + dir-glob@3.0.1: + dependencies: + path-type: 4.0.0 + + dom-serializer@0.1.1: + dependencies: + domelementtype: 1.3.1 + entities: 1.1.2 + + domelementtype@1.3.1: {} + + domexception@2.0.1: + dependencies: + webidl-conversions: 5.0.0 + + domhandler@2.4.2: + dependencies: + domelementtype: 1.3.1 + + domutils@1.5.1: + dependencies: + dom-serializer: 0.1.1 + domelementtype: 1.3.1 + + domutils@1.7.0: + dependencies: + dom-serializer: 0.1.1 + domelementtype: 1.3.1 + + dot-prop@5.3.0: + dependencies: + is-obj: 2.0.0 + + download@6.2.5: + dependencies: + caw: 2.0.1 + content-disposition: 0.5.4 + decompress: 4.2.1 + ext-name: 5.0.0 + file-type: 5.2.0 + filenamify: 2.1.0 + get-stream: 3.0.0 + got: 7.1.0 + make-dir: 1.3.0 + p-event: 1.3.0 + pify: 3.0.0 + + download@7.1.0: + dependencies: + archive-type: 4.0.0 + caw: 2.0.1 + content-disposition: 0.5.4 + decompress: 4.2.1 + ext-name: 5.0.0 + file-type: 8.1.0 + filenamify: 2.1.0 + get-stream: 3.0.0 + got: 8.3.2 + make-dir: 1.3.0 + p-event: 2.3.1 + pify: 3.0.0 + + dunder-proto@1.0.1: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-errors: 1.3.0 + gopd: 1.2.0 + + duplexer3@0.1.5: {} + + ecc-jsbn@0.1.2: + dependencies: + jsbn: 0.1.1 + safer-buffer: 2.1.2 + + element-plus@2.10.4(vue@3.5.17): + dependencies: + '@ctrl/tinycolor': 3.6.1 + '@element-plus/icons-vue': 2.3.1(vue@3.5.17) + '@floating-ui/dom': 1.7.2 + '@popperjs/core': '@sxzz/popperjs-es@2.11.7' + '@types/lodash': 4.17.20 + '@types/lodash-es': 4.17.12 + '@vueuse/core': 9.13.0(vue@3.5.17) + async-validator: 4.2.5 + dayjs: 1.11.13 + escape-html: 1.0.3 + lodash: 4.17.21 + lodash-es: 4.17.21 + lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21) + memoize-one: 6.0.0 + normalize-wheel-es: 1.2.0 + vue: 3.5.17 + transitivePeerDependencies: + - '@vue/composition-api' + + emoji-regex@8.0.0: {} + + end-of-stream@1.4.5: + dependencies: + once: 1.4.0 + + entities@1.1.2: {} + + entities@4.5.0: {} + + error-ex@1.3.4: + dependencies: + is-arrayish: 0.2.1 + + es-abstract@1.24.0: + dependencies: + array-buffer-byte-length: 1.0.2 + arraybuffer.prototype.slice: 1.0.4 + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 + data-view-buffer: 1.0.2 + data-view-byte-length: 1.0.2 + data-view-byte-offset: 1.0.1 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + es-set-tostringtag: 2.1.0 + es-to-primitive: 1.3.0 + function.prototype.name: 1.1.8 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + get-symbol-description: 1.1.0 + globalthis: 1.0.4 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + has-proto: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + internal-slot: 1.1.0 + is-array-buffer: 3.0.5 + is-callable: 1.2.7 + is-data-view: 1.0.2 + is-negative-zero: 2.0.3 + is-regex: 1.2.1 + is-set: 2.0.3 + is-shared-array-buffer: 1.0.4 + is-string: 1.1.1 + is-typed-array: 1.1.15 + is-weakref: 1.1.1 + math-intrinsics: 1.1.0 + object-inspect: 1.13.4 + object-keys: 1.1.1 + object.assign: 4.1.7 + own-keys: 1.0.1 + regexp.prototype.flags: 1.5.4 + safe-array-concat: 1.1.3 + safe-push-apply: 1.0.0 + safe-regex-test: 1.1.0 + set-proto: 1.0.0 + stop-iteration-iterator: 1.1.0 + string.prototype.trim: 1.2.10 + string.prototype.trimend: 1.0.9 + string.prototype.trimstart: 1.0.8 + typed-array-buffer: 1.0.3 + typed-array-byte-length: 1.0.3 + typed-array-byte-offset: 1.0.4 + typed-array-length: 1.0.7 + unbox-primitive: 1.1.0 + which-typed-array: 1.1.19 + + es-array-method-boxes-properly@1.0.0: {} + + es-define-property@1.0.1: {} + + es-errors@1.3.0: {} + + es-object-atoms@1.1.1: + dependencies: + es-errors: 1.3.0 + + es-set-tostringtag@2.1.0: + dependencies: + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + es-to-primitive@1.3.0: + dependencies: + is-callable: 1.2.7 + is-date-object: 1.1.0 + is-symbol: 1.1.1 + + es6-promise@4.2.8: {} + + esbuild@0.25.6: + optionalDependencies: + '@esbuild/aix-ppc64': 0.25.6 + '@esbuild/android-arm': 0.25.6 + '@esbuild/android-arm64': 0.25.6 + '@esbuild/android-x64': 0.25.6 + '@esbuild/darwin-arm64': 0.25.6 + '@esbuild/darwin-x64': 0.25.6 + '@esbuild/freebsd-arm64': 0.25.6 + '@esbuild/freebsd-x64': 0.25.6 + '@esbuild/linux-arm': 0.25.6 + '@esbuild/linux-arm64': 0.25.6 + '@esbuild/linux-ia32': 0.25.6 + '@esbuild/linux-loong64': 0.25.6 + '@esbuild/linux-mips64el': 0.25.6 + '@esbuild/linux-ppc64': 0.25.6 + '@esbuild/linux-riscv64': 0.25.6 + '@esbuild/linux-s390x': 0.25.6 + '@esbuild/linux-x64': 0.25.6 + '@esbuild/netbsd-arm64': 0.25.6 + '@esbuild/netbsd-x64': 0.25.6 + '@esbuild/openbsd-arm64': 0.25.6 + '@esbuild/openbsd-x64': 0.25.6 + '@esbuild/openharmony-arm64': 0.25.6 + '@esbuild/sunos-x64': 0.25.6 + '@esbuild/win32-arm64': 0.25.6 + '@esbuild/win32-ia32': 0.25.6 + '@esbuild/win32-x64': 0.25.6 + + escape-goat@2.1.1: {} + + escape-html@1.0.3: {} + + escape-string-regexp@1.0.5: {} + + escodegen@1.14.3: + dependencies: + esprima: 4.0.1 + estraverse: 4.3.0 + esutils: 2.0.3 + optionator: 0.8.3 + optionalDependencies: + source-map: 0.6.1 + + esprima@4.0.1: {} + + estraverse@4.3.0: {} + + estree-walker@2.0.2: {} + + esutils@2.0.3: {} + + eventemitter3@4.0.7: {} + + exec-buffer@3.2.0: + dependencies: + execa: 0.7.0 + p-finally: 1.0.0 + pify: 3.0.0 + rimraf: 2.7.1 + tempfile: 2.0.0 + + execa@0.7.0: + dependencies: + cross-spawn: 5.1.0 + get-stream: 3.0.0 + is-stream: 1.1.0 + npm-run-path: 2.0.2 + p-finally: 1.0.0 + signal-exit: 3.0.7 + strip-eof: 1.0.0 + + execa@1.0.0: + dependencies: + cross-spawn: 6.0.6 + get-stream: 4.1.0 + is-stream: 1.1.0 + npm-run-path: 2.0.2 + p-finally: 1.0.0 + signal-exit: 3.0.7 + strip-eof: 1.0.0 + + execa@4.1.0: + dependencies: + cross-spawn: 7.0.3 + get-stream: 5.2.0 + human-signals: 1.1.1 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + + executable@4.1.1: + dependencies: + pify: 2.3.0 + + expand-template@2.0.3: {} + + ext-list@2.2.2: + dependencies: + mime-db: 1.54.0 + + ext-name@5.0.0: + dependencies: + ext-list: 2.2.2 + sort-keys-length: 1.0.1 + + extend@3.0.2: {} + + external-editor@3.1.0: + dependencies: + chardet: 0.7.0 + iconv-lite: 0.4.24 + tmp: 0.0.33 + + extsprintf@1.3.0: {} + + fast-deep-equal@3.1.3: {} + + fast-glob@3.2.4: + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.8 + picomatch: 2.3.1 + + fast-json-stable-stringify@2.1.0: {} + + fast-levenshtein@2.0.6: {} + + fastq@1.19.1: + dependencies: + reusify: 1.1.0 + + fd-slicer@1.1.0: + dependencies: + pend: 1.2.0 + + fdir@6.4.6(picomatch@4.0.2): + optionalDependencies: + picomatch: 4.0.2 + + figures@1.7.0: + dependencies: + escape-string-regexp: 1.0.5 + object-assign: 4.1.1 + + figures@3.2.0: + dependencies: + escape-string-regexp: 1.0.5 + + file-type@12.4.2: {} + + file-type@3.9.0: {} + + file-type@4.4.0: {} + + file-type@5.2.0: {} + + file-type@6.2.0: {} + + file-type@8.1.0: {} + + filename-reserved-regex@2.0.0: {} + + filenamify@2.1.0: + dependencies: + filename-reserved-regex: 2.0.0 + strip-outer: 1.0.1 + trim-repeated: 1.0.0 + + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 + + find-up@1.1.2: + dependencies: + path-exists: 2.1.0 + pinkie-promise: 2.0.1 + + find-versions@3.2.0: + dependencies: + semver-regex: 2.0.0 + + follow-redirects@1.15.11: {} + + for-each@0.3.5: + dependencies: + is-callable: 1.2.7 + + forever-agent@0.6.1: {} + + form-data@2.3.3: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + + from2@2.3.0: + dependencies: + inherits: 2.0.4 + readable-stream: 2.3.8 + + fs-constants@1.0.0: {} + + fs-extra@9.0.1: + dependencies: + at-least-node: 1.0.0 + graceful-fs: 4.2.11 + jsonfile: 6.2.0 + universalify: 1.0.0 + + fs.realpath@1.0.0: {} + + fsevents@2.3.3: + optional: true + + function-bind@1.1.2: {} + + function.prototype.name@1.1.8: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + functions-have-names: 1.2.3 + hasown: 2.0.2 + is-callable: 1.2.7 + + functions-have-names@1.2.3: {} + + gauge@2.7.4: + dependencies: + aproba: 1.2.0 + console-control-strings: 1.1.0 + has-unicode: 2.0.1 + object-assign: 4.1.1 + signal-exit: 3.0.7 + string-width: 1.0.2 + strip-ansi: 3.0.1 + wide-align: 1.1.5 + + get-intrinsic@1.3.0: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + function-bind: 1.1.2 + get-proto: 1.0.1 + gopd: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + math-intrinsics: 1.1.0 + + get-proto@1.0.1: + dependencies: + dunder-proto: 1.0.1 + es-object-atoms: 1.1.1 + + get-proxy@2.1.0: + dependencies: + npm-conf: 1.1.3 + + get-stdin@4.0.1: {} + + get-stream@2.3.1: + dependencies: + object-assign: 4.1.1 + pinkie-promise: 2.0.1 + + get-stream@3.0.0: {} + + get-stream@4.1.0: + dependencies: + pump: 3.0.3 + + get-stream@5.2.0: + dependencies: + pump: 3.0.3 + + get-symbol-description@1.1.0: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + + getpass@0.1.7: + dependencies: + assert-plus: 1.0.0 + + github-from-package@0.0.0: {} + + glob-parent@5.1.2: + dependencies: + is-glob: 4.0.3 + + glob@7.2.3: + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + + global-dirs@2.1.0: + dependencies: + ini: 1.3.7 + + globalthis@1.0.4: + dependencies: + define-properties: 1.2.1 + gopd: 1.2.0 + + globby@10.0.2: + dependencies: + '@types/glob': 7.2.0 + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.2.4 + glob: 7.2.3 + ignore: 5.3.2 + merge2: 1.4.1 + slash: 3.0.0 + + gopd@1.2.0: {} + + got@11.8.6: + dependencies: + '@sindresorhus/is': 4.6.0 + '@szmarczak/http-timer': 4.0.6 + '@types/cacheable-request': 6.0.3 + '@types/responselike': 1.0.3 + cacheable-lookup: 5.0.4 + cacheable-request: 7.0.4 + decompress-response: 6.0.0 + http2-wrapper: 1.0.3 + lowercase-keys: 2.0.0 + p-cancelable: 2.1.1 + responselike: 2.0.1 + + got@7.1.0: + dependencies: + '@types/keyv': 3.1.4 + '@types/responselike': 1.0.3 + decompress-response: 3.3.0 + duplexer3: 0.1.5 + get-stream: 3.0.0 + is-plain-obj: 1.1.0 + is-retry-allowed: 1.2.0 + is-stream: 1.1.0 + isurl: 1.0.0 + lowercase-keys: 1.0.1 + p-cancelable: 0.3.0 + p-timeout: 1.2.1 + safe-buffer: 5.2.1 + timed-out: 4.0.1 + url-parse-lax: 1.0.0 + url-to-options: 1.0.1 + + got@8.3.2: + dependencies: + '@sindresorhus/is': 0.7.0 + '@types/keyv': 3.1.4 + '@types/responselike': 1.0.3 + cacheable-request: 2.1.4 + decompress-response: 3.3.0 + duplexer3: 0.1.5 + get-stream: 3.0.0 + into-stream: 3.1.0 + is-retry-allowed: 1.2.0 + isurl: 1.0.0 + lowercase-keys: 1.0.1 + mimic-response: 1.0.1 + p-cancelable: 0.4.1 + p-timeout: 2.0.1 + pify: 3.0.0 + safe-buffer: 5.2.1 + timed-out: 4.0.1 + url-parse-lax: 3.0.0 + url-to-options: 1.0.1 + + got@9.6.0: + dependencies: + '@sindresorhus/is': 0.14.0 + '@szmarczak/http-timer': 1.1.2 + '@types/keyv': 3.1.4 + '@types/responselike': 1.0.3 + cacheable-request: 6.1.0 + decompress-response: 3.3.0 + duplexer3: 0.1.5 + get-stream: 4.1.0 + lowercase-keys: 1.0.1 + mimic-response: 1.0.1 + p-cancelable: 1.1.0 + to-readable-stream: 1.0.0 + url-parse-lax: 3.0.0 + + graceful-fs@4.2.11: {} + + har-schema@2.0.0: {} + + har-validator@5.1.5: + dependencies: + ajv: 6.12.6 + har-schema: 2.0.0 + + has-ansi@2.0.0: + dependencies: + ansi-regex: 2.1.1 + + has-bigints@1.1.0: {} + + has-flag@3.0.0: {} + + has-flag@4.0.0: {} + + has-property-descriptors@1.0.2: + dependencies: + es-define-property: 1.0.1 + + has-proto@1.2.0: + dependencies: + dunder-proto: 1.0.1 + + has-symbol-support-x@1.4.2: {} + + has-symbols@1.1.0: {} + + has-to-string-tag-x@1.4.1: + dependencies: + has-symbol-support-x: 1.4.2 + + has-tostringtag@1.0.2: + dependencies: + has-symbols: 1.1.0 + + has-unicode@2.0.1: {} + + has-yarn@2.1.0: {} + + hasown@2.0.2: + dependencies: + function-bind: 1.1.2 + + hosted-git-info@2.8.9: {} + + html-encoding-sniffer@2.0.1: + dependencies: + whatwg-encoding: 1.0.5 + + htmlparser2@3.10.1: + dependencies: + domelementtype: 1.3.1 + domhandler: 2.4.2 + domutils: 1.7.0 + entities: 1.1.2 + inherits: 2.0.4 + readable-stream: 3.6.2 + + http-cache-semantics@3.8.1: {} + + http-cache-semantics@4.2.0: {} + + http-proxy@1.18.1: + dependencies: + eventemitter3: 4.0.7 + follow-redirects: 1.15.11 + requires-port: 1.0.0 + transitivePeerDependencies: + - debug + + http-signature@1.2.0: + dependencies: + assert-plus: 1.0.0 + jsprim: 1.4.2 + sshpk: 1.18.0 + + http2-wrapper@1.0.3: + dependencies: + quick-lru: 5.1.1 + resolve-alpn: 1.2.1 + + human-signals@1.1.1: {} + + iconv-lite@0.4.24: + dependencies: + safer-buffer: 2.1.2 + + iconv-lite@0.5.2: + dependencies: + safer-buffer: 2.1.2 + + ieee754@1.2.1: {} + + ignore@5.3.2: {} + + imagemin-optipng@8.0.0: + dependencies: + exec-buffer: 3.2.0 + is-png: 2.0.0 + optipng-bin: 7.0.1 + + imagemin-pngquant@9.0.1: + dependencies: + execa: 4.1.0 + is-png: 2.0.0 + is-stream: 2.0.1 + ow: 0.17.0 + pngquant-bin: 6.0.1 + + imagemin-zopfli@7.0.0: + dependencies: + exec-buffer: 3.2.0 + is-png: 2.0.0 + zopflipng-bin: 6.0.1 + + imagemin@7.0.1: + dependencies: + file-type: 12.4.2 + globby: 10.0.2 + graceful-fs: 4.2.11 + junk: 3.1.0 + make-dir: 3.1.0 + p-pipe: 3.1.0 + replace-ext: 1.0.1 + + import-lazy@2.1.0: {} + + import-lazy@3.1.0: {} + + imurmurhash@0.1.4: {} + + indent-string@2.1.0: + dependencies: + repeating: 2.0.1 + + indent-string@4.0.0: {} + + inflight@1.0.6: + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + + inherits@2.0.4: {} + + ini@1.3.7: {} + + ini@1.3.8: {} + + inquirer@7.3.3: + dependencies: + ansi-escapes: 4.3.2 + chalk: 4.1.0 + cli-cursor: 3.1.0 + cli-width: 3.0.0 + external-editor: 3.1.0 + figures: 3.2.0 + lodash: 4.17.21 + mute-stream: 0.0.8 + run-async: 2.4.1 + rxjs: 6.6.7 + string-width: 4.2.3 + strip-ansi: 6.0.1 + through: 2.3.8 + + internal-slot@1.1.0: + dependencies: + es-errors: 1.3.0 + hasown: 2.0.2 + side-channel: 1.1.0 + + into-stream@3.1.0: + dependencies: + from2: 2.3.0 + p-is-promise: 1.1.0 + + ip-regex@2.1.0: {} + + is-array-buffer@3.0.5: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + + is-arrayish@0.2.1: {} + + is-arrayish@0.3.4: {} + + is-async-function@2.1.1: + dependencies: + async-function: 1.0.0 + call-bound: 1.0.4 + get-proto: 1.0.1 + has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 + + is-bigint@1.1.0: + dependencies: + has-bigints: 1.1.0 + + is-binary-path@2.1.0: + dependencies: + binary-extensions: 2.3.0 + + is-boolean-object@1.2.2: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-callable@1.2.7: {} + + is-ci@2.0.0: + dependencies: + ci-info: 2.0.0 + + is-core-module@2.16.1: + dependencies: + hasown: 2.0.2 + + is-data-view@1.0.2: + dependencies: + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + is-typed-array: 1.1.15 + + is-date-object@1.1.0: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-extglob@2.1.1: {} + + is-finalizationregistry@1.1.1: + dependencies: + call-bound: 1.0.4 + + is-finite@1.1.0: {} + + is-fullwidth-code-point@1.0.0: + dependencies: + number-is-nan: 1.0.1 + + is-fullwidth-code-point@3.0.0: {} + + is-generator-function@1.1.0: + dependencies: + call-bound: 1.0.4 + get-proto: 1.0.1 + has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 + + is-glob@4.0.3: + dependencies: + is-extglob: 2.1.1 + + is-installed-globally@0.3.2: + dependencies: + global-dirs: 2.1.0 + is-path-inside: 3.0.3 + + is-map@2.0.3: {} + + is-natural-number@4.0.1: {} + + is-negative-zero@2.0.3: {} + + is-npm@4.0.0: {} + + is-number-object@1.1.1: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-number@7.0.0: {} + + is-obj@2.0.0: {} + + is-object@1.0.2: {} + + is-path-inside@3.0.3: {} + + is-plain-obj@1.1.0: {} + + is-plain-object@2.0.4: + dependencies: + isobject: 3.0.1 + + is-png@2.0.0: {} + + is-port-reachable@3.1.0: {} + + is-potential-custom-element-name@1.0.1: {} + + is-reachable@5.0.0: + dependencies: + arrify: 2.0.1 + got: 11.8.6 + is-port-reachable: 3.1.0 + p-any: 3.0.0 + p-timeout: 3.2.0 + prepend-http: 3.0.1 + router-ips: 1.0.0 + url-parse: 1.5.10 + + is-regex@1.2.1: + dependencies: + call-bound: 1.0.4 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + is-retry-allowed@1.2.0: {} + + is-set@2.0.3: {} + + is-shared-array-buffer@1.0.4: + dependencies: + call-bound: 1.0.4 + + is-stream@1.1.0: {} + + is-stream@2.0.1: {} + + is-string@1.1.1: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-symbol@1.1.1: + dependencies: + call-bound: 1.0.4 + has-symbols: 1.1.0 + safe-regex-test: 1.1.0 + + is-typed-array@1.1.15: + dependencies: + which-typed-array: 1.1.19 + + is-typedarray@1.0.0: {} + + is-utf8@0.2.1: {} + + is-weakmap@2.0.2: {} + + is-weakref@1.1.1: + dependencies: + call-bound: 1.0.4 + + is-weakset@2.0.4: + dependencies: + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + + is-yarn-global@0.3.0: {} + + isarray@1.0.0: {} + + isarray@2.0.5: {} + + isbinaryfile@4.0.6: {} + + isexe@2.0.0: {} + + isobject@3.0.1: {} + + isstream@0.1.2: {} + + isurl@1.0.0: + dependencies: + has-to-string-tag-x: 1.4.1 + is-object: 1.0.2 + + js-yaml@3.14.1: + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 + + jsbn@0.1.1: {} + + jschardet@2.3.0: {} + + jsdom@16.4.0: + dependencies: + abab: 2.0.6 + acorn: 7.4.1 + acorn-globals: 6.0.0 + cssom: 0.4.4 + cssstyle: 2.3.0 + data-urls: 2.0.0 + decimal.js: 10.6.0 + domexception: 2.0.1 + escodegen: 1.14.3 + html-encoding-sniffer: 2.0.1 + is-potential-custom-element-name: 1.0.1 + nwsapi: 2.2.22 + parse5: 5.1.1 + request: 2.88.2 + request-promise-native: 1.0.9(request@2.88.2) + saxes: 5.0.1 + symbol-tree: 3.2.4 + tough-cookie: 3.0.1 + w3c-hr-time: 1.0.2 + w3c-xmlserializer: 2.0.0 + webidl-conversions: 6.1.0 + whatwg-encoding: 1.0.5 + whatwg-mimetype: 2.3.0 + whatwg-url: 8.7.0 + ws: 7.5.10 + xml-name-validator: 3.0.0 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + json-buffer@3.0.0: {} + + json-buffer@3.0.1: {} + + json-schema-traverse@0.4.1: {} + + json-schema@0.4.0: {} + + json-stringify-safe@5.0.1: {} + + jsonfile@6.2.0: + dependencies: + universalify: 2.0.1 + optionalDependencies: + graceful-fs: 4.2.11 + + jsprim@1.4.2: + dependencies: + assert-plus: 1.0.0 + extsprintf: 1.3.0 + json-schema: 0.4.0 + verror: 1.10.0 + + junk@3.1.0: {} + + keyv@3.0.0: + dependencies: + json-buffer: 3.0.0 + + keyv@3.1.0: + dependencies: + json-buffer: 3.0.0 + + keyv@4.5.4: + dependencies: + json-buffer: 3.0.1 + + kind-of@6.0.3: {} + + latest-version@5.1.0: + dependencies: + package-json: 6.5.0 + + levn@0.3.0: + dependencies: + prelude-ls: 1.1.2 + type-check: 0.3.2 + + load-json-file@1.1.0: + dependencies: + graceful-fs: 4.2.11 + parse-json: 2.2.0 + pify: 2.3.0 + pinkie-promise: 2.0.1 + strip-bom: 2.0.0 + + lodash-es@4.17.21: {} + + lodash-unified@1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21): + dependencies: + '@types/lodash-es': 4.17.12 + lodash: 4.17.21 + lodash-es: 4.17.21 + + lodash.assignin@4.2.0: {} + + lodash.bind@4.2.1: {} + + lodash.defaults@4.2.0: {} + + lodash.filter@4.6.0: {} + + lodash.flatten@4.4.0: {} + + lodash.foreach@4.5.0: {} + + lodash.map@4.6.0: {} + + lodash.merge@4.6.2: {} + + lodash.pick@4.4.0: {} + + lodash.reduce@4.6.0: {} + + lodash.reject@4.6.0: {} + + lodash.some@4.6.0: {} + + lodash@4.17.20: {} + + lodash@4.17.21: {} + + logalot@2.1.0: + dependencies: + figures: 1.7.0 + squeak: 1.3.0 + + longest@1.0.1: {} + + loud-rejection@1.6.0: + dependencies: + currently-unhandled: 0.4.1 + signal-exit: 3.0.7 + + lowercase-keys@1.0.0: {} + + lowercase-keys@1.0.1: {} + + lowercase-keys@2.0.0: {} + + lpad-align@1.1.2: + dependencies: + get-stdin: 4.0.1 + indent-string: 2.1.0 + longest: 1.0.1 + meow: 3.7.0 + + lru-cache@4.1.5: + dependencies: + pseudomap: 1.0.2 + yallist: 2.1.2 + + lru-cache@6.0.0: + dependencies: + yallist: 4.0.0 + + magic-string@0.30.17: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.4 + + make-dir@1.3.0: + dependencies: + pify: 3.0.0 + + make-dir@3.1.0: + dependencies: + semver: 6.3.1 + + map-obj@1.0.1: {} + + math-intrinsics@1.1.0: {} + + mdn-data@2.0.14: {} + + mdn-data@2.0.4: {} + + memoize-one@6.0.0: {} + + meow@3.7.0: + dependencies: + camelcase-keys: 2.1.0 + decamelize: 1.2.0 + loud-rejection: 1.6.0 + map-obj: 1.0.1 + minimist: 1.2.5 + normalize-package-data: 2.5.0 + object-assign: 4.1.1 + read-pkg-up: 1.0.1 + redent: 1.0.0 + trim-newlines: 1.0.0 + + merge-stream@2.0.0: {} + + merge2@1.4.1: {} + + micromatch@4.0.8: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + + mime-db@1.52.0: {} + + mime-db@1.54.0: {} + + mime-types@2.1.35: + dependencies: + mime-db: 1.52.0 + + mime@2.6.0: {} + + mimic-fn@2.1.0: {} + + mimic-response@1.0.1: {} + + mimic-response@2.1.0: {} + + mimic-response@3.1.0: {} + + minimatch@10.0.3: + dependencies: + '@isaacs/brace-expansion': 5.0.0 + + minimatch@3.1.2: + dependencies: + brace-expansion: 1.1.12 + + minimist@1.2.5: {} + + minimist@1.2.8: {} + + mkdirp-classic@0.5.3: {} + + mkdirp@0.5.6: + dependencies: + minimist: 1.2.8 + + ms@2.1.3: {} + + mute-stream@0.0.8: {} + + nanoid@3.3.11: {} + + napi-build-utils@1.0.2: {} + + nice-try@1.0.5: {} + + node-abi@2.30.1: + dependencies: + semver: 5.7.2 + + node-addon-api@3.2.1: {} + + normalize-package-data@2.5.0: + dependencies: + hosted-git-info: 2.8.9 + resolve: 1.22.10 + semver: 5.7.2 + validate-npm-package-license: 3.0.4 + + normalize-path@3.0.0: {} + + normalize-url@2.0.1: + dependencies: + prepend-http: 2.0.0 + query-string: 5.1.1 + sort-keys: 2.0.0 + + normalize-url@4.5.1: {} + + normalize-url@6.1.0: {} + + normalize-wheel-es@1.2.0: {} + + npm-conf@1.1.3: + dependencies: + config-chain: 1.1.13 + pify: 3.0.0 + + npm-run-path@2.0.2: + dependencies: + path-key: 2.0.1 + + npm-run-path@4.0.1: + dependencies: + path-key: 3.1.1 + + npmlog@4.1.2: + dependencies: + are-we-there-yet: 1.1.7 + console-control-strings: 1.1.0 + gauge: 2.7.4 + set-blocking: 2.0.0 + + nth-check@1.0.2: + dependencies: + boolbase: 1.0.0 + + number-is-nan@1.0.1: {} + + nwsapi@2.2.22: {} + + oauth-sign@0.9.0: {} + + object-assign@4.1.1: {} + + object-inspect@1.13.4: {} + + object-keys@1.1.1: {} + + object.assign@4.1.7: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + has-symbols: 1.1.0 + object-keys: 1.1.1 + + object.getownpropertydescriptors@2.1.8: + dependencies: + array.prototype.reduce: 1.0.8 + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-object-atoms: 1.1.1 + gopd: 1.2.0 + safe-array-concat: 1.1.3 + + object.values@1.2.1: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + + once@1.4.0: + dependencies: + wrappy: 1.0.2 + + onetime@5.1.2: + dependencies: + mimic-fn: 2.1.0 + + optionator@0.8.3: + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.3.0 + prelude-ls: 1.1.2 + type-check: 0.3.2 + word-wrap: 1.2.5 + + optipng-bin@7.0.1: + dependencies: + bin-build: 3.0.0 + bin-wrapper: 4.1.0 + + os-filter-obj@2.0.0: + dependencies: + arch: 2.2.0 + + os-tmpdir@1.0.2: {} + + ow@0.17.0: + dependencies: + type-fest: 0.11.0 + + own-keys@1.0.1: + dependencies: + get-intrinsic: 1.3.0 + object-keys: 1.1.1 + safe-push-apply: 1.0.0 + + p-any@3.0.0: + dependencies: + p-cancelable: 2.1.1 + p-some: 5.0.0 + + p-cancelable@0.3.0: {} + + p-cancelable@0.4.1: {} + + p-cancelable@1.1.0: {} + + p-cancelable@2.1.1: {} + + p-event@1.3.0: + dependencies: + p-timeout: 1.2.1 + + p-event@2.3.1: + dependencies: + p-timeout: 2.0.1 + + p-finally@1.0.0: {} + + p-is-promise@1.1.0: {} + + p-map-series@1.0.0: + dependencies: + p-reduce: 1.0.0 + + p-pipe@3.1.0: {} + + p-reduce@1.0.0: {} + + p-some@5.0.0: + dependencies: + aggregate-error: 3.1.0 + p-cancelable: 2.1.1 + + p-timeout@1.2.1: + dependencies: + p-finally: 1.0.0 + + p-timeout@2.0.1: + dependencies: + p-finally: 1.0.0 + + p-timeout@3.2.0: + dependencies: + p-finally: 1.0.0 + + p-try@2.2.0: {} + + package-json@6.5.0: + dependencies: + got: 9.6.0 + registry-auth-token: 4.2.2 + registry-url: 5.1.0 + semver: 6.3.1 + + parse-json@2.2.0: + dependencies: + error-ex: 1.3.4 + + parse5@5.1.1: {} + + path-exists@2.1.0: + dependencies: + pinkie-promise: 2.0.1 + + path-is-absolute@1.0.1: {} + + path-key@2.0.1: {} + + path-key@3.1.1: {} + + path-parse@1.0.7: {} + + path-type@1.1.0: + dependencies: + graceful-fs: 4.2.11 + pify: 2.3.0 + pinkie-promise: 2.0.1 + + path-type@4.0.0: {} + + pend@1.2.0: {} + + performance-now@2.1.0: {} + + picocolors@1.1.1: {} + + picomatch@2.3.1: {} + + picomatch@4.0.2: {} + + pify@2.3.0: {} + + pify@3.0.0: {} + + pify@4.0.1: {} + + pinkie-promise@2.0.1: + dependencies: + pinkie: 2.0.4 + + pinkie@2.0.4: {} + + png2icons@2.0.1: {} + + pngquant-bin@6.0.1: + dependencies: + bin-build: 3.0.0 + bin-wrapper: 4.1.0 + execa: 4.1.0 + + possible-typed-array-names@1.1.0: {} + + postcss@8.5.6: + dependencies: + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + prebuild-install@6.1.4: + dependencies: + detect-libc: 1.0.3 + expand-template: 2.0.3 + github-from-package: 0.0.0 + minimist: 1.2.5 + mkdirp-classic: 0.5.3 + napi-build-utils: 1.0.2 + node-abi: 2.30.1 + npmlog: 4.1.2 + pump: 3.0.3 + rc: 1.2.8 + simple-get: 3.1.1 + tar-fs: 2.1.4 + tunnel-agent: 0.6.0 + + prelude-ls@1.1.2: {} + + prepend-http@1.0.4: {} + + prepend-http@2.0.0: {} + + prepend-http@3.0.1: {} + + process-nextick-args@2.0.1: {} + + promise@7.3.1: + dependencies: + asap: 2.0.6 + + proto-list@1.2.4: {} + + pseudomap@1.0.2: {} + + psl@1.15.0: + dependencies: + punycode: 2.3.1 + + pump@3.0.3: + dependencies: + end-of-stream: 1.4.5 + once: 1.4.0 + + punycode@2.3.1: {} + + pupa@2.1.1: + dependencies: + escape-goat: 2.1.1 + + q@1.5.1: {} + + qs@6.5.3: {} + + query-string@5.1.1: + dependencies: + decode-uri-component: 0.2.2 + object-assign: 4.1.1 + strict-uri-encode: 1.1.0 + + querystringify@2.2.0: {} + + queue-microtask@1.2.3: {} + + quick-lru@5.1.1: {} + + rc@1.2.8: + dependencies: + deep-extend: 0.6.0 + ini: 1.3.8 + minimist: 1.2.5 + strip-json-comments: 2.0.1 + + read-chunk@3.2.0: + dependencies: + pify: 4.0.1 + with-open-file: 0.1.7 + + read-pkg-up@1.0.1: + dependencies: + find-up: 1.1.2 + read-pkg: 1.1.0 + + read-pkg@1.1.0: + dependencies: + load-json-file: 1.1.0 + normalize-package-data: 2.5.0 + path-type: 1.1.0 + + readable-stream@2.3.8: + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 1.0.0 + process-nextick-args: 2.0.1 + safe-buffer: 5.1.2 + string_decoder: 1.1.1 + util-deprecate: 1.0.2 + + readable-stream@3.6.2: + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + + readdirp@3.5.0: + dependencies: + picomatch: 2.3.1 + + redent@1.0.0: + dependencies: + indent-string: 2.1.0 + strip-indent: 1.0.1 + + reflect.getprototypeof@1.0.10: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + which-builtin-type: 1.2.1 + + regexp.prototype.flags@1.5.4: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-errors: 1.3.0 + get-proto: 1.0.1 + gopd: 1.2.0 + set-function-name: 2.0.2 + + registry-auth-token@4.2.2: + dependencies: + rc: 1.2.8 + + registry-url@5.1.0: + dependencies: + rc: 1.2.8 + + repeating@2.0.1: + dependencies: + is-finite: 1.1.0 + + replace-ext@1.0.1: {} + + request-promise-core@1.1.4(request@2.88.2): + dependencies: + lodash: 4.17.21 + request: 2.88.2 + + request-promise-native@1.0.9(request@2.88.2): + dependencies: + request: 2.88.2 + request-promise-core: 1.1.4(request@2.88.2) + stealthy-require: 1.1.1 + tough-cookie: 2.5.0 + + request@2.88.2: + dependencies: + aws-sign2: 0.7.0 + aws4: 1.13.2 + caseless: 0.12.0 + combined-stream: 1.0.8 + extend: 3.0.2 + forever-agent: 0.6.1 + form-data: 2.3.3 + har-validator: 5.1.5 + http-signature: 1.2.0 + is-typedarray: 1.0.0 + isstream: 0.1.2 + json-stringify-safe: 5.0.1 + mime-types: 2.1.35 + oauth-sign: 0.9.0 + performance-now: 2.1.0 + qs: 6.5.3 + safe-buffer: 5.2.1 + tough-cookie: 2.5.0 + tunnel-agent: 0.6.0 + uuid: 3.4.0 + + requires-port@1.0.0: {} + + resolve-alpn@1.2.1: {} + + resolve@1.22.10: + dependencies: + is-core-module: 2.16.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + responselike@1.0.2: + dependencies: + lowercase-keys: 1.0.1 + + responselike@2.0.1: + dependencies: + lowercase-keys: 2.0.0 + + restore-cursor@3.1.0: + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + + reusify@1.1.0: {} + + rimraf@2.7.1: + dependencies: + glob: 7.2.3 + + rollup@4.45.0: + dependencies: + '@types/estree': 1.0.8 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.45.0 + '@rollup/rollup-android-arm64': 4.45.0 + '@rollup/rollup-darwin-arm64': 4.45.0 + '@rollup/rollup-darwin-x64': 4.45.0 + '@rollup/rollup-freebsd-arm64': 4.45.0 + '@rollup/rollup-freebsd-x64': 4.45.0 + '@rollup/rollup-linux-arm-gnueabihf': 4.45.0 + '@rollup/rollup-linux-arm-musleabihf': 4.45.0 + '@rollup/rollup-linux-arm64-gnu': 4.45.0 + '@rollup/rollup-linux-arm64-musl': 4.45.0 + '@rollup/rollup-linux-loongarch64-gnu': 4.45.0 + '@rollup/rollup-linux-powerpc64le-gnu': 4.45.0 + '@rollup/rollup-linux-riscv64-gnu': 4.45.0 + '@rollup/rollup-linux-riscv64-musl': 4.45.0 + '@rollup/rollup-linux-s390x-gnu': 4.45.0 + '@rollup/rollup-linux-x64-gnu': 4.45.0 + '@rollup/rollup-linux-x64-musl': 4.45.0 + '@rollup/rollup-win32-arm64-msvc': 4.45.0 + '@rollup/rollup-win32-ia32-msvc': 4.45.0 + '@rollup/rollup-win32-x64-msvc': 4.45.0 + fsevents: 2.3.3 + + router-ips@1.0.0: {} + + run-async@2.4.1: {} + + run-parallel@1.2.0: + dependencies: + queue-microtask: 1.2.3 + + rxjs@6.6.7: + dependencies: + tslib: 1.14.1 + + safe-array-concat@1.1.3: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + has-symbols: 1.1.0 + isarray: 2.0.5 + + safe-buffer@5.1.2: {} + + safe-buffer@5.2.1: {} + + safe-push-apply@1.0.0: + dependencies: + es-errors: 1.3.0 + isarray: 2.0.5 + + safe-regex-test@1.1.0: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-regex: 1.2.1 + + safer-buffer@2.1.2: {} + + sax@1.2.4: {} + + saxes@5.0.1: + dependencies: + xmlchars: 2.2.0 + + seek-bzip@1.0.6: + dependencies: + commander: 2.20.3 + + semver-diff@3.1.1: + dependencies: + semver: 6.3.1 + + semver-regex@2.0.0: {} + + semver-truncate@1.1.2: + dependencies: + semver: 5.7.2 + + semver@5.7.2: {} + + semver@6.3.1: {} + + semver@7.3.4: + dependencies: + lru-cache: 6.0.0 + + set-blocking@2.0.0: {} + + set-function-length@1.2.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.3.0 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + + set-function-name@2.0.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.2 + + set-proto@1.0.0: + dependencies: + dunder-proto: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + + shallow-clone@3.0.1: + dependencies: + kind-of: 6.0.3 + + sharp@0.27.0: + dependencies: + array-flatten: 3.0.0 + color: 3.2.1 + detect-libc: 1.0.3 + node-addon-api: 3.2.1 + npmlog: 4.1.2 + prebuild-install: 6.1.4 + semver: 7.3.4 + simple-get: 4.0.1 + tar-fs: 2.1.4 + tunnel-agent: 0.6.0 + + shebang-command@1.2.0: + dependencies: + shebang-regex: 1.0.0 + + shebang-command@2.0.0: + dependencies: + shebang-regex: 3.0.0 + + shebang-regex@1.0.0: {} + + shebang-regex@3.0.0: {} + + side-channel-list@1.0.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.4 + + side-channel-map@1.0.1: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 + + side-channel-weakmap@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 + side-channel-map: 1.0.1 + + side-channel@1.1.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.4 + side-channel-list: 1.0.0 + side-channel-map: 1.0.1 + side-channel-weakmap: 1.0.2 + + signal-exit@3.0.7: {} + + simple-concat@1.0.1: {} + + simple-get@3.1.1: + dependencies: + decompress-response: 4.2.1 + once: 1.4.0 + simple-concat: 1.0.1 + + simple-get@4.0.1: + dependencies: + decompress-response: 6.0.0 + once: 1.4.0 + simple-concat: 1.0.1 + + simple-swizzle@0.2.4: + dependencies: + is-arrayish: 0.3.4 + + slash@3.0.0: {} + + sort-keys-length@1.0.1: + dependencies: + sort-keys: 1.1.2 + + sort-keys@1.1.2: + dependencies: + is-plain-obj: 1.1.0 + + sort-keys@2.0.0: + dependencies: + is-plain-obj: 1.1.0 + + source-map-js@1.2.1: {} + + source-map@0.6.1: {} + + spdx-correct@3.2.0: + dependencies: + spdx-expression-parse: 3.0.1 + spdx-license-ids: 3.0.22 + + spdx-exceptions@2.5.0: {} + + spdx-expression-parse@3.0.1: + dependencies: + spdx-exceptions: 2.5.0 + spdx-license-ids: 3.0.22 + + spdx-license-ids@3.0.22: {} + + sprintf-js@1.0.3: {} + + squeak@1.3.0: + dependencies: + chalk: 1.1.3 + console-stream: 0.1.1 + lpad-align: 1.1.2 + + sshpk@1.18.0: + dependencies: + asn1: 0.2.6 + assert-plus: 1.0.0 + bcrypt-pbkdf: 1.0.2 + dashdash: 1.14.1 + ecc-jsbn: 0.1.2 + getpass: 0.1.7 + jsbn: 0.1.1 + safer-buffer: 2.1.2 + tweetnacl: 0.14.5 + + stable@0.1.8: {} + + stealthy-require@1.1.1: {} + + stop-iteration-iterator@1.1.0: + dependencies: + es-errors: 1.3.0 + internal-slot: 1.1.0 + + strict-uri-encode@1.1.0: {} + + string-width@1.0.2: + dependencies: + code-point-at: 1.1.0 + is-fullwidth-code-point: 1.0.0 + strip-ansi: 3.0.1 + + string-width@4.2.3: + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + string.prototype.trim@1.2.10: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-data-property: 1.1.4 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-object-atoms: 1.1.1 + has-property-descriptors: 1.0.2 + + string.prototype.trimend@1.0.9: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + + string.prototype.trimstart@1.0.8: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + + string_decoder@1.1.1: + dependencies: + safe-buffer: 5.1.2 + + string_decoder@1.3.0: + dependencies: + safe-buffer: 5.2.1 + + strip-ansi@3.0.1: + dependencies: + ansi-regex: 2.1.1 + + strip-ansi@6.0.1: + dependencies: + ansi-regex: 5.0.1 + + strip-bom@2.0.0: + dependencies: + is-utf8: 0.2.1 + + strip-dirs@2.1.0: + dependencies: + is-natural-number: 4.0.1 + + strip-eof@1.0.0: {} + + strip-final-newline@2.0.0: {} + + strip-indent@1.0.1: + dependencies: + get-stdin: 4.0.1 + + strip-json-comments@2.0.1: {} + + strip-outer@1.0.1: + dependencies: + escape-string-regexp: 1.0.5 + + supports-color@2.0.0: {} + + supports-color@5.5.0: + dependencies: + has-flag: 3.0.0 + + supports-color@7.2.0: + dependencies: + has-flag: 4.0.0 + + supports-preserve-symlinks-flag@1.0.0: {} + + svgo@1.3.2: + dependencies: + chalk: 2.4.2 + coa: 2.0.2 + css-select: 2.1.0 + css-select-base-adapter: 0.1.1 + css-tree: 1.0.0-alpha.37 + csso: 4.2.0 + js-yaml: 3.14.1 + mkdirp: 0.5.6 + object.values: 1.2.1 + sax: 1.2.4 + stable: 0.1.8 + unquote: 1.1.1 + util.promisify: 1.0.1 + + symbol-tree@3.2.4: {} + + tar-fs@2.1.4: + dependencies: + chownr: 1.1.4 + mkdirp-classic: 0.5.3 + pump: 3.0.3 + tar-stream: 2.2.0 + + tar-stream@1.6.2: + dependencies: + bl: 1.2.3 + buffer-alloc: 1.2.0 + end-of-stream: 1.4.5 + fs-constants: 1.0.0 + readable-stream: 2.3.8 + to-buffer: 1.2.1 + xtend: 4.0.2 + + tar-stream@2.2.0: + dependencies: + bl: 4.1.0 + end-of-stream: 1.4.5 + fs-constants: 1.0.0 + inherits: 2.0.4 + readable-stream: 3.6.2 + + tauri@0.15.0: + dependencies: + '@tauri-apps/tauri-inliner': 1.14.1 + '@tauri-apps/toml': 2.2.4 + chalk: 4.1.0 + chokidar: 3.5.0 + cross-spawn: 7.0.3 + fast-glob: 3.2.4 + fs-extra: 9.0.1 + http-proxy: 1.18.1 + imagemin: 7.0.1 + imagemin-optipng: 8.0.0 + imagemin-pngquant: 9.0.1 + imagemin-zopfli: 7.0.0 + inquirer: 7.3.3 + is-png: 2.0.0 + is-reachable: 5.0.0 + isbinaryfile: 4.0.6 + jsdom: 16.4.0 + lodash: 4.17.20 + minimist: 1.2.5 + ms: 2.1.3 + png2icons: 2.0.1 + read-chunk: 3.2.0 + semver: 7.3.4 + sharp: 0.27.0 + webpack-merge: 5.7.3 + webpack-shell-plugin: 0.5.0 + transitivePeerDependencies: + - bufferutil + - canvas + - debug + - supports-color + - utf-8-validate + + temp-dir@1.0.0: {} + + tempfile@2.0.0: + dependencies: + temp-dir: 1.0.0 + uuid: 3.4.0 + + term-size@2.2.1: {} + + then-fs@2.0.0: + dependencies: + promise: 7.3.1 + + through@2.3.8: {} + + timed-out@4.0.1: {} + + tinyglobby@0.2.14: + dependencies: + fdir: 6.4.6(picomatch@4.0.2) + picomatch: 4.0.2 + + tmp@0.0.33: + dependencies: + os-tmpdir: 1.0.2 + + to-buffer@1.2.1: + dependencies: + isarray: 2.0.5 + safe-buffer: 5.2.1 + typed-array-buffer: 1.0.3 + + to-readable-stream@1.0.0: {} + + to-regex-range@5.0.1: + dependencies: + is-number: 7.0.0 + + tough-cookie@2.5.0: + dependencies: + psl: 1.15.0 + punycode: 2.3.1 + + tough-cookie@3.0.1: + dependencies: + ip-regex: 2.1.0 + psl: 1.15.0 + punycode: 2.3.1 + + tr46@2.1.0: + dependencies: + punycode: 2.3.1 + + trim-newlines@1.0.0: {} + + trim-repeated@1.0.0: + dependencies: + escape-string-regexp: 1.0.5 + + tslib@1.14.1: {} + + tunnel-agent@0.6.0: + dependencies: + safe-buffer: 5.2.1 + + tweetnacl@0.14.5: {} + + type-check@0.3.2: + dependencies: + prelude-ls: 1.1.2 + + type-fest@0.11.0: {} + + type-fest@0.21.3: {} + + type-fest@0.8.1: {} + + typed-array-buffer@1.0.3: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-typed-array: 1.1.15 + + typed-array-byte-length@1.0.3: + dependencies: + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + + typed-array-byte-offset@1.0.4: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + reflect.getprototypeof: 1.0.10 + + typed-array-length@1.0.7: + dependencies: + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + is-typed-array: 1.1.15 + possible-typed-array-names: 1.1.0 + reflect.getprototypeof: 1.0.10 + + typedarray-to-buffer@3.1.5: + dependencies: + is-typedarray: 1.0.0 + + uglify-js@3.19.3: {} + + unbox-primitive@1.1.0: + dependencies: + call-bound: 1.0.4 + has-bigints: 1.1.0 + has-symbols: 1.1.0 + which-boxed-primitive: 1.1.1 + + unbzip2-stream@1.4.3: + dependencies: + buffer: 5.7.1 + through: 2.3.8 + + undici-types@7.12.0: {} + + unique-string@2.0.0: + dependencies: + crypto-random-string: 2.0.0 + + universalify@1.0.0: {} + + universalify@2.0.1: {} + + unquote@1.1.1: {} + + update-notifier@4.1.3: + dependencies: + boxen: 4.2.0 + chalk: 3.0.0 + configstore: 5.0.1 + has-yarn: 2.1.0 + import-lazy: 2.1.0 + is-ci: 2.0.0 + is-installed-globally: 0.3.2 + is-npm: 4.0.0 + is-yarn-global: 0.3.0 + latest-version: 5.1.0 + pupa: 2.1.1 + semver-diff: 3.1.1 + xdg-basedir: 4.0.0 + + uri-js@4.4.1: + dependencies: + punycode: 2.3.1 + + url-parse-lax@1.0.0: + dependencies: + prepend-http: 1.0.4 + + url-parse-lax@3.0.0: + dependencies: + prepend-http: 2.0.0 + + url-parse@1.5.10: + dependencies: + querystringify: 2.2.0 + requires-port: 1.0.0 + + url-to-options@1.0.1: {} + + util-deprecate@1.0.2: {} + + util.promisify@1.0.1: + dependencies: + define-properties: 1.2.1 + es-abstract: 1.24.0 + has-symbols: 1.1.0 + object.getownpropertydescriptors: 2.1.8 + + uuid@3.4.0: {} + + validate-npm-package-license@3.0.4: + dependencies: + spdx-correct: 3.2.0 + spdx-expression-parse: 3.0.1 + + verror@1.10.0: + dependencies: + assert-plus: 1.0.0 + core-util-is: 1.0.2 + extsprintf: 1.3.0 + + vite@6.3.5(@types/node@24.5.1): + dependencies: + esbuild: 0.25.6 + fdir: 6.4.6(picomatch@4.0.2) + picomatch: 4.0.2 + postcss: 8.5.6 + rollup: 4.45.0 + tinyglobby: 0.2.14 + optionalDependencies: + '@types/node': 24.5.1 + fsevents: 2.3.3 + + vue-demi@0.14.10(vue@3.5.17): + dependencies: + vue: 3.5.17 + + vue-router@4.5.1(vue@3.5.17): + dependencies: + '@vue/devtools-api': 6.6.4 + vue: 3.5.17 + + vue@3.5.17: + dependencies: + '@vue/compiler-dom': 3.5.17 + '@vue/compiler-sfc': 3.5.17 + '@vue/runtime-dom': 3.5.17 + '@vue/server-renderer': 3.5.17(vue@3.5.17) + '@vue/shared': 3.5.17 + + w3c-hr-time@1.0.2: + dependencies: + browser-process-hrtime: 1.0.0 + + w3c-xmlserializer@2.0.0: + dependencies: + xml-name-validator: 3.0.0 + + webidl-conversions@5.0.0: {} + + webidl-conversions@6.1.0: {} + + webpack-merge@5.7.3: + dependencies: + clone-deep: 4.0.1 + wildcard: 2.0.1 + + webpack-shell-plugin@0.5.0: {} + + whatwg-encoding@1.0.5: + dependencies: + iconv-lite: 0.4.24 + + whatwg-mimetype@2.3.0: {} + + whatwg-url@8.7.0: + dependencies: + lodash: 4.17.21 + tr46: 2.1.0 + webidl-conversions: 6.1.0 + + which-boxed-primitive@1.1.1: + dependencies: + is-bigint: 1.1.0 + is-boolean-object: 1.2.2 + is-number-object: 1.1.1 + is-string: 1.1.1 + is-symbol: 1.1.1 + + which-builtin-type@1.2.1: + dependencies: + call-bound: 1.0.4 + function.prototype.name: 1.1.8 + has-tostringtag: 1.0.2 + is-async-function: 2.1.1 + is-date-object: 1.1.0 + is-finalizationregistry: 1.1.1 + is-generator-function: 1.1.0 + is-regex: 1.2.1 + is-weakref: 1.1.1 + isarray: 2.0.5 + which-boxed-primitive: 1.1.1 + which-collection: 1.0.2 + which-typed-array: 1.1.19 + + which-collection@1.0.2: + dependencies: + is-map: 2.0.3 + is-set: 2.0.3 + is-weakmap: 2.0.2 + is-weakset: 2.0.4 + + which-typed-array@1.1.19: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 + for-each: 0.3.5 + get-proto: 1.0.1 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + + which@1.3.1: + dependencies: + isexe: 2.0.0 + + which@2.0.2: + dependencies: + isexe: 2.0.0 + + wide-align@1.1.5: + dependencies: + string-width: 1.0.2 + + widest-line@3.1.0: + dependencies: + string-width: 4.2.3 + + wildcard@2.0.1: {} + + with-open-file@0.1.7: + dependencies: + p-finally: 1.0.0 + p-try: 2.2.0 + pify: 4.0.1 + + word-wrap@1.2.5: {} + + wrappy@1.0.2: {} + + write-file-atomic@3.0.3: + dependencies: + imurmurhash: 0.1.4 + is-typedarray: 1.0.0 + signal-exit: 3.0.7 + typedarray-to-buffer: 3.1.5 + + ws@7.5.10: {} + + xdg-basedir@4.0.0: {} + + xml-name-validator@3.0.0: {} + + xmlchars@2.2.0: {} + + xtend@4.0.2: {} + + yallist@2.1.2: {} + + yallist@4.0.0: {} + + yauzl@2.10.0: + dependencies: + buffer-crc32: 0.2.13 + fd-slicer: 1.1.0 + + zopflipng-bin@6.0.1: + dependencies: + bin-build: 3.0.0 + bin-wrapper: 4.1.0 + logalot: 2.1.0 diff --git a/public/tauri.svg b/public/tauri.svg new file mode 100644 index 0000000..31b62c9 --- /dev/null +++ b/public/tauri.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/vite.svg b/public/vite.svg new file mode 100644 index 0000000..e7b8dfb --- /dev/null +++ b/public/vite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src-tauri/.gitignore b/src-tauri/.gitignore new file mode 100644 index 0000000..b21bd68 --- /dev/null +++ b/src-tauri/.gitignore @@ -0,0 +1,7 @@ +# Generated by Cargo +# will have compiled files and executables +/target/ + +# Generated by Tauri +# will have schema files for capabilities auto-completion +/gen/schemas diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock new file mode 100644 index 0000000..1497ea9 --- /dev/null +++ b/src-tauri/Cargo.lock @@ -0,0 +1,6271 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "addr2line" +version = "0.24.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" +dependencies = [ + "gimli", +] + +[[package]] +name = "adler2" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" + +[[package]] +name = "ahash" +version = "0.8.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" +dependencies = [ + "cfg-if", + "getrandom 0.3.3", + "once_cell", + "version_check", + "zerocopy", +] + +[[package]] +name = "aho-corasick" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" +dependencies = [ + "memchr", +] + +[[package]] +name = "alloc-no-stdlib" +version = "2.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" + +[[package]] +name = "alloc-stdlib" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" +dependencies = [ + "alloc-no-stdlib", +] + +[[package]] +name = "android-tzdata" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "anyhow" +version = "1.0.98" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" + +[[package]] +name = "ashpd" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd884d7c72877a94102c3715f3b1cd09ff4fac28221add3e57cfbe25c236d093" +dependencies = [ + "async-fs", + "async-net", + "enumflags2", + "futures-channel", + "futures-util", + "rand 0.8.5", + "serde", + "serde_repr", + "url", + "zbus 4.4.0", +] + +[[package]] +name = "async-broadcast" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532" +dependencies = [ + "event-listener", + "event-listener-strategy", + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "async-channel" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" +dependencies = [ + "concurrent-queue", + "event-listener-strategy", + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "async-executor" +version = "1.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb812ffb58524bdd10860d7d974e2f01cc0950c2438a74ee5ec2e2280c6c4ffa" +dependencies = [ + "async-task", + "concurrent-queue", + "fastrand", + "futures-lite", + "pin-project-lite", + "slab", +] + +[[package]] +name = "async-fs" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8034a681df4aed8b8edbd7fbe472401ecf009251c8b40556b304567052e294c5" +dependencies = [ + "async-lock", + "blocking", + "futures-lite", +] + +[[package]] +name = "async-io" +version = "2.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1237c0ae75a0f3765f58910ff9cdd0a12eeb39ab2f4c7de23262f337f0aacbb3" +dependencies = [ + "async-lock", + "cfg-if", + "concurrent-queue", + "futures-io", + "futures-lite", + "parking", + "polling", + "rustix", + "slab", + "tracing", + "windows-sys 0.59.0", +] + +[[package]] +name = "async-lock" +version = "3.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" +dependencies = [ + "event-listener", + "event-listener-strategy", + "pin-project-lite", +] + +[[package]] +name = "async-net" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b948000fad4873c1c9339d60f2623323a0cfd3816e5181033c6a5cb68b2accf7" +dependencies = [ + "async-io", + "blocking", + "futures-lite", +] + +[[package]] +name = "async-process" +version = "2.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cde3f4e40e6021d7acffc90095cbd6dc54cb593903d1de5832f435eb274b85dc" +dependencies = [ + "async-channel", + "async-io", + "async-lock", + "async-signal", + "async-task", + "blocking", + "cfg-if", + "event-listener", + "futures-lite", + "rustix", + "tracing", +] + +[[package]] +name = "async-recursion" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "async-signal" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7605a4e50d4b06df3898d5a70bf5fde51ed9059b0434b73105193bc27acce0d" +dependencies = [ + "async-io", + "async-lock", + "atomic-waker", + "cfg-if", + "futures-core", + "futures-io", + "rustix", + "signal-hook-registry", + "slab", + "windows-sys 0.59.0", +] + +[[package]] +name = "async-task" +version = "4.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" + +[[package]] +name = "async-trait" +version = "0.1.88" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "atk" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b" +dependencies = [ + "atk-sys", + "glib", + "libc", +] + +[[package]] +name = "atk-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "atomic-waker" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" + +[[package]] +name = "autocfg" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" + +[[package]] +name = "backtrace" +version = "0.3.75" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002" +dependencies = [ + "addr2line", + "cfg-if", + "libc", + "miniz_oxide", + "object", + "rustc-demangle", + "windows-targets 0.52.6", +] + +[[package]] +name = "base64" +version = "0.21.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" + +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitflags" +version = "2.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" +dependencies = [ + "serde", +] + +[[package]] +name = "block" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + +[[package]] +name = "block2" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f" +dependencies = [ + "objc2 0.5.2", +] + +[[package]] +name = "block2" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "340d2f0bdb2a43c1d3cd40513185b2bd7def0aa1052f956455114bc98f82dcf2" +dependencies = [ + "objc2 0.6.1", +] + +[[package]] +name = "blocking" +version = "1.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21" +dependencies = [ + "async-channel", + "async-task", + "futures-io", + "futures-lite", + "piper", +] + +[[package]] +name = "brotli" +version = "8.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9991eea70ea4f293524138648e41ee89b0b2b12ddef3b255effa43c8056e0e0d" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", + "brotli-decompressor", +] + +[[package]] +name = "brotli-decompressor" +version = "5.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", +] + +[[package]] +name = "bumpalo" +version = "3.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" + +[[package]] +name = "bytemuck" +version = "1.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c76a5792e44e4abe34d3abf15636779261d45a7450612059293d1d2cfc63422" + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "bytes" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" +dependencies = [ + "serde", +] + +[[package]] +name = "cairo-rs" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2" +dependencies = [ + "bitflags 2.9.1", + "cairo-sys-rs", + "glib", + "libc", + "once_cell", + "thiserror 1.0.69", +] + +[[package]] +name = "cairo-sys-rs" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51" +dependencies = [ + "glib-sys", + "libc", + "system-deps", +] + +[[package]] +name = "camino" +version = "1.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0da45bc31171d8d6960122e222a67740df867c1dd53b4d51caa297084c185cab" +dependencies = [ + "serde", +] + +[[package]] +name = "cargo-platform" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" +dependencies = [ + "serde", +] + +[[package]] +name = "cargo_metadata" +version = "0.19.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba" +dependencies = [ + "camino", + "cargo-platform", + "semver", + "serde", + "serde_json", + "thiserror 2.0.12", +] + +[[package]] +name = "cargo_toml" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02260d489095346e5cafd04dea8e8cb54d1d74fcd759022a9b72986ebe9a1257" +dependencies = [ + "serde", + "toml 0.8.23", +] + +[[package]] +name = "cc" +version = "1.2.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c1599538de2394445747c8cf7935946e3cc27e9625f889d979bfb2aaf569362" +dependencies = [ + "shlex", +] + +[[package]] +name = "cesu8" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" + +[[package]] +name = "cfb" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f" +dependencies = [ + "byteorder", + "fnv", + "uuid", +] + +[[package]] +name = "cfg-expr" +version = "0.15.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" +dependencies = [ + "smallvec", + "target-lexicon", +] + +[[package]] +name = "cfg-if" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268" + +[[package]] +name = "cfg_aliases" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" + +[[package]] +name = "chrono" +version = "0.4.41" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d" +dependencies = [ + "android-tzdata", + "iana-time-zone", + "js-sys", + "num-traits", + "serde", + "wasm-bindgen", + "windows-link", +] + +[[package]] +name = "combine" +version = "4.6.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" +dependencies = [ + "bytes", + "memchr", +] + +[[package]] +name = "concurrent-queue" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "convert_case" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" + +[[package]] +name = "cookie" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" +dependencies = [ + "percent-encoding", + "time", + "version_check", +] + +[[package]] +name = "cookie_store" +version = "0.21.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2eac901828f88a5241ee0600950ab981148a18f2f756900ffba1b125ca6a3ef9" +dependencies = [ + "cookie", + "document-features", + "idna", + "log", + "publicsuffix", + "serde", + "serde_derive", + "serde_json", + "time", + "url", +] + +[[package]] +name = "core-foundation" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" + +[[package]] +name = "core-graphics" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1" +dependencies = [ + "bitflags 2.9.1", + "core-foundation 0.10.1", + "core-graphics-types", + "foreign-types 0.5.0", + "libc", +] + +[[package]] +name = "core-graphics-types" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb" +dependencies = [ + "bitflags 2.9.1", + "core-foundation 0.10.1", + "libc", +] + +[[package]] +name = "cpufeatures" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" +dependencies = [ + "libc", +] + +[[package]] +name = "crc32fast" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam-channel" +version = "0.5.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" + +[[package]] +name = "crypto-common" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "cssparser" +version = "0.29.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa" +dependencies = [ + "cssparser-macros", + "dtoa-short", + "itoa", + "matches", + "phf 0.10.1", + "proc-macro2", + "quote", + "smallvec", + "syn 1.0.109", +] + +[[package]] +name = "cssparser" +version = "0.31.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b3df4f93e5fbbe73ec01ec8d3f68bba73107993a5b1e7519273c32db9b0d5be" +dependencies = [ + "cssparser-macros", + "dtoa-short", + "itoa", + "phf 0.11.3", + "smallvec", +] + +[[package]] +name = "cssparser-macros" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" +dependencies = [ + "quote", + "syn 2.0.104", +] + +[[package]] +name = "ctor" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501" +dependencies = [ + "quote", + "syn 2.0.104", +] + +[[package]] +name = "darling" +version = "0.20.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" +dependencies = [ + "darling_core", + "darling_macro", +] + +[[package]] +name = "darling_core" +version = "0.20.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" +dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim", + "syn 2.0.104", +] + +[[package]] +name = "darling_macro" +version = "0.20.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" +dependencies = [ + "darling_core", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "deranged" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e" +dependencies = [ + "powerfmt", + "serde", +] + +[[package]] +name = "derive_more" +version = "0.99.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" +dependencies = [ + "convert_case", + "proc-macro2", + "quote", + "rustc_version", + "syn 2.0.104", +] + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer", + "crypto-common", + "subtle", +] + +[[package]] +name = "dirs" +version = "5.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" +dependencies = [ + "dirs-sys 0.4.1", +] + +[[package]] +name = "dirs" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" +dependencies = [ + "dirs-sys 0.5.0", +] + +[[package]] +name = "dirs-sys" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" +dependencies = [ + "libc", + "option-ext", + "redox_users 0.4.6", + "windows-sys 0.48.0", +] + +[[package]] +name = "dirs-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" +dependencies = [ + "libc", + "option-ext", + "redox_users 0.5.0", + "windows-sys 0.60.2", +] + +[[package]] +name = "dispatch" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" + +[[package]] +name = "dispatch2" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec" +dependencies = [ + "bitflags 2.9.1", + "objc2 0.6.1", +] + +[[package]] +name = "displaydoc" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "dlopen2" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e1297103d2bbaea85724fcee6294c2d50b1081f9ad47d0f6f6f61eda65315a6" +dependencies = [ + "dlopen2_derive", + "libc", + "once_cell", + "winapi", +] + +[[package]] +name = "dlopen2_derive" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "788160fb30de9cdd857af31c6a2675904b16ece8fc2737b2c7127ba368c9d0f4" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "document-features" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95249b50c6c185bee49034bcb378a49dc2b5dff0be90ff6616d31d64febab05d" +dependencies = [ + "litrs", +] + +[[package]] +name = "dpi" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76" +dependencies = [ + "serde", +] + +[[package]] +name = "dtoa" +version = "1.0.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04" + +[[package]] +name = "dtoa-short" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" +dependencies = [ + "dtoa", +] + +[[package]] +name = "dunce" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" + +[[package]] +name = "dyn-clone" +version = "1.0.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005" + +[[package]] +name = "ego-tree" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12a0bb14ac04a9fcf170d0bbbef949b44cc492f4452bd20c095636956f653642" + +[[package]] +name = "embed-resource" +version = "3.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c6d81016d6c977deefb2ef8d8290da019e27cc26167e102185da528e6c0ab38" +dependencies = [ + "cc", + "memchr", + "rustc_version", + "toml 0.9.2", + "vswhom", + "winreg", +] + +[[package]] +name = "embed_plist" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" + +[[package]] +name = "encoding_rs" +version = "0.8.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "endi" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf" + +[[package]] +name = "enumflags2" +version = "0.7.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef" +dependencies = [ + "enumflags2_derive", + "serde", +] + +[[package]] +name = "enumflags2_derive" +version = "0.7.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "equivalent" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + +[[package]] +name = "erased-serde" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e004d887f51fcb9fef17317a2f3525c887d8aa3f4f50fed920816a688284a5b7" +dependencies = [ + "serde", + "typeid", +] + +[[package]] +name = "errno" +version = "0.3.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad" +dependencies = [ + "libc", + "windows-sys 0.60.2", +] + +[[package]] +name = "event-listener" +version = "5.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" +dependencies = [ + "concurrent-queue", + "parking", + "pin-project-lite", +] + +[[package]] +name = "event-listener-strategy" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" +dependencies = [ + "event-listener", + "pin-project-lite", +] + +[[package]] +name = "fallible-iterator" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" + +[[package]] +name = "fastrand" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" + +[[package]] +name = "fdeflate" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" +dependencies = [ + "simd-adler32", +] + +[[package]] +name = "field-offset" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" +dependencies = [ + "memoffset", + "rustc_version", +] + +[[package]] +name = "flate2" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" +dependencies = [ + "crc32fast", + "miniz_oxide", +] + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "foreign-types" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" +dependencies = [ + "foreign-types-shared 0.1.1", +] + +[[package]] +name = "foreign-types" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" +dependencies = [ + "foreign-types-macros", + "foreign-types-shared 0.3.1", +] + +[[package]] +name = "foreign-types-macros" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "foreign-types-shared" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + +[[package]] +name = "foreign-types-shared" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" + +[[package]] +name = "form_urlencoded" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "futf" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" +dependencies = [ + "mac", + "new_debug_unreachable", +] + +[[package]] +name = "futures-channel" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" + +[[package]] +name = "futures-executor" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" + +[[package]] +name = "futures-lite" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532" +dependencies = [ + "fastrand", + "futures-core", + "futures-io", + "parking", + "pin-project-lite", +] + +[[package]] +name = "futures-macro" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "futures-sink" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" + +[[package]] +name = "futures-task" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" + +[[package]] +name = "futures-util" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" +dependencies = [ + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "slab", +] + +[[package]] +name = "fxhash" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" +dependencies = [ + "byteorder", +] + +[[package]] +name = "gdk" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691" +dependencies = [ + "cairo-rs", + "gdk-pixbuf", + "gdk-sys", + "gio", + "glib", + "libc", + "pango", +] + +[[package]] +name = "gdk-pixbuf" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec" +dependencies = [ + "gdk-pixbuf-sys", + "gio", + "glib", + "libc", + "once_cell", +] + +[[package]] +name = "gdk-pixbuf-sys" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7" +dependencies = [ + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "gdk-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7" +dependencies = [ + "cairo-sys-rs", + "gdk-pixbuf-sys", + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "pango-sys", + "pkg-config", + "system-deps", +] + +[[package]] +name = "gdkwayland-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69" +dependencies = [ + "gdk-sys", + "glib-sys", + "gobject-sys", + "libc", + "pkg-config", + "system-deps", +] + +[[package]] +name = "gdkx11" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe" +dependencies = [ + "gdk", + "gdkx11-sys", + "gio", + "glib", + "libc", + "x11", +] + +[[package]] +name = "gdkx11-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d" +dependencies = [ + "gdk-sys", + "glib-sys", + "libc", + "system-deps", + "x11", +] + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "getopts" +version = "0.2.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cba6ae63eb948698e300f645f87c70f76630d505f23b8907cf1e193ee85048c1" +dependencies = [ + "unicode-width", +] + +[[package]] +name = "getrandom" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" +dependencies = [ + "cfg-if", + "libc", + "wasi 0.9.0+wasi-snapshot-preview1", +] + +[[package]] +name = "getrandom" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" +dependencies = [ + "cfg-if", + "libc", + "wasi 0.11.1+wasi-snapshot-preview1", +] + +[[package]] +name = "getrandom" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" +dependencies = [ + "cfg-if", + "libc", + "r-efi", + "wasi 0.14.2+wasi-0.2.4", +] + +[[package]] +name = "gimli" +version = "0.31.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" + +[[package]] +name = "gio" +version = "0.18.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-util", + "gio-sys", + "glib", + "libc", + "once_cell", + "pin-project-lite", + "smallvec", + "thiserror 1.0.69", +] + +[[package]] +name = "gio-sys" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", + "winapi", +] + +[[package]] +name = "glib" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5" +dependencies = [ + "bitflags 2.9.1", + "futures-channel", + "futures-core", + "futures-executor", + "futures-task", + "futures-util", + "gio-sys", + "glib-macros", + "glib-sys", + "gobject-sys", + "libc", + "memchr", + "once_cell", + "smallvec", + "thiserror 1.0.69", +] + +[[package]] +name = "glib-macros" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc" +dependencies = [ + "heck 0.4.1", + "proc-macro-crate 2.0.0", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "glib-sys" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898" +dependencies = [ + "libc", + "system-deps", +] + +[[package]] +name = "glob" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" + +[[package]] +name = "gobject-sys" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44" +dependencies = [ + "glib-sys", + "libc", + "system-deps", +] + +[[package]] +name = "gtk" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a" +dependencies = [ + "atk", + "cairo-rs", + "field-offset", + "futures-channel", + "gdk", + "gdk-pixbuf", + "gio", + "glib", + "gtk-sys", + "gtk3-macros", + "libc", + "pango", + "pkg-config", +] + +[[package]] +name = "gtk-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414" +dependencies = [ + "atk-sys", + "cairo-sys-rs", + "gdk-pixbuf-sys", + "gdk-sys", + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "pango-sys", + "system-deps", +] + +[[package]] +name = "gtk3-macros" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d" +dependencies = [ + "proc-macro-crate 1.3.1", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "h2" +version = "0.4.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17da50a276f1e01e0ba6c029e47b7100754904ee8a278f886546e98575380785" +dependencies = [ + "atomic-waker", + "bytes", + "fnv", + "futures-core", + "futures-sink", + "http", + "indexmap 2.10.0", + "slab", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" + +[[package]] +name = "hashbrown" +version = "0.15.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5" + +[[package]] +name = "heck" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" + +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + +[[package]] +name = "hermit-abi" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" + +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" + +[[package]] +name = "hmac" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" +dependencies = [ + "digest", +] + +[[package]] +name = "html5ever" +version = "0.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c13771afe0e6e846f1e67d038d4cb29998a6779f93c809212e4e9c32efd244d4" +dependencies = [ + "log", + "mac", + "markup5ever 0.12.1", + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "html5ever" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c" +dependencies = [ + "log", + "mac", + "markup5ever 0.14.1", + "match_token", +] + +[[package]] +name = "html_scraper" +version = "0.1.0" +dependencies = [ + "regex", + "scraper", + "thiserror 1.0.69", +] + +[[package]] +name = "http" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] +name = "http-body" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +dependencies = [ + "bytes", + "http", +] + +[[package]] +name = "http-body-util" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" +dependencies = [ + "bytes", + "futures-core", + "http", + "http-body", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" + +[[package]] +name = "hyper" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "h2", + "http", + "http-body", + "httparse", + "itoa", + "pin-project-lite", + "smallvec", + "tokio", + "want", +] + +[[package]] +name = "hyper-rustls" +version = "0.27.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" +dependencies = [ + "http", + "hyper", + "hyper-util", + "rustls", + "rustls-pki-types", + "tokio", + "tokio-rustls", + "tower-service", +] + +[[package]] +name = "hyper-tls" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" +dependencies = [ + "bytes", + "http-body-util", + "hyper", + "hyper-util", + "native-tls", + "tokio", + "tokio-native-tls", + "tower-service", +] + +[[package]] +name = "hyper-util" +version = "0.1.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f66d5bd4c6f02bf0542fad85d626775bab9258cf795a4256dcaf3161114d1df" +dependencies = [ + "base64 0.22.1", + "bytes", + "futures-channel", + "futures-core", + "futures-util", + "http", + "http-body", + "hyper", + "ipnet", + "libc", + "percent-encoding", + "pin-project-lite", + "socket2", + "system-configuration", + "tokio", + "tower-service", + "tracing", + "windows-registry", +] + +[[package]] +name = "iana-time-zone" +version = "0.1.63" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "log", + "wasm-bindgen", + "windows-core", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + +[[package]] +name = "ico" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc50b891e4acf8fe0e71ef88ec43ad82ee07b3810ad09de10f1d01f072ed4b98" +dependencies = [ + "byteorder", + "png", +] + +[[package]] +name = "icu_collections" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" +dependencies = [ + "displaydoc", + "potential_utf", + "yoke", + "zerofrom", + "zerovec", +] + +[[package]] +name = "icu_locale_core" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" +dependencies = [ + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", +] + +[[package]] +name = "icu_normalizer" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" +dependencies = [ + "displaydoc", + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", +] + +[[package]] +name = "icu_normalizer_data" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" + +[[package]] +name = "icu_properties" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" +dependencies = [ + "displaydoc", + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "potential_utf", + "zerotrie", + "zerovec", +] + +[[package]] +name = "icu_properties_data" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" + +[[package]] +name = "icu_provider" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" +dependencies = [ + "displaydoc", + "icu_locale_core", + "stable_deref_trait", + "tinystr", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", +] + +[[package]] +name = "ident_case" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + +[[package]] +name = "idna" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" +dependencies = [ + "idna_adapter", + "smallvec", + "utf8_iter", +] + +[[package]] +name = "idna_adapter" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" +dependencies = [ + "icu_normalizer", + "icu_properties", +] + +[[package]] +name = "indexmap" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" +dependencies = [ + "autocfg", + "hashbrown 0.12.3", + "serde", +] + +[[package]] +name = "indexmap" +version = "2.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661" +dependencies = [ + "equivalent", + "hashbrown 0.15.4", + "serde", +] + +[[package]] +name = "infer" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7" +dependencies = [ + "cfb", +] + +[[package]] +name = "io-uring" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b86e202f00093dcba4275d4636b93ef9dd75d025ae560d2521b45ea28ab49013" +dependencies = [ + "bitflags 2.9.1", + "cfg-if", + "libc", +] + +[[package]] +name = "ipnet" +version = "2.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" + +[[package]] +name = "iri-string" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2" +dependencies = [ + "memchr", + "serde", +] + +[[package]] +name = "is-docker" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3" +dependencies = [ + "once_cell", +] + +[[package]] +name = "is-wsl" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5" +dependencies = [ + "is-docker", + "once_cell", +] + +[[package]] +name = "itoa" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" + +[[package]] +name = "javascriptcore-rs" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc" +dependencies = [ + "bitflags 1.3.2", + "glib", + "javascriptcore-rs-sys", +] + +[[package]] +name = "javascriptcore-rs-sys" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "jni" +version = "0.21.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" +dependencies = [ + "cesu8", + "cfg-if", + "combine", + "jni-sys", + "log", + "thiserror 1.0.69", + "walkdir", + "windows-sys 0.45.0", +] + +[[package]] +name = "jni-sys" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" + +[[package]] +name = "js-sys" +version = "0.3.77" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" +dependencies = [ + "once_cell", + "wasm-bindgen", +] + +[[package]] +name = "json-patch" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08" +dependencies = [ + "jsonptr", + "serde", + "serde_json", + "thiserror 1.0.69", +] + +[[package]] +name = "jsonptr" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70" +dependencies = [ + "serde", + "serde_json", +] + +[[package]] +name = "keyboard-types" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a" +dependencies = [ + "bitflags 2.9.1", + "serde", + "unicode-segmentation", +] + +[[package]] +name = "kuchikiki" +version = "0.8.8-speedreader" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02cb977175687f33fa4afa0c95c112b987ea1443e5a51c8f8ff27dc618270cc2" +dependencies = [ + "cssparser 0.29.6", + "html5ever 0.29.1", + "indexmap 2.10.0", + "selectors 0.24.0", +] + +[[package]] +name = "lazy_static" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" + +[[package]] +name = "libappindicator" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a" +dependencies = [ + "glib", + "gtk", + "gtk-sys", + "libappindicator-sys", + "log", +] + +[[package]] +name = "libappindicator-sys" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf" +dependencies = [ + "gtk-sys", + "libloading", + "once_cell", +] + +[[package]] +name = "libc" +version = "0.2.174" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776" + +[[package]] +name = "libloading" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" +dependencies = [ + "cfg-if", + "winapi", +] + +[[package]] +name = "libredox" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1580801010e535496706ba011c15f8532df6b42297d2e471fec38ceadd8c0638" +dependencies = [ + "bitflags 2.9.1", + "libc", +] + +[[package]] +name = "linux-raw-sys" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12" + +[[package]] +name = "litemap" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" + +[[package]] +name = "litrs" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4ce301924b7887e9d637144fdade93f9dfff9b60981d4ac161db09720d39aa5" + +[[package]] +name = "lock_api" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765" +dependencies = [ + "autocfg", + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" + +[[package]] +name = "mac" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" + +[[package]] +name = "malloc_buf" +version = "0.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" +dependencies = [ + "libc", +] + +[[package]] +name = "markup5ever" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16ce3abbeba692c8b8441d036ef91aea6df8da2c6b6e21c7e14d3c18e526be45" +dependencies = [ + "log", + "phf 0.11.3", + "phf_codegen 0.11.3", + "string_cache", + "string_cache_codegen", + "tendril", +] + +[[package]] +name = "markup5ever" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18" +dependencies = [ + "log", + "phf 0.11.3", + "phf_codegen 0.11.3", + "string_cache", + "string_cache_codegen", + "tendril", +] + +[[package]] +name = "match_token" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "matches" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" + +[[package]] +name = "md-5" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" +dependencies = [ + "cfg-if", + "digest", +] + +[[package]] +name = "memchr" +version = "2.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" + +[[package]] +name = "memoffset" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" +dependencies = [ + "autocfg", +] + +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "miniz_oxide" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" +dependencies = [ + "adler2", + "simd-adler32", +] + +[[package]] +name = "mio" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" +dependencies = [ + "libc", + "wasi 0.11.1+wasi-snapshot-preview1", + "windows-sys 0.59.0", +] + +[[package]] +name = "muda" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "58b89bf91c19bf036347f1ab85a81c560f08c0667c8601bece664d860a600988" +dependencies = [ + "crossbeam-channel", + "dpi", + "gtk", + "keyboard-types", + "objc2 0.6.1", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation 0.3.1", + "once_cell", + "png", + "serde", + "thiserror 2.0.12", + "windows-sys 0.59.0", +] + +[[package]] +name = "native-tls" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" +dependencies = [ + "libc", + "log", + "openssl", + "openssl-probe", + "openssl-sys", + "schannel", + "security-framework", + "security-framework-sys", + "tempfile", +] + +[[package]] +name = "ndk" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" +dependencies = [ + "bitflags 2.9.1", + "jni-sys", + "log", + "ndk-sys", + "num_enum", + "raw-window-handle", + "thiserror 1.0.69", +] + +[[package]] +name = "ndk-context" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" + +[[package]] +name = "ndk-sys" +version = "0.6.0+11769913" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873" +dependencies = [ + "jni-sys", +] + +[[package]] +name = "new_debug_unreachable" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" + +[[package]] +name = "nix" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" +dependencies = [ + "bitflags 2.9.1", + "cfg-if", + "cfg_aliases", + "libc", + "memoffset", +] + +[[package]] +name = "nix" +version = "0.30.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" +dependencies = [ + "bitflags 2.9.1", + "cfg-if", + "cfg_aliases", + "libc", + "memoffset", +] + +[[package]] +name = "nodrop" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" + +[[package]] +name = "num-conv" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", +] + +[[package]] +name = "num_enum" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a973b4e44ce6cad84ce69d797acf9a044532e4184c4f267913d1b546a0727b7a" +dependencies = [ + "num_enum_derive", + "rustversion", +] + +[[package]] +name = "num_enum_derive" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d" +dependencies = [ + "proc-macro-crate 3.3.0", + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "objc" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" +dependencies = [ + "malloc_buf", +] + +[[package]] +name = "objc-foundation" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9" +dependencies = [ + "block", + "objc", + "objc_id", +] + +[[package]] +name = "objc-sys" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310" + +[[package]] +name = "objc2" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804" +dependencies = [ + "objc-sys", + "objc2-encode", +] + +[[package]] +name = "objc2" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88c6597e14493ab2e44ce58f2fdecf095a51f12ca57bec060a11c57332520551" +dependencies = [ + "objc2-encode", + "objc2-exception-helper", +] + +[[package]] +name = "objc2-app-kit" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6f29f568bec459b0ddff777cec4fe3fd8666d82d5a40ebd0ff7e66134f89bcc" +dependencies = [ + "bitflags 2.9.1", + "block2 0.6.1", + "libc", + "objc2 0.6.1", + "objc2-cloud-kit", + "objc2-core-data", + "objc2-core-foundation", + "objc2-core-graphics", + "objc2-core-image", + "objc2-foundation 0.3.1", + "objc2-quartz-core 0.3.1", +] + +[[package]] +name = "objc2-cloud-kit" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17614fdcd9b411e6ff1117dfb1d0150f908ba83a7df81b1f118005fe0a8ea15d" +dependencies = [ + "bitflags 2.9.1", + "objc2 0.6.1", + "objc2-foundation 0.3.1", +] + +[[package]] +name = "objc2-core-data" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "291fbbf7d29287518e8686417cf7239c74700fd4b607623140a7d4a3c834329d" +dependencies = [ + "bitflags 2.9.1", + "objc2 0.6.1", + "objc2-foundation 0.3.1", +] + +[[package]] +name = "objc2-core-foundation" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166" +dependencies = [ + "bitflags 2.9.1", + "dispatch2", + "objc2 0.6.1", +] + +[[package]] +name = "objc2-core-graphics" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "989c6c68c13021b5c2d6b71456ebb0f9dc78d752e86a98da7c716f4f9470f5a4" +dependencies = [ + "bitflags 2.9.1", + "dispatch2", + "objc2 0.6.1", + "objc2-core-foundation", + "objc2-io-surface", +] + +[[package]] +name = "objc2-core-image" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79b3dc0cc4386b6ccf21c157591b34a7f44c8e75b064f85502901ab2188c007e" +dependencies = [ + "objc2 0.6.1", + "objc2-foundation 0.3.1", +] + +[[package]] +name = "objc2-encode" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" + +[[package]] +name = "objc2-exception-helper" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a" +dependencies = [ + "cc", +] + +[[package]] +name = "objc2-foundation" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8" +dependencies = [ + "bitflags 2.9.1", + "block2 0.5.1", + "libc", + "objc2 0.5.2", +] + +[[package]] +name = "objc2-foundation" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "900831247d2fe1a09a683278e5384cfb8c80c79fe6b166f9d14bfdde0ea1b03c" +dependencies = [ + "bitflags 2.9.1", + "block2 0.6.1", + "libc", + "objc2 0.6.1", + "objc2-core-foundation", +] + +[[package]] +name = "objc2-io-surface" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7282e9ac92529fa3457ce90ebb15f4ecbc383e8338060960760fa2cf75420c3c" +dependencies = [ + "bitflags 2.9.1", + "objc2 0.6.1", + "objc2-core-foundation", +] + +[[package]] +name = "objc2-metal" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6" +dependencies = [ + "bitflags 2.9.1", + "block2 0.5.1", + "objc2 0.5.2", + "objc2-foundation 0.2.2", +] + +[[package]] +name = "objc2-quartz-core" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a" +dependencies = [ + "bitflags 2.9.1", + "block2 0.5.1", + "objc2 0.5.2", + "objc2-foundation 0.2.2", + "objc2-metal", +] + +[[package]] +name = "objc2-quartz-core" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90ffb6a0cd5f182dc964334388560b12a57f7b74b3e2dec5e2722aa2dfb2ccd5" +dependencies = [ + "bitflags 2.9.1", + "objc2 0.6.1", + "objc2-foundation 0.3.1", +] + +[[package]] +name = "objc2-ui-kit" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25b1312ad7bc8a0e92adae17aa10f90aae1fb618832f9b993b022b591027daed" +dependencies = [ + "bitflags 2.9.1", + "objc2 0.6.1", + "objc2-core-foundation", + "objc2-foundation 0.3.1", +] + +[[package]] +name = "objc2-web-kit" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91672909de8b1ce1c2252e95bbee8c1649c9ad9d14b9248b3d7b4c47903c47ad" +dependencies = [ + "bitflags 2.9.1", + "block2 0.6.1", + "objc2 0.6.1", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation 0.3.1", +] + +[[package]] +name = "objc_id" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b" +dependencies = [ + "objc", +] + +[[package]] +name = "object" +version = "0.36.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" +dependencies = [ + "memchr", +] + +[[package]] +name = "once_cell" +version = "1.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" + +[[package]] +name = "open" +version = "5.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2483562e62ea94312f3576a7aca397306df7990b8d89033e18766744377ef95" +dependencies = [ + "dunce", + "is-wsl", + "libc", + "pathdiff", +] + +[[package]] +name = "openssl" +version = "0.10.73" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8" +dependencies = [ + "bitflags 2.9.1", + "cfg-if", + "foreign-types 0.3.2", + "libc", + "once_cell", + "openssl-macros", + "openssl-sys", +] + +[[package]] +name = "openssl-macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "openssl-probe" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" + +[[package]] +name = "openssl-sys" +version = "0.9.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571" +dependencies = [ + "cc", + "libc", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "option-ext" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" + +[[package]] +name = "ordered-stream" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" +dependencies = [ + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "pango" +version = "0.18.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4" +dependencies = [ + "gio", + "glib", + "libc", + "once_cell", + "pango-sys", +] + +[[package]] +name = "pango-sys" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "parking" +version = "2.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" + +[[package]] +name = "parking_lot" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-targets 0.52.6", +] + +[[package]] +name = "pathdiff" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" + +[[package]] +name = "percent-encoding" +version = "2.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" + +[[package]] +name = "phf" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" +dependencies = [ + "phf_shared 0.8.0", +] + +[[package]] +name = "phf" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" +dependencies = [ + "phf_macros 0.10.0", + "phf_shared 0.10.0", + "proc-macro-hack", +] + +[[package]] +name = "phf" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" +dependencies = [ + "phf_macros 0.11.3", + "phf_shared 0.11.3", +] + +[[package]] +name = "phf_codegen" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" +dependencies = [ + "phf_generator 0.8.0", + "phf_shared 0.8.0", +] + +[[package]] +name = "phf_codegen" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" +dependencies = [ + "phf_generator 0.10.0", + "phf_shared 0.10.0", +] + +[[package]] +name = "phf_codegen" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", +] + +[[package]] +name = "phf_generator" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" +dependencies = [ + "phf_shared 0.8.0", + "rand 0.7.3", +] + +[[package]] +name = "phf_generator" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" +dependencies = [ + "phf_shared 0.10.0", + "rand 0.8.5", +] + +[[package]] +name = "phf_generator" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" +dependencies = [ + "phf_shared 0.11.3", + "rand 0.8.5", +] + +[[package]] +name = "phf_macros" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" +dependencies = [ + "phf_generator 0.10.0", + "phf_shared 0.10.0", + "proc-macro-hack", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "phf_macros" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "phf_shared" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" +dependencies = [ + "siphasher 0.3.11", +] + +[[package]] +name = "phf_shared" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" +dependencies = [ + "siphasher 0.3.11", +] + +[[package]] +name = "phf_shared" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" +dependencies = [ + "siphasher 1.0.1", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "piper" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" +dependencies = [ + "atomic-waker", + "fastrand", + "futures-io", +] + +[[package]] +name = "pkg-config" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" + +[[package]] +name = "plist" +version = "1.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3af6b589e163c5a788fab00ce0c0366f6efbb9959c2f9874b224936af7fce7e1" +dependencies = [ + "base64 0.22.1", + "indexmap 2.10.0", + "quick-xml", + "serde", + "time", +] + +[[package]] +name = "png" +version = "0.17.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526" +dependencies = [ + "bitflags 1.3.2", + "crc32fast", + "fdeflate", + "flate2", + "miniz_oxide", +] + +[[package]] +name = "polling" +version = "3.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b53a684391ad002dd6a596ceb6c74fd004fdce75f4be2e3f615068abbea5fd50" +dependencies = [ + "cfg-if", + "concurrent-queue", + "hermit-abi", + "pin-project-lite", + "rustix", + "tracing", + "windows-sys 0.59.0", +] + +[[package]] +name = "pollster" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22686f4785f02a4fcc856d3b3bb19bf6c8160d103f7a99cc258bddd0251dc7f2" + +[[package]] +name = "postgres-protocol" +version = "0.6.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76ff0abab4a9b844b93ef7b81f1efc0a366062aaef2cd702c76256b5dc075c54" +dependencies = [ + "base64 0.22.1", + "byteorder", + "bytes", + "fallible-iterator", + "hmac", + "md-5", + "memchr", + "rand 0.9.1", + "sha2", + "stringprep", +] + +[[package]] +name = "postgres-types" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "613283563cd90e1dfc3518d548caee47e0e725455ed619881f5cf21f36de4b48" +dependencies = [ + "bytes", + "chrono", + "fallible-iterator", + "postgres-protocol", +] + +[[package]] +name = "potential_utf" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585" +dependencies = [ + "zerovec", +] + +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + +[[package]] +name = "ppv-lite86" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "precomputed-hash" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" + +[[package]] +name = "proc-macro-crate" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" +dependencies = [ + "once_cell", + "toml_edit 0.19.15", +] + +[[package]] +name = "proc-macro-crate" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8" +dependencies = [ + "toml_edit 0.20.7", +] + +[[package]] +name = "proc-macro-crate" +version = "3.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35" +dependencies = [ + "toml_edit 0.22.27", +] + +[[package]] +name = "proc-macro-error" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" +dependencies = [ + "proc-macro-error-attr", + "proc-macro2", + "quote", + "syn 1.0.109", + "version_check", +] + +[[package]] +name = "proc-macro-error-attr" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" +dependencies = [ + "proc-macro2", + "quote", + "version_check", +] + +[[package]] +name = "proc-macro-hack" +version = "0.5.20+deprecated" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" + +[[package]] +name = "proc-macro2" +version = "1.0.95" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "psl-types" +version = "2.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac" + +[[package]] +name = "publicsuffix" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf" +dependencies = [ + "idna", + "psl-types", +] + +[[package]] +name = "quick-xml" +version = "0.38.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c" +dependencies = [ + "memchr", +] + +[[package]] +name = "quote" +version = "1.0.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "r-efi" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + +[[package]] +name = "rand" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" +dependencies = [ + "getrandom 0.1.16", + "libc", + "rand_chacha 0.2.2", + "rand_core 0.5.1", + "rand_hc", + "rand_pcg", +] + +[[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "libc", + "rand_chacha 0.3.1", + "rand_core 0.6.4", +] + +[[package]] +name = "rand" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97" +dependencies = [ + "rand_chacha 0.9.0", + "rand_core 0.9.3", +] + +[[package]] +name = "rand_chacha" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" +dependencies = [ + "ppv-lite86", + "rand_core 0.5.1", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core 0.6.4", +] + +[[package]] +name = "rand_chacha" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" +dependencies = [ + "ppv-lite86", + "rand_core 0.9.3", +] + +[[package]] +name = "rand_core" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" +dependencies = [ + "getrandom 0.1.16", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom 0.2.16", +] + +[[package]] +name = "rand_core" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" +dependencies = [ + "getrandom 0.3.3", +] + +[[package]] +name = "rand_hc" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" +dependencies = [ + "rand_core 0.5.1", +] + +[[package]] +name = "rand_pcg" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" +dependencies = [ + "rand_core 0.5.1", +] + +[[package]] +name = "raw-window-handle" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" + +[[package]] +name = "redox_syscall" +version = "0.5.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6" +dependencies = [ + "bitflags 2.9.1", +] + +[[package]] +name = "redox_users" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" +dependencies = [ + "getrandom 0.2.16", + "libredox", + "thiserror 1.0.69", +] + +[[package]] +name = "redox_users" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b" +dependencies = [ + "getrandom 0.2.16", + "libredox", + "thiserror 2.0.12", +] + +[[package]] +name = "ref-cast" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf" +dependencies = [ + "ref-cast-impl", +] + +[[package]] +name = "ref-cast-impl" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "regex" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" + +[[package]] +name = "reqwest" +version = "0.12.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531" +dependencies = [ + "base64 0.22.1", + "bytes", + "cookie", + "cookie_store", + "encoding_rs", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-rustls", + "hyper-tls", + "hyper-util", + "js-sys", + "log", + "mime", + "native-tls", + "percent-encoding", + "pin-project-lite", + "rustls-pki-types", + "serde", + "serde_json", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tokio-native-tls", + "tokio-util", + "tower", + "tower-http", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "wasm-streams", + "web-sys", +] + +[[package]] +name = "rfd" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25a73a7337fc24366edfca76ec521f51877b114e42dab584008209cca6719251" +dependencies = [ + "ashpd", + "block", + "dispatch", + "js-sys", + "log", + "objc", + "objc-foundation", + "objc_id", + "pollster", + "raw-window-handle", + "urlencoding", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "windows-sys 0.48.0", +] + +[[package]] +name = "ring" +version = "0.17.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" +dependencies = [ + "cc", + "cfg-if", + "getrandom 0.2.16", + "libc", + "untrusted", + "windows-sys 0.52.0", +] + +[[package]] +name = "rustc-demangle" +version = "0.1.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f" + +[[package]] +name = "rustc_version" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" +dependencies = [ + "semver", +] + +[[package]] +name = "rustix" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266" +dependencies = [ + "bitflags 2.9.1", + "errno", + "libc", + "linux-raw-sys", + "windows-sys 0.59.0", +] + +[[package]] +name = "rustls" +version = "0.23.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7160e3e10bf4535308537f3c4e1641468cd0e485175d6163087c0393c7d46643" +dependencies = [ + "once_cell", + "rustls-pki-types", + "rustls-webpki", + "subtle", + "zeroize", +] + +[[package]] +name = "rustls-pki-types" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" +dependencies = [ + "zeroize", +] + +[[package]] +name = "rustls-webpki" +version = "0.103.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435" +dependencies = [ + "ring", + "rustls-pki-types", + "untrusted", +] + +[[package]] +name = "rustversion" +version = "1.0.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" + +[[package]] +name = "ryu" +version = "1.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" + +[[package]] +name = "same-file" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "schannel" +version = "0.1.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" +dependencies = [ + "windows-sys 0.59.0", +] + +[[package]] +name = "schemars" +version = "0.8.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615" +dependencies = [ + "dyn-clone", + "indexmap 1.9.3", + "schemars_derive", + "serde", + "serde_json", + "url", + "uuid", +] + +[[package]] +name = "schemars" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" +dependencies = [ + "dyn-clone", + "ref-cast", + "serde", + "serde_json", +] + +[[package]] +name = "schemars" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0" +dependencies = [ + "dyn-clone", + "ref-cast", + "serde", + "serde_json", +] + +[[package]] +name = "schemars_derive" +version = "0.8.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d" +dependencies = [ + "proc-macro2", + "quote", + "serde_derive_internals", + "syn 2.0.104", +] + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "scraper" +version = "0.19.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "761fb705fdf625482d2ed91d3f0559dcfeab2798fe2771c69560a774865d0802" +dependencies = [ + "ahash", + "cssparser 0.31.2", + "ego-tree", + "getopts", + "html5ever 0.27.0", + "once_cell", + "selectors 0.25.0", + "tendril", +] + +[[package]] +name = "security-framework" +version = "2.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" +dependencies = [ + "bitflags 2.9.1", + "core-foundation 0.9.4", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "selectors" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c37578180969d00692904465fb7f6b3d50b9a2b952b87c23d0e2e5cb5013416" +dependencies = [ + "bitflags 1.3.2", + "cssparser 0.29.6", + "derive_more", + "fxhash", + "log", + "phf 0.8.0", + "phf_codegen 0.8.0", + "precomputed-hash", + "servo_arc 0.2.0", + "smallvec", +] + +[[package]] +name = "selectors" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4eb30575f3638fc8f6815f448d50cb1a2e255b0897985c8c59f4d37b72a07b06" +dependencies = [ + "bitflags 2.9.1", + "cssparser 0.31.2", + "derive_more", + "fxhash", + "log", + "new_debug_unreachable", + "phf 0.10.1", + "phf_codegen 0.10.0", + "precomputed-hash", + "servo_arc 0.3.0", + "smallvec", +] + +[[package]] +name = "semver" +version = "1.0.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" +dependencies = [ + "serde", +] + +[[package]] +name = "serde" +version = "1.0.219" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde-untagged" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "299d9c19d7d466db4ab10addd5703e4c615dec2a5a16dbbafe191045e87ee66e" +dependencies = [ + "erased-serde", + "serde", + "typeid", +] + +[[package]] +name = "serde_derive" +version = "1.0.219" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "serde_derive_internals" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "serde_json" +version = "1.0.140" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" +dependencies = [ + "itoa", + "memchr", + "ryu", + "serde", +] + +[[package]] +name = "serde_repr" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "serde_spanned" +version = "0.6.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" +dependencies = [ + "serde", +] + +[[package]] +name = "serde_spanned" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83" +dependencies = [ + "serde", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "serde_with" +version = "3.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2c45cd61fefa9db6f254525d46e392b852e0e61d9a1fd36e5bd183450a556d5" +dependencies = [ + "base64 0.22.1", + "chrono", + "hex", + "indexmap 1.9.3", + "indexmap 2.10.0", + "schemars 0.9.0", + "schemars 1.0.4", + "serde", + "serde_derive", + "serde_json", + "serde_with_macros", + "time", +] + +[[package]] +name = "serde_with_macros" +version = "3.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de90945e6565ce0d9a25098082ed4ee4002e047cb59892c318d66821e14bb30f" +dependencies = [ + "darling", + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "serialize-to-javascript" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb" +dependencies = [ + "serde", + "serde_json", + "serialize-to-javascript-impl", +] + +[[package]] +name = "serialize-to-javascript-impl" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "servo_arc" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d52aa42f8fdf0fed91e5ce7f23d8138441002fa31dca008acf47e6fd4721f741" +dependencies = [ + "nodrop", + "stable_deref_trait", +] + +[[package]] +name = "servo_arc" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d036d71a959e00c77a63538b90a6c2390969f9772b096ea837205c6bd0491a44" +dependencies = [ + "stable_deref_trait", +] + +[[package]] +name = "sha1" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "sha2" +version = "0.10.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "signal-hook-registry" +version = "1.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410" +dependencies = [ + "libc", +] + +[[package]] +name = "simd-adler32" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" + +[[package]] +name = "siphasher" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" + +[[package]] +name = "siphasher" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" + +[[package]] +name = "slab" +version = "0.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d" + +[[package]] +name = "smallvec" +version = "1.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" + +[[package]] +name = "socket2" +version = "0.5.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" +dependencies = [ + "libc", + "windows-sys 0.52.0", +] + +[[package]] +name = "softbuffer" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18051cdd562e792cad055119e0cdb2cfc137e44e3987532e0f9659a77931bb08" +dependencies = [ + "bytemuck", + "cfg_aliases", + "core-graphics", + "foreign-types 0.5.0", + "js-sys", + "log", + "objc2 0.5.2", + "objc2-foundation 0.2.2", + "objc2-quartz-core 0.2.2", + "raw-window-handle", + "redox_syscall", + "wasm-bindgen", + "web-sys", + "windows-sys 0.59.0", +] + +[[package]] +name = "soup3" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f" +dependencies = [ + "futures-channel", + "gio", + "glib", + "libc", + "soup3-sys", +] + +[[package]] +name = "soup3-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27" +dependencies = [ + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "stable_deref_trait" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" + +[[package]] +name = "static_assertions" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + +[[package]] +name = "string_cache" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" +dependencies = [ + "new_debug_unreachable", + "parking_lot", + "phf_shared 0.11.3", + "precomputed-hash", + "serde", +] + +[[package]] +name = "string_cache_codegen" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", + "proc-macro2", + "quote", +] + +[[package]] +name = "stringprep" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" +dependencies = [ + "unicode-bidi", + "unicode-normalization", + "unicode-properties", +] + +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + +[[package]] +name = "swift-rs" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7" +dependencies = [ + "base64 0.21.7", + "serde", + "serde_json", +] + +[[package]] +name = "syn" +version = "1.0.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "2.0.104" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "sync_wrapper" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" +dependencies = [ + "futures-core", +] + +[[package]] +name = "synstructure" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "system-configuration" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" +dependencies = [ + "bitflags 2.9.1", + "core-foundation 0.9.4", + "system-configuration-sys", +] + +[[package]] +name = "system-configuration-sys" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "system-deps" +version = "6.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" +dependencies = [ + "cfg-expr", + "heck 0.5.0", + "pkg-config", + "toml 0.8.23", + "version-compare", +] + +[[package]] +name = "tao" +version = "0.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49c380ca75a231b87b6c9dd86948f035012e7171d1a7c40a9c2890489a7ffd8a" +dependencies = [ + "bitflags 2.9.1", + "core-foundation 0.10.1", + "core-graphics", + "crossbeam-channel", + "dispatch", + "dlopen2", + "dpi", + "gdkwayland-sys", + "gdkx11-sys", + "gtk", + "jni", + "lazy_static", + "libc", + "log", + "ndk", + "ndk-context", + "ndk-sys", + "objc2 0.6.1", + "objc2-app-kit", + "objc2-foundation 0.3.1", + "once_cell", + "parking_lot", + "raw-window-handle", + "scopeguard", + "tao-macros", + "unicode-segmentation", + "url", + "windows", + "windows-core", + "windows-version", + "x11-dl", +] + +[[package]] +name = "tao-macros" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "target-lexicon" +version = "0.12.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" + +[[package]] +name = "tauri" +version = "2.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "124e129c9c0faa6bec792c5948c89e86c90094133b0b9044df0ce5f0a8efaa0d" +dependencies = [ + "anyhow", + "bytes", + "dirs 6.0.0", + "dunce", + "embed_plist", + "getrandom 0.3.3", + "glob", + "gtk", + "heck 0.5.0", + "http", + "jni", + "libc", + "log", + "mime", + "muda", + "objc2 0.6.1", + "objc2-app-kit", + "objc2-foundation 0.3.1", + "objc2-ui-kit", + "percent-encoding", + "plist", + "raw-window-handle", + "reqwest", + "serde", + "serde_json", + "serde_repr", + "serialize-to-javascript", + "swift-rs", + "tauri-build", + "tauri-macros", + "tauri-runtime", + "tauri-runtime-wry", + "tauri-utils", + "thiserror 2.0.12", + "tokio", + "tray-icon", + "url", + "urlpattern", + "webkit2gtk", + "webview2-com", + "window-vibrancy", + "windows", +] + +[[package]] +name = "tauri-build" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12f025c389d3adb83114bec704da973142e82fc6ec799c7c750c5e21cefaec83" +dependencies = [ + "anyhow", + "cargo_toml", + "dirs 6.0.0", + "glob", + "heck 0.5.0", + "json-patch", + "schemars 0.8.22", + "semver", + "serde", + "serde_json", + "tauri-utils", + "tauri-winres", + "toml 0.8.23", + "walkdir", +] + +[[package]] +name = "tauri-codegen" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f5df493a1075a241065bc865ed5ef8d0fbc1e76c7afdc0bf0eccfaa7d4f0e406" +dependencies = [ + "base64 0.22.1", + "brotli", + "ico", + "json-patch", + "plist", + "png", + "proc-macro2", + "quote", + "semver", + "serde", + "serde_json", + "sha2", + "syn 2.0.104", + "tauri-utils", + "thiserror 2.0.12", + "time", + "url", + "uuid", + "walkdir", +] + +[[package]] +name = "tauri-macros" +version = "2.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f237fbea5866fa5f2a60a21bea807a2d6e0379db070d89c3a10ac0f2d4649bbc" +dependencies = [ + "heck 0.5.0", + "proc-macro2", + "quote", + "syn 2.0.104", + "tauri-codegen", + "tauri-utils", +] + +[[package]] +name = "tauri-plugin" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d9a0bd00bf1930ad1a604d08b0eb6b2a9c1822686d65d7f4731a7723b8901d3" +dependencies = [ + "anyhow", + "glob", + "plist", + "schemars 0.8.22", + "serde", + "serde_json", + "tauri-utils", + "toml 0.8.23", + "walkdir", +] + +[[package]] +name = "tauri-plugin-opener" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ecee219f11cdac713ab32959db5d0cceec4810ba4f4458da992292ecf9660321" +dependencies = [ + "dunce", + "glob", + "objc2-app-kit", + "objc2-foundation 0.3.1", + "open", + "schemars 0.8.22", + "serde", + "serde_json", + "tauri", + "tauri-plugin", + "thiserror 2.0.12", + "url", + "windows", + "zbus 5.8.0", +] + +[[package]] +name = "tauri-runtime" +version = "2.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e7bb73d1bceac06c20b3f755b2c8a2cb13b20b50083084a8cf3700daf397ba4" +dependencies = [ + "cookie", + "dpi", + "gtk", + "http", + "jni", + "objc2 0.6.1", + "objc2-ui-kit", + "raw-window-handle", + "serde", + "serde_json", + "tauri-utils", + "thiserror 2.0.12", + "url", + "windows", +] + +[[package]] +name = "tauri-runtime-wry" +version = "2.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "902b5aa9035e16f342eb64f8bf06ccdc2808e411a2525ed1d07672fa4e780bad" +dependencies = [ + "gtk", + "http", + "jni", + "log", + "objc2 0.6.1", + "objc2-app-kit", + "objc2-foundation 0.3.1", + "once_cell", + "percent-encoding", + "raw-window-handle", + "softbuffer", + "tao", + "tauri-runtime", + "tauri-utils", + "url", + "webkit2gtk", + "webview2-com", + "windows", + "wry", +] + +[[package]] +name = "tauri-utils" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41743bbbeb96c3a100d234e5a0b60a46d5aa068f266160862c7afdbf828ca02e" +dependencies = [ + "anyhow", + "brotli", + "cargo_metadata", + "ctor", + "dunce", + "glob", + "html5ever 0.29.1", + "http", + "infer", + "json-patch", + "kuchikiki", + "log", + "memchr", + "phf 0.11.3", + "proc-macro2", + "quote", + "regex", + "schemars 0.8.22", + "semver", + "serde", + "serde-untagged", + "serde_json", + "serde_with", + "swift-rs", + "thiserror 2.0.12", + "toml 0.8.23", + "url", + "urlpattern", + "uuid", + "walkdir", +] + +[[package]] +name = "tauri-winres" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8d321dbc6f998d825ab3f0d62673e810c861aac2d0de2cc2c395328f1d113b4" +dependencies = [ + "embed-resource", + "indexmap 2.10.0", + "toml 0.8.23", +] + +[[package]] +name = "tempfile" +version = "3.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1" +dependencies = [ + "fastrand", + "getrandom 0.3.3", + "once_cell", + "rustix", + "windows-sys 0.59.0", +] + +[[package]] +name = "tendril" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" +dependencies = [ + "futf", + "mac", + "utf-8", +] + +[[package]] +name = "thiserror" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" +dependencies = [ + "thiserror-impl 1.0.69", +] + +[[package]] +name = "thiserror" +version = "2.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" +dependencies = [ + "thiserror-impl 2.0.12", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "time" +version = "0.3.41" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40" +dependencies = [ + "deranged", + "itoa", + "num-conv", + "powerfmt", + "serde", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c" + +[[package]] +name = "time-macros" +version = "0.2.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49" +dependencies = [ + "num-conv", + "time-core", +] + +[[package]] +name = "tinystr" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" +dependencies = [ + "displaydoc", + "zerovec", +] + +[[package]] +name = "tinyvec" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] +name = "tms_service" +version = "0.1.0" +dependencies = [ + "anyhow", + "html_scraper", + "reqwest", + "serde", + "serde_json", + "tokio", +] + +[[package]] +name = "tms_tools" +version = "0.1.7" +dependencies = [ + "chrono", + "dirs 5.0.1", + "lazy_static", + "reqwest", + "rfd", + "scraper", + "serde", + "serde_json", + "tauri", + "tauri-build", + "tauri-plugin-opener", + "tms_service", + "tokio", + "tokio-postgres", + "toml 0.8.23", +] + +[[package]] +name = "tokio" +version = "1.46.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17" +dependencies = [ + "backtrace", + "bytes", + "io-uring", + "libc", + "mio", + "parking_lot", + "pin-project-lite", + "signal-hook-registry", + "slab", + "socket2", + "tokio-macros", + "windows-sys 0.52.0", +] + +[[package]] +name = "tokio-macros" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "tokio-native-tls" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" +dependencies = [ + "native-tls", + "tokio", +] + +[[package]] +name = "tokio-postgres" +version = "0.7.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c95d533c83082bb6490e0189acaa0bbeef9084e60471b696ca6988cd0541fb0" +dependencies = [ + "async-trait", + "byteorder", + "bytes", + "fallible-iterator", + "futures-channel", + "futures-util", + "log", + "parking_lot", + "percent-encoding", + "phf 0.11.3", + "pin-project-lite", + "postgres-protocol", + "postgres-types", + "rand 0.9.1", + "socket2", + "tokio", + "tokio-util", + "whoami", +] + +[[package]] +name = "tokio-rustls" +version = "0.26.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b" +dependencies = [ + "rustls", + "tokio", +] + +[[package]] +name = "tokio-util" +version = "0.7.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "toml" +version = "0.8.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" +dependencies = [ + "serde", + "serde_spanned 0.6.9", + "toml_datetime 0.6.11", + "toml_edit 0.22.27", +] + +[[package]] +name = "toml" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed0aee96c12fa71097902e0bb061a5e1ebd766a6636bb605ba401c45c1650eac" +dependencies = [ + "indexmap 2.10.0", + "serde", + "serde_spanned 1.0.0", + "toml_datetime 0.7.0", + "toml_parser", + "toml_writer", + "winnow 0.7.12", +] + +[[package]] +name = "toml_datetime" +version = "0.6.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" +dependencies = [ + "serde", +] + +[[package]] +name = "toml_datetime" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3" +dependencies = [ + "serde", +] + +[[package]] +name = "toml_edit" +version = "0.19.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" +dependencies = [ + "indexmap 2.10.0", + "toml_datetime 0.6.11", + "winnow 0.5.40", +] + +[[package]] +name = "toml_edit" +version = "0.20.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" +dependencies = [ + "indexmap 2.10.0", + "toml_datetime 0.6.11", + "winnow 0.5.40", +] + +[[package]] +name = "toml_edit" +version = "0.22.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" +dependencies = [ + "indexmap 2.10.0", + "serde", + "serde_spanned 0.6.9", + "toml_datetime 0.6.11", + "toml_write", + "winnow 0.7.12", +] + +[[package]] +name = "toml_parser" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97200572db069e74c512a14117b296ba0a80a30123fbbb5aa1f4a348f639ca30" +dependencies = [ + "winnow 0.7.12", +] + +[[package]] +name = "toml_write" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" + +[[package]] +name = "toml_writer" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcc842091f2def52017664b53082ecbbeb5c7731092bad69d2c63050401dfd64" + +[[package]] +name = "tower" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper", + "tokio", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-http" +version = "0.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" +dependencies = [ + "bitflags 2.9.1", + "bytes", + "futures-util", + "http", + "http-body", + "iri-string", + "pin-project-lite", + "tower", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-layer" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" + +[[package]] +name = "tower-service" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" + +[[package]] +name = "tracing" +version = "0.1.41" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" +dependencies = [ + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "tracing-core" +version = "0.1.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" +dependencies = [ + "once_cell", +] + +[[package]] +name = "tray-icon" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2da75ec677957aa21f6e0b361df0daab972f13a5bee3606de0638fd4ee1c666a" +dependencies = [ + "crossbeam-channel", + "dirs 6.0.0", + "libappindicator", + "muda", + "objc2 0.6.1", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-core-graphics", + "objc2-foundation 0.3.1", + "once_cell", + "png", + "serde", + "thiserror 2.0.12", + "windows-sys 0.59.0", +] + +[[package]] +name = "try-lock" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" + +[[package]] +name = "typeid" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" + +[[package]] +name = "typenum" +version = "1.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" + +[[package]] +name = "uds_windows" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" +dependencies = [ + "memoffset", + "tempfile", + "winapi", +] + +[[package]] +name = "unic-char-property" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" +dependencies = [ + "unic-char-range", +] + +[[package]] +name = "unic-char-range" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" + +[[package]] +name = "unic-common" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" + +[[package]] +name = "unic-ucd-ident" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987" +dependencies = [ + "unic-char-property", + "unic-char-range", + "unic-ucd-version", +] + +[[package]] +name = "unic-ucd-version" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" +dependencies = [ + "unic-common", +] + +[[package]] +name = "unicode-bidi" +version = "0.3.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" + +[[package]] +name = "unicode-ident" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" + +[[package]] +name = "unicode-normalization" +version = "0.1.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" +dependencies = [ + "tinyvec", +] + +[[package]] +name = "unicode-properties" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0" + +[[package]] +name = "unicode-segmentation" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" + +[[package]] +name = "unicode-width" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c" + +[[package]] +name = "untrusted" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + +[[package]] +name = "url" +version = "2.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", + "serde", +] + +[[package]] +name = "urlencoding" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" + +[[package]] +name = "urlpattern" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d" +dependencies = [ + "regex", + "serde", + "unic-ucd-ident", + "url", +] + +[[package]] +name = "utf-8" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" + +[[package]] +name = "utf8_iter" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" + +[[package]] +name = "uuid" +version = "1.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d" +dependencies = [ + "getrandom 0.3.3", + "js-sys", + "serde", + "wasm-bindgen", +] + +[[package]] +name = "vcpkg" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + +[[package]] +name = "version-compare" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b" + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "vswhom" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b" +dependencies = [ + "libc", + "vswhom-sys", +] + +[[package]] +name = "vswhom-sys" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150" +dependencies = [ + "cc", + "libc", +] + +[[package]] +name = "walkdir" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" +dependencies = [ + "same-file", + "winapi-util", +] + +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.9.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasi" +version = "0.14.2+wasi-0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" +dependencies = [ + "wit-bindgen-rt", +] + +[[package]] +name = "wasite" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" + +[[package]] +name = "wasm-bindgen" +version = "0.2.100" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" +dependencies = [ + "cfg-if", + "once_cell", + "rustversion", + "wasm-bindgen-macro", +] + +[[package]] +name = "wasm-bindgen-backend" +version = "0.2.100" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" +dependencies = [ + "bumpalo", + "log", + "proc-macro2", + "quote", + "syn 2.0.104", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.50" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" +dependencies = [ + "cfg-if", + "js-sys", + "once_cell", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.100" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.100" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", + "wasm-bindgen-backend", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.100" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "wasm-streams" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" +dependencies = [ + "futures-util", + "js-sys", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "web-sys" +version = "0.3.77" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "webkit2gtk" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76b1bc1e54c581da1e9f179d0b38512ba358fb1af2d634a1affe42e37172361a" +dependencies = [ + "bitflags 1.3.2", + "cairo-rs", + "gdk", + "gdk-sys", + "gio", + "gio-sys", + "glib", + "glib-sys", + "gobject-sys", + "gtk", + "gtk-sys", + "javascriptcore-rs", + "libc", + "once_cell", + "soup3", + "webkit2gtk-sys", +] + +[[package]] +name = "webkit2gtk-sys" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62daa38afc514d1f8f12b8693d30d5993ff77ced33ce30cd04deebc267a6d57c" +dependencies = [ + "bitflags 1.3.2", + "cairo-sys-rs", + "gdk-sys", + "gio-sys", + "glib-sys", + "gobject-sys", + "gtk-sys", + "javascriptcore-rs-sys", + "libc", + "pkg-config", + "soup3-sys", + "system-deps", +] + +[[package]] +name = "webview2-com" +version = "0.38.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4ba622a989277ef3886dd5afb3e280e3dd6d974b766118950a08f8f678ad6a4" +dependencies = [ + "webview2-com-macros", + "webview2-com-sys", + "windows", + "windows-core", + "windows-implement", + "windows-interface", +] + +[[package]] +name = "webview2-com-macros" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d228f15bba3b9d56dde8bddbee66fa24545bd17b48d5128ccf4a8742b18e431" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "webview2-com-sys" +version = "0.38.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36695906a1b53a3bf5c4289621efedac12b73eeb0b89e7e1a89b517302d5d75c" +dependencies = [ + "thiserror 2.0.12", + "windows", + "windows-core", +] + +[[package]] +name = "whoami" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6994d13118ab492c3c80c1f81928718159254c53c472bf9ce36f8dae4add02a7" +dependencies = [ + "redox_syscall", + "wasite", + "web-sys", +] + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-util" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" +dependencies = [ + "windows-sys 0.59.0", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "window-vibrancy" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c" +dependencies = [ + "objc2 0.6.1", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation 0.3.1", + "raw-window-handle", + "windows-sys 0.59.0", + "windows-version", +] + +[[package]] +name = "windows" +version = "0.61.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" +dependencies = [ + "windows-collections", + "windows-core", + "windows-future", + "windows-link", + "windows-numerics", +] + +[[package]] +name = "windows-collections" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" +dependencies = [ + "windows-core", +] + +[[package]] +name = "windows-core" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-link", + "windows-result", + "windows-strings", +] + +[[package]] +name = "windows-future" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" +dependencies = [ + "windows-core", + "windows-link", + "windows-threading", +] + +[[package]] +name = "windows-implement" +version = "0.60.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "windows-interface" +version = "0.59.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "windows-link" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" + +[[package]] +name = "windows-numerics" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" +dependencies = [ + "windows-core", + "windows-link", +] + +[[package]] +name = "windows-registry" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e" +dependencies = [ + "windows-link", + "windows-result", + "windows-strings", +] + +[[package]] +name = "windows-result" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-strings" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-sys" +version = "0.45.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" +dependencies = [ + "windows-targets 0.42.2", +] + +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.5", +] + +[[package]] +name = "windows-sys" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" +dependencies = [ + "windows-targets 0.53.2", +] + +[[package]] +name = "windows-targets" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" +dependencies = [ + "windows_aarch64_gnullvm 0.42.2", + "windows_aarch64_msvc 0.42.2", + "windows_i686_gnu 0.42.2", + "windows_i686_msvc 0.42.2", + "windows_x86_64_gnu 0.42.2", + "windows_x86_64_gnullvm 0.42.2", + "windows_x86_64_msvc 0.42.2", +] + +[[package]] +name = "windows-targets" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" +dependencies = [ + "windows_aarch64_gnullvm 0.48.5", + "windows_aarch64_msvc 0.48.5", + "windows_i686_gnu 0.48.5", + "windows_i686_msvc 0.48.5", + "windows_x86_64_gnu 0.48.5", + "windows_x86_64_gnullvm 0.48.5", + "windows_x86_64_msvc 0.48.5", +] + +[[package]] +name = "windows-targets" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +dependencies = [ + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm 0.52.6", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", +] + +[[package]] +name = "windows-targets" +version = "0.53.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef" +dependencies = [ + "windows_aarch64_gnullvm 0.53.0", + "windows_aarch64_msvc 0.53.0", + "windows_i686_gnu 0.53.0", + "windows_i686_gnullvm 0.53.0", + "windows_i686_msvc 0.53.0", + "windows_x86_64_gnu 0.53.0", + "windows_x86_64_gnullvm 0.53.0", + "windows_x86_64_msvc 0.53.0", +] + +[[package]] +name = "windows-threading" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-version" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e04a5c6627e310a23ad2358483286c7df260c964eb2d003d8efd6d0f4e79265c" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" + +[[package]] +name = "windows_i686_gnu" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" + +[[package]] +name = "windows_i686_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnu" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" + +[[package]] +name = "windows_i686_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" + +[[package]] +name = "windows_i686_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + +[[package]] +name = "windows_i686_msvc" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" + +[[package]] +name = "winnow" +version = "0.5.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" +dependencies = [ + "memchr", +] + +[[package]] +name = "winnow" +version = "0.7.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95" +dependencies = [ + "memchr", +] + +[[package]] +name = "winreg" +version = "0.55.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97" +dependencies = [ + "cfg-if", + "windows-sys 0.59.0", +] + +[[package]] +name = "wit-bindgen-rt" +version = "0.39.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" +dependencies = [ + "bitflags 2.9.1", +] + +[[package]] +name = "writeable" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" + +[[package]] +name = "wry" +version = "0.52.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12a714d9ba7075aae04a6e50229d6109e3d584774b99a6a8c60de1698ca111b9" +dependencies = [ + "base64 0.22.1", + "block2 0.6.1", + "cookie", + "crossbeam-channel", + "dpi", + "dunce", + "gdkx11", + "gtk", + "html5ever 0.29.1", + "http", + "javascriptcore-rs", + "jni", + "kuchikiki", + "libc", + "ndk", + "objc2 0.6.1", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation 0.3.1", + "objc2-ui-kit", + "objc2-web-kit", + "once_cell", + "percent-encoding", + "raw-window-handle", + "sha2", + "soup3", + "tao-macros", + "thiserror 2.0.12", + "url", + "webkit2gtk", + "webkit2gtk-sys", + "webview2-com", + "windows", + "windows-core", + "windows-version", + "x11-dl", +] + +[[package]] +name = "x11" +version = "2.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e" +dependencies = [ + "libc", + "pkg-config", +] + +[[package]] +name = "x11-dl" +version = "2.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" +dependencies = [ + "libc", + "once_cell", + "pkg-config", +] + +[[package]] +name = "xdg-home" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec1cdab258fb55c0da61328dc52c8764709b249011b2cad0454c72f0bf10a1f6" +dependencies = [ + "libc", + "windows-sys 0.59.0", +] + +[[package]] +name = "yoke" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" +dependencies = [ + "serde", + "stable_deref_trait", + "yoke-derive", + "zerofrom", +] + +[[package]] +name = "yoke-derive" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", + "synstructure", +] + +[[package]] +name = "zbus" +version = "4.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb97012beadd29e654708a0fdb4c84bc046f537aecfde2c3ee0a9e4b4d48c725" +dependencies = [ + "async-broadcast", + "async-executor", + "async-fs", + "async-io", + "async-lock", + "async-process", + "async-recursion", + "async-task", + "async-trait", + "blocking", + "enumflags2", + "event-listener", + "futures-core", + "futures-sink", + "futures-util", + "hex", + "nix 0.29.0", + "ordered-stream", + "rand 0.8.5", + "serde", + "serde_repr", + "sha1", + "static_assertions", + "tracing", + "uds_windows", + "windows-sys 0.52.0", + "xdg-home", + "zbus_macros 4.4.0", + "zbus_names 3.0.0", + "zvariant 4.2.0", +] + +[[package]] +name = "zbus" +version = "5.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "597f45e98bc7e6f0988276012797855613cd8269e23b5be62cc4e5d28b7e515d" +dependencies = [ + "async-broadcast", + "async-executor", + "async-io", + "async-lock", + "async-process", + "async-recursion", + "async-task", + "async-trait", + "blocking", + "enumflags2", + "event-listener", + "futures-core", + "futures-lite", + "hex", + "nix 0.30.1", + "ordered-stream", + "serde", + "serde_repr", + "tracing", + "uds_windows", + "windows-sys 0.59.0", + "winnow 0.7.12", + "zbus_macros 5.8.0", + "zbus_names 4.2.0", + "zvariant 5.6.0", +] + +[[package]] +name = "zbus_macros" +version = "4.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "267db9407081e90bbfa46d841d3cbc60f59c0351838c4bc65199ecd79ab1983e" +dependencies = [ + "proc-macro-crate 3.3.0", + "proc-macro2", + "quote", + "syn 2.0.104", + "zvariant_utils 2.1.0", +] + +[[package]] +name = "zbus_macros" +version = "5.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5c8e4e14dcdd9d97a98b189cd1220f30e8394ad271e8c987da84f73693862c2" +dependencies = [ + "proc-macro-crate 3.3.0", + "proc-macro2", + "quote", + "syn 2.0.104", + "zbus_names 4.2.0", + "zvariant 5.6.0", + "zvariant_utils 3.2.0", +] + +[[package]] +name = "zbus_names" +version = "3.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b9b1fef7d021261cc16cba64c351d291b715febe0fa10dc3a443ac5a5022e6c" +dependencies = [ + "serde", + "static_assertions", + "zvariant 4.2.0", +] + +[[package]] +name = "zbus_names" +version = "4.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7be68e64bf6ce8db94f63e72f0c7eb9a60d733f7e0499e628dfab0f84d6bcb97" +dependencies = [ + "serde", + "static_assertions", + "winnow 0.7.12", + "zvariant 5.6.0", +] + +[[package]] +name = "zerocopy" +version = "0.8.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.8.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "zerofrom" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" +dependencies = [ + "zerofrom-derive", +] + +[[package]] +name = "zerofrom-derive" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", + "synstructure", +] + +[[package]] +name = "zeroize" +version = "1.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" + +[[package]] +name = "zerotrie" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" +dependencies = [ + "displaydoc", + "yoke", + "zerofrom", +] + +[[package]] +name = "zerovec" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428" +dependencies = [ + "yoke", + "zerofrom", + "zerovec-derive", +] + +[[package]] +name = "zerovec-derive" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "zvariant" +version = "4.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2084290ab9a1c471c38fc524945837734fbf124487e105daec2bb57fd48c81fe" +dependencies = [ + "endi", + "enumflags2", + "serde", + "static_assertions", + "url", + "zvariant_derive 4.2.0", +] + +[[package]] +name = "zvariant" +version = "5.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d91b3680bb339216abd84714172b5138a4edac677e641ef17e1d8cb1b3ca6e6f" +dependencies = [ + "endi", + "enumflags2", + "serde", + "winnow 0.7.12", + "zvariant_derive 5.6.0", + "zvariant_utils 3.2.0", +] + +[[package]] +name = "zvariant_derive" +version = "4.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73e2ba546bda683a90652bac4a279bc146adad1386f25379cf73200d2002c449" +dependencies = [ + "proc-macro-crate 3.3.0", + "proc-macro2", + "quote", + "syn 2.0.104", + "zvariant_utils 2.1.0", +] + +[[package]] +name = "zvariant_derive" +version = "5.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a8c68501be459a8dbfffbe5d792acdd23b4959940fc87785fb013b32edbc208" +dependencies = [ + "proc-macro-crate 3.3.0", + "proc-macro2", + "quote", + "syn 2.0.104", + "zvariant_utils 3.2.0", +] + +[[package]] +name = "zvariant_utils" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c51bcff7cc3dbb5055396bcf774748c3dab426b4b8659046963523cee4808340" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "zvariant_utils" +version = "3.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e16edfee43e5d7b553b77872d99bc36afdda75c223ca7ad5e3fbecd82ca5fc34" +dependencies = [ + "proc-macro2", + "quote", + "serde", + "static_assertions", + "syn 2.0.104", + "winnow 0.7.12", +] diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml new file mode 100644 index 0000000..9d4417c --- /dev/null +++ b/src-tauri/Cargo.toml @@ -0,0 +1,35 @@ +[package] +name = "tms_tools" +version = "0.1.7" +description = "A Tauri App" +authors = ["you"] +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[lib] +# The `_lib` suffix may seem redundant but it is necessary +# to make the lib name unique and wouldn't conflict with the bin name. +# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519 +name = "tms_tools_lib" +crate-type = ["staticlib", "cdylib", "rlib"] + +[build-dependencies] +tauri-build = { version = "2", features = [] } + +[dependencies] +tauri = { version = "2", features = [] } +tauri-plugin-opener = "2" +serde = { version = "1", features = ["derive"] } +serde_json = "1" +tokio-postgres = { version = "0.7.10", features = ["with-chrono-0_4"] } +tokio = { version = "1", features = ["full"] } +chrono = { version = "0.4", features = ["serde"] } +reqwest = { version = "0.12.22", features = ["json", "cookies"] } +lazy_static = "1.4.0" +scraper = "0.19.0" +tms_service = { path = "./tms_service" } +dirs = "5" +toml = "0.8" +rfd = "0.14" + diff --git a/src-tauri/build.rs b/src-tauri/build.rs new file mode 100644 index 0000000..d860e1e --- /dev/null +++ b/src-tauri/build.rs @@ -0,0 +1,3 @@ +fn main() { + tauri_build::build() +} diff --git a/src-tauri/capabilities/default.json b/src-tauri/capabilities/default.json new file mode 100644 index 0000000..4cdbf49 --- /dev/null +++ b/src-tauri/capabilities/default.json @@ -0,0 +1,10 @@ +{ + "$schema": "../gen/schemas/desktop-schema.json", + "identifier": "default", + "description": "Capability for the main window", + "windows": ["main"], + "permissions": [ + "core:default", + "opener:default" + ] +} diff --git a/src-tauri/gen/apple/.gitignore b/src-tauri/gen/apple/.gitignore new file mode 100644 index 0000000..6726e2f --- /dev/null +++ b/src-tauri/gen/apple/.gitignore @@ -0,0 +1,3 @@ +xcuserdata/ +build/ +Externals/ diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png new file mode 100644 index 0000000..a6ac2a8 Binary files /dev/null and b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png differ diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png new file mode 100644 index 0000000..2869541 Binary files /dev/null and b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png differ diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png new file mode 100644 index 0000000..2869541 Binary files /dev/null and b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png differ diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png new file mode 100644 index 0000000..cf265a4 Binary files /dev/null and b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png differ diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png new file mode 100644 index 0000000..29c9746 Binary files /dev/null and b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png differ diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png new file mode 100644 index 0000000..a4e68c8 Binary files /dev/null and b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png differ diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png new file mode 100644 index 0000000..a4e68c8 Binary files /dev/null and b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png differ diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png new file mode 100644 index 0000000..e4adcbc Binary files /dev/null and b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png differ diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png new file mode 100644 index 0000000..2869541 Binary files /dev/null and b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png differ diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png new file mode 100644 index 0000000..a414e65 Binary files /dev/null and b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png differ diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png new file mode 100644 index 0000000..a414e65 Binary files /dev/null and b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png differ diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png new file mode 100644 index 0000000..a0807e5 Binary files /dev/null and b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png differ diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png new file mode 100644 index 0000000..704c929 Binary files /dev/null and b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png differ diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png new file mode 100644 index 0000000..a0807e5 Binary files /dev/null and b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png differ diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png new file mode 100644 index 0000000..2a9fbc2 Binary files /dev/null and b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png differ diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png new file mode 100644 index 0000000..2cdf184 Binary files /dev/null and b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png differ diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png new file mode 100644 index 0000000..4723e4b Binary files /dev/null and b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png differ diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png new file mode 100644 index 0000000..f26fee4 Binary files /dev/null and b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png differ diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/Contents.json b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..90eea7e --- /dev/null +++ b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,116 @@ +{ + "images" : [ + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "AppIcon-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "AppIcon-20x20@3x.png", + "scale" : "3x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "AppIcon-29x29@2x-1.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "AppIcon-29x29@3x.png", + "scale" : "3x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "AppIcon-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "AppIcon-40x40@3x.png", + "scale" : "3x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "AppIcon-60x60@2x.png", + "scale" : "2x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "AppIcon-60x60@3x.png", + "scale" : "3x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "AppIcon-20x20@1x.png", + "scale" : "1x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "AppIcon-20x20@2x-1.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "AppIcon-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "AppIcon-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "AppIcon-40x40@1x.png", + "scale" : "1x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "AppIcon-40x40@2x-1.png", + "scale" : "2x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "AppIcon-76x76@1x.png", + "scale" : "1x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "AppIcon-76x76@2x.png", + "scale" : "2x" + }, + { + "size" : "83.5x83.5", + "idiom" : "ipad", + "filename" : "AppIcon-83.5x83.5@2x.png", + "scale" : "2x" + }, + { + "size" : "1024x1024", + "idiom" : "ios-marketing", + "filename" : "AppIcon-512@2x.png", + "scale" : "1x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} \ No newline at end of file diff --git a/src-tauri/gen/apple/Assets.xcassets/Contents.json b/src-tauri/gen/apple/Assets.xcassets/Contents.json new file mode 100644 index 0000000..da4a164 --- /dev/null +++ b/src-tauri/gen/apple/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + } +} \ No newline at end of file diff --git a/src-tauri/gen/apple/ExportOptions.plist b/src-tauri/gen/apple/ExportOptions.plist new file mode 100644 index 0000000..0428a17 --- /dev/null +++ b/src-tauri/gen/apple/ExportOptions.plist @@ -0,0 +1,8 @@ + + + + + method + debugging + + diff --git a/src-tauri/gen/apple/LaunchScreen.storyboard b/src-tauri/gen/apple/LaunchScreen.storyboard new file mode 100644 index 0000000..81b5f90 --- /dev/null +++ b/src-tauri/gen/apple/LaunchScreen.storyboard @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src-tauri/gen/apple/Podfile b/src-tauri/gen/apple/Podfile new file mode 100644 index 0000000..93f3b4c --- /dev/null +++ b/src-tauri/gen/apple/Podfile @@ -0,0 +1,21 @@ +# Uncomment the next line to define a global platform for your project + +target 'tms_tools_iOS' do +platform :ios, '13.0' + # Pods for tms_tools_iOS +end + +target 'tms_tools_macOS' do +platform :osx, '11.0' + # Pods for tms_tools_macOS +end + +# Delete the deployment target for iOS and macOS, causing it to be inherited from the Podfile +post_install do |installer| + installer.pods_project.targets.each do |target| + target.build_configurations.each do |config| + config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET' + config.build_settings.delete 'MACOSX_DEPLOYMENT_TARGET' + end + end +end diff --git a/src-tauri/gen/apple/Sources/tms_tools/bindings/bindings.h b/src-tauri/gen/apple/Sources/tms_tools/bindings/bindings.h new file mode 100644 index 0000000..5152200 --- /dev/null +++ b/src-tauri/gen/apple/Sources/tms_tools/bindings/bindings.h @@ -0,0 +1,8 @@ +#pragma once + +namespace ffi { + extern "C" { + void start_app(); + } +} + diff --git a/src-tauri/gen/apple/Sources/tms_tools/main.mm b/src-tauri/gen/apple/Sources/tms_tools/main.mm new file mode 100644 index 0000000..7793a9d --- /dev/null +++ b/src-tauri/gen/apple/Sources/tms_tools/main.mm @@ -0,0 +1,6 @@ +#include "bindings/bindings.h" + +int main(int argc, char * argv[]) { + ffi::start_app(); + return 0; +} diff --git a/src-tauri/gen/apple/project.yml b/src-tauri/gen/apple/project.yml new file mode 100644 index 0000000..4be32f9 --- /dev/null +++ b/src-tauri/gen/apple/project.yml @@ -0,0 +1,88 @@ +name: tms_tools +options: + bundleIdPrefix: com.tms-tools.app + deploymentTarget: + iOS: 13.0 +fileGroups: [../../src] +configs: + debug: debug + release: release +settingGroups: + app: + base: + PRODUCT_NAME: tms_tools + PRODUCT_BUNDLE_IDENTIFIER: com.tms-tools.app +targetTemplates: + app: + type: application + sources: + - path: Sources + scheme: + environmentVariables: + RUST_BACKTRACE: full + RUST_LOG: info + settings: + groups: [app] +targets: + tms_tools_iOS: + type: application + platform: iOS + sources: + - path: Sources + - path: Assets.xcassets + - path: Externals + - path: tms_tools_iOS + - path: assets + buildPhase: resources + type: folder + - path: LaunchScreen.storyboard + info: + path: tms_tools_iOS/Info.plist + properties: + LSRequiresIPhoneOS: true + UILaunchStoryboardName: LaunchScreen + UIRequiredDeviceCapabilities: [arm64, metal] + UISupportedInterfaceOrientations: + - UIInterfaceOrientationPortrait + - UIInterfaceOrientationLandscapeLeft + - UIInterfaceOrientationLandscapeRight + UISupportedInterfaceOrientations~ipad: + - UIInterfaceOrientationPortrait + - UIInterfaceOrientationPortraitUpsideDown + - UIInterfaceOrientationLandscapeLeft + - UIInterfaceOrientationLandscapeRight + CFBundleShortVersionString: 0.1.0 + CFBundleVersion: 0.1.0 + entitlements: + path: tms_tools_iOS/tms_tools_iOS.entitlements + scheme: + environmentVariables: + RUST_BACKTRACE: full + RUST_LOG: info + settings: + base: + ENABLE_BITCODE: false + ARCHS: [arm64] + VALID_ARCHS: arm64 + LIBRARY_SEARCH_PATHS[arch=x86_64]: $(inherited) $(PROJECT_DIR)/Externals/x86_64/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME) + LIBRARY_SEARCH_PATHS[arch=arm64]: $(inherited) $(PROJECT_DIR)/Externals/arm64/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME) + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES: true + EXCLUDED_ARCHS[sdk=iphoneos*]: x86_64 + groups: [app] + dependencies: + - framework: libapp.a + embed: false + - sdk: CoreGraphics.framework + - sdk: Metal.framework + - sdk: MetalKit.framework + - sdk: QuartzCore.framework + - sdk: Security.framework + - sdk: UIKit.framework + - sdk: WebKit.framework + preBuildScripts: + - script: pnpm tauri ios xcode-script -v --platform ${PLATFORM_DISPLAY_NAME:?} --sdk-root ${SDKROOT:?} --framework-search-paths "${FRAMEWORK_SEARCH_PATHS:?}" --header-search-paths "${HEADER_SEARCH_PATHS:?}" --gcc-preprocessor-definitions "${GCC_PREPROCESSOR_DEFINITIONS:-}" --configuration ${CONFIGURATION:?} ${FORCE_COLOR} ${ARCHS:?} + name: Build Rust Code + basedOnDependencyAnalysis: false + outputFiles: + - $(SRCROOT)/Externals/x86_64/${CONFIGURATION}/libapp.a + - $(SRCROOT)/Externals/arm64/${CONFIGURATION}/libapp.a \ No newline at end of file diff --git a/src-tauri/gen/apple/tms_tools.xcodeproj/project.pbxproj b/src-tauri/gen/apple/tms_tools.xcodeproj/project.pbxproj new file mode 100644 index 0000000..f6c522f --- /dev/null +++ b/src-tauri/gen/apple/tms_tools.xcodeproj/project.pbxproj @@ -0,0 +1,479 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 63; + objects = { + +/* Begin PBXBuildFile section */ + 16C0382A05EE0FA940D94A71 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D8846E3DEDAC95F10500FA4 /* WebKit.framework */; }; + 263850EACD78A555E18FEF8F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FAF2EC56F166678E35C5F995 /* CoreGraphics.framework */; }; + 3193426930E08C8624A614BC /* libapp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1EE11360BD978337941837F2 /* libapp.a */; }; + 32C7B8271D85938A7C006DAE /* main.mm in Sources */ = {isa = PBXBuildFile; fileRef = 693E7FBED3DB4E67DC5A4114 /* main.mm */; }; + 40200D4F8CA0DC447C96DC35 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BB77268B0728E4C720294665 /* UIKit.framework */; }; + 413FA7AA1ABA7B60EC365737 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9251C2E3341991181836C9AF /* QuartzCore.framework */; }; + 5D4F63C36BEA5C80062544C3 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC49EBEB293D00F658EA802E /* Security.framework */; }; + 9E41118D9C0F1228B20F6E3D /* Metal.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 957F6826E7C6129193574ACF /* Metal.framework */; }; + A76E29741076590962BE9F78 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9D662FCEE1457CFD598D4449 /* Assets.xcassets */; }; + AD4969A3D87EA641BB1009FC /* assets in Resources */ = {isa = PBXBuildFile; fileRef = B18D9472E7EAB9A9538635D4 /* assets */; }; + DB52F73D0B8E696301E16476 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = B7A70B9FA20671E7ABA8BB12 /* LaunchScreen.storyboard */; }; + DCAE474CB5EED3306DAD23A7 /* MetalKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BC3AB1E7A42D4192BD5F3A82 /* MetalKit.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + 1EE11360BD978337941837F2 /* libapp.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libapp.a; sourceTree = ""; }; + 693E7FBED3DB4E67DC5A4114 /* main.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = main.mm; sourceTree = ""; }; + 754BC070030D2ABDAC1BCF83 /* tms_tools_iOS.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = tms_tools_iOS.entitlements; sourceTree = ""; }; + 774A17F5CC9152909131F3B7 /* bindings.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bindings.h; sourceTree = ""; }; + 9251C2E3341991181836C9AF /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; }; + 957F6826E7C6129193574ACF /* Metal.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Metal.framework; path = System/Library/Frameworks/Metal.framework; sourceTree = SDKROOT; }; + 9D662FCEE1457CFD598D4449 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 9D8846E3DEDAC95F10500FA4 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; }; + AC49EBEB293D00F658EA802E /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; }; + B18D9472E7EAB9A9538635D4 /* assets */ = {isa = PBXFileReference; lastKnownFileType = folder; path = assets; sourceTree = SOURCE_ROOT; }; + B7A70B9FA20671E7ABA8BB12 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = ""; }; + BB77268B0728E4C720294665 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; + BC3AB1E7A42D4192BD5F3A82 /* MetalKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MetalKit.framework; path = System/Library/Frameworks/MetalKit.framework; sourceTree = SDKROOT; }; + C8AB75DFE7FE793334248D6A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + ED401B6BC058F20420A89008 /* lib.rs */ = {isa = PBXFileReference; lastKnownFileType = text; path = lib.rs; sourceTree = ""; }; + EDC0AFEAA0778C09746DC01A /* main.rs */ = {isa = PBXFileReference; lastKnownFileType = text; path = main.rs; sourceTree = ""; }; + F1C7C2C219F2D584702B9E96 /* tms_tools.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = tms_tools.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FAF2EC56F166678E35C5F995 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + CC1AE668220AE53AD1134997 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 3193426930E08C8624A614BC /* libapp.a in Frameworks */, + 263850EACD78A555E18FEF8F /* CoreGraphics.framework in Frameworks */, + 9E41118D9C0F1228B20F6E3D /* Metal.framework in Frameworks */, + DCAE474CB5EED3306DAD23A7 /* MetalKit.framework in Frameworks */, + 413FA7AA1ABA7B60EC365737 /* QuartzCore.framework in Frameworks */, + 5D4F63C36BEA5C80062544C3 /* Security.framework in Frameworks */, + 40200D4F8CA0DC447C96DC35 /* UIKit.framework in Frameworks */, + 16C0382A05EE0FA940D94A71 /* WebKit.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 03010391BBD92976483F6575 /* tms_tools */ = { + isa = PBXGroup; + children = ( + 693E7FBED3DB4E67DC5A4114 /* main.mm */, + 5513995C8AFE3D830A045770 /* bindings */, + ); + path = tms_tools; + sourceTree = ""; + }; + 0758A26BD78CE5B329B2B6E0 = { + isa = PBXGroup; + children = ( + B18D9472E7EAB9A9538635D4 /* assets */, + 9D662FCEE1457CFD598D4449 /* Assets.xcassets */, + B7A70B9FA20671E7ABA8BB12 /* LaunchScreen.storyboard */, + A08767092031741E021F5BE9 /* Externals */, + E5AD8742DF35501910619C58 /* Sources */, + E11FAD964C0E244A22C994F8 /* src */, + 2DC22078A626AF15961B756C /* tms_tools_iOS */, + E6758A5AAD16AE988E635447 /* Frameworks */, + B1F0D9A5FA986DB00FEACD6E /* Products */, + ); + sourceTree = ""; + }; + 2DC22078A626AF15961B756C /* tms_tools_iOS */ = { + isa = PBXGroup; + children = ( + C8AB75DFE7FE793334248D6A /* Info.plist */, + 754BC070030D2ABDAC1BCF83 /* tms_tools_iOS.entitlements */, + ); + path = tms_tools_iOS; + sourceTree = ""; + }; + 5513995C8AFE3D830A045770 /* bindings */ = { + isa = PBXGroup; + children = ( + 774A17F5CC9152909131F3B7 /* bindings.h */, + ); + path = bindings; + sourceTree = ""; + }; + A08767092031741E021F5BE9 /* Externals */ = { + isa = PBXGroup; + children = ( + ); + path = Externals; + sourceTree = ""; + }; + B1F0D9A5FA986DB00FEACD6E /* Products */ = { + isa = PBXGroup; + children = ( + F1C7C2C219F2D584702B9E96 /* tms_tools.app */, + ); + name = Products; + sourceTree = ""; + }; + E11FAD964C0E244A22C994F8 /* src */ = { + isa = PBXGroup; + children = ( + ED401B6BC058F20420A89008 /* lib.rs */, + EDC0AFEAA0778C09746DC01A /* main.rs */, + ); + name = src; + path = ../../src; + sourceTree = ""; + }; + E5AD8742DF35501910619C58 /* Sources */ = { + isa = PBXGroup; + children = ( + 03010391BBD92976483F6575 /* tms_tools */, + ); + path = Sources; + sourceTree = ""; + }; + E6758A5AAD16AE988E635447 /* Frameworks */ = { + isa = PBXGroup; + children = ( + FAF2EC56F166678E35C5F995 /* CoreGraphics.framework */, + 1EE11360BD978337941837F2 /* libapp.a */, + 957F6826E7C6129193574ACF /* Metal.framework */, + BC3AB1E7A42D4192BD5F3A82 /* MetalKit.framework */, + 9251C2E3341991181836C9AF /* QuartzCore.framework */, + AC49EBEB293D00F658EA802E /* Security.framework */, + BB77268B0728E4C720294665 /* UIKit.framework */, + 9D8846E3DEDAC95F10500FA4 /* WebKit.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + C4570604E43ACE2844F860C1 /* tms_tools_iOS */ = { + isa = PBXNativeTarget; + buildConfigurationList = A6C9192EF59DFAF03F39F944 /* Build configuration list for PBXNativeTarget "tms_tools_iOS" */; + buildPhases = ( + 17180587CEACD68EC9E09609 /* Build Rust Code */, + F93994E84D0C9E03E17AEC2E /* Sources */, + FE0476C77900E9CDC952596C /* Resources */, + CC1AE668220AE53AD1134997 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = tms_tools_iOS; + packageProductDependencies = ( + ); + productName = tms_tools_iOS; + productReference = F1C7C2C219F2D584702B9E96 /* tms_tools.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 4D5462130D5279B3AA86558A /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + LastUpgradeCheck = 1430; + }; + buildConfigurationList = DD6CC545D44A93B50463ECD2 /* Build configuration list for PBXProject "tms_tools" */; + compatibilityVersion = "Xcode 14.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + Base, + en, + ); + mainGroup = 0758A26BD78CE5B329B2B6E0; + minimizedProjectReferenceProxies = 1; + projectDirPath = ""; + projectRoot = ""; + targets = ( + C4570604E43ACE2844F860C1 /* tms_tools_iOS */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + FE0476C77900E9CDC952596C /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + A76E29741076590962BE9F78 /* Assets.xcassets in Resources */, + DB52F73D0B8E696301E16476 /* LaunchScreen.storyboard in Resources */, + AD4969A3D87EA641BB1009FC /* assets in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 17180587CEACD68EC9E09609 /* Build Rust Code */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + name = "Build Rust Code"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(SRCROOT)/Externals/x86_64/${CONFIGURATION}/libapp.a", + "$(SRCROOT)/Externals/arm64/${CONFIGURATION}/libapp.a", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "pnpm tauri ios xcode-script -v --platform ${PLATFORM_DISPLAY_NAME:?} --sdk-root ${SDKROOT:?} --framework-search-paths \"${FRAMEWORK_SEARCH_PATHS:?}\" --header-search-paths \"${HEADER_SEARCH_PATHS:?}\" --gcc-preprocessor-definitions \"${GCC_PREPROCESSOR_DEFINITIONS:-}\" --configuration ${CONFIGURATION:?} ${FORCE_COLOR} ${ARCHS:?}"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + F93994E84D0C9E03E17AEC2E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 32C7B8271D85938A7C006DAE /* main.mm in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 0440B31373CC108C1B7AA51A /* release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + ARCHS = arm64; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_ENTITLEMENTS = tms_tools_iOS/tms_tools_iOS.entitlements; + CODE_SIGN_IDENTITY = "iPhone Developer"; + DEVELOPMENT_TEAM = NSZETX76PL; + ENABLE_BITCODE = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = x86_64; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "\".\"", + ); + INFOPLIST_FILE = tms_tools_iOS/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + "LIBRARY_SEARCH_PATHS[arch=arm64]" = ( + "$(inherited)", + "$(PROJECT_DIR)/Externals/arm64/$(CONFIGURATION)", + "$(SDKROOT)/usr/lib/swift", + "$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)", + "$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)", + ); + "LIBRARY_SEARCH_PATHS[arch=x86_64]" = ( + "$(inherited)", + "$(PROJECT_DIR)/Externals/x86_64/$(CONFIGURATION)", + "$(SDKROOT)/usr/lib/swift", + "$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)", + "$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.tms-tools.app; + PRODUCT_NAME = "tms_tools"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALID_ARCHS = arm64; + }; + name = release; + }; + 2E075D8883B40EB1BA055E1D /* debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + ARCHS = arm64; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_ENTITLEMENTS = tms_tools_iOS/tms_tools_iOS.entitlements; + CODE_SIGN_IDENTITY = "iPhone Developer"; + DEVELOPMENT_TEAM = NSZETX76PL; + ENABLE_BITCODE = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = x86_64; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "\".\"", + ); + INFOPLIST_FILE = tms_tools_iOS/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + "LIBRARY_SEARCH_PATHS[arch=arm64]" = ( + "$(inherited)", + "$(PROJECT_DIR)/Externals/arm64/$(CONFIGURATION)", + "$(SDKROOT)/usr/lib/swift", + "$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)", + "$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)", + ); + "LIBRARY_SEARCH_PATHS[arch=x86_64]" = ( + "$(inherited)", + "$(PROJECT_DIR)/Externals/x86_64/$(CONFIGURATION)", + "$(SDKROOT)/usr/lib/swift", + "$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)", + "$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.tms-tools.app; + PRODUCT_NAME = "tms_tools"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALID_ARCHS = arm64; + }; + name = debug; + }; + 4F5B0481BBB0E981E87D60D3 /* debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = 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_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "DEBUG=1", + ); + 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 = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + }; + name = debug; + }; + CE7408D6CBCDD6F6A64B89F5 /* release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = 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_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_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; + MTL_FAST_MATH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_VERSION = 5.0; + }; + name = release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + A6C9192EF59DFAF03F39F944 /* Build configuration list for PBXNativeTarget "tms_tools_iOS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 2E075D8883B40EB1BA055E1D /* debug */, + 0440B31373CC108C1B7AA51A /* release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = debug; + }; + DD6CC545D44A93B50463ECD2 /* Build configuration list for PBXProject "tms_tools" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4F5B0481BBB0E981E87D60D3 /* debug */, + CE7408D6CBCDD6F6A64B89F5 /* release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = debug; + }; +/* End XCConfigurationList section */ + }; + rootObject = 4D5462130D5279B3AA86558A /* Project object */; +} diff --git a/src-tauri/gen/apple/tms_tools.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/src-tauri/gen/apple/tms_tools.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/src-tauri/gen/apple/tms_tools.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/src-tauri/gen/apple/tms_tools.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/src-tauri/gen/apple/tms_tools.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..ac90d5a --- /dev/null +++ b/src-tauri/gen/apple/tms_tools.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,10 @@ + + + + + BuildSystemType + Original + DisableBuildSystemDeprecationDiagnostic + + + diff --git a/src-tauri/gen/apple/tms_tools.xcodeproj/xcshareddata/xcschemes/tms_tools_iOS.xcscheme b/src-tauri/gen/apple/tms_tools.xcodeproj/xcshareddata/xcschemes/tms_tools_iOS.xcscheme new file mode 100644 index 0000000..e379895 --- /dev/null +++ b/src-tauri/gen/apple/tms_tools.xcodeproj/xcshareddata/xcschemes/tms_tools_iOS.xcscheme @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src-tauri/gen/apple/tms_tools_iOS/Info.plist b/src-tauri/gen/apple/tms_tools_iOS/Info.plist new file mode 100644 index 0000000..e0b1335 --- /dev/null +++ b/src-tauri/gen/apple/tms_tools_iOS/Info.plist @@ -0,0 +1,44 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + 0.1.0 + CFBundleVersion + 0.1.0 + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + UIRequiredDeviceCapabilities + + arm64 + metal + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + + \ No newline at end of file diff --git a/src-tauri/gen/apple/tms_tools_iOS/tms_tools_iOS.entitlements b/src-tauri/gen/apple/tms_tools_iOS/tms_tools_iOS.entitlements new file mode 100644 index 0000000..0c67376 --- /dev/null +++ b/src-tauri/gen/apple/tms_tools_iOS/tms_tools_iOS.entitlements @@ -0,0 +1,5 @@ + + + + + diff --git a/src-tauri/html_scraper/Cargo.lock b/src-tauri/html_scraper/Cargo.lock new file mode 100644 index 0000000..d2dfa2d --- /dev/null +++ b/src-tauri/html_scraper/Cargo.lock @@ -0,0 +1,772 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "ahash" +version = "0.8.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" +dependencies = [ + "cfg-if", + "getrandom 0.3.3", + "once_cell", + "version_check", + "zerocopy", +] + +[[package]] +name = "aho-corasick" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" +dependencies = [ + "memchr", +] + +[[package]] +name = "autocfg" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" + +[[package]] +name = "bitflags" +version = "2.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394" + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "cfg-if" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" + +[[package]] +name = "cssparser" +version = "0.31.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b3df4f93e5fbbe73ec01ec8d3f68bba73107993a5b1e7519273c32db9b0d5be" +dependencies = [ + "cssparser-macros", + "dtoa-short", + "itoa", + "phf 0.11.3", + "smallvec", +] + +[[package]] +name = "cssparser-macros" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" +dependencies = [ + "quote", + "syn", +] + +[[package]] +name = "derive_more" +version = "0.99.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "dtoa" +version = "1.0.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04" + +[[package]] +name = "dtoa-short" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" +dependencies = [ + "dtoa", +] + +[[package]] +name = "ego-tree" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12a0bb14ac04a9fcf170d0bbbef949b44cc492f4452bd20c095636956f653642" + +[[package]] +name = "futf" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" +dependencies = [ + "mac", + "new_debug_unreachable", +] + +[[package]] +name = "fxhash" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" +dependencies = [ + "byteorder", +] + +[[package]] +name = "getopts" +version = "0.2.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df" +dependencies = [ + "unicode-width", +] + +[[package]] +name = "getrandom" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" +dependencies = [ + "cfg-if", + "libc", + "wasi 0.11.1+wasi-snapshot-preview1", +] + +[[package]] +name = "getrandom" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" +dependencies = [ + "cfg-if", + "libc", + "r-efi", + "wasi 0.14.7+wasi-0.2.4", +] + +[[package]] +name = "html5ever" +version = "0.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c13771afe0e6e846f1e67d038d4cb29998a6779f93c809212e4e9c32efd244d4" +dependencies = [ + "log", + "mac", + "markup5ever", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "html_scraper" +version = "0.1.0" +dependencies = [ + "regex", + "scraper", + "thiserror", +] + +[[package]] +name = "itoa" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" + +[[package]] +name = "libc" +version = "0.2.176" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "58f929b4d672ea937a23a1ab494143d968337a5f47e56d0815df1e0890ddf174" + +[[package]] +name = "lock_api" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765" +dependencies = [ + "autocfg", + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" + +[[package]] +name = "mac" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" + +[[package]] +name = "markup5ever" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16ce3abbeba692c8b8441d036ef91aea6df8da2c6b6e21c7e14d3c18e526be45" +dependencies = [ + "log", + "phf 0.11.3", + "phf_codegen 0.11.3", + "string_cache", + "string_cache_codegen", + "tendril", +] + +[[package]] +name = "memchr" +version = "2.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" + +[[package]] +name = "new_debug_unreachable" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" + +[[package]] +name = "once_cell" +version = "1.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" + +[[package]] +name = "parking_lot" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-targets", +] + +[[package]] +name = "phf" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" +dependencies = [ + "phf_shared 0.10.0", +] + +[[package]] +name = "phf" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" +dependencies = [ + "phf_macros", + "phf_shared 0.11.3", +] + +[[package]] +name = "phf_codegen" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" +dependencies = [ + "phf_generator 0.10.0", + "phf_shared 0.10.0", +] + +[[package]] +name = "phf_codegen" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", +] + +[[package]] +name = "phf_generator" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" +dependencies = [ + "phf_shared 0.10.0", + "rand", +] + +[[package]] +name = "phf_generator" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" +dependencies = [ + "phf_shared 0.11.3", + "rand", +] + +[[package]] +name = "phf_macros" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "phf_shared" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" +dependencies = [ + "siphasher 0.3.11", +] + +[[package]] +name = "phf_shared" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" +dependencies = [ + "siphasher 1.0.1", +] + +[[package]] +name = "ppv-lite86" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "precomputed-hash" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" + +[[package]] +name = "proc-macro2" +version = "1.0.101" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "r-efi" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + +[[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "libc", + "rand_chacha", + "rand_core", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom 0.2.16", +] + +[[package]] +name = "redox_syscall" +version = "0.5.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77" +dependencies = [ + "bitflags", +] + +[[package]] +name = "regex" +version = "1.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b5288124840bee7b386bc413c487869b360b2b4ec421ea56425128692f2a82c" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "833eb9ce86d40ef33cb1306d8accf7bc8ec2bfea4355cbdebb3df68b40925cad" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001" + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "scraper" +version = "0.19.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "761fb705fdf625482d2ed91d3f0559dcfeab2798fe2771c69560a774865d0802" +dependencies = [ + "ahash", + "cssparser", + "ego-tree", + "getopts", + "html5ever", + "once_cell", + "selectors", + "tendril", +] + +[[package]] +name = "selectors" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4eb30575f3638fc8f6815f448d50cb1a2e255b0897985c8c59f4d37b72a07b06" +dependencies = [ + "bitflags", + "cssparser", + "derive_more", + "fxhash", + "log", + "new_debug_unreachable", + "phf 0.10.1", + "phf_codegen 0.10.0", + "precomputed-hash", + "servo_arc", + "smallvec", +] + +[[package]] +name = "serde" +version = "1.0.227" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80ece43fc6fbed4eb5392ab50c07334d3e577cbf40997ee896fe7af40bba4245" +dependencies = [ + "serde_core", +] + +[[package]] +name = "serde_core" +version = "1.0.227" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a576275b607a2c86ea29e410193df32bc680303c82f31e275bbfcafe8b33be5" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.227" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51e694923b8824cf0e9b382adf0f60d4e05f348f357b38833a3fa5ed7c2ede04" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "servo_arc" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d036d71a959e00c77a63538b90a6c2390969f9772b096ea837205c6bd0491a44" +dependencies = [ + "stable_deref_trait", +] + +[[package]] +name = "siphasher" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" + +[[package]] +name = "siphasher" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" + +[[package]] +name = "smallvec" +version = "1.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" + +[[package]] +name = "stable_deref_trait" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" + +[[package]] +name = "string_cache" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" +dependencies = [ + "new_debug_unreachable", + "parking_lot", + "phf_shared 0.11.3", + "precomputed-hash", + "serde", +] + +[[package]] +name = "string_cache_codegen" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", + "proc-macro2", + "quote", +] + +[[package]] +name = "syn" +version = "2.0.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "tendril" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" +dependencies = [ + "futf", + "mac", + "utf-8", +] + +[[package]] +name = "thiserror" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "unicode-ident" +version = "1.0.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d" + +[[package]] +name = "unicode-width" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c" + +[[package]] +name = "utf-8" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasi" +version = "0.14.7+wasi-0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c" +dependencies = [ + "wasip2", +] + +[[package]] +name = "wasip2" +version = "1.0.1+wasi-0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "windows-targets" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +dependencies = [ + "windows_aarch64_gnullvm", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_gnullvm", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "wit-bindgen" +version = "0.46.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" + +[[package]] +name = "zerocopy" +version = "0.8.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.8.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] diff --git a/src-tauri/html_scraper/Cargo.toml b/src-tauri/html_scraper/Cargo.toml new file mode 100644 index 0000000..ba90818 --- /dev/null +++ b/src-tauri/html_scraper/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "html_scraper" +version = "0.1.0" +edition = "2024" + +[dependencies] +scraper = "0.19.1" +thiserror = "1.0" +regex = "1.10.5" \ No newline at end of file diff --git a/src-tauri/html_scraper/src/lib.rs b/src-tauri/html_scraper/src/lib.rs new file mode 100644 index 0000000..5fc6c65 --- /dev/null +++ b/src-tauri/html_scraper/src/lib.rs @@ -0,0 +1,104 @@ +use scraper::{Html, Selector}; +use thiserror::Error; +use regex::Regex; + +/// 定义库可能返回的错误类型 +#[derive(Debug, Error)] +pub enum ScrapeError { + /// 当内部使用的CSS选择器无效时返回。 + #[error("无效的CSS选择器: {0}")] + InvalidSelector(String), + /// 当正则表达式编译失败时返回。 + #[error("无效的正则表达式: {0}")] + InvalidRegex(#[from] regex::Error), +} + +/// 通用函数:根据CSS选择器和链接文本查找链接。 +fn find_link_by_text(html_body: &str, selector_str: &str, link_text: &str) -> Result, ScrapeError> { + let selector = Selector::parse(selector_str) + .map_err(|e| ScrapeError::InvalidSelector(format!("'{selector_str}': {e}")))?; + + let document = Html::parse_document(html_body); + + for element in document.select(&selector) { + if element.text().any(|text| text.trim() == link_text) { + if let Some(link) = element.value().attr("href") { + return Ok(Some(link.to_string())); + } + } + } + + Ok(None) +} + +/// 解析HTML文本,查找并返回第一个匹配“编辑”按钮的链接。 +pub fn find_edit_link(html_body: &str) -> Result, ScrapeError> { + find_link_by_text(html_body, "a.btn.btn-info.btn-xs.m-bot5", "编辑") +} + +/// 解析HTML文本,查找并返回“TMS配置”按钮的链接。 +pub fn find_tms_config_link(html_body: &str) -> Result, ScrapeError> { + find_link_by_text(html_body, "a.btn.btn-default.not-cinema", "TMS配置") +} + +/// # 参数 +/// * `html_body`: 一个字符串切片,包含要解析的HTML内容。 +pub fn find_token(html_body: &str) -> Result, ScrapeError> { + // 使用属性选择器直接、高效地定位目标元素 + let selector_str = r#"input[name="token"]"#; + let token_selector = Selector::parse(selector_str) + .map_err(|e| ScrapeError::InvalidSelector(format!("'{selector_str}': {e}")))?; + + let document = Html::parse_document(html_body); + + // 查找第一个匹配的元素并提取其 "value" 属性 + if let Some(element) = document.select(&token_selector).next() { + if let Some(token_value) = element.value().attr("value") { + return Ok(Some(token_value.to_string())); + } + } + + Ok(None) +} + + +/// 解析HTML文本,查找并返回最新一个工单详情按钮链接中的ID。 +/// 由于网页将最新的工单放在最上面,我们只需要定位到表格的第一行即可。 +pub fn find_latest_work_order_id(html_body: &str) -> Result, ScrapeError> { + // CSS选择器,用于定位到表格主体(tbody)的第一个表格行(tr)内,class包含"btn-info"的链接(a) + let selector_str = "tbody tr:first-child a.btn-info"; + let detail_link_selector = Selector::parse(selector_str) + .map_err(|e| ScrapeError::InvalidSelector(format!("'{selector_str}': {e}")))?; + + let document = Html::parse_document(html_body); + + // 查找第一个匹配的元素 + if let Some(element) = document.select(&detail_link_selector).next() { + // 提取其 "href" 属性 + if let Some(href) = element.value().attr("href") { + // 使用正则表达式从URL中提取 "id" 的值 + // 正则表达式 r"id=(\d+)" 匹配 "id=" 后跟着的一串数字(\d+),并捕获这串数字 + let re = Regex::new(r"id=(\d+)")?; + if let Some(caps) = re.captures(href) { + // caps.get(1) 获取第一个捕获组的内容 (也就是\d+匹配到的部分) + if let Some(id_match) = caps.get(1) { + return Ok(Some(id_match.as_str().to_string())); + } + } + } + } + + Ok(None) +} + + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn it_works() { + let result = add(2, 2); + assert_eq!(result, 4); + } +} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/.rustc_info.json b/src-tauri/html_scraper/target/.rustc_info.json new file mode 100644 index 0000000..0014744 --- /dev/null +++ b/src-tauri/html_scraper/target/.rustc_info.json @@ -0,0 +1 @@ +{"rustc_fingerprint":5950026530320907442,"outputs":{"17747080675513052775":{"success":true,"status":"","code":0,"stdout":"rustc 1.93.0 (254b59607 2026-01-19)\nbinary: rustc\ncommit-hash: 254b59607d4417e9dffbc307138ae5c86280fe4c\ncommit-date: 2026-01-19\nhost: aarch64-apple-darwin\nrelease: 1.93.0\nLLVM version: 21.1.8\n","stderr":""},"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n/Users/hokori/.rustup/toolchains/stable-aarch64-apple-darwin\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"aarch64\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_family=\"unix\"\ntarget_feature=\"aes\"\ntarget_feature=\"crc\"\ntarget_feature=\"dit\"\ntarget_feature=\"dotprod\"\ntarget_feature=\"dpb\"\ntarget_feature=\"dpb2\"\ntarget_feature=\"fcma\"\ntarget_feature=\"fhm\"\ntarget_feature=\"flagm\"\ntarget_feature=\"fp16\"\ntarget_feature=\"frintts\"\ntarget_feature=\"jsconv\"\ntarget_feature=\"lor\"\ntarget_feature=\"lse\"\ntarget_feature=\"neon\"\ntarget_feature=\"paca\"\ntarget_feature=\"pacg\"\ntarget_feature=\"pan\"\ntarget_feature=\"pmuv3\"\ntarget_feature=\"ras\"\ntarget_feature=\"rcpc\"\ntarget_feature=\"rcpc2\"\ntarget_feature=\"rdm\"\ntarget_feature=\"sb\"\ntarget_feature=\"sha2\"\ntarget_feature=\"sha3\"\ntarget_feature=\"ssbs\"\ntarget_feature=\"vh\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"macos\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"apple\"\nunix\n","stderr":""}},"successes":{}} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/CACHEDIR.TAG b/src-tauri/html_scraper/target/CACHEDIR.TAG new file mode 100644 index 0000000..20d7c31 --- /dev/null +++ b/src-tauri/html_scraper/target/CACHEDIR.TAG @@ -0,0 +1,3 @@ +Signature: 8a477f597d28d172789f06886806bc55 +# This file is a cache directory tag created by cargo. +# For information about cache directory tags see https://bford.info/cachedir/ diff --git a/src-tauri/html_scraper/target/debug/.cargo-lock b/src-tauri/html_scraper/target/debug/.cargo-lock new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ahash-4a15a117ce1da42d/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-4a15a117ce1da42d/run-build-script-build-script-build new file mode 100644 index 0000000..fc0a574 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-4a15a117ce1da42d/run-build-script-build-script-build @@ -0,0 +1 @@ +1b6b83fb7d909c88 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ahash-4a15a117ce1da42d/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-4a15a117ce1da42d/run-build-script-build-script-build.json new file mode 100644 index 0000000..ad8690a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-4a15a117ce1da42d/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[966925859616469517,"build_script_build",false,6595573091569591863]],"local":[{"RerunIfChanged":{"output":"debug/build/ahash-4a15a117ce1da42d/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/build-script-build-script-build new file mode 100644 index 0000000..be5b0a1 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/build-script-build-script-build @@ -0,0 +1 @@ +3766212dc82e885b \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/build-script-build-script-build.json new file mode 100644 index 0000000..96e1946 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"getrandom\", \"runtime-rng\", \"std\"]","declared_features":"[\"atomic-polyfill\", \"compile-time-rng\", \"const-random\", \"default\", \"getrandom\", \"nightly-arm-aes\", \"no-rng\", \"runtime-rng\", \"serde\", \"std\"]","target":17883862002600103897,"profile":3033921117576893,"path":13716931409256565478,"deps":[[5398981501050481332,"version_check",false,2413200326728056484]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ahash-9fb2ccc1fdf90091/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-9fb2ccc1fdf90091/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/dep-lib-ahash b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/dep-lib-ahash new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/dep-lib-ahash differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/lib-ahash b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/lib-ahash new file mode 100644 index 0000000..d26e88a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/lib-ahash @@ -0,0 +1 @@ +d1308d45a10fcb23 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/lib-ahash.json b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/lib-ahash.json new file mode 100644 index 0000000..b4576fe --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ahash-ffd687c1479c7fc2/lib-ahash.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"getrandom\", \"runtime-rng\", \"std\"]","declared_features":"[\"atomic-polyfill\", \"compile-time-rng\", \"const-random\", \"default\", \"getrandom\", \"nightly-arm-aes\", \"no-rng\", \"runtime-rng\", \"serde\", \"std\"]","target":8470944000320059508,"profile":5347358027863023418,"path":8822836382803353601,"deps":[[966925859616469517,"build_script_build",false,9843901756290067227],[3331586631144870129,"getrandom",false,2652846555722184656],[3722963349756955755,"once_cell",false,2645443938906433080],[7843059260364151289,"cfg_if",false,15569408560385663512],[13102401248396471120,"zerocopy",false,4734230529796757217]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ahash-ffd687c1479c7fc2/dep-lib-ahash","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/dep-lib-aho_corasick b/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/dep-lib-aho_corasick new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/dep-lib-aho_corasick differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/lib-aho_corasick b/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/lib-aho_corasick new file mode 100644 index 0000000..bd56336 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/lib-aho_corasick @@ -0,0 +1 @@ +8fb1c77c3fe550e0 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/lib-aho_corasick.json b/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/lib-aho_corasick.json new file mode 100644 index 0000000..e291a7e --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/lib-aho_corasick.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"perf-literal\", \"std\"]","declared_features":"[\"default\", \"logging\", \"perf-literal\", \"std\"]","target":7534583537114156500,"profile":5347358027863023418,"path":16028419913794655535,"deps":[[198136567835728122,"memchr",false,9699424157645625460]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/aho-corasick-0c0a44cb2b404ece/dep-lib-aho_corasick","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/dep-lib-autocfg b/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/dep-lib-autocfg new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/dep-lib-autocfg differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/lib-autocfg b/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/lib-autocfg new file mode 100644 index 0000000..999d1cf --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/lib-autocfg @@ -0,0 +1 @@ +b937ddaec5563ce1 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/lib-autocfg.json b/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/lib-autocfg.json new file mode 100644 index 0000000..7407c54 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/autocfg-98a6c7819a03ebc1/lib-autocfg.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":6962977057026645649,"profile":3033921117576893,"path":17598261562660302540,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/autocfg-98a6c7819a03ebc1/dep-lib-autocfg","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/dep-lib-bitflags b/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/dep-lib-bitflags new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/dep-lib-bitflags differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/lib-bitflags b/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/lib-bitflags new file mode 100644 index 0000000..7bfb11d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/lib-bitflags @@ -0,0 +1 @@ +62a612004a3c1e33 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/lib-bitflags.json b/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/lib-bitflags.json new file mode 100644 index 0000000..6f31bd1 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/bitflags-6436427193246fd0/lib-bitflags.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"arbitrary\", \"bytemuck\", \"example_generated\", \"serde\", \"std\"]","target":7691312148208718491,"profile":5347358027863023418,"path":2591638532276312438,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-6436427193246fd0/dep-lib-bitflags","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/dep-lib-byteorder b/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/dep-lib-byteorder new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/dep-lib-byteorder differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/lib-byteorder b/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/lib-byteorder new file mode 100644 index 0000000..0032b16 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/lib-byteorder @@ -0,0 +1 @@ +de21df4f75d3d1f5 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/lib-byteorder.json b/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/lib-byteorder.json new file mode 100644 index 0000000..0cdf42c --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/lib-byteorder.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"i128\", \"std\"]","target":8344828840634961491,"profile":5347358027863023418,"path":5766809642143664324,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/byteorder-ea67fe27d5fb2a4b/dep-lib-byteorder","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/dep-lib-cfg_if b/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/dep-lib-cfg_if new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/dep-lib-cfg_if differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/lib-cfg_if b/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/lib-cfg_if new file mode 100644 index 0000000..4ceeade --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/lib-cfg_if @@ -0,0 +1 @@ +18a2b66c98a611d8 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/lib-cfg_if.json b/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/lib-cfg_if.json new file mode 100644 index 0000000..908f679 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/cfg-if-9de2544adff585b5/lib-cfg_if.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":5347358027863023418,"path":624215724859023351,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-9de2544adff585b5/dep-lib-cfg_if","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/dep-lib-cssparser b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/dep-lib-cssparser new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/dep-lib-cssparser differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/lib-cssparser b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/lib-cssparser new file mode 100644 index 0000000..8645fa1 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/lib-cssparser @@ -0,0 +1 @@ +a5b32def63403d2f \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/lib-cssparser.json b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/lib-cssparser.json new file mode 100644 index 0000000..afab1ae --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-0a8e275ecee5c971/lib-cssparser.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"bench\", \"dummy_match_byte\", \"serde\"]","target":4051351535474248705,"profile":5347358027863023418,"path":8709422612199558390,"deps":[[3666196340704888985,"smallvec",false,15974637115038226282],[7695812897323945497,"itoa",false,16220395808240874273],[9280804215119811138,"cssparser_macros",false,7092807949191545326],[12842584195496215797,"dtoa_short",false,1798891272967952218],[17186037756130803222,"phf",false,14479758216431526539]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cssparser-0a8e275ecee5c971/dep-lib-cssparser","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/dep-lib-cssparser_macros b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/dep-lib-cssparser_macros new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/dep-lib-cssparser_macros differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/lib-cssparser_macros b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/lib-cssparser_macros new file mode 100644 index 0000000..4922f2a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/lib-cssparser_macros @@ -0,0 +1 @@ +ee01a11f40b76e62 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/lib-cssparser_macros.json b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/lib-cssparser_macros.json new file mode 100644 index 0000000..8570712 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/cssparser-macros-309442e57d19e9f2/lib-cssparser_macros.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":4853353551047732211,"profile":3033921117576893,"path":8806602445119551126,"deps":[[17332570067994900305,"syn",false,18155600851886099986],[17990358020177143287,"quote",false,13223646443693408163]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cssparser-macros-309442e57d19e9f2/dep-lib-cssparser_macros","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/dep-lib-derive_more b/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/dep-lib-derive_more new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/dep-lib-derive_more differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/lib-derive_more b/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/lib-derive_more new file mode 100644 index 0000000..92207b1 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/lib-derive_more @@ -0,0 +1 @@ +17419957c24b5be5 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/lib-derive_more.json b/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/lib-derive_more.json new file mode 100644 index 0000000..968bbd5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/derive_more-4900dcbe6b0f93e2/lib-derive_more.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"add\", \"add_assign\"]","declared_features":"[\"add\", \"add_assign\", \"as_mut\", \"as_ref\", \"constructor\", \"convert_case\", \"default\", \"deref\", \"deref_mut\", \"display\", \"error\", \"from\", \"from_str\", \"generate-parsing-rs\", \"index\", \"index_mut\", \"into\", \"into_iterator\", \"is_variant\", \"iterator\", \"mul\", \"mul_assign\", \"nightly\", \"not\", \"peg\", \"rustc_version\", \"sum\", \"testing-helpers\", \"track-caller\", \"try_into\", \"unwrap\"]","target":12153973509411789784,"profile":3033921117576893,"path":11792485525844407772,"deps":[[373107762698212489,"proc_macro2",false,7818804827256295973],[17332570067994900305,"syn",false,18155600851886099986],[17990358020177143287,"quote",false,13223646443693408163]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/derive_more-4900dcbe6b0f93e2/dep-lib-derive_more","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/dep-lib-dtoa b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/dep-lib-dtoa new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/dep-lib-dtoa differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/lib-dtoa b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/lib-dtoa new file mode 100644 index 0000000..95d17bd --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/lib-dtoa @@ -0,0 +1 @@ +17d4bcc050452086 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/lib-dtoa.json b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/lib-dtoa.json new file mode 100644 index 0000000..748f850 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-49a075b5dce0e654/lib-dtoa.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"no-panic\"]","target":822708863277375670,"profile":5347358027863023418,"path":884370971632748663,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dtoa-49a075b5dce0e654/dep-lib-dtoa","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/dep-lib-dtoa_short b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/dep-lib-dtoa_short new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/dep-lib-dtoa_short differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/lib-dtoa_short b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/lib-dtoa_short new file mode 100644 index 0000000..a6fdcbe --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/lib-dtoa_short @@ -0,0 +1 @@ +5a17cef214f2f618 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/lib-dtoa_short.json b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/lib-dtoa_short.json new file mode 100644 index 0000000..f306306 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/dtoa-short-29e165cd81f10ade/lib-dtoa_short.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":14166870648037865358,"profile":5347358027863023418,"path":12376615047949021754,"deps":[[9187552546091909091,"dtoa",false,9664801013470385175]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dtoa-short-29e165cd81f10ade/dep-lib-dtoa_short","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/dep-lib-ego_tree b/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/dep-lib-ego_tree new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/dep-lib-ego_tree differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/lib-ego_tree b/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/lib-ego_tree new file mode 100644 index 0000000..723eceb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/lib-ego_tree @@ -0,0 +1 @@ +74ba25c5f9bdd3f1 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/lib-ego_tree.json b/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/lib-ego_tree.json new file mode 100644 index 0000000..af24b16 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ego-tree-ce169384d68da859/lib-ego_tree.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":15686662276775554462,"profile":5347358027863023418,"path":17365132458171419028,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ego-tree-ce169384d68da859/dep-lib-ego_tree","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/dep-lib-futf b/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/dep-lib-futf new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/dep-lib-futf differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/lib-futf b/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/lib-futf new file mode 100644 index 0000000..8bfe223 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/lib-futf @@ -0,0 +1 @@ +dd045d79419dda9f \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/lib-futf.json b/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/lib-futf.json new file mode 100644 index 0000000..916f051 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/futf-7c3e714c118e04be/lib-futf.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":14342764474404802961,"profile":5347358027863023418,"path":17877743052365929499,"deps":[[2687729594444538932,"debug_unreachable",false,3593908486175556121],[10952224881603935644,"mac",false,6632663027669242744]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futf-7c3e714c118e04be/dep-lib-futf","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/dep-lib-fxhash b/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/dep-lib-fxhash new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/dep-lib-fxhash differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/lib-fxhash b/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/lib-fxhash new file mode 100644 index 0000000..3974b65 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/lib-fxhash @@ -0,0 +1 @@ +9bc90d0244bb7ce1 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/lib-fxhash.json b/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/lib-fxhash.json new file mode 100644 index 0000000..955bb62 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/fxhash-213b1db37a640cd5/lib-fxhash.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":10973188114720300281,"profile":5347358027863023418,"path":8537095105298740985,"deps":[[3712811570531045576,"byteorder",false,17713171310229529054]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/fxhash-213b1db37a640cd5/dep-lib-fxhash","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/dep-lib-getopts b/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/dep-lib-getopts new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/dep-lib-getopts differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/lib-getopts b/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/lib-getopts new file mode 100644 index 0000000..12a7536 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/lib-getopts @@ -0,0 +1 @@ +1a259da17549df5a \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/lib-getopts.json b/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/lib-getopts.json new file mode 100644 index 0000000..66345cb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getopts-65d6380d9a0b33ed/lib-getopts.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"unicode\"]","declared_features":"[\"core\", \"default\", \"rustc-dep-of-std\", \"std\", \"unicode\"]","target":14000208569025797744,"profile":5347358027863023418,"path":876709439007231340,"deps":[[13774335185398496026,"unicode_width",false,11518059325484516505]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getopts-65d6380d9a0b33ed/dep-lib-getopts","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/dep-lib-getrandom b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/dep-lib-getrandom new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/dep-lib-getrandom differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/lib-getrandom b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/lib-getrandom new file mode 100644 index 0000000..be85908 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/lib-getrandom @@ -0,0 +1 @@ +ddd3d606dc563b6d \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/lib-getrandom.json b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/lib-getrandom.json new file mode 100644 index 0000000..1ddaf2b --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-009f56382c9c07b5/lib-getrandom.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"std\"]","declared_features":"[\"compiler_builtins\", \"core\", \"custom\", \"js\", \"js-sys\", \"linux_disable_fallback\", \"rdrand\", \"rustc-dep-of-std\", \"std\", \"test-in-browser\", \"wasm-bindgen\"]","target":16244099637825074703,"profile":3033921117576893,"path":546736093385177748,"deps":[[6366008408347001515,"libc",false,9505976839583446300],[7843059260364151289,"cfg_if",false,15569408560385663512]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-009f56382c9c07b5/dep-lib-getrandom","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/dep-lib-getrandom b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/dep-lib-getrandom new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/dep-lib-getrandom differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/lib-getrandom b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/lib-getrandom new file mode 100644 index 0000000..9ec44f3 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/lib-getrandom @@ -0,0 +1 @@ +d0777015e3cdd024 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/lib-getrandom.json b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/lib-getrandom.json new file mode 100644 index 0000000..671312f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-328bde64f6e6b3d3/lib-getrandom.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"rustc-dep-of-std\", \"std\", \"wasm_js\"]","target":11669924403970522481,"profile":11786835736675429932,"path":16418706159116323038,"deps":[[3331586631144870129,"build_script_build",false,17467099931845311930],[6366008408347001515,"libc",false,17961392781183284496],[7843059260364151289,"cfg_if",false,15569408560385663512]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-328bde64f6e6b3d3/dep-lib-getrandom","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-a21865eb3d1ede1e/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-a21865eb3d1ede1e/run-build-script-build-script-build new file mode 100644 index 0000000..c17e736 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-a21865eb3d1ede1e/run-build-script-build-script-build @@ -0,0 +1 @@ +babde3e5d79a67f2 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-a21865eb3d1ede1e/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-a21865eb3d1ede1e/run-build-script-build-script-build.json new file mode 100644 index 0000000..1f48fe5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-a21865eb3d1ede1e/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[3331586631144870129,"build_script_build",false,2841153784118404470]],"local":[{"RerunIfChanged":{"output":"debug/build/getrandom-a21865eb3d1ede1e/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/build-script-build-script-build new file mode 100644 index 0000000..0417c10 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/build-script-build-script-build @@ -0,0 +1 @@ +7665a24650ce6d27 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/build-script-build-script-build.json new file mode 100644 index 0000000..3b49df4 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"rustc-dep-of-std\", \"std\", \"wasm_js\"]","target":5408242616063297496,"profile":16185483997463588654,"path":8494423938186213872,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-ca1115f666251079/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/getrandom-ca1115f666251079/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/dep-lib-html5ever b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/dep-lib-html5ever new file mode 100644 index 0000000..52218b6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/dep-lib-html5ever differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/lib-html5ever b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/lib-html5ever new file mode 100644 index 0000000..c473177 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/lib-html5ever @@ -0,0 +1 @@ +9698aace1bdb5baf \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/lib-html5ever.json b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/lib-html5ever.json new file mode 100644 index 0000000..0a2235f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-05679ef9eb9d27e8/lib-html5ever.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":4652384769665216062,"profile":5347358027863023418,"path":16828855436097313426,"deps":[[6894592641856567887,"build_script_build",false,11399053488437114159],[7359235151837888654,"markup5ever",false,12876747020459346982],[10952224881603935644,"mac",false,6632663027669242744],[13066042571740262168,"log",false,15119832979438329371]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/html5ever-05679ef9eb9d27e8/dep-lib-html5ever","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-599159e7782b5aea/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-599159e7782b5aea/run-build-script-build-script-build new file mode 100644 index 0000000..2368e26 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-599159e7782b5aea/run-build-script-build-script-build @@ -0,0 +1 @@ +2fb5f8c1c092319e \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-599159e7782b5aea/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-599159e7782b5aea/run-build-script-build-script-build.json new file mode 100644 index 0000000..a8384a7 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-599159e7782b5aea/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6894592641856567887,"build_script_build",false,11932717425543425307]],"local":[{"RerunIfChanged":{"output":"debug/build/html5ever-599159e7782b5aea/output","paths":["src/tree_builder/rules.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/build-script-build-script-build new file mode 100644 index 0000000..719cecc --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/build-script-build-script-build @@ -0,0 +1 @@ +1b2da1ba468799a5 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/build-script-build-script-build.json new file mode 100644 index 0000000..b0253e7 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":3033921117576893,"path":1841311255823703106,"deps":[[373107762698212489,"proc_macro2",false,7818804827256295973],[17332570067994900305,"syn",false,18155600851886099986],[17990358020177143287,"quote",false,13223646443693408163]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/html5ever-adcca677c3fbce46/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html5ever-adcca677c3fbce46/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/dep-test-lib-html_scraper b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/dep-test-lib-html_scraper new file mode 100644 index 0000000..024be49 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/dep-test-lib-html_scraper differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/test-lib-html_scraper b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/test-lib-html_scraper new file mode 100644 index 0000000..8320d66 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/test-lib-html_scraper @@ -0,0 +1 @@ +058207c38e932061 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/test-lib-html_scraper.json b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/test-lib-html_scraper.json new file mode 100644 index 0000000..960d554 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-7342f3637c7ad7f4/test-lib-html_scraper.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":9930676247025263629,"profile":15057526963834790232,"path":10763286916239946207,"deps":[[8008191657135824715,"thiserror",false,1466351398864672651],[13626897008533545915,"regex",false,17357231337923752423],[14847387549330244405,"scraper",false,9672205605133910633]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/html_scraper-7342f3637c7ad7f4/dep-test-lib-html_scraper","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/dep-lib-html_scraper b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/dep-lib-html_scraper new file mode 100644 index 0000000..024be49 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/dep-lib-html_scraper differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/lib-html_scraper b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/lib-html_scraper new file mode 100644 index 0000000..4a940ce --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/lib-html_scraper @@ -0,0 +1 @@ +3973a608ae5832bf \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/lib-html_scraper.json b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/lib-html_scraper.json new file mode 100644 index 0000000..9ea3d28 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/html_scraper-94aa862c9da7400c/lib-html_scraper.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":9930676247025263629,"profile":6675295047989516842,"path":10763286916239946207,"deps":[[8008191657135824715,"thiserror",false,1466351398864672651],[13626897008533545915,"regex",false,17357231337923752423],[14847387549330244405,"scraper",false,9672205605133910633]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/html_scraper-94aa862c9da7400c/dep-lib-html_scraper","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/dep-lib-itoa b/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/dep-lib-itoa new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/dep-lib-itoa differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/lib-itoa b/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/lib-itoa new file mode 100644 index 0000000..3ea37b4 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/lib-itoa @@ -0,0 +1 @@ +21b36e5a0c6c1ae1 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/lib-itoa.json b/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/lib-itoa.json new file mode 100644 index 0000000..e2297fc --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/itoa-01bc225805719977/lib-itoa.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"no-panic\"]","target":8239509073162986830,"profile":5347358027863023418,"path":2468863103602448109,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/itoa-01bc225805719977/dep-lib-itoa","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/dep-lib-libc b/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/dep-lib-libc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/dep-lib-libc differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/lib-libc b/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/lib-libc new file mode 100644 index 0000000..1e7f1ca --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/lib-libc @@ -0,0 +1 @@ +1c35761e9203ec83 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/lib-libc.json b/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/lib-libc.json new file mode 100644 index 0000000..f26cd92 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-01916927d843a511/lib-libc.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":17682796336736096309,"profile":3039969951022573740,"path":8432206058993501742,"deps":[[6366008408347001515,"build_script_build",false,13966646225469603991]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-01916927d843a511/dep-lib-libc","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-0b86aa2c61452cbd/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/libc-0b86aa2c61452cbd/run-build-script-build-script-build new file mode 100644 index 0000000..547196b --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-0b86aa2c61452cbd/run-build-script-build-script-build @@ -0,0 +1 @@ +9780aa5cbe7ed3c1 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-0b86aa2c61452cbd/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/libc-0b86aa2c61452cbd/run-build-script-build-script-build.json new file mode 100644 index 0000000..751f8dd --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-0b86aa2c61452cbd/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6366008408347001515,"build_script_build",false,13811237067127613028]],"local":[{"RerunIfChanged":{"output":"debug/build/libc-0b86aa2c61452cbd/output","paths":["build.rs"]}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_FREEBSD_VERSION","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_MUSL_V1_2_3","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_TIME_BITS","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-0d1edeabd8309d4a/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/libc-0d1edeabd8309d4a/run-build-script-build-script-build new file mode 100644 index 0000000..3e1943c --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-0d1edeabd8309d4a/run-build-script-build-script-build @@ -0,0 +1 @@ +fb079f84bfef38e9 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-0d1edeabd8309d4a/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/libc-0d1edeabd8309d4a/run-build-script-build-script-build.json new file mode 100644 index 0000000..70182e3 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-0d1edeabd8309d4a/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6366008408347001515,"build_script_build",false,4911174893095742270]],"local":[{"RerunIfChanged":{"output":"debug/build/libc-0d1edeabd8309d4a/output","paths":["build.rs"]}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_FREEBSD_VERSION","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_MUSL_V1_2_3","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_TIME_BITS","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/dep-lib-libc b/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/dep-lib-libc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/dep-lib-libc differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/lib-libc b/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/lib-libc new file mode 100644 index 0000000..2363d55 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/lib-libc @@ -0,0 +1 @@ +10f5b12992af43f9 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/lib-libc.json b/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/lib-libc.json new file mode 100644 index 0000000..177ebaa --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-56734dad6cfe82f6/lib-libc.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\"]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":17682796336736096309,"profile":13030054270579460295,"path":8432206058993501742,"deps":[[6366008408347001515,"build_script_build",false,16805445615375812603]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-56734dad6cfe82f6/dep-lib-libc","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/build-script-build-script-build new file mode 100644 index 0000000..6c7e3ca --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/build-script-build-script-build @@ -0,0 +1 @@ +6466d9feef5eabbf \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/build-script-build-script-build.json new file mode 100644 index 0000000..cf0887f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":5408242616063297496,"profile":3039969951022573740,"path":18201425560395939388,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-78709398769c3b8a/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-78709398769c3b8a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/build-script-build-script-build new file mode 100644 index 0000000..f8cd1c5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/build-script-build-script-build @@ -0,0 +1 @@ +3eebc9748bff2744 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/build-script-build-script-build.json new file mode 100644 index 0000000..7b7c926 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\"]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":5408242616063297496,"profile":3039969951022573740,"path":18201425560395939388,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-f3369c53aa6e7cf1/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/libc-f3369c53aa6e7cf1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/build-script-build-script-build new file mode 100644 index 0000000..feac29a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/build-script-build-script-build @@ -0,0 +1 @@ +ef031ea681db3e8a \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/build-script-build-script-build.json new file mode 100644 index 0000000..88126f7 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"atomic_usize\", \"default\"]","declared_features":"[\"arc_lock\", \"atomic_usize\", \"default\", \"nightly\", \"owning_ref\", \"serde\"]","target":5408242616063297496,"profile":3033921117576893,"path":911236305753329754,"deps":[[13927012481677012980,"autocfg",false,16229942564178704313]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/lock_api-056ce16850e74d93/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-056ce16850e74d93/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-3da0d822e2d6cc17/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-3da0d822e2d6cc17/run-build-script-build-script-build new file mode 100644 index 0000000..06005bb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-3da0d822e2d6cc17/run-build-script-build-script-build @@ -0,0 +1 @@ +a42d2fdcc41c526d \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-3da0d822e2d6cc17/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-3da0d822e2d6cc17/run-build-script-build-script-build.json new file mode 100644 index 0000000..f8e9a61 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-3da0d822e2d6cc17/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8081351675046095464,"build_script_build",false,9961640775674364911]],"local":[{"RerunIfChanged":{"output":"debug/build/lock_api-3da0d822e2d6cc17/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/dep-lib-lock_api b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/dep-lib-lock_api new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/dep-lib-lock_api differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/lib-lock_api b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/lib-lock_api new file mode 100644 index 0000000..c7c326f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/lib-lock_api @@ -0,0 +1 @@ +80c49861ad64e743 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/lib-lock_api.json b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/lib-lock_api.json new file mode 100644 index 0000000..b727083 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/lock_api-df5a62b3f930f9a1/lib-lock_api.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"atomic_usize\", \"default\"]","declared_features":"[\"arc_lock\", \"atomic_usize\", \"default\", \"nightly\", \"owning_ref\", \"serde\"]","target":16157403318809843794,"profile":5347358027863023418,"path":3974312591728174221,"deps":[[8081351675046095464,"build_script_build",false,7877390330057665956],[15358414700195712381,"scopeguard",false,16180715941057446427]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/lock_api-df5a62b3f930f9a1/dep-lib-lock_api","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/dep-lib-log b/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/dep-lib-log new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/dep-lib-log differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/lib-log b/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/lib-log new file mode 100644 index 0000000..0987049 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/lib-log @@ -0,0 +1 @@ +1b5ea88afc6fd4d1 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/lib-log.json b/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/lib-log.json new file mode 100644 index 0000000..105463a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/log-831cad5f0554718c/lib-log.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"kv\", \"kv_serde\", \"kv_std\", \"kv_sval\", \"kv_unstable\", \"kv_unstable_serde\", \"kv_unstable_std\", \"kv_unstable_sval\", \"max_level_debug\", \"max_level_error\", \"max_level_info\", \"max_level_off\", \"max_level_trace\", \"max_level_warn\", \"release_max_level_debug\", \"release_max_level_error\", \"release_max_level_info\", \"release_max_level_off\", \"release_max_level_trace\", \"release_max_level_warn\", \"serde\", \"std\", \"sval\", \"sval_ref\", \"value-bag\"]","target":6550155848337067049,"profile":5347358027863023418,"path":6676584263695061592,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/log-831cad5f0554718c/dep-lib-log","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/dep-lib-mac b/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/dep-lib-mac new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/dep-lib-mac differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/lib-mac b/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/lib-mac new file mode 100644 index 0000000..07fadd5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/lib-mac @@ -0,0 +1 @@ +789317dfe1f30b5c \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/lib-mac.json b/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/lib-mac.json new file mode 100644 index 0000000..9c76ceb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/mac-8f81a8e61d0760e0/lib-mac.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":4071246351868317718,"profile":5347358027863023418,"path":714674193146951795,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/mac-8f81a8e61d0760e0/dep-lib-mac","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/dep-lib-markup5ever b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/dep-lib-markup5ever new file mode 100644 index 0000000..a8636cc Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/dep-lib-markup5ever differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/lib-markup5ever b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/lib-markup5ever new file mode 100644 index 0000000..e98a849 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/lib-markup5ever @@ -0,0 +1 @@ +268c0cf13065b3b2 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/lib-markup5ever.json b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/lib-markup5ever.json new file mode 100644 index 0000000..31677dd --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-5426e6f802571ad0/lib-markup5ever.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":7456125560412827427,"profile":5347358027863023418,"path":16079887319640515732,"deps":[[2399633497816108991,"tendril",false,475225466669851244],[3791929332532787956,"string_cache",false,3130990419686556788],[7359235151837888654,"build_script_build",false,2085284578719034325],[13066042571740262168,"log",false,15119832979438329371],[17186037756130803222,"phf",false,14479758216431526539]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/markup5ever-5426e6f802571ad0/dep-lib-markup5ever","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-6c5b1b70cfb0b1d8/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-6c5b1b70cfb0b1d8/run-build-script-build-script-build new file mode 100644 index 0000000..bb4ecc6 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-6c5b1b70cfb0b1d8/run-build-script-build-script-build @@ -0,0 +1 @@ +d5eb25aa466bf01c \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-6c5b1b70cfb0b1d8/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-6c5b1b70cfb0b1d8/run-build-script-build-script-build.json new file mode 100644 index 0000000..9054211 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-6c5b1b70cfb0b1d8/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[7359235151837888654,"build_script_build",false,15799388212175566172]],"local":[{"Precalculated":"0.12.1"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/build-script-build-script-build new file mode 100644 index 0000000..e8f85a5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/build-script-build-script-build @@ -0,0 +1 @@ +5cf537c7deb342db \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/build-script-build-script-build.json new file mode 100644 index 0000000..d8594e0 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":3033921117576893,"path":10764512068252800494,"deps":[[1280075590338009456,"phf_codegen",false,18171563497191726039],[11594986142849509546,"string_cache_codegen",false,9938342440841938349]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/markup5ever-99d4bcae2b8ea42d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/dep-lib-memchr b/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/dep-lib-memchr new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/dep-lib-memchr differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/lib-memchr b/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/lib-memchr new file mode 100644 index 0000000..2a45506 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/lib-memchr @@ -0,0 +1 @@ +74584fb2e1469b86 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/lib-memchr.json b/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/lib-memchr.json new file mode 100644 index 0000000..52ffd70 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/memchr-dbc4553685834328/lib-memchr.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"core\", \"default\", \"libc\", \"logging\", \"rustc-dep-of-std\", \"std\", \"use_std\"]","target":11745930252914242013,"profile":5347358027863023418,"path":14597617999160509537,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/memchr-dbc4553685834328/dep-lib-memchr","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/dep-lib-debug_unreachable b/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/dep-lib-debug_unreachable new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/dep-lib-debug_unreachable differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/lib-debug_unreachable b/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/lib-debug_unreachable new file mode 100644 index 0000000..b74bbe1 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/lib-debug_unreachable @@ -0,0 +1 @@ +1982c111ba20e031 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/lib-debug_unreachable.json b/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/lib-debug_unreachable.json new file mode 100644 index 0000000..39ef182 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/new_debug_unreachable-e1098322c060b823/lib-debug_unreachable.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":7622437403250301378,"profile":5347358027863023418,"path":5095032823823959065,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/new_debug_unreachable-e1098322c060b823/dep-lib-debug_unreachable","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/dep-lib-once_cell b/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/dep-lib-once_cell new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/dep-lib-once_cell differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/lib-once_cell b/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/lib-once_cell new file mode 100644 index 0000000..c395097 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/lib-once_cell @@ -0,0 +1 @@ +3866ba0b3f81b624 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/lib-once_cell.json b/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/lib-once_cell.json new file mode 100644 index 0000000..4f998ed --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/once_cell-4e0f2ba645c30aa8/lib-once_cell.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"alloc\", \"default\", \"race\", \"std\"]","declared_features":"[\"alloc\", \"atomic-polyfill\", \"critical-section\", \"default\", \"parking_lot\", \"portable-atomic\", \"race\", \"std\", \"unstable\"]","target":17524666916136250164,"profile":5347358027863023418,"path":13986378648531864528,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/once_cell-4e0f2ba645c30aa8/dep-lib-once_cell","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/dep-lib-parking_lot b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/dep-lib-parking_lot new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/dep-lib-parking_lot differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/lib-parking_lot b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/lib-parking_lot new file mode 100644 index 0000000..d1d7bfb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/lib-parking_lot @@ -0,0 +1 @@ +134f3a1143d71811 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/lib-parking_lot.json b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/lib-parking_lot.json new file mode 100644 index 0000000..772aa45 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot-1f7e92deaf854a26/lib-parking_lot.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\"]","declared_features":"[\"arc_lock\", \"deadlock_detection\", \"default\", \"hardware-lock-elision\", \"nightly\", \"owning_ref\", \"send_guard\", \"serde\"]","target":9887373948397848517,"profile":5347358027863023418,"path":3670259361463438623,"deps":[[4269498962362888130,"parking_lot_core",false,525575257288254994],[8081351675046095464,"lock_api",false,4892990215990854784]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/parking_lot-1f7e92deaf854a26/dep-lib-parking_lot","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-43faca14b949a384/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-43faca14b949a384/run-build-script-build-script-build new file mode 100644 index 0000000..3e54634 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-43faca14b949a384/run-build-script-build-script-build @@ -0,0 +1 @@ +747a2274336f620a \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-43faca14b949a384/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-43faca14b949a384/run-build-script-build-script-build.json new file mode 100644 index 0000000..7efae2e --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-43faca14b949a384/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[4269498962362888130,"build_script_build",false,11659232604442330730]],"local":[{"RerunIfChanged":{"output":"debug/build/parking_lot_core-43faca14b949a384/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/dep-lib-parking_lot_core b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/dep-lib-parking_lot_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/dep-lib-parking_lot_core differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/lib-parking_lot_core b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/lib-parking_lot_core new file mode 100644 index 0000000..aafbc1f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/lib-parking_lot_core @@ -0,0 +1 @@ +12a66671e9374b07 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/lib-parking_lot_core.json b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/lib-parking_lot_core.json new file mode 100644 index 0000000..0b35ba1 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-579cff111ec2767a/lib-parking_lot_core.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"backtrace\", \"deadlock_detection\", \"nightly\", \"petgraph\", \"thread-id\"]","target":12558056885032795287,"profile":5347358027863023418,"path":5827464095644316700,"deps":[[3666196340704888985,"smallvec",false,15974637115038226282],[4269498962362888130,"build_script_build",false,748282754879355508],[6366008408347001515,"libc",false,17961392781183284496],[7843059260364151289,"cfg_if",false,15569408560385663512]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/parking_lot_core-579cff111ec2767a/dep-lib-parking_lot_core","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/build-script-build-script-build new file mode 100644 index 0000000..c9a17ed --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/build-script-build-script-build @@ -0,0 +1 @@ +6a0670cd47eacda1 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/build-script-build-script-build.json new file mode 100644 index 0000000..1fe9ffc --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"backtrace\", \"deadlock_detection\", \"nightly\", \"petgraph\", \"thread-id\"]","target":5408242616063297496,"profile":3033921117576893,"path":7286403219683562983,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/parking_lot_core-8e29ae85abe15a1f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/dep-lib-phf b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/dep-lib-phf new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/dep-lib-phf differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/lib-phf b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/lib-phf new file mode 100644 index 0000000..fdd6d00 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/lib-phf @@ -0,0 +1 @@ +9749a64720fbfcc7 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/lib-phf.json b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/lib-phf.json new file mode 100644 index 0000000..9f48c65 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9770d3c675845ba/lib-phf.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"macros\", \"phf_macros\", \"proc-macro-hack\", \"serde\", \"std\", \"uncased\", \"unicase\"]","target":3117898612494421391,"profile":5347358027863023418,"path":10655364341070977396,"deps":[[2132929450596319411,"phf_shared",false,8815558544328099572]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf-a9770d3c675845ba/dep-lib-phf","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/dep-lib-phf b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/dep-lib-phf new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/dep-lib-phf differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/lib-phf b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/lib-phf new file mode 100644 index 0000000..3a2c475 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/lib-phf @@ -0,0 +1 @@ +8be2f17b616ff2c8 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/lib-phf.json b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/lib-phf.json new file mode 100644 index 0000000..bf0397c --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf-a9b745f20af9c57e/lib-phf.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"macros\", \"phf_macros\", \"std\"]","declared_features":"[\"default\", \"macros\", \"phf_macros\", \"serde\", \"std\", \"uncased\", \"unicase\"]","target":10640910166656384580,"profile":5347358027863023418,"path":370228375480092701,"deps":[[7564874552398678785,"phf_macros",false,14883611853640096050],[9060940869921439196,"phf_shared",false,8103647149137653190]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf-a9b745f20af9c57e/dep-lib-phf","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/dep-lib-phf_codegen b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/dep-lib-phf_codegen new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/dep-lib-phf_codegen differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/lib-phf_codegen b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/lib-phf_codegen new file mode 100644 index 0000000..07a3f82 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/lib-phf_codegen @@ -0,0 +1 @@ +43a0c5ebb9c4862c \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/lib-phf_codegen.json b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/lib-phf_codegen.json new file mode 100644 index 0000000..9ef1f2d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/lib-phf_codegen.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":10627201688748800353,"profile":3033921117576893,"path":7785580140105330532,"deps":[[2132929450596319411,"phf_shared",false,6104621685789769919],[15690706847525356077,"phf_generator",false,17021576161753177888]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_codegen-5ac0e57e503f39ec/dep-lib-phf_codegen","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/dep-lib-phf_codegen b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/dep-lib-phf_codegen new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/dep-lib-phf_codegen differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/lib-phf_codegen b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/lib-phf_codegen new file mode 100644 index 0000000..dafc86e --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/lib-phf_codegen @@ -0,0 +1 @@ +d75b913fb95c2efc \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/lib-phf_codegen.json b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/lib-phf_codegen.json new file mode 100644 index 0000000..76d8697 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_codegen-7910a3fb545bdda5/lib-phf_codegen.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":4007019473634205266,"profile":3033921117576893,"path":172046513678469802,"deps":[[9060940869921439196,"phf_shared",false,8103647149137653190],[18124350542602697595,"phf_generator",false,16799703957552028514]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_codegen-7910a3fb545bdda5/dep-lib-phf_codegen","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/dep-lib-phf_generator b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/dep-lib-phf_generator new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/dep-lib-phf_generator differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/lib-phf_generator b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/lib-phf_generator new file mode 100644 index 0000000..cd7876f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/lib-phf_generator @@ -0,0 +1 @@ +201f8ebe55c938ec \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/lib-phf_generator.json b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/lib-phf_generator.json new file mode 100644 index 0000000..e1ea418 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-07face5c6d99eafc/lib-phf_generator.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"criterion\"]","target":10230150387258866563,"profile":3033921117576893,"path":10675314681542300925,"deps":[[2132929450596319411,"phf_shared",false,6104621685789769919],[13208667028893622512,"rand",false,1705039955218055911]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_generator-07face5c6d99eafc/dep-lib-phf_generator","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/dep-lib-phf_generator b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/dep-lib-phf_generator new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/dep-lib-phf_generator differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/lib-phf_generator b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/lib-phf_generator new file mode 100644 index 0000000..91bdff3 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/lib-phf_generator @@ -0,0 +1 @@ +62db9ca1bd8924e9 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/lib-phf_generator.json b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/lib-phf_generator.json new file mode 100644 index 0000000..3ae15cd --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_generator-0f5544fb7fb4274a/lib-phf_generator.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"criterion\"]","target":4203241669981453472,"profile":3033921117576893,"path":13917295461881781647,"deps":[[9060940869921439196,"phf_shared",false,8103647149137653190],[13208667028893622512,"rand",false,1705039955218055911]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_generator-0f5544fb7fb4274a/dep-lib-phf_generator","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/dep-lib-phf_macros b/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/dep-lib-phf_macros new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/dep-lib-phf_macros differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/lib-phf_macros b/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/lib-phf_macros new file mode 100644 index 0000000..99312d1 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/lib-phf_macros @@ -0,0 +1 @@ +32d902c71f368dce \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/lib-phf_macros.json b/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/lib-phf_macros.json new file mode 100644 index 0000000..e229be2 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_macros-36bc32c64923e436/lib-phf_macros.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"unicase\", \"unicase_\"]","target":17891898593638043230,"profile":3033921117576893,"path":13351770415714408615,"deps":[[373107762698212489,"proc_macro2",false,7818804827256295973],[9060940869921439196,"phf_shared",false,8103647149137653190],[17332570067994900305,"syn",false,18155600851886099986],[17990358020177143287,"quote",false,13223646443693408163],[18124350542602697595,"phf_generator",false,16799703957552028514]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_macros-36bc32c64923e436/dep-lib-phf_macros","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/dep-lib-phf_shared b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/dep-lib-phf_shared new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/dep-lib-phf_shared differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/lib-phf_shared b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/lib-phf_shared new file mode 100644 index 0000000..e027e3e --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/lib-phf_shared @@ -0,0 +1 @@ +bf40a55d14f9b754 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/lib-phf_shared.json b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/lib-phf_shared.json new file mode 100644 index 0000000..4f5321f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/lib-phf_shared.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\", \"uncased\", \"unicase\"]","target":886472421596331379,"profile":3033921117576893,"path":2817553942745171076,"deps":[[8079500665534101559,"siphasher",false,6385207537349680120]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_shared-4c15ddf12e8e6b17/dep-lib-phf_shared","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/dep-lib-phf_shared b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/dep-lib-phf_shared new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/dep-lib-phf_shared differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/lib-phf_shared b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/lib-phf_shared new file mode 100644 index 0000000..1b35946 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/lib-phf_shared @@ -0,0 +1 @@ +c6ed74ad25f07570 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/lib-phf_shared.json b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/lib-phf_shared.json new file mode 100644 index 0000000..8ac0e35 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-5281e2ba57b04ed7/lib-phf_shared.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\", \"uncased\", \"unicase\"]","target":13191988717353488301,"profile":5347358027863023418,"path":6545052680693360641,"deps":[[17007833651981688255,"siphasher",false,2920237473378151463]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_shared-5281e2ba57b04ed7/dep-lib-phf_shared","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/dep-lib-phf_shared b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/dep-lib-phf_shared new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/dep-lib-phf_shared differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/lib-phf_shared b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/lib-phf_shared new file mode 100644 index 0000000..15265f3 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/lib-phf_shared @@ -0,0 +1 @@ +f406560bca27577a \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/lib-phf_shared.json b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/lib-phf_shared.json new file mode 100644 index 0000000..5ef44f5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/phf_shared-aa6dcd72b6931224/lib-phf_shared.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"std\"]","declared_features":"[\"default\", \"std\", \"uncased\", \"unicase\"]","target":886472421596331379,"profile":5347358027863023418,"path":2817553942745171076,"deps":[[8079500665534101559,"siphasher",false,6385207537349680120]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_shared-aa6dcd72b6931224/dep-lib-phf_shared","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/dep-lib-ppv_lite86 b/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/dep-lib-ppv_lite86 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/dep-lib-ppv_lite86 differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/lib-ppv_lite86 b/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/lib-ppv_lite86 new file mode 100644 index 0000000..459dedc --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/lib-ppv_lite86 @@ -0,0 +1 @@ +40c74d4d38836aa7 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/lib-ppv_lite86.json b/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/lib-ppv_lite86.json new file mode 100644 index 0000000..575b8e0 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/lib-ppv_lite86.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"simd\", \"std\"]","declared_features":"[\"default\", \"no_simd\", \"simd\", \"std\"]","target":2607852365283500179,"profile":3033921117576893,"path":12872048272344064350,"deps":[[13102401248396471120,"zerocopy",false,4734230529796757217]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ppv-lite86-7bfc9380fa4080a1/dep-lib-ppv_lite86","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/dep-lib-precomputed_hash b/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/dep-lib-precomputed_hash new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/dep-lib-precomputed_hash differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/lib-precomputed_hash b/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/lib-precomputed_hash new file mode 100644 index 0000000..d9f3e64 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/lib-precomputed_hash @@ -0,0 +1 @@ +bc3603519842180f \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/lib-precomputed_hash.json b/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/lib-precomputed_hash.json new file mode 100644 index 0000000..038ea51 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/lib-precomputed_hash.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":18034549675578888011,"profile":5347358027863023418,"path":11919125380041508802,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/precomputed-hash-636ba2c840c4bb37/dep-lib-precomputed_hash","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-58daf346076c4d4b/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-58daf346076c4d4b/run-build-script-build-script-build new file mode 100644 index 0000000..ad2ce7f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-58daf346076c4d4b/run-build-script-build-script-build @@ -0,0 +1 @@ +1fef54ea73135ab7 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-58daf346076c4d4b/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-58daf346076c4d4b/run-build-script-build-script-build.json new file mode 100644 index 0000000..b0d6655 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-58daf346076c4d4b/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[373107762698212489,"build_script_build",false,2491722046915471817]],"local":[{"RerunIfChanged":{"output":"debug/build/proc-macro2-58daf346076c4d4b/output","paths":["src/probe/proc_macro_span.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/build-script-build-script-build new file mode 100644 index 0000000..5d274f0 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/build-script-build-script-build @@ -0,0 +1 @@ +c9e967fdff5f9422 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/build-script-build-script-build.json new file mode 100644 index 0000000..71210e1 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":5408242616063297496,"profile":3033921117576893,"path":1533621919522318402,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-d0815d6bff85897b/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d0815d6bff85897b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/dep-lib-proc_macro2 b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/dep-lib-proc_macro2 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/dep-lib-proc_macro2 differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/lib-proc_macro2 b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/lib-proc_macro2 new file mode 100644 index 0000000..0695f63 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/lib-proc_macro2 @@ -0,0 +1 @@ +2592b88890f9816c \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/lib-proc_macro2.json b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/lib-proc_macro2.json new file mode 100644 index 0000000..27d2232 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/proc-macro2-d7a701b428e81ccd/lib-proc_macro2.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":369203346396300798,"profile":3033921117576893,"path":3662434147930135408,"deps":[[373107762698212489,"build_script_build",false,13211893845418372895],[10637008577242657367,"unicode_ident",false,14073169142073048241]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-d7a701b428e81ccd/dep-lib-proc_macro2","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/dep-lib-quote b/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/dep-lib-quote new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/dep-lib-quote differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/lib-quote b/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/lib-quote new file mode 100644 index 0000000..6722edb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/lib-quote @@ -0,0 +1 @@ +a3ffb3ef60d483b7 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/lib-quote.json b/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/lib-quote.json new file mode 100644 index 0000000..a5fb340 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/quote-18bba557c7524ff3/lib-quote.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":3570458776599611685,"profile":3033921117576893,"path":14820827303878931524,"deps":[[373107762698212489,"proc_macro2",false,7818804827256295973]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/quote-18bba557c7524ff3/dep-lib-quote","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/dep-lib-rand b/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/dep-lib-rand new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/dep-lib-rand differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/lib-rand b/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/lib-rand new file mode 100644 index 0000000..1b7c6bf --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/lib-rand @@ -0,0 +1 @@ +e7c29e3ace84a917 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/lib-rand.json b/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/lib-rand.json new file mode 100644 index 0000000..9b3585c --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/rand-26f83a8e5bd6b340/lib-rand.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"rand_chacha\", \"small_rng\", \"std\", \"std_rng\"]","declared_features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"log\", \"min_const_gen\", \"nightly\", \"packed_simd\", \"rand_chacha\", \"serde\", \"serde1\", \"simd_support\", \"small_rng\", \"std\", \"std_rng\"]","target":8827111241893198906,"profile":3033921117576893,"path":15826359250899117607,"deps":[[1573238666360410412,"rand_chacha",false,431330294416650972],[6366008408347001515,"libc",false,9505976839583446300],[18130209639506977569,"rand_core",false,3990275015156457348]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand-26f83a8e5bd6b340/dep-lib-rand","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/dep-lib-rand_chacha b/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/dep-lib-rand_chacha new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/dep-lib-rand_chacha differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/lib-rand_chacha b/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/lib-rand_chacha new file mode 100644 index 0000000..19bc6c5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/lib-rand_chacha @@ -0,0 +1 @@ +dcb291139e64fc05 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/lib-rand_chacha.json b/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/lib-rand_chacha.json new file mode 100644 index 0000000..d55d3c6 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/rand_chacha-88c08f61188566b9/lib-rand_chacha.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"std\"]","declared_features":"[\"default\", \"serde\", \"serde1\", \"simd\", \"std\"]","target":15766068575093147603,"profile":3033921117576893,"path":13013800082795371020,"deps":[[12919011715531272606,"ppv_lite86",false,12063598829703644992],[18130209639506977569,"rand_core",false,3990275015156457348]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_chacha-88c08f61188566b9/dep-lib-rand_chacha","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/dep-lib-rand_core b/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/dep-lib-rand_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/dep-lib-rand_core differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/lib-rand_core b/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/lib-rand_core new file mode 100644 index 0000000..b150832 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/lib-rand_core @@ -0,0 +1 @@ +845f8422fc4d6037 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/lib-rand_core.json b/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/lib-rand_core.json new file mode 100644 index 0000000..b296d36 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/rand_core-40abbc76b58e3e8b/lib-rand_core.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"alloc\", \"getrandom\", \"std\"]","declared_features":"[\"alloc\", \"getrandom\", \"serde\", \"serde1\", \"std\"]","target":13770603672348587087,"profile":3033921117576893,"path":16753733623681790607,"deps":[[9920160576179037441,"getrandom",false,7870980276767609821]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_core-40abbc76b58e3e8b/dep-lib-rand_core","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/dep-lib-regex b/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/dep-lib-regex new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/dep-lib-regex differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/lib-regex b/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/lib-regex new file mode 100644 index 0000000..0fa52f4 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/lib-regex @@ -0,0 +1 @@ +e7313975f045e1f0 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/lib-regex.json b/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/lib-regex.json new file mode 100644 index 0000000..2d1a6a6 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/regex-3dafb990d7ac7a42/lib-regex.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"perf\", \"perf-backtrack\", \"perf-cache\", \"perf-dfa\", \"perf-inline\", \"perf-literal\", \"perf-onepass\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","declared_features":"[\"default\", \"logging\", \"pattern\", \"perf\", \"perf-backtrack\", \"perf-cache\", \"perf-dfa\", \"perf-dfa-full\", \"perf-inline\", \"perf-literal\", \"perf-onepass\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unstable\", \"use_std\"]","target":5796931310894148030,"profile":5347358027863023418,"path":4001630078358476387,"deps":[[198136567835728122,"memchr",false,9699424157645625460],[2779309023524819297,"aho_corasick",false,16163671123471872399],[4310815957326066901,"regex_automata",false,14005837831388027153],[7507008215594894126,"regex_syntax",false,6585556951696023581]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-3dafb990d7ac7a42/dep-lib-regex","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/dep-lib-regex_automata b/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/dep-lib-regex_automata new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/dep-lib-regex_automata differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/lib-regex_automata b/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/lib-regex_automata new file mode 100644 index 0000000..79d0159 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/lib-regex_automata @@ -0,0 +1 @@ +11599c314dbb5ec2 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/lib-regex_automata.json b/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/lib-regex_automata.json new file mode 100644 index 0000000..c99b348 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/regex-automata-e1200410093b7b02/lib-regex_automata.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"alloc\", \"dfa-onepass\", \"hybrid\", \"meta\", \"nfa-backtrack\", \"nfa-pikevm\", \"nfa-thompson\", \"perf-inline\", \"perf-literal\", \"perf-literal-multisubstring\", \"perf-literal-substring\", \"std\", \"syntax\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unicode-word-boundary\"]","declared_features":"[\"alloc\", \"default\", \"dfa\", \"dfa-build\", \"dfa-onepass\", \"dfa-search\", \"hybrid\", \"internal-instrument\", \"internal-instrument-pikevm\", \"logging\", \"meta\", \"nfa\", \"nfa-backtrack\", \"nfa-pikevm\", \"nfa-thompson\", \"perf\", \"perf-inline\", \"perf-literal\", \"perf-literal-multisubstring\", \"perf-literal-substring\", \"std\", \"syntax\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unicode-word-boundary\"]","target":4726246767843925232,"profile":5347358027863023418,"path":10453049471345658681,"deps":[[198136567835728122,"memchr",false,9699424157645625460],[2779309023524819297,"aho_corasick",false,16163671123471872399],[7507008215594894126,"regex_syntax",false,6585556951696023581]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-automata-e1200410093b7b02/dep-lib-regex_automata","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/dep-lib-regex_syntax b/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/dep-lib-regex_syntax new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/dep-lib-regex_syntax differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/lib-regex_syntax b/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/lib-regex_syntax new file mode 100644 index 0000000..df10320 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/lib-regex_syntax @@ -0,0 +1 @@ +1d20f2e12799645b \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/lib-regex_syntax.json b/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/lib-regex_syntax.json new file mode 100644 index 0000000..fba3704 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/lib-regex_syntax.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","declared_features":"[\"arbitrary\", \"default\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","target":742186494246220192,"profile":5347358027863023418,"path":4398073325667060412,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-syntax-12e7fb1c33422c8d/dep-lib-regex_syntax","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/dep-lib-scopeguard b/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/dep-lib-scopeguard new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/dep-lib-scopeguard differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/lib-scopeguard b/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/lib-scopeguard new file mode 100644 index 0000000..87c2b10 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/lib-scopeguard @@ -0,0 +1 @@ +1bc23a566b738de0 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/lib-scopeguard.json b/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/lib-scopeguard.json new file mode 100644 index 0000000..cba6a92 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/scopeguard-d2663eb5fcef9402/lib-scopeguard.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"default\", \"use_std\"]","target":3556356971060988614,"profile":5347358027863023418,"path":767245024837648762,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/scopeguard-d2663eb5fcef9402/dep-lib-scopeguard","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/dep-lib-scraper b/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/dep-lib-scraper new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/dep-lib-scraper differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/lib-scraper b/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/lib-scraper new file mode 100644 index 0000000..d1439f1 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/lib-scraper @@ -0,0 +1 @@ +69828c98c0933a86 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/lib-scraper.json b/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/lib-scraper.json new file mode 100644 index 0000000..faa72da --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/scraper-719afe7608b3dfad/lib-scraper.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"errors\", \"getopts\", \"main\"]","declared_features":"[\"atomic\", \"default\", \"deterministic\", \"errors\", \"getopts\", \"indexmap\", \"main\"]","target":678004358678959319,"profile":5347358027863023418,"path":17625620886595669706,"deps":[[966925859616469517,"ahash",false,2579172396930773201],[2399633497816108991,"tendril",false,475225466669851244],[3722963349756955755,"once_cell",false,2645443938906433080],[5658260411229319297,"selectors",false,4600286685549667846],[6894592641856567887,"html5ever",false,12635934091995945110],[7492350663910880704,"cssparser",false,3403947691320652709],[12290581011641529047,"ego_tree",false,17425480263678671476],[14686689205187145500,"getopts",false,6548033152791422234]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/scraper-719afe7608b3dfad/dep-lib-scraper","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/build-script-build-script-build new file mode 100644 index 0000000..3519e6a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/build-script-build-script-build @@ -0,0 +1 @@ +77b3a4c333cd0ddd \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/build-script-build-script-build.json new file mode 100644 index 0000000..1d63118 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"bench\"]","target":12318548087768197662,"profile":3033921117576893,"path":9277004110972596547,"deps":[[8351446744408386070,"phf_codegen",false,3208468087351648323]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/selectors-1826a9a489ea310c/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-1826a9a489ea310c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/selectors-29f623d075f868e9/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-29f623d075f868e9/run-build-script-build-script-build new file mode 100644 index 0000000..cb86f9d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-29f623d075f868e9/run-build-script-build-script-build @@ -0,0 +1 @@ +ca721eb699c1f27e \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/selectors-29f623d075f868e9/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-29f623d075f868e9/run-build-script-build-script-build.json new file mode 100644 index 0000000..c888356 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-29f623d075f868e9/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[5658260411229319297,"build_script_build",false,15928613079288689527]],"local":[{"Precalculated":"0.25.0"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/dep-lib-selectors b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/dep-lib-selectors new file mode 100644 index 0000000..a17ac72 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/dep-lib-selectors differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/lib-selectors b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/lib-selectors new file mode 100644 index 0000000..fb3675a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/lib-selectors @@ -0,0 +1 @@ +06a625fd5d80d73f \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/lib-selectors.json b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/lib-selectors.json new file mode 100644 index 0000000..6e1304f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/selectors-d01401445b4ae298/lib-selectors.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"bench\"]","target":18301272685162166244,"profile":5347358027863023418,"path":858287208348789309,"deps":[[403167652641725433,"servo_arc",false,16951748471744513703],[1764276339024939380,"phf",false,14410669023738349975],[2687729594444538932,"debug_unreachable",false,3593908486175556121],[3666196340704888985,"smallvec",false,15974637115038226282],[5658260411229319297,"build_script_build",false,9147586659072504522],[6995234255362136112,"precomputed_hash",false,1087692531971602108],[7492350663910880704,"cssparser",false,3403947691320652709],[7521345276086848634,"fxhash",false,16248067456412535195],[9504753771229857410,"derive_more",false,16526886555631567127],[12848154260885479101,"bitflags",false,3683447833762113122],[13066042571740262168,"log",false,15119832979438329371]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/selectors-d01401445b4ae298/dep-lib-selectors","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde-00b2cf4d37e16c0d/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/serde-00b2cf4d37e16c0d/run-build-script-build-script-build new file mode 100644 index 0000000..cf22d60 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde-00b2cf4d37e16c0d/run-build-script-build-script-build @@ -0,0 +1 @@ +38dffee120adde70 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde-00b2cf4d37e16c0d/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/serde-00b2cf4d37e16c0d/run-build-script-build-script-build.json new file mode 100644 index 0000000..720c70a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde-00b2cf4d37e16c0d/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[10656518421724629931,"build_script_build",false,2649705701921682344]],"local":[{"RerunIfChanged":{"output":"debug/build/serde-00b2cf4d37e16c0d/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/dep-lib-serde b/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/dep-lib-serde new file mode 100644 index 0000000..00e8a7f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/dep-lib-serde differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/lib-serde b/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/lib-serde new file mode 100644 index 0000000..a2d8588 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/lib-serde @@ -0,0 +1 @@ +9fc87509f9106a36 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/lib-serde.json b/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/lib-serde.json new file mode 100644 index 0000000..8dcc3fc --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde-3a5c3b1b0f654256/lib-serde.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":11327258112168116673,"profile":5347358027863023418,"path":7531059400694801346,"deps":[[7262577012435935306,"serde_core",false,13967950544907063821],[10656518421724629931,"build_script_build",false,8133128333819830072]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-3a5c3b1b0f654256/dep-lib-serde","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/build-script-build-script-build new file mode 100644 index 0000000..daf9ff5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/build-script-build-script-build @@ -0,0 +1 @@ +a8735e124ca5c524 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/build-script-build-script-build.json new file mode 100644 index 0000000..2661bce --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":3033921117576893,"path":6635502270125711080,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-63215c02dca3dcb6/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde-63215c02dca3dcb6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/build-script-build-script-build new file mode 100644 index 0000000..9e33b46 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/build-script-build-script-build @@ -0,0 +1 @@ +c87fce2dee63e16b \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/build-script-build-script-build.json new file mode 100644 index 0000000..a68e3ee --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":3033921117576893,"path":15949585533038675519,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-0bd7de0b6f72a0a0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-13d332fbbf401748/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-13d332fbbf401748/run-build-script-build-script-build new file mode 100644 index 0000000..7c27511 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-13d332fbbf401748/run-build-script-build-script-build @@ -0,0 +1 @@ +19f10fac1b69be99 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-13d332fbbf401748/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-13d332fbbf401748/run-build-script-build-script-build.json new file mode 100644 index 0000000..eb8ecaf --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-13d332fbbf401748/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[7262577012435935306,"build_script_build",false,7773604306440060872]],"local":[{"RerunIfChanged":{"output":"debug/build/serde_core-13d332fbbf401748/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/dep-lib-serde_core b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/dep-lib-serde_core new file mode 100644 index 0000000..5197e5e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/dep-lib-serde_core differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/lib-serde_core b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/lib-serde_core new file mode 100644 index 0000000..878ee7b --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/lib-serde_core @@ -0,0 +1 @@ +0dd268e50321d8c1 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/lib-serde_core.json b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/lib-serde_core.json new file mode 100644 index 0000000..e00567a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/serde_core-16cfd65e06a37e7a/lib-serde_core.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":6810695588070812737,"profile":5347358027863023418,"path":12654711647279149045,"deps":[[7262577012435935306,"build_script_build",false,11078407700949758233]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_core-16cfd65e06a37e7a/dep-lib-serde_core","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/dep-lib-servo_arc b/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/dep-lib-servo_arc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/dep-lib-servo_arc differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/lib-servo_arc b/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/lib-servo_arc new file mode 100644 index 0000000..aadba77 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/lib-servo_arc @@ -0,0 +1 @@ +a7461abc6bb540eb \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/lib-servo_arc.json b/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/lib-servo_arc.json new file mode 100644 index 0000000..7605ab8 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/servo_arc-a635e1107c03b5e4/lib-servo_arc.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"gecko_refcount_logging\", \"serde\", \"servo\"]","target":7827887664671662080,"profile":5347358027863023418,"path":14655367987566525561,"deps":[[4462517779602467004,"stable_deref_trait",false,1420343492215214392]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/servo_arc-a635e1107c03b5e4/dep-lib-servo_arc","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/dep-lib-siphasher b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/dep-lib-siphasher new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/dep-lib-siphasher differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/lib-siphasher b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/lib-siphasher new file mode 100644 index 0000000..a664393 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/lib-siphasher @@ -0,0 +1 @@ +f8dbdfc86cd09c58 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/lib-siphasher.json b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/lib-siphasher.json new file mode 100644 index 0000000..18e411e --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-771f4d4daf8f4dea/lib-siphasher.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"serde\", \"serde_json\", \"serde_no_std\", \"serde_std\", \"std\"]","target":6846127388476139628,"profile":5347358027863023418,"path":17851259713156859593,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/siphasher-771f4d4daf8f4dea/dep-lib-siphasher","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/dep-lib-siphasher b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/dep-lib-siphasher new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/dep-lib-siphasher differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/lib-siphasher b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/lib-siphasher new file mode 100644 index 0000000..10ba9d8 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/lib-siphasher @@ -0,0 +1 @@ +272c7d8c82c48628 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/lib-siphasher.json b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/lib-siphasher.json new file mode 100644 index 0000000..ad79cb9 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/siphasher-834de04fecf33a0a/lib-siphasher.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"serde\", \"serde_json\", \"serde_no_std\", \"serde_std\", \"std\"]","target":6846127388476139628,"profile":5347358027863023418,"path":6118518449071069858,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/siphasher-834de04fecf33a0a/dep-lib-siphasher","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/dep-lib-smallvec b/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/dep-lib-smallvec new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/dep-lib-smallvec differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/lib-smallvec b/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/lib-smallvec new file mode 100644 index 0000000..7bbcb95 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/lib-smallvec @@ -0,0 +1 @@ +6ad79fa1d14fb1dd \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/lib-smallvec.json b/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/lib-smallvec.json new file mode 100644 index 0000000..e8206f3 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/smallvec-6bb0dfc0967f3f53/lib-smallvec.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"arbitrary\", \"bincode\", \"const_generics\", \"const_new\", \"debugger_visualizer\", \"drain_filter\", \"drain_keep_rest\", \"impl_bincode\", \"malloc_size_of\", \"may_dangle\", \"serde\", \"specialization\", \"union\", \"unty\", \"write\"]","target":9091769176333489034,"profile":5347358027863023418,"path":3585606430555432908,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/smallvec-6bb0dfc0967f3f53/dep-lib-smallvec","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/dep-lib-stable_deref_trait b/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/dep-lib-stable_deref_trait new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/dep-lib-stable_deref_trait differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/lib-stable_deref_trait b/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/lib-stable_deref_trait new file mode 100644 index 0000000..b600a59 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/lib-stable_deref_trait @@ -0,0 +1 @@ +38918680e112b613 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/lib-stable_deref_trait.json b/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/lib-stable_deref_trait.json new file mode 100644 index 0000000..17af8cb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/lib-stable_deref_trait.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":5317002649412810881,"profile":5347358027863023418,"path":14726926103392049184,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/stable_deref_trait-c602f96252fb9a6a/dep-lib-stable_deref_trait","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/dep-lib-string_cache b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/dep-lib-string_cache new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/dep-lib-string_cache differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/lib-string_cache b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/lib-string_cache new file mode 100644 index 0000000..164dba2 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/lib-string_cache @@ -0,0 +1 @@ +748491b03283732b \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/lib-string_cache.json b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/lib-string_cache.json new file mode 100644 index 0000000..5462b87 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache-e873790d99344744/lib-string_cache.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"default\", \"serde\", \"serde_support\"]","declared_features":"[\"default\", \"malloc_size_of\", \"serde\", \"serde_support\"]","target":8038205195467990777,"profile":5347358027863023418,"path":5041389345795769244,"deps":[[2687729594444538932,"debug_unreachable",false,3593908486175556121],[4495526598637097934,"parking_lot",false,1231971181137645331],[6995234255362136112,"precomputed_hash",false,1087692531971602108],[9060940869921439196,"phf_shared",false,8103647149137653190],[10656518421724629931,"serde",false,3920965087371053215]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/string_cache-e873790d99344744/dep-lib-string_cache","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/dep-lib-string_cache_codegen b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/dep-lib-string_cache_codegen new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/dep-lib-string_cache_codegen differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/lib-string_cache_codegen b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/lib-string_cache_codegen new file mode 100644 index 0000000..3f29656 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/lib-string_cache_codegen @@ -0,0 +1 @@ +ad85925acb15ec89 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/lib-string_cache_codegen.json b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/lib-string_cache_codegen.json new file mode 100644 index 0000000..af86c18 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/lib-string_cache_codegen.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":4822312724886654266,"profile":3033921117576893,"path":4601242775275466368,"deps":[[373107762698212489,"proc_macro2",false,7818804827256295973],[9060940869921439196,"phf_shared",false,8103647149137653190],[17990358020177143287,"quote",false,13223646443693408163],[18124350542602697595,"phf_generator",false,16799703957552028514]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/string_cache_codegen-cd0dc4a88bbb3be6/dep-lib-string_cache_codegen","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/dep-lib-syn b/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/dep-lib-syn new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/dep-lib-syn differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/lib-syn b/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/lib-syn new file mode 100644 index 0000000..4feee5e --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/lib-syn @@ -0,0 +1 @@ +124e7344c8a6f5fb \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/lib-syn.json b/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/lib-syn.json new file mode 100644 index 0000000..920d89f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/syn-2aa77fc1e3a70b43/lib-syn.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\"]","declared_features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"test\", \"visit\", \"visit-mut\"]","target":9442126953582868550,"profile":3033921117576893,"path":4473125244233363114,"deps":[[373107762698212489,"proc_macro2",false,7818804827256295973],[10637008577242657367,"unicode_ident",false,14073169142073048241],[17990358020177143287,"quote",false,13223646443693408163]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/syn-2aa77fc1e3a70b43/dep-lib-syn","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/dep-lib-tendril b/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/dep-lib-tendril new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/dep-lib-tendril differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/lib-tendril b/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/lib-tendril new file mode 100644 index 0000000..cb5e4a1 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/lib-tendril @@ -0,0 +1 @@ +6c6213490b579806 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/lib-tendril.json b/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/lib-tendril.json new file mode 100644 index 0000000..7f1b036 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/tendril-571b6474f862ecf6/lib-tendril.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[\"bench\", \"encoding\", \"encoding_rs\"]","target":11953572604185802203,"profile":5347358027863023418,"path":2316728390312874581,"deps":[[3353245243264097488,"futf",false,11518691901488039133],[4359956005902820838,"utf8",false,2777183037652860113],[10952224881603935644,"mac",false,6632663027669242744]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tendril-571b6474f862ecf6/dep-lib-tendril","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/dep-lib-thiserror b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/dep-lib-thiserror new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/dep-lib-thiserror differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/lib-thiserror b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/lib-thiserror new file mode 100644 index 0000000..85ffe42 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/lib-thiserror @@ -0,0 +1 @@ +8bd73905d4865914 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/lib-thiserror.json b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/lib-thiserror.json new file mode 100644 index 0000000..ab950e9 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-5603079bf135f2fd/lib-thiserror.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":13586076721141200315,"profile":5347358027863023418,"path":9916039860939593390,"deps":[[8008191657135824715,"build_script_build",false,12484450135136385954],[15291996789830541733,"thiserror_impl",false,12313828012792074301]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-5603079bf135f2fd/dep-lib-thiserror","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/build-script-build-script-build new file mode 100644 index 0000000..b70b7cd --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/build-script-build-script-build @@ -0,0 +1 @@ +fe25f85b6dd24e31 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/build-script-build-script-build.json new file mode 100644 index 0000000..618d504 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":3033921117576893,"path":11125908387338071198,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-7069354ea445a65d/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-7069354ea445a65d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-b456ae825abaa28d/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-b456ae825abaa28d/run-build-script-build-script-build new file mode 100644 index 0000000..27d3842 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-b456ae825abaa28d/run-build-script-build-script-build @@ -0,0 +1 @@ +a2bbe1a040ad41ad \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-b456ae825abaa28d/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-b456ae825abaa28d/run-build-script-build-script-build.json new file mode 100644 index 0000000..c6dde90 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-b456ae825abaa28d/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8008191657135824715,"build_script_build",false,3553008523178157566]],"local":[{"RerunIfChanged":{"output":"debug/build/thiserror-b456ae825abaa28d/output","paths":["build/probe.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/dep-lib-thiserror_impl b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/dep-lib-thiserror_impl new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/dep-lib-thiserror_impl differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/lib-thiserror_impl b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/lib-thiserror_impl new file mode 100644 index 0000000..259e9c7 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/lib-thiserror_impl @@ -0,0 +1 @@ +3dd0b90f5681e3aa \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/lib-thiserror_impl.json b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/lib-thiserror_impl.json new file mode 100644 index 0000000..8e41380 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/thiserror-impl-7462c846dc67d23c/lib-thiserror_impl.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":6216210811039475267,"profile":3033921117576893,"path":200521672381438723,"deps":[[373107762698212489,"proc_macro2",false,7818804827256295973],[17332570067994900305,"syn",false,18155600851886099986],[17990358020177143287,"quote",false,13223646443693408163]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-impl-7462c846dc67d23c/dep-lib-thiserror_impl","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/dep-lib-unicode_ident b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/dep-lib-unicode_ident new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/dep-lib-unicode_ident differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/lib-unicode_ident b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/lib-unicode_ident new file mode 100644 index 0000000..54a14fd --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/lib-unicode_ident @@ -0,0 +1 @@ +b1bc4099c5f04dc3 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/lib-unicode_ident.json b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/lib-unicode_ident.json new file mode 100644 index 0000000..5c3d96f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-ident-1017dd60fc08fd88/lib-unicode_ident.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":5438535436255082082,"profile":3033921117576893,"path":2101149359850431829,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicode-ident-1017dd60fc08fd88/dep-lib-unicode_ident","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/dep-lib-unicode_width b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/dep-lib-unicode_width new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/dep-lib-unicode_width differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/lib-unicode_width b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/lib-unicode_width new file mode 100644 index 0000000..a187ab4 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/lib-unicode_width @@ -0,0 +1 @@ +99446165ee5dd89f \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/lib-unicode_width.json b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/lib-unicode_width.json new file mode 100644 index 0000000..1d02013 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/unicode-width-3846e86ff5e2928c/lib-unicode_width.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"cjk\", \"default\"]","declared_features":"[\"cjk\", \"core\", \"default\", \"no_std\", \"rustc-dep-of-std\", \"std\"]","target":16876147670056848225,"profile":5347358027863023418,"path":15995958440835305428,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicode-width-3846e86ff5e2928c/dep-lib-unicode_width","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/dep-lib-utf8 b/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/dep-lib-utf8 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/dep-lib-utf8 differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/lib-utf8 b/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/lib-utf8 new file mode 100644 index 0000000..b830f81 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/lib-utf8 @@ -0,0 +1 @@ +d1fc893342898a26 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/lib-utf8.json b/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/lib-utf8.json new file mode 100644 index 0000000..f5a1bc5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/utf-8-fde59839729e6c84/lib-utf8.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":10206970129552530490,"profile":5347358027863023418,"path":998656151695515008,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/utf-8-fde59839729e6c84/dep-lib-utf8","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/dep-lib-version_check b/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/dep-lib-version_check new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/dep-lib-version_check differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/lib-version_check b/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/lib-version_check new file mode 100644 index 0000000..80d85ee --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/lib-version_check @@ -0,0 +1 @@ +a47e7b56e9687d21 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/lib-version_check.json b/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/lib-version_check.json new file mode 100644 index 0000000..081e803 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/version_check-924408caddcfebba/lib-version_check.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[]","declared_features":"[]","target":18099224280402537651,"profile":3033921117576893,"path":16714296172389534947,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/version_check-924408caddcfebba/dep-lib-version_check","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-561cdbb4b9a26819/run-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-561cdbb4b9a26819/run-build-script-build-script-build new file mode 100644 index 0000000..9fedd43 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-561cdbb4b9a26819/run-build-script-build-script-build @@ -0,0 +1 @@ +25f099a4ae580959 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-561cdbb4b9a26819/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-561cdbb4b9a26819/run-build-script-build-script-build.json new file mode 100644 index 0000000..7c80c1d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-561cdbb4b9a26819/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13102401248396471120,"build_script_build",false,7648833520711569261]],"local":[{"RerunIfChanged":{"output":"debug/build/zerocopy-561cdbb4b9a26819/output","paths":["build.rs","Cargo.toml"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/dep-lib-zerocopy b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/dep-lib-zerocopy new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/dep-lib-zerocopy differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/lib-zerocopy b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/lib-zerocopy new file mode 100644 index 0000000..d7ad98c --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/lib-zerocopy @@ -0,0 +1 @@ +e1565875955db341 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/lib-zerocopy.json b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/lib-zerocopy.json new file mode 100644 index 0000000..7da8274 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-97ddaa70c3afd57d/lib-zerocopy.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"simd\"]","declared_features":"[\"__internal_use_only_features_that_work_on_stable\", \"alloc\", \"derive\", \"float-nightly\", \"simd\", \"simd-nightly\", \"std\", \"zerocopy-derive\"]","target":3084901215544504908,"profile":5347358027863023418,"path":9695254401025769007,"deps":[[13102401248396471120,"build_script_build",false,6415756651275087909]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerocopy-97ddaa70c3afd57d/dep-lib-zerocopy","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/build-script-build-script-build new file mode 100644 index 0000000..42c13d8 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/build-script-build-script-build @@ -0,0 +1 @@ +6d0f1dd48f1d266a \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/build-script-build-script-build.json b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/build-script-build-script-build.json new file mode 100644 index 0000000..ae44df6 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":4723136837156968084,"features":"[\"simd\"]","declared_features":"[\"__internal_use_only_features_that_work_on_stable\", \"alloc\", \"derive\", \"float-nightly\", \"simd\", \"simd-nightly\", \"std\", \"zerocopy-derive\"]","target":5408242616063297496,"profile":3033921117576893,"path":14682106742689615346,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/dep-build-script-build-script-build b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/invoked.timestamp b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/.fingerprint/zerocopy-c56ca7bb2ddd51f6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/output b/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/output new file mode 100644 index 0000000..94882eb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/output @@ -0,0 +1,4 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(specialize) +cargo:rustc-check-cfg=cfg(folded_multiply) +cargo:rustc-cfg=folded_multiply diff --git a/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/root-output b/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/root-output new file mode 100644 index 0000000..bdf2802 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/stderr b/src-tauri/html_scraper/target/debug/build/ahash-4a15a117ce1da42d/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build-script-build b/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build-script-build new file mode 100755 index 0000000..2fad086 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build_script_build-9fb2ccc1fdf90091 b/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build_script_build-9fb2ccc1fdf90091 new file mode 100755 index 0000000..2fad086 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build_script_build-9fb2ccc1fdf90091 differ diff --git a/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build_script_build-9fb2ccc1fdf90091.d b/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build_script_build-9fb2ccc1fdf90091.d new file mode 100644 index 0000000..30fc7b9 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build_script_build-9fb2ccc1fdf90091.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build_script_build-9fb2ccc1fdf90091: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/ahash-9fb2ccc1fdf90091/build_script_build-9fb2ccc1fdf90091.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/output b/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/output new file mode 100644 index 0000000..d15ba9a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=build.rs diff --git a/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/root-output b/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/root-output new file mode 100644 index 0000000..d36c128 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/stderr b/src-tauri/html_scraper/target/debug/build/getrandom-a21865eb3d1ede1e/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build-script-build b/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build-script-build new file mode 100755 index 0000000..15acc8a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build_script_build-ca1115f666251079 b/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build_script_build-ca1115f666251079 new file mode 100755 index 0000000..15acc8a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build_script_build-ca1115f666251079 differ diff --git a/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build_script_build-ca1115f666251079.d b/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build_script_build-ca1115f666251079.d new file mode 100644 index 0000000..7748a48 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build_script_build-ca1115f666251079.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build_script_build-ca1115f666251079: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/getrandom-ca1115f666251079/build_script_build-ca1115f666251079.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/out/rules.rs b/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/out/rules.rs new file mode 100644 index 0000000..e669024 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/out/rules.rs @@ -0,0 +1,1656 @@ +use markup5ever :: { +expanded_name , local_name , namespace_prefix , namespace_url , ns +} ; use crate :: tokenizer :: states :: { +Plaintext , Rawtext , Rcdata , ScriptData +} ; use crate :: tree_builder :: tag_sets :: * ; use crate :: tree_builder :: types :: * ; use std :: borrow :: ToOwned ; use crate :: tendril :: SliceExt ; fn any_not_whitespace (x : & StrTendril) -> bool { +x . chars () . any (| c | ! c . is_ascii_whitespace ()) +} fn current_node < Handle > (open_elems : & [Handle]) -> & Handle { +open_elems . last () . expect ("no current element") +} # [doc (hidden)] impl < Handle , Sink > TreeBuilder < Handle , Sink > where Handle : Clone , Sink : TreeSink < Handle = Handle > , { +fn step (& mut self , mode : InsertionMode , token : Token) -> ProcessResult < Handle > { +self . debug_step (mode , & token) ; match mode { +Initial => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => Done , CommentToken (text) => self . append_comment_to_doc (text) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +if ! self . opts . iframe_srcdoc { +self . unexpected (& token) ; self . set_quirks_mode (Quirks) ; +} Reprocess (BeforeHtml , token) +} , +} +} +} , BeforeHtml => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => Done , CommentToken (text) => self . append_comment_to_doc (text) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => { +self . create_root (tag . attrs) ; self . mode = BeforeHead ; Done +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("head") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => false , _ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => self . unexpected (& tag) , (_ , token) => { +self . create_root (vec ! ()) ; Reprocess (BeforeHead , token) +} , +} +} +} , BeforeHead => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => Done , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) => { +self . head_elem = Some (self . insert_element_for (tag)) ; self . mode = InHead ; Done +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("head") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => false , _ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => self . unexpected (& tag) , (_ , token) => { +self . head_elem = Some (self . insert_phantom (local_name ! ("head"))) ; Reprocess (InHead , token) +} , +} +} +} , InHead => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("base") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("basefont") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("bgsound") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("link") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) => { +self . insert_and_pop_element_for (tag) ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("title") , .. +}) => { +self . parse_raw_data (tag , Rcdata) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noscript") , .. +}) => { +if (! self . opts . scripting_enabled) && (tag . name == local_name ! ("noscript")) { +self . insert_element_for (tag) ; self . mode = InHeadNoscript ; Done +} else { +self . parse_raw_data (tag , Rawtext) +} +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) => { +let elem = create_element (& mut self . sink , QualName :: new (None , ns ! (html) , local_name ! ("script")) , tag . attrs) ; if self . is_fragment () { +self . sink . mark_script_already_started (& elem) ; +} self . insert_appropriately (AppendNode (elem . clone ()) , None) ; self . open_elems . push (elem) ; self . to_raw_text_mode (ScriptData) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("head") , .. +}) => { +self . pop () ; self . mode = AfterHead ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) => { +self . insert_element_for (tag) ; self . active_formatting . push (Marker) ; self . frameset_ok = false ; self . mode = InTemplate ; self . template_modes . push (InTemplate) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => { +if ! self . in_html_elem_named (local_name ! ("template")) { +self . unexpected (& tag) ; +} else { +self . generate_implied_end (thorough_implied_end) ; self . expect_to_close (local_name ! ("template")) ; self . clear_active_formatting_to_marker () ; self . template_modes . pop () ; self . mode = self . reset_insertion_mode () ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => false , _ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => self . unexpected (& tag) , (_ , token) => { +self . pop () ; Reprocess (AfterHead , token) +} , +} +} +} , InHeadNoscript => match token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("noscript") , .. +}) => { +self . pop () ; self . mode = InHead ; Done +} , CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => self . step (InHead , token) , CommentToken (_) => self . step (InHead , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("basefont") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("bgsound") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("link") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) => self . step (InHead , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noscript") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => false , _ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => self . unexpected (& tag) , (_ , token) => { +self . unexpected (& token) ; self . pop () ; Reprocess (InHead , token) +} , +} +} +} , AfterHead => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("body") , .. +}) => { +self . insert_element_for (tag) ; self . frameset_ok = false ; self . mode = InBody ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("frameset") , .. +}) => { +self . insert_element_for (tag) ; self . mode = InFrameset ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("base") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("basefont") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("bgsound") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("link") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("title") , .. +}) => { +self . unexpected (& token) ; let head = self . head_elem . as_ref () . expect ("no head element") . clone () ; self . push (& head) ; let result = self . step (InHead , token) ; self . remove_from_stack (& head) ; result +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => self . step (InHead , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => false , _ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => self . unexpected (& tag) , (_ , token) => { +self . insert_phantom (local_name ! ("body")) ; Reprocess (InBody , token) +} , +} +} +} , InBody => match token { +NullCharacterToken => self . unexpected (& token) , CharacterTokens (_ , text) => { +self . reconstruct_formatting () ; if any_not_whitespace (& text) { +self . frameset_ok = false ; +} self . append_text (text) +} , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => { +self . unexpected (& tag) ; if ! self . in_html_elem_named (local_name ! ("template")) { +let top = html_elem (& self . open_elems) ; self . sink . add_attrs_if_missing (top , tag . attrs) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("base") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("basefont") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("bgsound") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("link") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("title") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => { +self . step (InHead , token) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("body") , .. +}) => { +self . unexpected (& tag) ; match self . body_elem () . cloned () { +Some (ref node) if self . open_elems . len () != 1 && ! self . in_html_elem_named (local_name ! ("template")) => { +self . frameset_ok = false ; self . sink . add_attrs_if_missing (node , tag . attrs) +} , _ => { +} +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("frameset") , .. +}) => { +self . unexpected (& tag) ; if ! self . frameset_ok { +return Done ; +} let body = unwrap_or_return ! (self . body_elem () , Done) . clone () ; self . sink . remove_from_parent (& body) ; self . open_elems . truncate (1) ; self . insert_element_for (tag) ; self . mode = InFrameset ; Done +} , EOFToken => { +if ! self . template_modes . is_empty () { +self . step (InTemplate , token) +} else { +self . check_body_end () ; self . stop_parsing () +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) => { +if self . in_scope_named (default_scope , local_name ! ("body")) { +self . check_body_end () ; self . mode = AfterBody ; +} else { +self . sink . parse_error (Borrowed (" with no in scope")) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => { +if self . in_scope_named (default_scope , local_name ! ("body")) { +self . check_body_end () ; Reprocess (AfterBody , token) +} else { +self . sink . parse_error (Borrowed (" with no in scope")) ; Done +} +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("address") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("article") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("aside") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("blockquote") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("center") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("details") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dialog") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dir") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("div") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dl") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("fieldset") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("figcaption") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("figure") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("footer") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("header") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("hgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("main") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("nav") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("ol") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("p") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("search") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("section") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("summary") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("ul") , .. +}) => { +self . close_p_element_in_button_scope () ; self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("menu") , .. +}) => { +self . close_p_element_in_button_scope () ; self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h1") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h2") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h3") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h4") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h5") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h6") , .. +}) => { +self . close_p_element_in_button_scope () ; if self . current_node_in (heading_tag) { +self . sink . parse_error (Borrowed ("nested heading tags")) ; self . pop () ; +} self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("pre") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("listing") , .. +}) => { +self . close_p_element_in_button_scope () ; self . insert_element_for (tag) ; self . ignore_lf = true ; self . frameset_ok = false ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("form") , .. +}) => { +if self . form_elem . is_some () && ! self . in_html_elem_named (local_name ! ("template")) { +self . sink . parse_error (Borrowed ("nested forms")) ; +} else { +self . close_p_element_in_button_scope () ; let elem = self . insert_element_for (tag) ; if ! self . in_html_elem_named (local_name ! ("template")) { +self . form_elem = Some (elem) ; +} +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("li") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dd") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dt") , .. +}) => { +declare_tag_set ! (close_list = "li") ; declare_tag_set ! (close_defn = "dd" "dt") ; declare_tag_set ! (extra_special = [special_tag] - "address" "div" "p") ; let list = match tag . name { +local_name ! ("li") => true , local_name ! ("dd") | local_name ! ("dt") => false , _ => unreachable ! () , +} ; self . frameset_ok = false ; let mut to_close = None ; for node in self . open_elems . iter () . rev () { +let name = self . sink . elem_name (node) ; let can_close = if list { +close_list (name) +} else { +close_defn (name) +} ; if can_close { +to_close = Some (name . local . clone ()) ; break ; +} if extra_special (name) { +break ; +} +} match to_close { +Some (name) => { +self . generate_implied_end_except (name . clone ()) ; self . expect_to_close (name) ; +} None => () , +} self . close_p_element_in_button_scope () ; self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("plaintext") , .. +}) => { +self . close_p_element_in_button_scope () ; self . insert_element_for (tag) ; ToPlaintext +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("button") , .. +}) => { +if self . in_scope_named (default_scope , local_name ! ("button")) { +self . sink . parse_error (Borrowed ("nested buttons")) ; self . generate_implied_end (cursory_implied_end) ; self . pop_until_named (local_name ! ("button")) ; +} self . reconstruct_formatting () ; self . insert_element_for (tag) ; self . frameset_ok = false ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("address") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("article") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("aside") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("blockquote") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("button") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("center") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("details") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("dialog") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("dir") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("div") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("dl") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("fieldset") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("figcaption") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("figure") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("footer") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("header") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("hgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("listing") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("main") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("menu") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("nav") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("ol") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("pre") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("search") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("section") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("summary") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("ul") , .. +}) => { +if ! self . in_scope_named (default_scope , tag . name . clone ()) { +self . unexpected (& tag) ; +} else { +self . generate_implied_end (cursory_implied_end) ; self . expect_to_close (tag . name) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("form") , .. +}) => { +if ! self . in_html_elem_named (local_name ! ("template")) { +let node = match self . form_elem . take () { +None => { +self . sink . parse_error (Borrowed ("Null form element pointer on ")) ; return Done ; +} Some (x) => x , +} ; if ! self . in_scope (default_scope , | n | self . sink . same_node (& node , & n)) { +self . sink . parse_error (Borrowed ("Form element not in scope on ")) ; return Done ; +} self . generate_implied_end (cursory_implied_end) ; let current = self . current_node () . clone () ; self . remove_from_stack (& node) ; if ! self . sink . same_node (& current , & node) { +self . sink . parse_error (Borrowed ("Bad open element on ")) ; +} +} else { +if ! self . in_scope_named (default_scope , local_name ! ("form")) { +self . sink . parse_error (Borrowed ("Form element not in scope on ")) ; return Done ; +} self . generate_implied_end (cursory_implied_end) ; if ! self . current_node_named (local_name ! ("form")) { +self . sink . parse_error (Borrowed ("Bad open element on ")) ; +} self . pop_until_named (local_name ! ("form")) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("p") , .. +}) => { +if ! self . in_scope_named (button_scope , local_name ! ("p")) { +self . sink . parse_error (Borrowed ("No

tag to close")) ; self . insert_phantom (local_name ! ("p")) ; +} self . close_p_element () ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("li") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("dd") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("dt") , .. +}) => { +let in_scope = if tag . name == local_name ! ("li") { +self . in_scope_named (list_item_scope , tag . name . clone ()) +} else { +self . in_scope_named (default_scope , tag . name . clone ()) +} ; if in_scope { +self . generate_implied_end_except (tag . name . clone ()) ; self . expect_to_close (tag . name) ; +} else { +self . sink . parse_error (Borrowed ("No matching tag to close")) ; +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h1") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h2") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h3") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h4") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h5") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h6") , .. +}) => { +if self . in_scope (default_scope , | n | self . elem_in (& n , heading_tag)) { +self . generate_implied_end (cursory_implied_end) ; if ! self . current_node_named (tag . name) { +self . sink . parse_error (Borrowed ("Closing wrong heading tag")) ; +} self . pop_until (heading_tag) ; +} else { +self . sink . parse_error (Borrowed ("No heading tag to close")) ; +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("a") , .. +}) => { +self . handle_misnested_a_tags (& tag) ; self . reconstruct_formatting () ; self . create_formatting_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("b") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("big") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("code") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("em") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("font") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("i") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("s") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("small") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("strike") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("strong") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tt") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("u") , .. +}) => { +self . reconstruct_formatting () ; self . create_formatting_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("nobr") , .. +}) => { +self . reconstruct_formatting () ; if self . in_scope_named (default_scope , local_name ! ("nobr")) { +self . sink . parse_error (Borrowed ("Nested ")) ; self . adoption_agency (local_name ! ("nobr")) ; self . reconstruct_formatting () ; +} self . create_formatting_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("a") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("b") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("big") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("code") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("em") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("font") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("i") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("nobr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("s") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("small") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("strike") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("strong") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tt") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("u") , .. +}) => { +self . adoption_agency (tag . name) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("applet") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("marquee") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("object") , .. +}) => { +self . reconstruct_formatting () ; self . insert_element_for (tag) ; self . active_formatting . push (Marker) ; self . frameset_ok = false ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("applet") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("marquee") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("object") , .. +}) => { +if ! self . in_scope_named (default_scope , tag . name . clone ()) { +self . unexpected (& tag) ; +} else { +self . generate_implied_end (cursory_implied_end) ; self . expect_to_close (tag . name) ; self . clear_active_formatting_to_marker () ; +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("table") , .. +}) => { +if self . quirks_mode != Quirks { +self . close_p_element_in_button_scope () ; +} self . insert_element_for (tag) ; self . frameset_ok = false ; self . mode = InTable ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => { +self . unexpected (& tag) ; self . step (InBody , TagToken (Tag { +kind : StartTag , attrs : vec ! () , .. tag +})) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("area") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("br") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("embed") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("img") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("keygen") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("wbr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("input") , .. +}) => { +let keep_frameset_ok = match tag . name { +local_name ! ("input") => self . is_type_hidden (& tag) , _ => false , +} ; self . reconstruct_formatting () ; self . insert_and_pop_element_for (tag) ; if ! keep_frameset_ok { +self . frameset_ok = false ; +} DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("param") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("source") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("track") , .. +}) => { +self . insert_and_pop_element_for (tag) ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("hr") , .. +}) => { +self . close_p_element_in_button_scope () ; self . insert_and_pop_element_for (tag) ; self . frameset_ok = false ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("image") , .. +}) => { +self . unexpected (& tag) ; self . step (InBody , TagToken (Tag { +name : local_name ! ("img") , .. tag +})) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("textarea") , .. +}) => { +self . ignore_lf = true ; self . frameset_ok = false ; self . parse_raw_data (tag , Rcdata) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("xmp") , .. +}) => { +self . close_p_element_in_button_scope () ; self . reconstruct_formatting () ; self . frameset_ok = false ; self . parse_raw_data (tag , Rawtext) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("iframe") , .. +}) => { +self . frameset_ok = false ; self . parse_raw_data (tag , Rawtext) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noembed") , .. +}) => { +self . parse_raw_data (tag , Rawtext) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("select") , .. +}) => { +self . reconstruct_formatting () ; self . insert_element_for (tag) ; self . frameset_ok = false ; self . mode = match self . mode { +InTable | InCaption | InTableBody | InRow | InCell => InSelectInTable , _ => InSelect , +} ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("optgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("option") , .. +}) => { +if self . current_node_named (local_name ! ("option")) { +self . pop () ; +} self . reconstruct_formatting () ; self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("rb") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("rtc") , .. +}) => { +if self . in_scope_named (default_scope , local_name ! ("ruby")) { +self . generate_implied_end (cursory_implied_end) ; +} if ! self . current_node_named (local_name ! ("ruby")) { +self . unexpected (& tag) ; +} self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("rp") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("rt") , .. +}) => { +if self . in_scope_named (default_scope , local_name ! ("ruby")) { +self . generate_implied_end_except (local_name ! ("rtc")) ; +} if ! self . current_node_named (local_name ! ("rtc")) && ! self . current_node_named (local_name ! ("ruby")) { +self . unexpected (& tag) ; +} self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("math") , .. +}) => self . enter_foreign (tag , ns ! (mathml)) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("svg") , .. +}) => self . enter_foreign (tag , ns ! (svg)) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("frame") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) => { +self . unexpected (& token) ; Done +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , .. +})) => { +if self . opts . scripting_enabled && tag . name == local_name ! ("noscript") { +self . parse_raw_data (tag , Rawtext) +} else { +self . reconstruct_formatting () ; self . insert_element_for (tag) ; Done +} +} , (true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => { +self . process_end_tag_in_body (tag) ; Done +} , (_ , _) => panic ! ("impossible case in InBody mode") , +} +} +} , Text => match token { +CharacterTokens (_ , text) => self . append_text (text) , EOFToken => { +self . unexpected (& token) ; if self . current_node_named (local_name ! ("script")) { +let current = current_node (& self . open_elems) ; self . sink . mark_script_already_started (current) ; +} self . pop () ; Reprocess (self . orig_mode . take () . unwrap () , token) +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => { +let node = self . pop () ; self . mode = self . orig_mode . take () . unwrap () ; if tag . name == local_name ! ("script") { +return Script (node) ; +} Done +} , (_ , _) => panic ! ("impossible case in Text mode") , +} +} +} , InTable => match token { +NullCharacterToken => self . process_chars_in_table (token) , CharacterTokens (..) => self . process_chars_in_table (token) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) => { +self . pop_until_current (table_scope) ; self . active_formatting . push (Marker) ; self . insert_element_for (tag) ; self . mode = InCaption ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) => { +self . pop_until_current (table_scope) ; self . insert_element_for (tag) ; self . mode = InColumnGroup ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) => { +self . pop_until_current (table_scope) ; self . insert_phantom (local_name ! ("colgroup")) ; Reprocess (InColumnGroup , token) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) => { +self . pop_until_current (table_scope) ; self . insert_element_for (tag) ; self . mode = InTableBody ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) => { +self . pop_until_current (table_scope) ; self . insert_phantom (local_name ! ("tbody")) ; Reprocess (InTableBody , token) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("table") , .. +}) => { +self . unexpected (& token) ; if self . in_scope_named (table_scope , local_name ! ("table")) { +self . pop_until_named (local_name ! ("table")) ; Reprocess (self . reset_insertion_mode () , token) +} else { +Done +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) => { +if self . in_scope_named (table_scope , local_name ! ("table")) { +self . pop_until_named (local_name ! ("table")) ; self . mode = self . reset_insertion_mode () ; +} else { +self . unexpected (& token) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) => self . unexpected (& token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => self . step (InHead , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("input") , .. +}) => { +self . unexpected (& tag) ; if self . is_type_hidden (& tag) { +self . insert_and_pop_element_for (tag) ; DoneAckSelfClosing +} else { +self . foster_parent_in_body (TagToken (tag)) +} +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("form") , .. +}) => { +self . unexpected (& tag) ; if ! self . in_html_elem_named (local_name ! ("template")) && self . form_elem . is_none () { +self . form_elem = Some (self . insert_and_pop_element_for (tag)) ; +} Done +} , EOFToken => self . step (InBody , token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +self . unexpected (& token) ; self . foster_parent_in_body (token) +} , +} +} +} , InTableText => match token { +NullCharacterToken => self . unexpected (& token) , CharacterTokens (split , text) => { +self . pending_table_text . push ((split , text)) ; Done +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +let pending = :: std :: mem :: take (& mut self . pending_table_text) ; let contains_nonspace = pending . iter () . any (| & (split , ref text) | { +match split { +Whitespace => false , NotWhitespace => true , NotSplit => any_not_whitespace (text) , +} +}) ; if contains_nonspace { +self . sink . parse_error (Borrowed ("Non-space table text")) ; for (split , text) in pending . into_iter () { +match self . foster_parent_in_body (CharacterTokens (split , text)) { +Done => () , _ => panic ! ("not prepared to handle this!") , +} +} +} else { +for (_ , text) in pending . into_iter () { +self . append_text (text) ; +} +} Reprocess (self . orig_mode . take () . unwrap () , token) +} , +} +} +} , InCaption => match token { +crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) => { +if self . in_scope_named (table_scope , local_name ! ("caption")) { +self . generate_implied_end (cursory_implied_end) ; self . expect_to_close (local_name ! ("caption")) ; self . clear_active_formatting_to_marker () ; match tag { +Tag { +kind : EndTag , name : local_name ! ("caption") , .. +} => { +self . mode = InTable ; Done +} _ => Reprocess (InTable , TagToken (tag)) +} +} else { +self . unexpected (& tag) ; Done +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . step (InBody , token) , +} +} +} , InColumnGroup => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) => { +self . insert_and_pop_element_for (tag) ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) => { +if self . current_node_named (local_name ! ("colgroup")) { +self . pop () ; self . mode = InTable ; +} else { +self . unexpected (& token) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) => self . unexpected (& token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => self . step (InHead , token) , EOFToken => self . step (InBody , token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +if self . current_node_named (local_name ! ("colgroup")) { +self . pop () ; Reprocess (InTable , token) +} else { +self . unexpected (& token) +} +} , +} +} +} , InTableBody => match token { +crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) => { +self . pop_until_current (table_body_context) ; self . insert_element_for (tag) ; self . mode = InRow ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) => { +self . unexpected (& token) ; self . pop_until_current (table_body_context) ; self . insert_phantom (local_name ! ("tr")) ; Reprocess (InRow , token) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) => { +if self . in_scope_named (table_scope , tag . name . clone ()) { +self . pop_until_current (table_body_context) ; self . pop () ; self . mode = InTable ; +} else { +self . unexpected (& tag) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) => { +declare_tag_set ! (table_outer = "table" "tbody" "tfoot") ; if self . in_scope (table_scope , | e | self . elem_in (& e , table_outer)) { +self . pop_until_current (table_body_context) ; self . pop () ; Reprocess (InTable , token) +} else { +self . unexpected (& token) +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . step (InTable , token) , +} +} +} , InRow => match token { +crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) => { +self . pop_until_current (table_row_context) ; self . insert_element_for (tag) ; self . mode = InCell ; self . active_formatting . push (Marker) ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) => { +if self . in_scope_named (table_scope , local_name ! ("tr")) { +self . pop_until_current (table_row_context) ; let node = self . pop () ; self . assert_named (& node , local_name ! ("tr")) ; self . mode = InTableBody ; +} else { +self . unexpected (& token) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) => { +if self . in_scope_named (table_scope , local_name ! ("tr")) { +self . pop_until_current (table_row_context) ; let node = self . pop () ; self . assert_named (& node , local_name ! ("tr")) ; Reprocess (InTableBody , token) +} else { +self . unexpected (& token) +} +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) => { +if self . in_scope_named (table_scope , tag . name . clone ()) { +if self . in_scope_named (table_scope , local_name ! ("tr")) { +self . pop_until_current (table_row_context) ; let node = self . pop () ; self . assert_named (& node , local_name ! ("tr")) ; Reprocess (InTableBody , TagToken (tag)) +} else { +Done +} +} else { +self . unexpected (& tag) +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . step (InTable , token) , +} +} +} , InCell => match token { +crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) => { +if self . in_scope_named (table_scope , tag . name . clone ()) { +self . generate_implied_end (cursory_implied_end) ; self . expect_to_close (tag . name) ; self . clear_active_formatting_to_marker () ; self . mode = InRow ; +} else { +self . unexpected (& tag) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) => { +if self . in_scope (table_scope , | n | self . elem_in (& n , td_th)) { +self . close_the_cell () ; Reprocess (InRow , token) +} else { +self . unexpected (& token) +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => self . unexpected (& token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) => { +if self . in_scope_named (table_scope , tag . name . clone ()) { +self . close_the_cell () ; Reprocess (InRow , TagToken (tag)) +} else { +self . unexpected (& tag) +} +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . step (InBody , token) , +} +} +} , InSelect => match token { +NullCharacterToken => self . unexpected (& token) , CharacterTokens (_ , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("option") , .. +}) => { +if self . current_node_named (local_name ! ("option")) { +self . pop () ; +} self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("optgroup") , .. +}) => { +if self . current_node_named (local_name ! ("option")) { +self . pop () ; +} if self . current_node_named (local_name ! ("optgroup")) { +self . pop () ; +} self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("hr") , .. +}) => { +if self . current_node_named (local_name ! ("option")) { +self . pop () ; +} if self . current_node_named (local_name ! ("optgroup")) { +self . pop () ; +} self . insert_element_for (tag) ; self . pop () ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("optgroup") , .. +}) => { +if self . open_elems . len () >= 2 && self . current_node_named (local_name ! ("option")) && self . html_elem_named (& self . open_elems [self . open_elems . len () - 2] , local_name ! ("optgroup")) { +self . pop () ; +} if self . current_node_named (local_name ! ("optgroup")) { +self . pop () ; +} else { +self . unexpected (& token) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("option") , .. +}) => { +if self . current_node_named (local_name ! ("option")) { +self . pop () ; +} else { +self . unexpected (& token) ; +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("select") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("select") , .. +}) => { +let in_scope = self . in_scope_named (select_scope , local_name ! ("select")) ; if ! in_scope || tag . kind == StartTag { +self . unexpected (& tag) ; +} if in_scope { +self . pop_until_named (local_name ! ("select")) ; self . mode = self . reset_insertion_mode () ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("input") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("keygen") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("textarea") , .. +}) => { +self . unexpected (& token) ; if self . in_scope_named (select_scope , local_name ! ("select")) { +self . pop_until_named (local_name ! ("select")) ; Reprocess (self . reset_insertion_mode () , token) +} else { +Done +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => self . step (InHead , token) , EOFToken => self . step (InBody , token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . unexpected (& token) , +} +} +} , InSelectInTable => match token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("table") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) => { +self . unexpected (& token) ; self . pop_until_named (local_name ! ("select")) ; Reprocess (self . reset_insertion_mode () , token) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) => { +self . unexpected (& tag) ; if self . in_scope_named (table_scope , tag . name . clone ()) { +self . pop_until_named (local_name ! ("select")) ; Reprocess (self . reset_insertion_mode () , TagToken (tag)) +} else { +Done +} +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . step (InSelect , token) , +} +} +} , InTemplate => match token { +CharacterTokens (_ , _) => self . step (InBody , token) , CommentToken (_) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("base") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("basefont") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("bgsound") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("link") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("title") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => { +self . step (InHead , token) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) => { +self . template_modes . pop () ; self . template_modes . push (InTable) ; Reprocess (InTable , token) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) => { +self . template_modes . pop () ; self . template_modes . push (InColumnGroup) ; Reprocess (InColumnGroup , token) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) => { +self . template_modes . pop () ; self . template_modes . push (InTableBody) ; Reprocess (InTableBody , token) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) => { +self . template_modes . pop () ; self . template_modes . push (InRow) ; Reprocess (InRow , token) +} , EOFToken => { +if ! self . in_html_elem_named (local_name ! ("template")) { +self . stop_parsing () +} else { +self . unexpected (& token) ; self . pop_until_named (local_name ! ("template")) ; self . clear_active_formatting_to_marker () ; self . template_modes . pop () ; self . mode = self . reset_insertion_mode () ; Reprocess (self . reset_insertion_mode () , token) +} +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , .. +})) => { +self . template_modes . pop () ; self . template_modes . push (InBody) ; Reprocess (InBody , TagToken (tag)) +} , (_ , token) => self . unexpected (& token) , +} +} +} , AfterBody => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => self . step (InBody , token) , CommentToken (text) => self . append_comment_to_html (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => { +if self . is_fragment () { +self . unexpected (& token) ; +} else { +self . mode = AfterAfterBody ; +} Done +} , EOFToken => self . stop_parsing () , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +self . unexpected (& token) ; Reprocess (InBody , token) +} , +} +} +} , InFrameset => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("frameset") , .. +}) => { +self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("frameset") , .. +}) => { +if self . open_elems . len () == 1 { +self . unexpected (& token) ; +} else { +self . pop () ; if ! self . is_fragment () && ! self . current_node_named (local_name ! ("frameset")) { +self . mode = AfterFrameset ; +} +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("frame") , .. +}) => { +self . insert_and_pop_element_for (tag) ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) => self . step (InHead , token) , EOFToken => { +if self . open_elems . len () != 1 { +self . unexpected (& token) ; +} self . stop_parsing () +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . unexpected (& token) , +} +} +} , AfterFrameset => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => { +self . mode = AfterAfterFrameset ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) => self . step (InHead , token) , EOFToken => self . stop_parsing () , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . unexpected (& token) , +} +} +} , AfterAfterBody => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => self . step (InBody , token) , CommentToken (text) => self . append_comment_to_doc (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , EOFToken => self . stop_parsing () , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +self . unexpected (& token) ; Reprocess (InBody , token) +} , +} +} +} , AfterAfterFrameset => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => self . step (InBody , token) , CommentToken (text) => self . append_comment_to_doc (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , EOFToken => self . stop_parsing () , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) => self . step (InHead , token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . unexpected (& token) , +} +} +} , +} +} fn step_foreign (& mut self , token : Token) -> ProcessResult < Handle > { +match token { +NullCharacterToken => { +self . unexpected (& token) ; self . append_text ("\u{fffd}" . to_tendril ()) +} , CharacterTokens (_ , text) => { +if any_not_whitespace (& text) { +self . frameset_ok = false ; +} self . append_text (text) +} , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("b") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("big") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("blockquote") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("br") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("center") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("code") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dd") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("div") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dl") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dt") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("em") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("embed") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h1") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h2") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h3") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h4") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h5") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h6") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("hr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("i") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("img") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("li") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("listing") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("menu") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("nobr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("ol") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("p") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("pre") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("ruby") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("s") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("small") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("span") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("strong") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("strike") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("sub") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("sup") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("table") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tt") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("u") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("ul") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("var") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("p") , .. +}) => self . unexpected_start_tag_in_foreign_content (tag) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("font") , .. +}) => { +let unexpected = tag . attrs . iter () . any (| attr | { +matches ! (attr . name . expanded () , expanded_name ! ("" , "color") | expanded_name ! ("" , "face") | expanded_name ! ("" , "size")) +}) ; if unexpected { +self . unexpected_start_tag_in_foreign_content (tag) +} else { +self . foreign_start_tag (tag) +} +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , .. +})) => self . foreign_start_tag (tag) , (true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => { +let mut first = true ; let mut stack_idx = self . open_elems . len () - 1 ; loop { +if stack_idx == 0 { +return Done ; +} let html ; let eq ; { +let node_name = self . sink . elem_name (& self . open_elems [stack_idx]) ; html = * node_name . ns == ns ! (html) ; eq = node_name . local . eq_ignore_ascii_case (& tag . name) ; +} if ! first && html { +let mode = self . mode ; return self . step (mode , TagToken (tag)) ; +} if eq { +self . open_elems . truncate (stack_idx) ; return Done ; +} if first { +self . unexpected (& tag) ; first = false ; +} stack_idx -= 1 ; +} +} , (_ , _) => panic ! ("impossible case in foreign content") , +} +} +} +} +} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/output b/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/output new file mode 100644 index 0000000..2cbd6da --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/rules.rs diff --git a/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/root-output b/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/root-output new file mode 100644 index 0000000..5237abf --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/stderr b/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build-script-build b/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build-script-build new file mode 100755 index 0000000..f41d90c Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build_script_build-adcca677c3fbce46 b/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build_script_build-adcca677c3fbce46 new file mode 100755 index 0000000..f41d90c Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build_script_build-adcca677c3fbce46 differ diff --git a/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build_script_build-adcca677c3fbce46.d b/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build_script_build-adcca677c3fbce46.d new file mode 100644 index 0000000..2bef6fb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build_script_build-adcca677c3fbce46.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build_script_build-adcca677c3fbce46: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/build.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/macros/match_token.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/html5ever-adcca677c3fbce46/build_script_build-adcca677c3fbce46.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/build.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/macros/match_token.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/build.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/macros/match_token.rs: diff --git a/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/output b/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/output new file mode 100644 index 0000000..ce0c677 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/output @@ -0,0 +1,24 @@ +cargo:rerun-if-changed=build.rs +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION +cargo:rustc-cfg=freebsd12 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_MUSL_V1_2_3 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_GNU_TIME_BITS +cargo:rustc-check-cfg=cfg(emscripten_old_stat_abi) +cargo:rustc-check-cfg=cfg(espidf_time32) +cargo:rustc-check-cfg=cfg(freebsd10) +cargo:rustc-check-cfg=cfg(freebsd11) +cargo:rustc-check-cfg=cfg(freebsd12) +cargo:rustc-check-cfg=cfg(freebsd13) +cargo:rustc-check-cfg=cfg(freebsd14) +cargo:rustc-check-cfg=cfg(freebsd15) +cargo:rustc-check-cfg=cfg(gnu_file_offset_bits64) +cargo:rustc-check-cfg=cfg(gnu_time_bits64) +cargo:rustc-check-cfg=cfg(libc_deny_warnings) +cargo:rustc-check-cfg=cfg(libc_thread_local) +cargo:rustc-check-cfg=cfg(linux_time_bits64) +cargo:rustc-check-cfg=cfg(musl_v1_2_3) +cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx","cygwin")) +cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos","nto71_iosock","nto80")) +cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) diff --git a/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/root-output b/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/root-output new file mode 100644 index 0000000..636ae6d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/stderr b/src-tauri/html_scraper/target/debug/build/libc-0b86aa2c61452cbd/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/output b/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/output new file mode 100644 index 0000000..ce0c677 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/output @@ -0,0 +1,24 @@ +cargo:rerun-if-changed=build.rs +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION +cargo:rustc-cfg=freebsd12 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_MUSL_V1_2_3 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_GNU_TIME_BITS +cargo:rustc-check-cfg=cfg(emscripten_old_stat_abi) +cargo:rustc-check-cfg=cfg(espidf_time32) +cargo:rustc-check-cfg=cfg(freebsd10) +cargo:rustc-check-cfg=cfg(freebsd11) +cargo:rustc-check-cfg=cfg(freebsd12) +cargo:rustc-check-cfg=cfg(freebsd13) +cargo:rustc-check-cfg=cfg(freebsd14) +cargo:rustc-check-cfg=cfg(freebsd15) +cargo:rustc-check-cfg=cfg(gnu_file_offset_bits64) +cargo:rustc-check-cfg=cfg(gnu_time_bits64) +cargo:rustc-check-cfg=cfg(libc_deny_warnings) +cargo:rustc-check-cfg=cfg(libc_thread_local) +cargo:rustc-check-cfg=cfg(linux_time_bits64) +cargo:rustc-check-cfg=cfg(musl_v1_2_3) +cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx","cygwin")) +cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos","nto71_iosock","nto80")) +cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) diff --git a/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/root-output b/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/root-output new file mode 100644 index 0000000..b9d3868 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/stderr b/src-tauri/html_scraper/target/debug/build/libc-0d1edeabd8309d4a/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build-script-build b/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build-script-build new file mode 100755 index 0000000..3b5f5cb Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build_script_build-78709398769c3b8a b/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build_script_build-78709398769c3b8a new file mode 100755 index 0000000..3b5f5cb Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build_script_build-78709398769c3b8a differ diff --git a/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build_script_build-78709398769c3b8a.d b/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build_script_build-78709398769c3b8a.d new file mode 100644 index 0000000..9904f9a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build_script_build-78709398769c3b8a.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build_script_build-78709398769c3b8a: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/libc-78709398769c3b8a/build_script_build-78709398769c3b8a.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build-script-build b/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build-script-build new file mode 100755 index 0000000..8c71929 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build_script_build-f3369c53aa6e7cf1 b/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build_script_build-f3369c53aa6e7cf1 new file mode 100755 index 0000000..8c71929 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build_script_build-f3369c53aa6e7cf1 differ diff --git a/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build_script_build-f3369c53aa6e7cf1.d b/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build_script_build-f3369c53aa6e7cf1.d new file mode 100644 index 0000000..27ef4fb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build_script_build-f3369c53aa6e7cf1.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build_script_build-f3369c53aa6e7cf1: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/libc-f3369c53aa6e7cf1/build_script_build-f3369c53aa6e7cf1.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build-script-build b/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build-script-build new file mode 100755 index 0000000..b68b774 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build_script_build-056ce16850e74d93 b/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build_script_build-056ce16850e74d93 new file mode 100755 index 0000000..b68b774 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build_script_build-056ce16850e74d93 differ diff --git a/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build_script_build-056ce16850e74d93.d b/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build_script_build-056ce16850e74d93.d new file mode 100644 index 0000000..f449ea3 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build_script_build-056ce16850e74d93.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build_script_build-056ce16850e74d93: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/lock_api-056ce16850e74d93/build_script_build-056ce16850e74d93.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/output b/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/output new file mode 100644 index 0000000..232d899 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/output @@ -0,0 +1,3 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(has_const_fn_trait_bound) +cargo:rustc-cfg=has_const_fn_trait_bound diff --git a/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/root-output b/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/root-output new file mode 100644 index 0000000..10f09e3 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/stderr b/src-tauri/html_scraper/target/debug/build/lock_api-3da0d822e2d6cc17/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/generated.rs b/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/generated.rs new file mode 100644 index 0000000..467da59 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/generated.rs @@ -0,0 +1,2927 @@ +pub type LocalName = :: string_cache :: Atom < LocalNameStaticSet > ; +# [derive (PartialEq , Eq , PartialOrd , Ord)] pub struct LocalNameStaticSet ; +impl :: string_cache :: StaticAtomSet for LocalNameStaticSet { fn get () -> & 'static :: string_cache :: PhfStrSet { static SET : :: string_cache :: PhfStrSet = :: string_cache :: PhfStrSet { key : 12913932095322966823u64 , disps : & [(0u32 , 2u32) , (0u32 , 12u32) , (0u32 , 1u32) , (0u32 , 196u32) , (0u32 , 6u32) , (0u32 , 352u32) , (0u32 , 96u32) , (0u32 , 27u32) , (0u32 , 1u32) , (0u32 , 151u32) , (0u32 , 9u32) , (0u32 , 112u32) , (0u32 , 200u32) , (0u32 , 214u32) , (0u32 , 0u32) , (0u32 , 17u32) , (0u32 , 2u32) , (0u32 , 9u32) , (0u32 , 8u32) , (1u32 , 83u32) , (0u32 , 23u32) , (3u32 , 151u32) , (0u32 , 77u32) , (0u32 , 35u32) , (0u32 , 4u32) , (2u32 , 150u32) , (0u32 , 321u32) , (0u32 , 22u32) , (0u32 , 64u32) , (0u32 , 24u32) , (0u32 , 2u32) , (0u32 , 12u32) , (0u32 , 2u32) , (2u32 , 168u32) , (0u32 , 58u32) , (2u32 , 214u32) , (0u32 , 167u32) , (2u32 , 544u32) , (3u32 , 112u32) , (0u32 , 3u32) , (0u32 , 63u32) , (0u32 , 483u32) , (0u32 , 33u32) , (0u32 , 0u32) , (0u32 , 1u32) , (2u32 , 36u32) , (0u32 , 18u32) , (0u32 , 4u32) , (0u32 , 0u32) , (0u32 , 206u32) , (1u32 , 218u32) , (1u32 , 25u32) , (0u32 , 0u32) , (0u32 , 74u32) , (0u32 , 1u32) , (3u32 , 258u32) , (3u32 , 525u32) , (0u32 , 0u32) , (3u32 , 403u32) , (0u32 , 193u32) , (2u32 , 349u32) , (0u32 , 294u32) , (0u32 , 183u32) , (0u32 , 3u32) , (1u32 , 217u32) , (0u32 , 384u32) , (4u32 , 395u32) , (0u32 , 29u32) , (0u32 , 6u32) , (0u32 , 0u32) , (0u32 , 306u32) , (0u32 , 220u32) , (0u32 , 6u32) , (0u32 , 2u32) , (0u32 , 0u32) , (0u32 , 0u32) , (1u32 , 156u32) , (1u32 , 28u32) , (0u32 , 202u32) , (0u32 , 104u32) , (0u32 , 537u32) , (0u32 , 120u32) , (0u32 , 535u32) , (1u32 , 432u32) , (0u32 , 127u32) , (4u32 , 6u32) , (0u32 , 3u32) , (0u32 , 13u32) , (2u32 , 236u32) , (3u32 , 137u32) , (0u32 , 249u32) , (0u32 , 86u32) , (3u32 , 242u32) , (0u32 , 251u32) , (0u32 , 218u32) , (0u32 , 55u32) , (0u32 , 314u32) , (2u32 , 225u32) , (1u32 , 12u32) , (0u32 , 435u32) , (0u32 , 61u32) , (0u32 , 26u32) , (13u32 , 46u32) , (3u32 , 561u32) , (34u32 , 53u32) , (0u32 , 84u32) , (3u32 , 430u32) , (8u32 , 242u32) , (28u32 , 328u32) , (2u32 , 397u32) , (0u32 , 316u32) , (1u32 , 0u32) , (0u32 , 14u32) , (2u32 , 89u32) , (25u32 , 39u32) , (2u32 , 392u32) , (0u32 , 0u32) , (6u32 , 245u32) , (0u32 , 44u32) , (0u32 , 11u32)] , atoms : & ["columnspacing", +"kernelunitlength", +"color-interpolation", +"complexes", +"annotation-xml", +"specularconstant", +"mozbrowser", +"interval", +"gradientUnits", +"onmouseleave", +"writing-mode", +"aria-valuemax", +"animateTransform", +"definitionURL", +"background", +"aria-templateid", +"feGaussianBlur", +"subscriptshift", +"xmlns:xlink", +"fieldset", +"spreadmethod", +"formtarget", +"feDiffuseLighting", +"feturbulence", +"onbeforeeditfocus", +"colgroup", +"mathbackground", +"onkeydown", +"feColorMatrix", +"startoffset", +"autofocus", +"contextmenu", +"longdesc", +"aria-relevant", +"onbeforeprint", +"fill-rule", +"hreflang", +"domainofapplication", +"keytimes", +"numoctaves", +"partialdiff", +"aria-describedby", +"color-interpolation-filters", +"preserveaspectratio", +"actiontype", +"quotient", +"notation", +"autocomplete", +"contentStyleType", +"strikethrough-thickness", +"stop-color", +"itemtype", +"fepointlight", +"formmethod", +"seamless", +"plaintext", +"aria-modal", +"required", +"numOctaves", +"maxlength", +"piecewise", +"cellspacing", +"xChannelSelector", +"momentabout", +"onfinish", +"kernelmatrix", +"color-profile", +"fedropshadow", +"aria-haspopup", +"pointsatz", +"decoding", +"linearGradient", +"columnlines", +"onmousemove", +"codomain", +"prsubset", +"alignment-baseline", +"intercept", +"font-face-src", +"aria-multiselectable", +"keyPoints", +"diffuseconstant", +"xlink:arcrole", +"onafterupdate", +"foreignObject", +"autosubmit", +"scrolldelay", +"stretchy", +"font-weight", +"onafterprint", +"aria-pressed", +"line-height", +"basefrequency", +"aria-description", +"onhashchange", +"displaystyle", +"v-hanging", +"patterncontentunits", +"http-equiv", +"animation", +"vert-adv-y", +"onrowsdelete", +"aria-labelledby", +"unicode-range", +"listener", +"accent-height", +"dominant-baseline", +"datetime", +"aria-colspan", +"conjugate", +"onmousedown", +"equalrows", +"stitchtiles", +"edgemode", +"aria-autocomplete", +"aria-atomic", +"mathsize", +"glyphref", +"maskunits", +"clippathunits", +"aria-checked", +"enable-background", +"onbeforecut", +"onmouseover", +"pointsAtX", +"ondblclick", +"xchannelselector", +"symmetric", +"fediffuselighting", +"aria-multiline", +"oninvalid", +"markerHeight", +"repeatdur", +"vert-origin-y", +"requiredFeatures", +"elevation", +"viewtarget", +"aria-label", +"solidcolor", +"onforminput", +"textpath", +"spellcheck", +"patternTransform", +"aria-disabled", +"font-face-format", +"autoplay", +"altGlyph", +"imaginaryi", +"dataformatas", +"femorphology", +"x-height", +"onbefordeactivate", +"zoomAndPan", +"letter-spacing", +"aria-expanded", +"aria-braillelabel", +"mathcolor", +"equivalent", +"fontfamily", +"scriptlevel", +"rowspacing", +"maskUnits", +"glyphRef", +"glyph-orientation-horizontal", +"multicol", +"maskContentUnits", +"thinmathspace", +"condition", +"formnovalidate", +"attributeName", +"cellpadding", +"stroke-miterlimit", +"altglyph", +"selector", +"onbeforeunload", +"lowlimit", +"optgroup", +"feDistantLight", +"frameset", +"underline-thickness", +"strikethrough-position", +"onrowsinserted", +"definitionurl", +"fontweight", +"aria-placeholder", +"marker-start", +"ononline", +"xml:base", +"allowfullscreen", +"noresize", +"spreadMethod", +"feConvolveMatrix", +"limitingConeAngle", +"attributetype", +"selection", +"repeat-max", +"font-face-name", +"controllerchange", +"aria-selected", +"formenctype", +"datalist", +"rowalign", +"scalarproduct", +"limitingconeangle", +"mprescripts", +"aria-valuetext", +"disabled", +"stroke-width", +"noscript", +"onresize", +"filterUnits", +"aria-setsize", +"onbeforepaste", +"aria-busy", +"aria-controls", +"malignmark", +"aria-keyshortcuts", +"calcmode", +"marker-mid", +"onformchange", +"aria-flowto", +"animatemotion", +"amplitude", +"aria-valuemin", +"aria-posinset", +"lengthadjust", +"diffuseConstant", +"baseProfile", +"color-rendering", +"altGlyphDef", +"primitiveunits", +"preservealpha", +"aria-rowindex", +"ondeactivate", +"font-face-uri", +"feSpecularLighting", +"v-ideographic", +"stdDeviation", +"onsubmit", +"scriptsizemultiplier", +"onrowexit", +"font-face", +"gradienttransform", +"veryverythinmathspace", +"onselect", +"clip-rule", +"codebase", +"underline-position", +"v-mathematical", +"separator", +"matrixrow", +"selected", +"xlink:href", +"horiz-adv-x", +"controls", +"aria-current", +"onscroll", +"pointsAtZ", +"overflow", +"", +"onpagehide", +"visibility", +"feComponentTransfer", +"overline-position", +"rendering-intent", +"infinity", +"feconvolvematrix", +"repeatCount", +"onselectstart", +"pointsaty", +"direction", +"fecolormatrix", +"tabindex", +"placeholder", +"transpose", +"gradientunits", +"feDropShadow", +"xlink:role", +"edgeMode", +"gradientTransform", +"integers", +"stddeviation", +"repeat-start", +"cap-height", +"xlink:type", +"unselectable", +"contentstyletype", +"transform", +"stroke-linejoin", +"integrity", +"ondatasetchanged", +"foreignobject", +"radiogroup", +"contenteditable", +"template", +"statechange", +"pathlength", +"divergence", +"aria-hidden", +"ondragleave", +"maligngroup", +"outerproduct", +"aria-channel", +"systemlanguage", +"fetchpriority", +"polyline", +"lighting-color", +"property", +"animateColor", +"ondragdrop", +"repeat-min", +"specification", +"surfacescale", +"clippath", +"patternUnits", +"flood-opacity", +"referrerpolicy", +"factorial", +"hidefocus", +"stitchTiles", +"arabic-form", +"blockquote", +"mlabeledtr", +"novalidate", +"onpopstate", +"onerrorupdate", +"feSpotLight", +"stop-opacity", +"readonly", +"markerUnits", +"naturalnumbers", +"markerunits", +"font-family", +"patternunits", +"orientation", +"markerheight", +"aria-colindextext", +"attributeType", +"accesskey", +"clipPathUnits", +"keySplines", +"onstorage", +"font-style", +"fedisplacementmap", +"separators", +"verythinmathspace", +"primitiveUnits", +"surfaceScale", +"formaction", +"verythickmathspace", +"calcMode", +"xml:lang", +"fedistantlight", +"fontstyle", +"overline-thickness", +"onbounce", +"bevelled", +"onmouseout", +"exponent", +"prefetch", +"tablevalues", +"itemscope", +"manifest", +"nomodule", +"mathvariant", +"v-alphabetic", +"scrolling", +"keysplines", +"variance", +"feMorphology", +"preserveAlpha", +"viewTarget", +"aria-orientation", +"aria-rowcount", +"onlanguagechange", +"oncontrolselect", +"onmouseup", +"inputmode", +"notsubset", +"definition-src", +"aria-readonly", +"specularexponent", +"multiple", +"onunload", +"aria-colindex", +"reversed", +"onoffline", +"aria-rowindextext", +"externalresourcesrequired", +"datatemplate", +"fontsize", +"image-rendering", +"basefont", +"fill-opacity", +"radialgradient", +"frameborder", +"stroke-dasharray", +"encoding", +"animatetransform", +"movablelimits", +"filterres", +"font-stretch", +"clipPath", +"xlink:show", +"notanumber", +"onmouseenter", +"aria-dropeffect", +"progress", +"ondataavailable", +"valuetype", +"noframes", +"specularExponent", +"text-rendering", +"otherwise", +"baseline", +"framespacing", +"xlink:title", +"feOffset", +"aria-secret", +"aria-valuenow", +"emptyset", +"determinant", +"textlength", +"font-variant", +"horiz-origin-x", +"aria-brailleroledescription", +"onfocusout", +"menuitem", +"ondragend", +"baseline-shift", +"feComposite", +"pathLength", +"startOffset", +"glyph-orientation-vertical", +"textPath", +"onreadystatechange", +"stroke-opacity", +"accumulate", +"onbeforeupdate", +"shape-rendering", +"figcaption", +"thickmathspace", +"minlength", +"requiredextensions", +"repeat-template", +"vert-origin-x", +"lineargradient", +"download", +"onmovestart", +"patterntransform", +"superscriptshift", +"externalResourcesRequired", +"animatecolor", +"panose-1", +"filterRes", +"aria-colcount", +"missing-glyph", +"cartesianproduct", +"femergenode", +"ondragover", +"fespecularlighting", +"mphantom", +"aria-activedescendant", +"exponentiale", +"aria-invalid", +"requiredfeatures", +"additive", +"onbeforeactivate", +"altglyphitem", +"repeatcount", +"rationals", +"stroke-linecap", +"annotation", +"units-per-em", +"tableValues", +"mmultiscripts", +"aria-owns", +"ideographic", +"text-anchor", +"aria-sort", +"aria-datatype", +"irrelevant", +"preserveAspectRatio", +"markerWidth", +"columnalign", +"notprsubset", +"language", +"onbeforecopy", +"onfilterchange", +"altglyphdef", +"fePointLight", +"pointer-events", +"feDisplacementMap", +"ondatasetcomplete", +"aria-rowspan", +"columnspan", +"stroke-dashoffset", +"aria-required", +"occurrence", +"munderover", +"linethickness", +"feMergeNode", +"menclose", +"alignmentscope", +"markerwidth", +"accentunder", +"feoffset", +"columnwidth", +"textarea", +"fecomposite", +"itemprop", +"intersect", +"semantics", +"font-size-adjust", +"word-spacing", +"oncellchange", +"crossorigin", +"ondragstart", +"flood-color", +"glyph-name", +"pointsatx", +"textLength", +"eulergamma", +"aria-details", +"translate", +"filterunits", +"contentscripttype", +"mathematical", +"onrowenter", +"aria-grab", +"onfocusin", +"onpropertychange", +"zoomandpan", +"xlink:actuate", +"unicode-bidi", +"onmessage", +"fespotlight", +"clip-path", +"onmousewheel", +"marginwidth", +"aria-errormessage", +"baseFrequency", +"scriptminsize", +"systemLanguage", +"codetype", +"text-decoration", +"ondragenter", +"specularConstant", +"feTurbulence", +"font-size", +"accept-charset", +"draggable", +"maskcontentunits", +"onlosecapture", +"contentScriptType", +"rowlines", +"radialGradient", +"yChannelSelector", +"xml:space", +"aria-live", +"groupalign", +"onrepeat", +"onpageshow", +"vectorproduct", +"aria-roledescription", +"equalcolumns", +"factorof", +"onmoveend", +"onkeypress", +"operator", +"kernelUnitLength", +"oncontextmenu", +"onactivate", +"aria-level", +"pointsAtY", +"mediummathspace", +"animateMotion", +"baseprofile", +"veryverythickmathspace", +"alphabetic", +"keypoints", +"marker-end", +"laplacian", +"kernelMatrix", +"altGlyphItem", +"fegaussianblur", +"horiz-origin-y", +"imaginary", +"fecomponenttransfer", +"metadata", +"requiredExtensions", +"onchange", +"lengthAdjust", +"patternContentUnits", +"marginheight", +"attributename", +"ychannelselector", +"keyTimes", +"repeatDur", +"linebreak"] , hashes : & [3072954000u32 , 3434111473u32 , 2938551886u32 , 3761485389u32 , 1040004347u32 , 4048787516u32 , 2352150961u32 , 3813953811u32 , 1089255496u32 , 1746599759u32 , 3812424145u32 , 2627759492u32 , 1122986055u32 , 1411183032u32 , 540984354u32 , 2869380463u32 , 127349794u32 , 1324932700u32 , 3949169397u32 , 167018041u32 , 2338483475u32 , 1265818470u32 , 3017840974u32 , 2817038524u32 , 977519882u32 , 482099679u32 , 41264406u32 , 3792741489u32 , 3819629636u32 , 3023844475u32 , 2488083091u32 , 2389793136u32 , 3838527384u32 , 3895686923u32 , 1853897548u32 , 183626286u32 , 2619524090u32 , 1000927536u32 , 1343823872u32 , 3505831613u32 , 3140418151u32 , 2730644329u32 , 840604679u32 , 13967138u32 , 3674106722u32 , 890471348u32 , 1196494198u32 , 139625561u32 , 1496007974u32 , 3978549325u32 , 1531081973u32 , 876893636u32 , 3031015162u32 , 2901051737u32 , 1967061597u32 , 498024801u32 , 413668059u32 , 1014874794u32 , 2190494129u32 , 4155473355u32 , 1340310784u32 , 3087731897u32 , 738404731u32 , 3467076559u32 , 1500515759u32 , 1511898050u32 , 3123322936u32 , 1776997671u32 , 2893479988u32 , 2980412961u32 , 4208387215u32 , 1956396338u32 , 3139000449u32 , 3598404451u32 , 3848540887u32 , 1932517039u32 , 3727352922u32 , 2250640510u32 , 3569972244u32 , 882636649u32 , 3937177209u32 , 2909783456u32 , 1674115585u32 , 1463711312u32 , 917510687u32 , 3174660173u32 , 3588373335u32 , 4157184116u32 , 2754786514u32 , 3088760233u32 , 962337312u32 , 1029483847u32 , 4219469015u32 , 2550357363u32 , 3316294029u32 , 1693167880u32 , 3574495545u32 , 2965230298u32 , 1465547969u32 , 1344436999u32 , 3857554377u32 , 3436454788u32 , 1696233065u32 , 3054316836u32 , 1289272887u32 , 2749033157u32 , 3173400481u32 , 2832170387u32 , 3483791417u32 , 357019207u32 , 1494292933u32 , 610893786u32 , 1578024761u32 , 3522778558u32 , 1695163510u32 , 3441525639u32 , 191876287u32 , 53892155u32 , 1008080924u32 , 2648768565u32 , 2710653095u32 , 839481326u32 , 2363338602u32 , 2062376914u32 , 1713409972u32 , 3318082606u32 , 4064199297u32 , 3391938715u32 , 582074557u32 , 688563368u32 , 849353939u32 , 3420533286u32 , 3173625849u32 , 1137297938u32 , 1784113404u32 , 3074935477u32 , 1754753923u32 , 581625092u32 , 3200099719u32 , 872051764u32 , 1290517656u32 , 3345816294u32 , 2555432291u32 , 520649620u32 , 2351838155u32 , 2113798551u32 , 3482160649u32 , 3225919750u32 , 3538034810u32 , 1031924441u32 , 67060975u32 , 3022377460u32 , 251844155u32 , 4104071589u32 , 2813597207u32 , 3099170635u32 , 1159398089u32 , 487396000u32 , 4133853804u32 , 261387879u32 , 1152797465u32 , 585557574u32 , 3756296120u32 , 2143535654u32 , 284653812u32 , 2761967137u32 , 3172500845u32 , 1492357159u32 , 3572217425u32 , 3148690945u32 , 3303937590u32 , 1597870884u32 , 3473820876u32 , 1151125310u32 , 1327970202u32 , 2766318564u32 , 3251283326u32 , 3022346510u32 , 2822081788u32 , 657335448u32 , 2055579803u32 , 697370994u32 , 790236809u32 , 1436742140u32 , 369465691u32 , 1704381425u32 , 1545307082u32 , 3107512368u32 , 3553740950u32 , 3709793219u32 , 150393700u32 , 3296146244u32 , 175932733u32 , 3447324541u32 , 1529410224u32 , 742460070u32 , 951933631u32 , 3888122413u32 , 940673285u32 , 510569370u32 , 2481108222u32 , 11175636u32 , 742853127u32 , 4086049772u32 , 4279947214u32 , 3336988988u32 , 2253042667u32 , 2961964106u32 , 3496513502u32 , 1397943031u32 , 717168679u32 , 2440702496u32 , 835417400u32 , 1443202521u32 , 269731020u32 , 4197990453u32 , 431655942u32 , 1924991364u32 , 3503166008u32 , 2407704912u32 , 1462083347u32 , 1846373592u32 , 1004995609u32 , 1737183206u32 , 1086403303u32 , 322837783u32 , 898067958u32 , 268294220u32 , 3517724257u32 , 631093780u32 , 660920321u32 , 328232673u32 , 998270762u32 , 1622957280u32 , 3038336232u32 , 2875176293u32 , 143478574u32 , 577943792u32 , 2591735095u32 , 1106010321u32 , 130627326u32 , 59658625u32 , 2468381339u32 , 4125580644u32 , 1904259492u32 , 4179141959u32 , 1918948260u32 , 3161172129u32 , 4032437431u32 , 259654618u32 , 1980444132u32 , 1326112048u32 , 2985998690u32 , 3480491085u32 , 623782337u32 , 121548787u32 , 3263344947u32 , 2162760400u32 , 4010765371u32 , 4082073077u32 , 3730423347u32 , 680267915u32 , 1003700867u32 , 24676607u32 , 986461641u32 , 3064390904u32 , 1038372645u32 , 4004244404u32 , 3044528111u32 , 2145215358u32 , 316404133u32 , 2627228424u32 , 441619653u32 , 4227008938u32 , 2231254690u32 , 2770211272u32 , 3543883658u32 , 2705478669u32 , 427162403u32 , 1313537745u32 , 1359418558u32 , 2791371120u32 , 3247137570u32 , 1209573904u32 , 3629415669u32 , 1459652027u32 , 787973706u32 , 2990288183u32 , 388019751u32 , 3290302249u32 , 4067843623u32 , 904157188u32 , 906623274u32 , 1026931307u32 , 3192182081u32 , 2075053822u32 , 3041455211u32 , 3590479039u32 , 4016453314u32 , 1356155463u32 , 4287406983u32 , 4151148662u32 , 4257931290u32 , 6175338u32 , 3637562920u32 , 2537656704u32 , 3799256240u32 , 551601771u32 , 2274933261u32 , 4174481087u32 , 3231125223u32 , 2052860768u32 , 4193230156u32 , 1365633322u32 , 718491279u32 , 1048020461u32 , 326494834u32 , 3182531199u32 , 1421968030u32 , 1906307066u32 , 3199297686u32 , 1289880550u32 , 167340041u32 , 1694998203u32 , 507264248u32 , 2176790048u32 , 2701977759u32 , 2377326793u32 , 290068694u32 , 3390498297u32 , 3315223323u32 , 3173477931u32 , 4121432320u32 , 3221036252u32 , 1545869555u32 , 3367662520u32 , 1721701609u32 , 4001891308u32 , 1340705914u32 , 193163341u32 , 2607187618u32 , 1081021937u32 , 1109713652u32 , 2324745345u32 , 2509936390u32 , 868058960u32 , 235814134u32 , 3311581079u32 , 3859396703u32 , 4274065971u32 , 1713731671u32 , 2577707114u32 , 597485693u32 , 89533980u32 , 1764594812u32 , 236464811u32 , 42180808u32 , 1563912927u32 , 1700718142u32 , 2884343567u32 , 2974337319u32 , 1437637129u32 , 2927217335u32 , 2731266052u32 , 1585700207u32 , 2192643058u32 , 372536167u32 , 1980252733u32 , 540156035u32 , 1969026116u32 , 1054325476u32 , 3081310440u32 , 1855625123u32 , 1025361169u32 , 625288246u32 , 1085252765u32 , 3337178u32 , 1634030783u32 , 1123905875u32 , 1425318046u32 , 2753608321u32 , 2458868732u32 , 2907088801u32 , 1270941540u32 , 699250933u32 , 3776643770u32 , 496466373u32 , 844290399u32 , 1068196084u32 , 1013909549u32 , 2140727092u32 , 3725445512u32 , 3805722218u32 , 2519983718u32 , 2038498193u32 , 1670804630u32 , 2806594463u32 , 1857928766u32 , 4088548386u32 , 1490652026u32 , 314533796u32 , 1060911337u32 , 4110733451u32 , 731340681u32 , 3471797576u32 , 745064063u32 , 1402964693u32 , 3164895664u32 , 2986159298u32 , 3006277213u32 , 1622799733u32 , 3353385752u32 , 1466152561u32 , 909665113u32 , 2047753258u32 , 2384049441u32 , 115637463u32 , 1406178112u32 , 3391050331u32 , 3377397637u32 , 3608092222u32 , 4114830095u32 , 1704100245u32 , 3735993810u32 , 960352296u32 , 832628307u32 , 4266430317u32 , 3273539984u32 , 4019205149u32 , 1372447217u32 , 149474300u32 , 2152634883u32 , 33840900u32 , 3720179864u32 , 2005060454u32 , 1081225797u32 , 2007550408u32 , 3278498399u32 , 1064789251u32 , 207807063u32 , 2771320901u32 , 2488889144u32 , 1114315443u32 , 2117758015u32 , 1363498200u32 , 2286720981u32 , 797499465u32 , 3224307212u32 , 1271998022u32 , 3469436088u32 , 4197022858u32 , 4114207458u32 , 3862168567u32 , 798432117u32 , 23332298u32 , 2762337148u32 , 4214847380u32 , 3650491062u32 , 2229477384u32 , 2620153124u32 , 968834697u32 , 2213967518u32 , 3356497412u32 , 527925402u32 , 3472575083u32 , 3368766693u32 , 2271299428u32 , 1833541319u32 , 1160497299u32 , 4144887102u32 , 1659529969u32 , 859546789u32 , 1960989138u32 , 2673802232u32 , 836037603u32 , 3595420161u32 , 1528320406u32 , 3468989663u32 , 1747256964u32 , 2172529172u32 , 3084283302u32 , 2998850704u32 , 4080036470u32 , 3535003966u32 , 95564789u32 , 3646787135u32 , 3213189697u32 , 3855161187u32 , 990264918u32 , 2282081120u32 , 2112894915u32 , 570359024u32 , 2091062413u32 , 297387744u32 , 4118614427u32 , 1113648994u32 , 1493588833u32 , 303986147u32 , 4123782853u32 , 1108361085u32 , 611308476u32 , 11851321u32 , 2825708013u32 , 428550904u32 , 1961077096u32 , 1039356818u32 , 1281759160u32 , 3931194778u32 , 471362903u32 , 2660037162u32 , 3364582022u32 , 1270424231u32 , 189988860u32 , 909579565u32 , 225950890u32 , 3561280171u32 , 1099196523u32 , 2331857769u32 , 2068298677u32 , 3953335784u32 , 2196595662u32 , 3015830598u32 , 2798901808u32 , 4213661298u32 , 1647114263u32 , 3520680811u32 , 4018656289u32 , 631162154u32 , 1285071230u32 , 1733779952u32 , 3349181976u32 , 1268358839u32 , 3653391143u32 , 497920229u32 , 4260186941u32 , 2526332624u32 , 1469020628u32 , 3745411061u32 , 825000363u32 , 517970045u32 , 516688877u32 , 214212608u32 , 776053845u32 , 2994067376u32 , 1715378710u32 , 857129565u32 , 1346406727u32 , 1503507106u32 , 2410855252u32 , 938548574u32 , 3668239605u32 , 1213081654u32 , 3648607726u32 , 3937191824u32 , 4019313672u32 , 1943821868u32 , 1642132156u32 , 898289440u32 , 544785510u32 , 26369323u32 , 3978774502u32 , 1328456326u32 , 1784393862u32 , 2271863710u32 , 1070642373u32 , 3371793166u32 , 340120193u32 , 722849851u32 , 491646294u32 , 671572742u32 , 3394829011u32 , 1031843807u32 , 2720850668u32 , 948133874u32 , 3717621328u32 , 1867791235u32 , 3708044859u32 , 2146706716u32 , 1964478094u32 , 635163395u32 , 1882820659u32 , 1639866691u32 , 3564373280u32 , 1727774507u32 , 1660726878u32 , 2606928828u32 , 1582153498u32 , 155801033u32 , 1390052554u32 , 1638551108u32 , 297767543u32 , 671909442u32 , 3766194097u32 , 624093324u32 , 1341662051u32 , 3359083184u32 , 1079146945u32 , 1135843586u32 , 642136761u32 , 1751032114u32] } ; +& SET } fn empty_string_index () -> u32 { 259u32 } } pub const ATOM_LOCALNAME__63_6F_6C_75_6D_6E_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (0u32) ; +pub const ATOM_LOCALNAME__6B_65_72_6E_65_6C_75_6E_69_74_6C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (1u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_6F_72_2D_69_6E_74_65_72_70_6F_6C_61_74_69_6F_6E : LocalName = LocalName :: pack_static (2u32) ; +pub const ATOM_LOCALNAME__63_6F_6D_70_6C_65_78_65_73 : LocalName = LocalName :: pack_static (3u32) ; +pub const ATOM_LOCALNAME__61_6E_6E_6F_74_61_74_69_6F_6E_2D_78_6D_6C : LocalName = LocalName :: pack_static (4u32) ; +pub const ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_63_6F_6E_73_74_61_6E_74 : LocalName = LocalName :: pack_static (5u32) ; +pub const ATOM_LOCALNAME__6D_6F_7A_62_72_6F_77_73_65_72 : LocalName = LocalName :: pack_static (6u32) ; +pub const ATOM_LOCALNAME__69_6E_74_65_72_76_61_6C : LocalName = LocalName :: pack_static (7u32) ; +pub const ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_55_6E_69_74_73 : LocalName = LocalName :: pack_static (8u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6C_65_61_76_65 : LocalName = LocalName :: pack_static (9u32) ; +pub const ATOM_LOCALNAME__77_72_69_74_69_6E_67_2D_6D_6F_64_65 : LocalName = LocalName :: pack_static (10u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6D_61_78 : LocalName = LocalName :: pack_static (11u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_54_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (12u32) ; +pub const ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_55_52_4C : LocalName = LocalName :: pack_static (13u32) ; +pub const ATOM_LOCALNAME__62_61_63_6B_67_72_6F_75_6E_64 : LocalName = LocalName :: pack_static (14u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_74_65_6D_70_6C_61_74_65_69_64 : LocalName = LocalName :: pack_static (15u32) ; +pub const ATOM_LOCALNAME__66_65_47_61_75_73_73_69_61_6E_42_6C_75_72 : LocalName = LocalName :: pack_static (16u32) ; +pub const ATOM_LOCALNAME__73_75_62_73_63_72_69_70_74_73_68_69_66_74 : LocalName = LocalName :: pack_static (17u32) ; +pub const ATOM_LOCALNAME__78_6D_6C_6E_73_3A_78_6C_69_6E_6B : LocalName = LocalName :: pack_static (18u32) ; +pub const ATOM_LOCALNAME__66_69_65_6C_64_73_65_74 : LocalName = LocalName :: pack_static (19u32) ; +pub const ATOM_LOCALNAME__73_70_72_65_61_64_6D_65_74_68_6F_64 : LocalName = LocalName :: pack_static (20u32) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_74_61_72_67_65_74 : LocalName = LocalName :: pack_static (21u32) ; +pub const ATOM_LOCALNAME__66_65_44_69_66_66_75_73_65_4C_69_67_68_74_69_6E_67 : LocalName = LocalName :: pack_static (22u32) ; +pub const ATOM_LOCALNAME__66_65_74_75_72_62_75_6C_65_6E_63_65 : LocalName = LocalName :: pack_static (23u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_65_64_69_74_66_6F_63_75_73 : LocalName = LocalName :: pack_static (24u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_67_72_6F_75_70 : LocalName = LocalName :: pack_static (25u32) ; +pub const ATOM_LOCALNAME__6D_61_74_68_62_61_63_6B_67_72_6F_75_6E_64 : LocalName = LocalName :: pack_static (26u32) ; +pub const ATOM_LOCALNAME__6F_6E_6B_65_79_64_6F_77_6E : LocalName = LocalName :: pack_static (27u32) ; +pub const ATOM_LOCALNAME__66_65_43_6F_6C_6F_72_4D_61_74_72_69_78 : LocalName = LocalName :: pack_static (28u32) ; +pub const ATOM_LOCALNAME__73_74_61_72_74_6F_66_66_73_65_74 : LocalName = LocalName :: pack_static (29u32) ; +pub const ATOM_LOCALNAME__61_75_74_6F_66_6F_63_75_73 : LocalName = LocalName :: pack_static (30u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_78_74_6D_65_6E_75 : LocalName = LocalName :: pack_static (31u32) ; +pub const ATOM_LOCALNAME__6C_6F_6E_67_64_65_73_63 : LocalName = LocalName :: pack_static (32u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_65_6C_65_76_61_6E_74 : LocalName = LocalName :: pack_static (33u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_70_72_69_6E_74 : LocalName = LocalName :: pack_static (34u32) ; +pub const ATOM_LOCALNAME__66_69_6C_6C_2D_72_75_6C_65 : LocalName = LocalName :: pack_static (35u32) ; +pub const ATOM_LOCALNAME__68_72_65_66_6C_61_6E_67 : LocalName = LocalName :: pack_static (36u32) ; +pub const ATOM_LOCALNAME__64_6F_6D_61_69_6E_6F_66_61_70_70_6C_69_63_61_74_69_6F_6E : LocalName = LocalName :: pack_static (37u32) ; +pub const ATOM_LOCALNAME__6B_65_79_74_69_6D_65_73 : LocalName = LocalName :: pack_static (38u32) ; +pub const ATOM_LOCALNAME__6E_75_6D_6F_63_74_61_76_65_73 : LocalName = LocalName :: pack_static (39u32) ; +pub const ATOM_LOCALNAME__70_61_72_74_69_61_6C_64_69_66_66 : LocalName = LocalName :: pack_static (40u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_65_73_63_72_69_62_65_64_62_79 : LocalName = LocalName :: pack_static (41u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_6F_72_2D_69_6E_74_65_72_70_6F_6C_61_74_69_6F_6E_2D_66_69_6C_74_65_72_73 : LocalName = LocalName :: pack_static (42u32) ; +pub const ATOM_LOCALNAME__70_72_65_73_65_72_76_65_61_73_70_65_63_74_72_61_74_69_6F : LocalName = LocalName :: pack_static (43u32) ; +pub const ATOM_LOCALNAME__61_63_74_69_6F_6E_74_79_70_65 : LocalName = LocalName :: pack_static (44u32) ; +pub const ATOM_LOCALNAME__71_75_6F_74_69_65_6E_74 : LocalName = LocalName :: pack_static (45u32) ; +pub const ATOM_LOCALNAME__6E_6F_74_61_74_69_6F_6E : LocalName = LocalName :: pack_static (46u32) ; +pub const ATOM_LOCALNAME__61_75_74_6F_63_6F_6D_70_6C_65_74_65 : LocalName = LocalName :: pack_static (47u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_53_74_79_6C_65_54_79_70_65 : LocalName = LocalName :: pack_static (48u32) ; +pub const ATOM_LOCALNAME__73_74_72_69_6B_65_74_68_72_6F_75_67_68_2D_74_68_69_63_6B_6E_65_73_73 : LocalName = LocalName :: pack_static (49u32) ; +pub const ATOM_LOCALNAME__73_74_6F_70_2D_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (50u32) ; +pub const ATOM_LOCALNAME__69_74_65_6D_74_79_70_65 : LocalName = LocalName :: pack_static (51u32) ; +pub const ATOM_LOCALNAME__66_65_70_6F_69_6E_74_6C_69_67_68_74 : LocalName = LocalName :: pack_static (52u32) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_6D_65_74_68_6F_64 : LocalName = LocalName :: pack_static (53u32) ; +pub const ATOM_LOCALNAME__73_65_61_6D_6C_65_73_73 : LocalName = LocalName :: pack_static (54u32) ; +pub const ATOM_LOCALNAME__70_6C_61_69_6E_74_65_78_74 : LocalName = LocalName :: pack_static (55u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6D_6F_64_61_6C : LocalName = LocalName :: pack_static (56u32) ; +pub const ATOM_LOCALNAME__72_65_71_75_69_72_65_64 : LocalName = LocalName :: pack_static (57u32) ; +pub const ATOM_LOCALNAME__6E_75_6D_4F_63_74_61_76_65_73 : LocalName = LocalName :: pack_static (58u32) ; +pub const ATOM_LOCALNAME__6D_61_78_6C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (59u32) ; +pub const ATOM_LOCALNAME__70_69_65_63_65_77_69_73_65 : LocalName = LocalName :: pack_static (60u32) ; +pub const ATOM_LOCALNAME__63_65_6C_6C_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (61u32) ; +pub const ATOM_LOCALNAME__78_43_68_61_6E_6E_65_6C_53_65_6C_65_63_74_6F_72 : LocalName = LocalName :: pack_static (62u32) ; +pub const ATOM_LOCALNAME__6D_6F_6D_65_6E_74_61_62_6F_75_74 : LocalName = LocalName :: pack_static (63u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_69_6E_69_73_68 : LocalName = LocalName :: pack_static (64u32) ; +pub const ATOM_LOCALNAME__6B_65_72_6E_65_6C_6D_61_74_72_69_78 : LocalName = LocalName :: pack_static (65u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_6F_72_2D_70_72_6F_66_69_6C_65 : LocalName = LocalName :: pack_static (66u32) ; +pub const ATOM_LOCALNAME__66_65_64_72_6F_70_73_68_61_64_6F_77 : LocalName = LocalName :: pack_static (67u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_68_61_73_70_6F_70_75_70 : LocalName = LocalName :: pack_static (68u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_7A : LocalName = LocalName :: pack_static (69u32) ; +pub const ATOM_LOCALNAME__64_65_63_6F_64_69_6E_67 : LocalName = LocalName :: pack_static (70u32) ; +pub const ATOM_LOCALNAME__6C_69_6E_65_61_72_47_72_61_64_69_65_6E_74 : LocalName = LocalName :: pack_static (71u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_75_6D_6E_6C_69_6E_65_73 : LocalName = LocalName :: pack_static (72u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6D_6F_76_65 : LocalName = LocalName :: pack_static (73u32) ; +pub const ATOM_LOCALNAME__63_6F_64_6F_6D_61_69_6E : LocalName = LocalName :: pack_static (74u32) ; +pub const ATOM_LOCALNAME__70_72_73_75_62_73_65_74 : LocalName = LocalName :: pack_static (75u32) ; +pub const ATOM_LOCALNAME__61_6C_69_67_6E_6D_65_6E_74_2D_62_61_73_65_6C_69_6E_65 : LocalName = LocalName :: pack_static (76u32) ; +pub const ATOM_LOCALNAME__69_6E_74_65_72_63_65_70_74 : LocalName = LocalName :: pack_static (77u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_73_72_63 : LocalName = LocalName :: pack_static (78u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6D_75_6C_74_69_73_65_6C_65_63_74_61_62_6C_65 : LocalName = LocalName :: pack_static (79u32) ; +pub const ATOM_LOCALNAME__6B_65_79_50_6F_69_6E_74_73 : LocalName = LocalName :: pack_static (80u32) ; +pub const ATOM_LOCALNAME__64_69_66_66_75_73_65_63_6F_6E_73_74_61_6E_74 : LocalName = LocalName :: pack_static (81u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_61_72_63_72_6F_6C_65 : LocalName = LocalName :: pack_static (82u32) ; +pub const ATOM_LOCALNAME__6F_6E_61_66_74_65_72_75_70_64_61_74_65 : LocalName = LocalName :: pack_static (83u32) ; +pub const ATOM_LOCALNAME__66_6F_72_65_69_67_6E_4F_62_6A_65_63_74 : LocalName = LocalName :: pack_static (84u32) ; +pub const ATOM_LOCALNAME__61_75_74_6F_73_75_62_6D_69_74 : LocalName = LocalName :: pack_static (85u32) ; +pub const ATOM_LOCALNAME__73_63_72_6F_6C_6C_64_65_6C_61_79 : LocalName = LocalName :: pack_static (86u32) ; +pub const ATOM_LOCALNAME__73_74_72_65_74_63_68_79 : LocalName = LocalName :: pack_static (87u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_77_65_69_67_68_74 : LocalName = LocalName :: pack_static (88u32) ; +pub const ATOM_LOCALNAME__6F_6E_61_66_74_65_72_70_72_69_6E_74 : LocalName = LocalName :: pack_static (89u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_70_72_65_73_73_65_64 : LocalName = LocalName :: pack_static (90u32) ; +pub const ATOM_LOCALNAME__6C_69_6E_65_2D_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (91u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_66_72_65_71_75_65_6E_63_79 : LocalName = LocalName :: pack_static (92u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_65_73_63_72_69_70_74_69_6F_6E : LocalName = LocalName :: pack_static (93u32) ; +pub const ATOM_LOCALNAME__6F_6E_68_61_73_68_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (94u32) ; +pub const ATOM_LOCALNAME__64_69_73_70_6C_61_79_73_74_79_6C_65 : LocalName = LocalName :: pack_static (95u32) ; +pub const ATOM_LOCALNAME__76_2D_68_61_6E_67_69_6E_67 : LocalName = LocalName :: pack_static (96u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_63_6F_6E_74_65_6E_74_75_6E_69_74_73 : LocalName = LocalName :: pack_static (97u32) ; +pub const ATOM_LOCALNAME__68_74_74_70_2D_65_71_75_69_76 : LocalName = LocalName :: pack_static (98u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_69_6F_6E : LocalName = LocalName :: pack_static (99u32) ; +pub const ATOM_LOCALNAME__76_65_72_74_2D_61_64_76_2D_79 : LocalName = LocalName :: pack_static (100u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_6F_77_73_64_65_6C_65_74_65 : LocalName = LocalName :: pack_static (101u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6C_61_62_65_6C_6C_65_64_62_79 : LocalName = LocalName :: pack_static (102u32) ; +pub const ATOM_LOCALNAME__75_6E_69_63_6F_64_65_2D_72_61_6E_67_65 : LocalName = LocalName :: pack_static (103u32) ; +pub const ATOM_LOCALNAME__6C_69_73_74_65_6E_65_72 : LocalName = LocalName :: pack_static (104u32) ; +pub const ATOM_LOCALNAME__61_63_63_65_6E_74_2D_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (105u32) ; +pub const ATOM_LOCALNAME__64_6F_6D_69_6E_61_6E_74_2D_62_61_73_65_6C_69_6E_65 : LocalName = LocalName :: pack_static (106u32) ; +pub const ATOM_LOCALNAME__64_61_74_65_74_69_6D_65 : LocalName = LocalName :: pack_static (107u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_73_70_61_6E : LocalName = LocalName :: pack_static (108u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_6A_75_67_61_74_65 : LocalName = LocalName :: pack_static (109u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_64_6F_77_6E : LocalName = LocalName :: pack_static (110u32) ; +pub const ATOM_LOCALNAME__65_71_75_61_6C_72_6F_77_73 : LocalName = LocalName :: pack_static (111u32) ; +pub const ATOM_LOCALNAME__73_74_69_74_63_68_74_69_6C_65_73 : LocalName = LocalName :: pack_static (112u32) ; +pub const ATOM_LOCALNAME__65_64_67_65_6D_6F_64_65 : LocalName = LocalName :: pack_static (113u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_61_75_74_6F_63_6F_6D_70_6C_65_74_65 : LocalName = LocalName :: pack_static (114u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_61_74_6F_6D_69_63 : LocalName = LocalName :: pack_static (115u32) ; +pub const ATOM_LOCALNAME__6D_61_74_68_73_69_7A_65 : LocalName = LocalName :: pack_static (116u32) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68_72_65_66 : LocalName = LocalName :: pack_static (117u32) ; +pub const ATOM_LOCALNAME__6D_61_73_6B_75_6E_69_74_73 : LocalName = LocalName :: pack_static (118u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_70_61_74_68_75_6E_69_74_73 : LocalName = LocalName :: pack_static (119u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_68_65_63_6B_65_64 : LocalName = LocalName :: pack_static (120u32) ; +pub const ATOM_LOCALNAME__65_6E_61_62_6C_65_2D_62_61_63_6B_67_72_6F_75_6E_64 : LocalName = LocalName :: pack_static (121u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_63_75_74 : LocalName = LocalName :: pack_static (122u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6F_76_65_72 : LocalName = LocalName :: pack_static (123u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_58 : LocalName = LocalName :: pack_static (124u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_62_6C_63_6C_69_63_6B : LocalName = LocalName :: pack_static (125u32) ; +pub const ATOM_LOCALNAME__78_63_68_61_6E_6E_65_6C_73_65_6C_65_63_74_6F_72 : LocalName = LocalName :: pack_static (126u32) ; +pub const ATOM_LOCALNAME__73_79_6D_6D_65_74_72_69_63 : LocalName = LocalName :: pack_static (127u32) ; +pub const ATOM_LOCALNAME__66_65_64_69_66_66_75_73_65_6C_69_67_68_74_69_6E_67 : LocalName = LocalName :: pack_static (128u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6D_75_6C_74_69_6C_69_6E_65 : LocalName = LocalName :: pack_static (129u32) ; +pub const ATOM_LOCALNAME__6F_6E_69_6E_76_61_6C_69_64 : LocalName = LocalName :: pack_static (130u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_48_65_69_67_68_74 : LocalName = LocalName :: pack_static (131u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_64_75_72 : LocalName = LocalName :: pack_static (132u32) ; +pub const ATOM_LOCALNAME__76_65_72_74_2D_6F_72_69_67_69_6E_2D_79 : LocalName = LocalName :: pack_static (133u32) ; +pub const ATOM_LOCALNAME__72_65_71_75_69_72_65_64_46_65_61_74_75_72_65_73 : LocalName = LocalName :: pack_static (134u32) ; +pub const ATOM_LOCALNAME__65_6C_65_76_61_74_69_6F_6E : LocalName = LocalName :: pack_static (135u32) ; +pub const ATOM_LOCALNAME__76_69_65_77_74_61_72_67_65_74 : LocalName = LocalName :: pack_static (136u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6C_61_62_65_6C : LocalName = LocalName :: pack_static (137u32) ; +pub const ATOM_LOCALNAME__73_6F_6C_69_64_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (138u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_6F_72_6D_69_6E_70_75_74 : LocalName = LocalName :: pack_static (139u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_70_61_74_68 : LocalName = LocalName :: pack_static (140u32) ; +pub const ATOM_LOCALNAME__73_70_65_6C_6C_63_68_65_63_6B : LocalName = LocalName :: pack_static (141u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_54_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (142u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_69_73_61_62_6C_65_64 : LocalName = LocalName :: pack_static (143u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_66_6F_72_6D_61_74 : LocalName = LocalName :: pack_static (144u32) ; +pub const ATOM_LOCALNAME__61_75_74_6F_70_6C_61_79 : LocalName = LocalName :: pack_static (145u32) ; +pub const ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68 : LocalName = LocalName :: pack_static (146u32) ; +pub const ATOM_LOCALNAME__69_6D_61_67_69_6E_61_72_79_69 : LocalName = LocalName :: pack_static (147u32) ; +pub const ATOM_LOCALNAME__64_61_74_61_66_6F_72_6D_61_74_61_73 : LocalName = LocalName :: pack_static (148u32) ; +pub const ATOM_LOCALNAME__66_65_6D_6F_72_70_68_6F_6C_6F_67_79 : LocalName = LocalName :: pack_static (149u32) ; +pub const ATOM_LOCALNAME__78_2D_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (150u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_64_65_61_63_74_69_76_61_74_65 : LocalName = LocalName :: pack_static (151u32) ; +pub const ATOM_LOCALNAME__7A_6F_6F_6D_41_6E_64_50_61_6E : LocalName = LocalName :: pack_static (152u32) ; +pub const ATOM_LOCALNAME__6C_65_74_74_65_72_2D_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (153u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_65_78_70_61_6E_64_65_64 : LocalName = LocalName :: pack_static (154u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_62_72_61_69_6C_6C_65_6C_61_62_65_6C : LocalName = LocalName :: pack_static (155u32) ; +pub const ATOM_LOCALNAME__6D_61_74_68_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (156u32) ; +pub const ATOM_LOCALNAME__65_71_75_69_76_61_6C_65_6E_74 : LocalName = LocalName :: pack_static (157u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_66_61_6D_69_6C_79 : LocalName = LocalName :: pack_static (158u32) ; +pub const ATOM_LOCALNAME__73_63_72_69_70_74_6C_65_76_65_6C : LocalName = LocalName :: pack_static (159u32) ; +pub const ATOM_LOCALNAME__72_6F_77_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (160u32) ; +pub const ATOM_LOCALNAME__6D_61_73_6B_55_6E_69_74_73 : LocalName = LocalName :: pack_static (161u32) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68_52_65_66 : LocalName = LocalName :: pack_static (162u32) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68_2D_6F_72_69_65_6E_74_61_74_69_6F_6E_2D_68_6F_72_69_7A_6F_6E_74_61_6C : LocalName = LocalName :: pack_static (163u32) ; +pub const ATOM_LOCALNAME__6D_75_6C_74_69_63_6F_6C : LocalName = LocalName :: pack_static (164u32) ; +pub const ATOM_LOCALNAME__6D_61_73_6B_43_6F_6E_74_65_6E_74_55_6E_69_74_73 : LocalName = LocalName :: pack_static (165u32) ; +pub const ATOM_LOCALNAME__74_68_69_6E_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (166u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_64_69_74_69_6F_6E : LocalName = LocalName :: pack_static (167u32) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_6E_6F_76_61_6C_69_64_61_74_65 : LocalName = LocalName :: pack_static (168u32) ; +pub const ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_4E_61_6D_65 : LocalName = LocalName :: pack_static (169u32) ; +pub const ATOM_LOCALNAME__63_65_6C_6C_70_61_64_64_69_6E_67 : LocalName = LocalName :: pack_static (170u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6D_69_74_65_72_6C_69_6D_69_74 : LocalName = LocalName :: pack_static (171u32) ; +pub const ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68 : LocalName = LocalName :: pack_static (172u32) ; +pub const ATOM_LOCALNAME__73_65_6C_65_63_74_6F_72 : LocalName = LocalName :: pack_static (173u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_75_6E_6C_6F_61_64 : LocalName = LocalName :: pack_static (174u32) ; +pub const ATOM_LOCALNAME__6C_6F_77_6C_69_6D_69_74 : LocalName = LocalName :: pack_static (175u32) ; +pub const ATOM_LOCALNAME__6F_70_74_67_72_6F_75_70 : LocalName = LocalName :: pack_static (176u32) ; +pub const ATOM_LOCALNAME__66_65_44_69_73_74_61_6E_74_4C_69_67_68_74 : LocalName = LocalName :: pack_static (177u32) ; +pub const ATOM_LOCALNAME__66_72_61_6D_65_73_65_74 : LocalName = LocalName :: pack_static (178u32) ; +pub const ATOM_LOCALNAME__75_6E_64_65_72_6C_69_6E_65_2D_74_68_69_63_6B_6E_65_73_73 : LocalName = LocalName :: pack_static (179u32) ; +pub const ATOM_LOCALNAME__73_74_72_69_6B_65_74_68_72_6F_75_67_68_2D_70_6F_73_69_74_69_6F_6E : LocalName = LocalName :: pack_static (180u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_6F_77_73_69_6E_73_65_72_74_65_64 : LocalName = LocalName :: pack_static (181u32) ; +pub const ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_75_72_6C : LocalName = LocalName :: pack_static (182u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_77_65_69_67_68_74 : LocalName = LocalName :: pack_static (183u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_70_6C_61_63_65_68_6F_6C_64_65_72 : LocalName = LocalName :: pack_static (184u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_73_74_61_72_74 : LocalName = LocalName :: pack_static (185u32) ; +pub const ATOM_LOCALNAME__6F_6E_6F_6E_6C_69_6E_65 : LocalName = LocalName :: pack_static (186u32) ; +pub const ATOM_LOCALNAME__78_6D_6C_3A_62_61_73_65 : LocalName = LocalName :: pack_static (187u32) ; +pub const ATOM_LOCALNAME__61_6C_6C_6F_77_66_75_6C_6C_73_63_72_65_65_6E : LocalName = LocalName :: pack_static (188u32) ; +pub const ATOM_LOCALNAME__6E_6F_72_65_73_69_7A_65 : LocalName = LocalName :: pack_static (189u32) ; +pub const ATOM_LOCALNAME__73_70_72_65_61_64_4D_65_74_68_6F_64 : LocalName = LocalName :: pack_static (190u32) ; +pub const ATOM_LOCALNAME__66_65_43_6F_6E_76_6F_6C_76_65_4D_61_74_72_69_78 : LocalName = LocalName :: pack_static (191u32) ; +pub const ATOM_LOCALNAME__6C_69_6D_69_74_69_6E_67_43_6F_6E_65_41_6E_67_6C_65 : LocalName = LocalName :: pack_static (192u32) ; +pub const ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_74_79_70_65 : LocalName = LocalName :: pack_static (193u32) ; +pub const ATOM_LOCALNAME__73_65_6C_65_63_74_69_6F_6E : LocalName = LocalName :: pack_static (194u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_2D_6D_61_78 : LocalName = LocalName :: pack_static (195u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_6E_61_6D_65 : LocalName = LocalName :: pack_static (196u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_72_6F_6C_6C_65_72_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (197u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_73_65_6C_65_63_74_65_64 : LocalName = LocalName :: pack_static (198u32) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_65_6E_63_74_79_70_65 : LocalName = LocalName :: pack_static (199u32) ; +pub const ATOM_LOCALNAME__64_61_74_61_6C_69_73_74 : LocalName = LocalName :: pack_static (200u32) ; +pub const ATOM_LOCALNAME__72_6F_77_61_6C_69_67_6E : LocalName = LocalName :: pack_static (201u32) ; +pub const ATOM_LOCALNAME__73_63_61_6C_61_72_70_72_6F_64_75_63_74 : LocalName = LocalName :: pack_static (202u32) ; +pub const ATOM_LOCALNAME__6C_69_6D_69_74_69_6E_67_63_6F_6E_65_61_6E_67_6C_65 : LocalName = LocalName :: pack_static (203u32) ; +pub const ATOM_LOCALNAME__6D_70_72_65_73_63_72_69_70_74_73 : LocalName = LocalName :: pack_static (204u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_74_65_78_74 : LocalName = LocalName :: pack_static (205u32) ; +pub const ATOM_LOCALNAME__64_69_73_61_62_6C_65_64 : LocalName = LocalName :: pack_static (206u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_77_69_64_74_68 : LocalName = LocalName :: pack_static (207u32) ; +pub const ATOM_LOCALNAME__6E_6F_73_63_72_69_70_74 : LocalName = LocalName :: pack_static (208u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_65_73_69_7A_65 : LocalName = LocalName :: pack_static (209u32) ; +pub const ATOM_LOCALNAME__66_69_6C_74_65_72_55_6E_69_74_73 : LocalName = LocalName :: pack_static (210u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_73_65_74_73_69_7A_65 : LocalName = LocalName :: pack_static (211u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_70_61_73_74_65 : LocalName = LocalName :: pack_static (212u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_62_75_73_79 : LocalName = LocalName :: pack_static (213u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6E_74_72_6F_6C_73 : LocalName = LocalName :: pack_static (214u32) ; +pub const ATOM_LOCALNAME__6D_61_6C_69_67_6E_6D_61_72_6B : LocalName = LocalName :: pack_static (215u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6B_65_79_73_68_6F_72_74_63_75_74_73 : LocalName = LocalName :: pack_static (216u32) ; +pub const ATOM_LOCALNAME__63_61_6C_63_6D_6F_64_65 : LocalName = LocalName :: pack_static (217u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_6D_69_64 : LocalName = LocalName :: pack_static (218u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_6F_72_6D_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (219u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_66_6C_6F_77_74_6F : LocalName = LocalName :: pack_static (220u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_6D_6F_74_69_6F_6E : LocalName = LocalName :: pack_static (221u32) ; +pub const ATOM_LOCALNAME__61_6D_70_6C_69_74_75_64_65 : LocalName = LocalName :: pack_static (222u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6D_69_6E : LocalName = LocalName :: pack_static (223u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_70_6F_73_69_6E_73_65_74 : LocalName = LocalName :: pack_static (224u32) ; +pub const ATOM_LOCALNAME__6C_65_6E_67_74_68_61_64_6A_75_73_74 : LocalName = LocalName :: pack_static (225u32) ; +pub const ATOM_LOCALNAME__64_69_66_66_75_73_65_43_6F_6E_73_74_61_6E_74 : LocalName = LocalName :: pack_static (226u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_50_72_6F_66_69_6C_65 : LocalName = LocalName :: pack_static (227u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_6F_72_2D_72_65_6E_64_65_72_69_6E_67 : LocalName = LocalName :: pack_static (228u32) ; +pub const ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68_44_65_66 : LocalName = LocalName :: pack_static (229u32) ; +pub const ATOM_LOCALNAME__70_72_69_6D_69_74_69_76_65_75_6E_69_74_73 : LocalName = LocalName :: pack_static (230u32) ; +pub const ATOM_LOCALNAME__70_72_65_73_65_72_76_65_61_6C_70_68_61 : LocalName = LocalName :: pack_static (231u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_69_6E_64_65_78 : LocalName = LocalName :: pack_static (232u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_65_61_63_74_69_76_61_74_65 : LocalName = LocalName :: pack_static (233u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_75_72_69 : LocalName = LocalName :: pack_static (234u32) ; +pub const ATOM_LOCALNAME__66_65_53_70_65_63_75_6C_61_72_4C_69_67_68_74_69_6E_67 : LocalName = LocalName :: pack_static (235u32) ; +pub const ATOM_LOCALNAME__76_2D_69_64_65_6F_67_72_61_70_68_69_63 : LocalName = LocalName :: pack_static (236u32) ; +pub const ATOM_LOCALNAME__73_74_64_44_65_76_69_61_74_69_6F_6E : LocalName = LocalName :: pack_static (237u32) ; +pub const ATOM_LOCALNAME__6F_6E_73_75_62_6D_69_74 : LocalName = LocalName :: pack_static (238u32) ; +pub const ATOM_LOCALNAME__73_63_72_69_70_74_73_69_7A_65_6D_75_6C_74_69_70_6C_69_65_72 : LocalName = LocalName :: pack_static (239u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_6F_77_65_78_69_74 : LocalName = LocalName :: pack_static (240u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65 : LocalName = LocalName :: pack_static (241u32) ; +pub const ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_74_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (242u32) ; +pub const ATOM_LOCALNAME__76_65_72_79_76_65_72_79_74_68_69_6E_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (243u32) ; +pub const ATOM_LOCALNAME__6F_6E_73_65_6C_65_63_74 : LocalName = LocalName :: pack_static (244u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_2D_72_75_6C_65 : LocalName = LocalName :: pack_static (245u32) ; +pub const ATOM_LOCALNAME__63_6F_64_65_62_61_73_65 : LocalName = LocalName :: pack_static (246u32) ; +pub const ATOM_LOCALNAME__75_6E_64_65_72_6C_69_6E_65_2D_70_6F_73_69_74_69_6F_6E : LocalName = LocalName :: pack_static (247u32) ; +pub const ATOM_LOCALNAME__76_2D_6D_61_74_68_65_6D_61_74_69_63_61_6C : LocalName = LocalName :: pack_static (248u32) ; +pub const ATOM_LOCALNAME__73_65_70_61_72_61_74_6F_72 : LocalName = LocalName :: pack_static (249u32) ; +pub const ATOM_LOCALNAME__6D_61_74_72_69_78_72_6F_77 : LocalName = LocalName :: pack_static (250u32) ; +pub const ATOM_LOCALNAME__73_65_6C_65_63_74_65_64 : LocalName = LocalName :: pack_static (251u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_68_72_65_66 : LocalName = LocalName :: pack_static (252u32) ; +pub const ATOM_LOCALNAME__68_6F_72_69_7A_2D_61_64_76_2D_78 : LocalName = LocalName :: pack_static (253u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_72_6F_6C_73 : LocalName = LocalName :: pack_static (254u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_75_72_72_65_6E_74 : LocalName = LocalName :: pack_static (255u32) ; +pub const ATOM_LOCALNAME__6F_6E_73_63_72_6F_6C_6C : LocalName = LocalName :: pack_static (256u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_5A : LocalName = LocalName :: pack_static (257u32) ; +pub const ATOM_LOCALNAME__6F_76_65_72_66_6C_6F_77 : LocalName = LocalName :: pack_static (258u32) ; +pub const ATOM_LOCALNAME_ : LocalName = LocalName :: pack_static (259u32) ; +pub const ATOM_LOCALNAME__6F_6E_70_61_67_65_68_69_64_65 : LocalName = LocalName :: pack_static (260u32) ; +pub const ATOM_LOCALNAME__76_69_73_69_62_69_6C_69_74_79 : LocalName = LocalName :: pack_static (261u32) ; +pub const ATOM_LOCALNAME__66_65_43_6F_6D_70_6F_6E_65_6E_74_54_72_61_6E_73_66_65_72 : LocalName = LocalName :: pack_static (262u32) ; +pub const ATOM_LOCALNAME__6F_76_65_72_6C_69_6E_65_2D_70_6F_73_69_74_69_6F_6E : LocalName = LocalName :: pack_static (263u32) ; +pub const ATOM_LOCALNAME__72_65_6E_64_65_72_69_6E_67_2D_69_6E_74_65_6E_74 : LocalName = LocalName :: pack_static (264u32) ; +pub const ATOM_LOCALNAME__69_6E_66_69_6E_69_74_79 : LocalName = LocalName :: pack_static (265u32) ; +pub const ATOM_LOCALNAME__66_65_63_6F_6E_76_6F_6C_76_65_6D_61_74_72_69_78 : LocalName = LocalName :: pack_static (266u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_43_6F_75_6E_74 : LocalName = LocalName :: pack_static (267u32) ; +pub const ATOM_LOCALNAME__6F_6E_73_65_6C_65_63_74_73_74_61_72_74 : LocalName = LocalName :: pack_static (268u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_79 : LocalName = LocalName :: pack_static (269u32) ; +pub const ATOM_LOCALNAME__64_69_72_65_63_74_69_6F_6E : LocalName = LocalName :: pack_static (270u32) ; +pub const ATOM_LOCALNAME__66_65_63_6F_6C_6F_72_6D_61_74_72_69_78 : LocalName = LocalName :: pack_static (271u32) ; +pub const ATOM_LOCALNAME__74_61_62_69_6E_64_65_78 : LocalName = LocalName :: pack_static (272u32) ; +pub const ATOM_LOCALNAME__70_6C_61_63_65_68_6F_6C_64_65_72 : LocalName = LocalName :: pack_static (273u32) ; +pub const ATOM_LOCALNAME__74_72_61_6E_73_70_6F_73_65 : LocalName = LocalName :: pack_static (274u32) ; +pub const ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_75_6E_69_74_73 : LocalName = LocalName :: pack_static (275u32) ; +pub const ATOM_LOCALNAME__66_65_44_72_6F_70_53_68_61_64_6F_77 : LocalName = LocalName :: pack_static (276u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_72_6F_6C_65 : LocalName = LocalName :: pack_static (277u32) ; +pub const ATOM_LOCALNAME__65_64_67_65_4D_6F_64_65 : LocalName = LocalName :: pack_static (278u32) ; +pub const ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_54_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (279u32) ; +pub const ATOM_LOCALNAME__69_6E_74_65_67_65_72_73 : LocalName = LocalName :: pack_static (280u32) ; +pub const ATOM_LOCALNAME__73_74_64_64_65_76_69_61_74_69_6F_6E : LocalName = LocalName :: pack_static (281u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_2D_73_74_61_72_74 : LocalName = LocalName :: pack_static (282u32) ; +pub const ATOM_LOCALNAME__63_61_70_2D_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (283u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_74_79_70_65 : LocalName = LocalName :: pack_static (284u32) ; +pub const ATOM_LOCALNAME__75_6E_73_65_6C_65_63_74_61_62_6C_65 : LocalName = LocalName :: pack_static (285u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_73_74_79_6C_65_74_79_70_65 : LocalName = LocalName :: pack_static (286u32) ; +pub const ATOM_LOCALNAME__74_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (287u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6C_69_6E_65_6A_6F_69_6E : LocalName = LocalName :: pack_static (288u32) ; +pub const ATOM_LOCALNAME__69_6E_74_65_67_72_69_74_79 : LocalName = LocalName :: pack_static (289u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_61_74_61_73_65_74_63_68_61_6E_67_65_64 : LocalName = LocalName :: pack_static (290u32) ; +pub const ATOM_LOCALNAME__66_6F_72_65_69_67_6E_6F_62_6A_65_63_74 : LocalName = LocalName :: pack_static (291u32) ; +pub const ATOM_LOCALNAME__72_61_64_69_6F_67_72_6F_75_70 : LocalName = LocalName :: pack_static (292u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_65_64_69_74_61_62_6C_65 : LocalName = LocalName :: pack_static (293u32) ; +pub const ATOM_LOCALNAME__74_65_6D_70_6C_61_74_65 : LocalName = LocalName :: pack_static (294u32) ; +pub const ATOM_LOCALNAME__73_74_61_74_65_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (295u32) ; +pub const ATOM_LOCALNAME__70_61_74_68_6C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (296u32) ; +pub const ATOM_LOCALNAME__64_69_76_65_72_67_65_6E_63_65 : LocalName = LocalName :: pack_static (297u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_68_69_64_64_65_6E : LocalName = LocalName :: pack_static (298u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_6C_65_61_76_65 : LocalName = LocalName :: pack_static (299u32) ; +pub const ATOM_LOCALNAME__6D_61_6C_69_67_6E_67_72_6F_75_70 : LocalName = LocalName :: pack_static (300u32) ; +pub const ATOM_LOCALNAME__6F_75_74_65_72_70_72_6F_64_75_63_74 : LocalName = LocalName :: pack_static (301u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_68_61_6E_6E_65_6C : LocalName = LocalName :: pack_static (302u32) ; +pub const ATOM_LOCALNAME__73_79_73_74_65_6D_6C_61_6E_67_75_61_67_65 : LocalName = LocalName :: pack_static (303u32) ; +pub const ATOM_LOCALNAME__66_65_74_63_68_70_72_69_6F_72_69_74_79 : LocalName = LocalName :: pack_static (304u32) ; +pub const ATOM_LOCALNAME__70_6F_6C_79_6C_69_6E_65 : LocalName = LocalName :: pack_static (305u32) ; +pub const ATOM_LOCALNAME__6C_69_67_68_74_69_6E_67_2D_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (306u32) ; +pub const ATOM_LOCALNAME__70_72_6F_70_65_72_74_79 : LocalName = LocalName :: pack_static (307u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_43_6F_6C_6F_72 : LocalName = LocalName :: pack_static (308u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_64_72_6F_70 : LocalName = LocalName :: pack_static (309u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_2D_6D_69_6E : LocalName = LocalName :: pack_static (310u32) ; +pub const ATOM_LOCALNAME__73_70_65_63_69_66_69_63_61_74_69_6F_6E : LocalName = LocalName :: pack_static (311u32) ; +pub const ATOM_LOCALNAME__73_75_72_66_61_63_65_73_63_61_6C_65 : LocalName = LocalName :: pack_static (312u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_70_61_74_68 : LocalName = LocalName :: pack_static (313u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_55_6E_69_74_73 : LocalName = LocalName :: pack_static (314u32) ; +pub const ATOM_LOCALNAME__66_6C_6F_6F_64_2D_6F_70_61_63_69_74_79 : LocalName = LocalName :: pack_static (315u32) ; +pub const ATOM_LOCALNAME__72_65_66_65_72_72_65_72_70_6F_6C_69_63_79 : LocalName = LocalName :: pack_static (316u32) ; +pub const ATOM_LOCALNAME__66_61_63_74_6F_72_69_61_6C : LocalName = LocalName :: pack_static (317u32) ; +pub const ATOM_LOCALNAME__68_69_64_65_66_6F_63_75_73 : LocalName = LocalName :: pack_static (318u32) ; +pub const ATOM_LOCALNAME__73_74_69_74_63_68_54_69_6C_65_73 : LocalName = LocalName :: pack_static (319u32) ; +pub const ATOM_LOCALNAME__61_72_61_62_69_63_2D_66_6F_72_6D : LocalName = LocalName :: pack_static (320u32) ; +pub const ATOM_LOCALNAME__62_6C_6F_63_6B_71_75_6F_74_65 : LocalName = LocalName :: pack_static (321u32) ; +pub const ATOM_LOCALNAME__6D_6C_61_62_65_6C_65_64_74_72 : LocalName = LocalName :: pack_static (322u32) ; +pub const ATOM_LOCALNAME__6E_6F_76_61_6C_69_64_61_74_65 : LocalName = LocalName :: pack_static (323u32) ; +pub const ATOM_LOCALNAME__6F_6E_70_6F_70_73_74_61_74_65 : LocalName = LocalName :: pack_static (324u32) ; +pub const ATOM_LOCALNAME__6F_6E_65_72_72_6F_72_75_70_64_61_74_65 : LocalName = LocalName :: pack_static (325u32) ; +pub const ATOM_LOCALNAME__66_65_53_70_6F_74_4C_69_67_68_74 : LocalName = LocalName :: pack_static (326u32) ; +pub const ATOM_LOCALNAME__73_74_6F_70_2D_6F_70_61_63_69_74_79 : LocalName = LocalName :: pack_static (327u32) ; +pub const ATOM_LOCALNAME__72_65_61_64_6F_6E_6C_79 : LocalName = LocalName :: pack_static (328u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_55_6E_69_74_73 : LocalName = LocalName :: pack_static (329u32) ; +pub const ATOM_LOCALNAME__6E_61_74_75_72_61_6C_6E_75_6D_62_65_72_73 : LocalName = LocalName :: pack_static (330u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_75_6E_69_74_73 : LocalName = LocalName :: pack_static (331u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_6D_69_6C_79 : LocalName = LocalName :: pack_static (332u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_75_6E_69_74_73 : LocalName = LocalName :: pack_static (333u32) ; +pub const ATOM_LOCALNAME__6F_72_69_65_6E_74_61_74_69_6F_6E : LocalName = LocalName :: pack_static (334u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (335u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_69_6E_64_65_78_74_65_78_74 : LocalName = LocalName :: pack_static (336u32) ; +pub const ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_54_79_70_65 : LocalName = LocalName :: pack_static (337u32) ; +pub const ATOM_LOCALNAME__61_63_63_65_73_73_6B_65_79 : LocalName = LocalName :: pack_static (338u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_50_61_74_68_55_6E_69_74_73 : LocalName = LocalName :: pack_static (339u32) ; +pub const ATOM_LOCALNAME__6B_65_79_53_70_6C_69_6E_65_73 : LocalName = LocalName :: pack_static (340u32) ; +pub const ATOM_LOCALNAME__6F_6E_73_74_6F_72_61_67_65 : LocalName = LocalName :: pack_static (341u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_73_74_79_6C_65 : LocalName = LocalName :: pack_static (342u32) ; +pub const ATOM_LOCALNAME__66_65_64_69_73_70_6C_61_63_65_6D_65_6E_74_6D_61_70 : LocalName = LocalName :: pack_static (343u32) ; +pub const ATOM_LOCALNAME__73_65_70_61_72_61_74_6F_72_73 : LocalName = LocalName :: pack_static (344u32) ; +pub const ATOM_LOCALNAME__76_65_72_79_74_68_69_6E_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (345u32) ; +pub const ATOM_LOCALNAME__70_72_69_6D_69_74_69_76_65_55_6E_69_74_73 : LocalName = LocalName :: pack_static (346u32) ; +pub const ATOM_LOCALNAME__73_75_72_66_61_63_65_53_63_61_6C_65 : LocalName = LocalName :: pack_static (347u32) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_61_63_74_69_6F_6E : LocalName = LocalName :: pack_static (348u32) ; +pub const ATOM_LOCALNAME__76_65_72_79_74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (349u32) ; +pub const ATOM_LOCALNAME__63_61_6C_63_4D_6F_64_65 : LocalName = LocalName :: pack_static (350u32) ; +pub const ATOM_LOCALNAME__78_6D_6C_3A_6C_61_6E_67 : LocalName = LocalName :: pack_static (351u32) ; +pub const ATOM_LOCALNAME__66_65_64_69_73_74_61_6E_74_6C_69_67_68_74 : LocalName = LocalName :: pack_static (352u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_73_74_79_6C_65 : LocalName = LocalName :: pack_static (353u32) ; +pub const ATOM_LOCALNAME__6F_76_65_72_6C_69_6E_65_2D_74_68_69_63_6B_6E_65_73_73 : LocalName = LocalName :: pack_static (354u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_6F_75_6E_63_65 : LocalName = LocalName :: pack_static (355u32) ; +pub const ATOM_LOCALNAME__62_65_76_65_6C_6C_65_64 : LocalName = LocalName :: pack_static (356u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6F_75_74 : LocalName = LocalName :: pack_static (357u32) ; +pub const ATOM_LOCALNAME__65_78_70_6F_6E_65_6E_74 : LocalName = LocalName :: pack_static (358u32) ; +pub const ATOM_LOCALNAME__70_72_65_66_65_74_63_68 : LocalName = LocalName :: pack_static (359u32) ; +pub const ATOM_LOCALNAME__74_61_62_6C_65_76_61_6C_75_65_73 : LocalName = LocalName :: pack_static (360u32) ; +pub const ATOM_LOCALNAME__69_74_65_6D_73_63_6F_70_65 : LocalName = LocalName :: pack_static (361u32) ; +pub const ATOM_LOCALNAME__6D_61_6E_69_66_65_73_74 : LocalName = LocalName :: pack_static (362u32) ; +pub const ATOM_LOCALNAME__6E_6F_6D_6F_64_75_6C_65 : LocalName = LocalName :: pack_static (363u32) ; +pub const ATOM_LOCALNAME__6D_61_74_68_76_61_72_69_61_6E_74 : LocalName = LocalName :: pack_static (364u32) ; +pub const ATOM_LOCALNAME__76_2D_61_6C_70_68_61_62_65_74_69_63 : LocalName = LocalName :: pack_static (365u32) ; +pub const ATOM_LOCALNAME__73_63_72_6F_6C_6C_69_6E_67 : LocalName = LocalName :: pack_static (366u32) ; +pub const ATOM_LOCALNAME__6B_65_79_73_70_6C_69_6E_65_73 : LocalName = LocalName :: pack_static (367u32) ; +pub const ATOM_LOCALNAME__76_61_72_69_61_6E_63_65 : LocalName = LocalName :: pack_static (368u32) ; +pub const ATOM_LOCALNAME__66_65_4D_6F_72_70_68_6F_6C_6F_67_79 : LocalName = LocalName :: pack_static (369u32) ; +pub const ATOM_LOCALNAME__70_72_65_73_65_72_76_65_41_6C_70_68_61 : LocalName = LocalName :: pack_static (370u32) ; +pub const ATOM_LOCALNAME__76_69_65_77_54_61_72_67_65_74 : LocalName = LocalName :: pack_static (371u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6F_72_69_65_6E_74_61_74_69_6F_6E : LocalName = LocalName :: pack_static (372u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_63_6F_75_6E_74 : LocalName = LocalName :: pack_static (373u32) ; +pub const ATOM_LOCALNAME__6F_6E_6C_61_6E_67_75_61_67_65_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (374u32) ; +pub const ATOM_LOCALNAME__6F_6E_63_6F_6E_74_72_6F_6C_73_65_6C_65_63_74 : LocalName = LocalName :: pack_static (375u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_75_70 : LocalName = LocalName :: pack_static (376u32) ; +pub const ATOM_LOCALNAME__69_6E_70_75_74_6D_6F_64_65 : LocalName = LocalName :: pack_static (377u32) ; +pub const ATOM_LOCALNAME__6E_6F_74_73_75_62_73_65_74 : LocalName = LocalName :: pack_static (378u32) ; +pub const ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_2D_73_72_63 : LocalName = LocalName :: pack_static (379u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_65_61_64_6F_6E_6C_79 : LocalName = LocalName :: pack_static (380u32) ; +pub const ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_65_78_70_6F_6E_65_6E_74 : LocalName = LocalName :: pack_static (381u32) ; +pub const ATOM_LOCALNAME__6D_75_6C_74_69_70_6C_65 : LocalName = LocalName :: pack_static (382u32) ; +pub const ATOM_LOCALNAME__6F_6E_75_6E_6C_6F_61_64 : LocalName = LocalName :: pack_static (383u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_69_6E_64_65_78 : LocalName = LocalName :: pack_static (384u32) ; +pub const ATOM_LOCALNAME__72_65_76_65_72_73_65_64 : LocalName = LocalName :: pack_static (385u32) ; +pub const ATOM_LOCALNAME__6F_6E_6F_66_66_6C_69_6E_65 : LocalName = LocalName :: pack_static (386u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_69_6E_64_65_78_74_65_78_74 : LocalName = LocalName :: pack_static (387u32) ; +pub const ATOM_LOCALNAME__65_78_74_65_72_6E_61_6C_72_65_73_6F_75_72_63_65_73_72_65_71_75_69_72_65_64 : LocalName = LocalName :: pack_static (388u32) ; +pub const ATOM_LOCALNAME__64_61_74_61_74_65_6D_70_6C_61_74_65 : LocalName = LocalName :: pack_static (389u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_73_69_7A_65 : LocalName = LocalName :: pack_static (390u32) ; +pub const ATOM_LOCALNAME__69_6D_61_67_65_2D_72_65_6E_64_65_72_69_6E_67 : LocalName = LocalName :: pack_static (391u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_66_6F_6E_74 : LocalName = LocalName :: pack_static (392u32) ; +pub const ATOM_LOCALNAME__66_69_6C_6C_2D_6F_70_61_63_69_74_79 : LocalName = LocalName :: pack_static (393u32) ; +pub const ATOM_LOCALNAME__72_61_64_69_61_6C_67_72_61_64_69_65_6E_74 : LocalName = LocalName :: pack_static (394u32) ; +pub const ATOM_LOCALNAME__66_72_61_6D_65_62_6F_72_64_65_72 : LocalName = LocalName :: pack_static (395u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_64_61_73_68_61_72_72_61_79 : LocalName = LocalName :: pack_static (396u32) ; +pub const ATOM_LOCALNAME__65_6E_63_6F_64_69_6E_67 : LocalName = LocalName :: pack_static (397u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_74_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (398u32) ; +pub const ATOM_LOCALNAME__6D_6F_76_61_62_6C_65_6C_69_6D_69_74_73 : LocalName = LocalName :: pack_static (399u32) ; +pub const ATOM_LOCALNAME__66_69_6C_74_65_72_72_65_73 : LocalName = LocalName :: pack_static (400u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_73_74_72_65_74_63_68 : LocalName = LocalName :: pack_static (401u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_50_61_74_68 : LocalName = LocalName :: pack_static (402u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_73_68_6F_77 : LocalName = LocalName :: pack_static (403u32) ; +pub const ATOM_LOCALNAME__6E_6F_74_61_6E_75_6D_62_65_72 : LocalName = LocalName :: pack_static (404u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_65_6E_74_65_72 : LocalName = LocalName :: pack_static (405u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_72_6F_70_65_66_66_65_63_74 : LocalName = LocalName :: pack_static (406u32) ; +pub const ATOM_LOCALNAME__70_72_6F_67_72_65_73_73 : LocalName = LocalName :: pack_static (407u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_61_74_61_61_76_61_69_6C_61_62_6C_65 : LocalName = LocalName :: pack_static (408u32) ; +pub const ATOM_LOCALNAME__76_61_6C_75_65_74_79_70_65 : LocalName = LocalName :: pack_static (409u32) ; +pub const ATOM_LOCALNAME__6E_6F_66_72_61_6D_65_73 : LocalName = LocalName :: pack_static (410u32) ; +pub const ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_45_78_70_6F_6E_65_6E_74 : LocalName = LocalName :: pack_static (411u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_2D_72_65_6E_64_65_72_69_6E_67 : LocalName = LocalName :: pack_static (412u32) ; +pub const ATOM_LOCALNAME__6F_74_68_65_72_77_69_73_65 : LocalName = LocalName :: pack_static (413u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_6C_69_6E_65 : LocalName = LocalName :: pack_static (414u32) ; +pub const ATOM_LOCALNAME__66_72_61_6D_65_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (415u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_74_69_74_6C_65 : LocalName = LocalName :: pack_static (416u32) ; +pub const ATOM_LOCALNAME__66_65_4F_66_66_73_65_74 : LocalName = LocalName :: pack_static (417u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_73_65_63_72_65_74 : LocalName = LocalName :: pack_static (418u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6E_6F_77 : LocalName = LocalName :: pack_static (419u32) ; +pub const ATOM_LOCALNAME__65_6D_70_74_79_73_65_74 : LocalName = LocalName :: pack_static (420u32) ; +pub const ATOM_LOCALNAME__64_65_74_65_72_6D_69_6E_61_6E_74 : LocalName = LocalName :: pack_static (421u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_6C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (422u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_76_61_72_69_61_6E_74 : LocalName = LocalName :: pack_static (423u32) ; +pub const ATOM_LOCALNAME__68_6F_72_69_7A_2D_6F_72_69_67_69_6E_2D_78 : LocalName = LocalName :: pack_static (424u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_62_72_61_69_6C_6C_65_72_6F_6C_65_64_65_73_63_72_69_70_74_69_6F_6E : LocalName = LocalName :: pack_static (425u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_6F_63_75_73_6F_75_74 : LocalName = LocalName :: pack_static (426u32) ; +pub const ATOM_LOCALNAME__6D_65_6E_75_69_74_65_6D : LocalName = LocalName :: pack_static (427u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_65_6E_64 : LocalName = LocalName :: pack_static (428u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_6C_69_6E_65_2D_73_68_69_66_74 : LocalName = LocalName :: pack_static (429u32) ; +pub const ATOM_LOCALNAME__66_65_43_6F_6D_70_6F_73_69_74_65 : LocalName = LocalName :: pack_static (430u32) ; +pub const ATOM_LOCALNAME__70_61_74_68_4C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (431u32) ; +pub const ATOM_LOCALNAME__73_74_61_72_74_4F_66_66_73_65_74 : LocalName = LocalName :: pack_static (432u32) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68_2D_6F_72_69_65_6E_74_61_74_69_6F_6E_2D_76_65_72_74_69_63_61_6C : LocalName = LocalName :: pack_static (433u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_50_61_74_68 : LocalName = LocalName :: pack_static (434u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_65_61_64_79_73_74_61_74_65_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (435u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6F_70_61_63_69_74_79 : LocalName = LocalName :: pack_static (436u32) ; +pub const ATOM_LOCALNAME__61_63_63_75_6D_75_6C_61_74_65 : LocalName = LocalName :: pack_static (437u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_75_70_64_61_74_65 : LocalName = LocalName :: pack_static (438u32) ; +pub const ATOM_LOCALNAME__73_68_61_70_65_2D_72_65_6E_64_65_72_69_6E_67 : LocalName = LocalName :: pack_static (439u32) ; +pub const ATOM_LOCALNAME__66_69_67_63_61_70_74_69_6F_6E : LocalName = LocalName :: pack_static (440u32) ; +pub const ATOM_LOCALNAME__74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (441u32) ; +pub const ATOM_LOCALNAME__6D_69_6E_6C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (442u32) ; +pub const ATOM_LOCALNAME__72_65_71_75_69_72_65_64_65_78_74_65_6E_73_69_6F_6E_73 : LocalName = LocalName :: pack_static (443u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_2D_74_65_6D_70_6C_61_74_65 : LocalName = LocalName :: pack_static (444u32) ; +pub const ATOM_LOCALNAME__76_65_72_74_2D_6F_72_69_67_69_6E_2D_78 : LocalName = LocalName :: pack_static (445u32) ; +pub const ATOM_LOCALNAME__6C_69_6E_65_61_72_67_72_61_64_69_65_6E_74 : LocalName = LocalName :: pack_static (446u32) ; +pub const ATOM_LOCALNAME__64_6F_77_6E_6C_6F_61_64 : LocalName = LocalName :: pack_static (447u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_76_65_73_74_61_72_74 : LocalName = LocalName :: pack_static (448u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_74_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (449u32) ; +pub const ATOM_LOCALNAME__73_75_70_65_72_73_63_72_69_70_74_73_68_69_66_74 : LocalName = LocalName :: pack_static (450u32) ; +pub const ATOM_LOCALNAME__65_78_74_65_72_6E_61_6C_52_65_73_6F_75_72_63_65_73_52_65_71_75_69_72_65_64 : LocalName = LocalName :: pack_static (451u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (452u32) ; +pub const ATOM_LOCALNAME__70_61_6E_6F_73_65_2D_31 : LocalName = LocalName :: pack_static (453u32) ; +pub const ATOM_LOCALNAME__66_69_6C_74_65_72_52_65_73 : LocalName = LocalName :: pack_static (454u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_63_6F_75_6E_74 : LocalName = LocalName :: pack_static (455u32) ; +pub const ATOM_LOCALNAME__6D_69_73_73_69_6E_67_2D_67_6C_79_70_68 : LocalName = LocalName :: pack_static (456u32) ; +pub const ATOM_LOCALNAME__63_61_72_74_65_73_69_61_6E_70_72_6F_64_75_63_74 : LocalName = LocalName :: pack_static (457u32) ; +pub const ATOM_LOCALNAME__66_65_6D_65_72_67_65_6E_6F_64_65 : LocalName = LocalName :: pack_static (458u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_6F_76_65_72 : LocalName = LocalName :: pack_static (459u32) ; +pub const ATOM_LOCALNAME__66_65_73_70_65_63_75_6C_61_72_6C_69_67_68_74_69_6E_67 : LocalName = LocalName :: pack_static (460u32) ; +pub const ATOM_LOCALNAME__6D_70_68_61_6E_74_6F_6D : LocalName = LocalName :: pack_static (461u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_61_63_74_69_76_65_64_65_73_63_65_6E_64_61_6E_74 : LocalName = LocalName :: pack_static (462u32) ; +pub const ATOM_LOCALNAME__65_78_70_6F_6E_65_6E_74_69_61_6C_65 : LocalName = LocalName :: pack_static (463u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_69_6E_76_61_6C_69_64 : LocalName = LocalName :: pack_static (464u32) ; +pub const ATOM_LOCALNAME__72_65_71_75_69_72_65_64_66_65_61_74_75_72_65_73 : LocalName = LocalName :: pack_static (465u32) ; +pub const ATOM_LOCALNAME__61_64_64_69_74_69_76_65 : LocalName = LocalName :: pack_static (466u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_61_63_74_69_76_61_74_65 : LocalName = LocalName :: pack_static (467u32) ; +pub const ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68_69_74_65_6D : LocalName = LocalName :: pack_static (468u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_63_6F_75_6E_74 : LocalName = LocalName :: pack_static (469u32) ; +pub const ATOM_LOCALNAME__72_61_74_69_6F_6E_61_6C_73 : LocalName = LocalName :: pack_static (470u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6C_69_6E_65_63_61_70 : LocalName = LocalName :: pack_static (471u32) ; +pub const ATOM_LOCALNAME__61_6E_6E_6F_74_61_74_69_6F_6E : LocalName = LocalName :: pack_static (472u32) ; +pub const ATOM_LOCALNAME__75_6E_69_74_73_2D_70_65_72_2D_65_6D : LocalName = LocalName :: pack_static (473u32) ; +pub const ATOM_LOCALNAME__74_61_62_6C_65_56_61_6C_75_65_73 : LocalName = LocalName :: pack_static (474u32) ; +pub const ATOM_LOCALNAME__6D_6D_75_6C_74_69_73_63_72_69_70_74_73 : LocalName = LocalName :: pack_static (475u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6F_77_6E_73 : LocalName = LocalName :: pack_static (476u32) ; +pub const ATOM_LOCALNAME__69_64_65_6F_67_72_61_70_68_69_63 : LocalName = LocalName :: pack_static (477u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_2D_61_6E_63_68_6F_72 : LocalName = LocalName :: pack_static (478u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_73_6F_72_74 : LocalName = LocalName :: pack_static (479u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_61_74_61_74_79_70_65 : LocalName = LocalName :: pack_static (480u32) ; +pub const ATOM_LOCALNAME__69_72_72_65_6C_65_76_61_6E_74 : LocalName = LocalName :: pack_static (481u32) ; +pub const ATOM_LOCALNAME__70_72_65_73_65_72_76_65_41_73_70_65_63_74_52_61_74_69_6F : LocalName = LocalName :: pack_static (482u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_57_69_64_74_68 : LocalName = LocalName :: pack_static (483u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_75_6D_6E_61_6C_69_67_6E : LocalName = LocalName :: pack_static (484u32) ; +pub const ATOM_LOCALNAME__6E_6F_74_70_72_73_75_62_73_65_74 : LocalName = LocalName :: pack_static (485u32) ; +pub const ATOM_LOCALNAME__6C_61_6E_67_75_61_67_65 : LocalName = LocalName :: pack_static (486u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_63_6F_70_79 : LocalName = LocalName :: pack_static (487u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_69_6C_74_65_72_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (488u32) ; +pub const ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68_64_65_66 : LocalName = LocalName :: pack_static (489u32) ; +pub const ATOM_LOCALNAME__66_65_50_6F_69_6E_74_4C_69_67_68_74 : LocalName = LocalName :: pack_static (490u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_65_72_2D_65_76_65_6E_74_73 : LocalName = LocalName :: pack_static (491u32) ; +pub const ATOM_LOCALNAME__66_65_44_69_73_70_6C_61_63_65_6D_65_6E_74_4D_61_70 : LocalName = LocalName :: pack_static (492u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_61_74_61_73_65_74_63_6F_6D_70_6C_65_74_65 : LocalName = LocalName :: pack_static (493u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_73_70_61_6E : LocalName = LocalName :: pack_static (494u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_75_6D_6E_73_70_61_6E : LocalName = LocalName :: pack_static (495u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_64_61_73_68_6F_66_66_73_65_74 : LocalName = LocalName :: pack_static (496u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_65_71_75_69_72_65_64 : LocalName = LocalName :: pack_static (497u32) ; +pub const ATOM_LOCALNAME__6F_63_63_75_72_72_65_6E_63_65 : LocalName = LocalName :: pack_static (498u32) ; +pub const ATOM_LOCALNAME__6D_75_6E_64_65_72_6F_76_65_72 : LocalName = LocalName :: pack_static (499u32) ; +pub const ATOM_LOCALNAME__6C_69_6E_65_74_68_69_63_6B_6E_65_73_73 : LocalName = LocalName :: pack_static (500u32) ; +pub const ATOM_LOCALNAME__66_65_4D_65_72_67_65_4E_6F_64_65 : LocalName = LocalName :: pack_static (501u32) ; +pub const ATOM_LOCALNAME__6D_65_6E_63_6C_6F_73_65 : LocalName = LocalName :: pack_static (502u32) ; +pub const ATOM_LOCALNAME__61_6C_69_67_6E_6D_65_6E_74_73_63_6F_70_65 : LocalName = LocalName :: pack_static (503u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_77_69_64_74_68 : LocalName = LocalName :: pack_static (504u32) ; +pub const ATOM_LOCALNAME__61_63_63_65_6E_74_75_6E_64_65_72 : LocalName = LocalName :: pack_static (505u32) ; +pub const ATOM_LOCALNAME__66_65_6F_66_66_73_65_74 : LocalName = LocalName :: pack_static (506u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_75_6D_6E_77_69_64_74_68 : LocalName = LocalName :: pack_static (507u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_61_72_65_61 : LocalName = LocalName :: pack_static (508u32) ; +pub const ATOM_LOCALNAME__66_65_63_6F_6D_70_6F_73_69_74_65 : LocalName = LocalName :: pack_static (509u32) ; +pub const ATOM_LOCALNAME__69_74_65_6D_70_72_6F_70 : LocalName = LocalName :: pack_static (510u32) ; +pub const ATOM_LOCALNAME__69_6E_74_65_72_73_65_63_74 : LocalName = LocalName :: pack_static (511u32) ; +pub const ATOM_LOCALNAME__73_65_6D_61_6E_74_69_63_73 : LocalName = LocalName :: pack_static (512u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_73_69_7A_65_2D_61_64_6A_75_73_74 : LocalName = LocalName :: pack_static (513u32) ; +pub const ATOM_LOCALNAME__77_6F_72_64_2D_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (514u32) ; +pub const ATOM_LOCALNAME__6F_6E_63_65_6C_6C_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (515u32) ; +pub const ATOM_LOCALNAME__63_72_6F_73_73_6F_72_69_67_69_6E : LocalName = LocalName :: pack_static (516u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_73_74_61_72_74 : LocalName = LocalName :: pack_static (517u32) ; +pub const ATOM_LOCALNAME__66_6C_6F_6F_64_2D_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (518u32) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68_2D_6E_61_6D_65 : LocalName = LocalName :: pack_static (519u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_78 : LocalName = LocalName :: pack_static (520u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_4C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (521u32) ; +pub const ATOM_LOCALNAME__65_75_6C_65_72_67_61_6D_6D_61 : LocalName = LocalName :: pack_static (522u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_65_74_61_69_6C_73 : LocalName = LocalName :: pack_static (523u32) ; +pub const ATOM_LOCALNAME__74_72_61_6E_73_6C_61_74_65 : LocalName = LocalName :: pack_static (524u32) ; +pub const ATOM_LOCALNAME__66_69_6C_74_65_72_75_6E_69_74_73 : LocalName = LocalName :: pack_static (525u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_73_63_72_69_70_74_74_79_70_65 : LocalName = LocalName :: pack_static (526u32) ; +pub const ATOM_LOCALNAME__6D_61_74_68_65_6D_61_74_69_63_61_6C : LocalName = LocalName :: pack_static (527u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_6F_77_65_6E_74_65_72 : LocalName = LocalName :: pack_static (528u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_67_72_61_62 : LocalName = LocalName :: pack_static (529u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_6F_63_75_73_69_6E : LocalName = LocalName :: pack_static (530u32) ; +pub const ATOM_LOCALNAME__6F_6E_70_72_6F_70_65_72_74_79_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (531u32) ; +pub const ATOM_LOCALNAME__7A_6F_6F_6D_61_6E_64_70_61_6E : LocalName = LocalName :: pack_static (532u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_61_63_74_75_61_74_65 : LocalName = LocalName :: pack_static (533u32) ; +pub const ATOM_LOCALNAME__75_6E_69_63_6F_64_65_2D_62_69_64_69 : LocalName = LocalName :: pack_static (534u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_65_73_73_61_67_65 : LocalName = LocalName :: pack_static (535u32) ; +pub const ATOM_LOCALNAME__66_65_73_70_6F_74_6C_69_67_68_74 : LocalName = LocalName :: pack_static (536u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_2D_70_61_74_68 : LocalName = LocalName :: pack_static (537u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_77_68_65_65_6C : LocalName = LocalName :: pack_static (538u32) ; +pub const ATOM_LOCALNAME__6D_61_72_67_69_6E_77_69_64_74_68 : LocalName = LocalName :: pack_static (539u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_65_72_72_6F_72_6D_65_73_73_61_67_65 : LocalName = LocalName :: pack_static (540u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_46_72_65_71_75_65_6E_63_79 : LocalName = LocalName :: pack_static (541u32) ; +pub const ATOM_LOCALNAME__73_63_72_69_70_74_6D_69_6E_73_69_7A_65 : LocalName = LocalName :: pack_static (542u32) ; +pub const ATOM_LOCALNAME__73_79_73_74_65_6D_4C_61_6E_67_75_61_67_65 : LocalName = LocalName :: pack_static (543u32) ; +pub const ATOM_LOCALNAME__63_6F_64_65_74_79_70_65 : LocalName = LocalName :: pack_static (544u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_2D_64_65_63_6F_72_61_74_69_6F_6E : LocalName = LocalName :: pack_static (545u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_65_6E_74_65_72 : LocalName = LocalName :: pack_static (546u32) ; +pub const ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_43_6F_6E_73_74_61_6E_74 : LocalName = LocalName :: pack_static (547u32) ; +pub const ATOM_LOCALNAME__66_65_54_75_72_62_75_6C_65_6E_63_65 : LocalName = LocalName :: pack_static (548u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_73_69_7A_65 : LocalName = LocalName :: pack_static (549u32) ; +pub const ATOM_LOCALNAME__61_63_63_65_70_74_2D_63_68_61_72_73_65_74 : LocalName = LocalName :: pack_static (550u32) ; +pub const ATOM_LOCALNAME__64_72_61_67_67_61_62_6C_65 : LocalName = LocalName :: pack_static (551u32) ; +pub const ATOM_LOCALNAME__6D_61_73_6B_63_6F_6E_74_65_6E_74_75_6E_69_74_73 : LocalName = LocalName :: pack_static (552u32) ; +pub const ATOM_LOCALNAME__6F_6E_6C_6F_73_65_63_61_70_74_75_72_65 : LocalName = LocalName :: pack_static (553u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_53_63_72_69_70_74_54_79_70_65 : LocalName = LocalName :: pack_static (554u32) ; +pub const ATOM_LOCALNAME__72_6F_77_6C_69_6E_65_73 : LocalName = LocalName :: pack_static (555u32) ; +pub const ATOM_LOCALNAME__72_61_64_69_61_6C_47_72_61_64_69_65_6E_74 : LocalName = LocalName :: pack_static (556u32) ; +pub const ATOM_LOCALNAME__79_43_68_61_6E_6E_65_6C_53_65_6C_65_63_74_6F_72 : LocalName = LocalName :: pack_static (557u32) ; +pub const ATOM_LOCALNAME__78_6D_6C_3A_73_70_61_63_65 : LocalName = LocalName :: pack_static (558u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6C_69_76_65 : LocalName = LocalName :: pack_static (559u32) ; +pub const ATOM_LOCALNAME__67_72_6F_75_70_61_6C_69_67_6E : LocalName = LocalName :: pack_static (560u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_65_70_65_61_74 : LocalName = LocalName :: pack_static (561u32) ; +pub const ATOM_LOCALNAME__6F_6E_70_61_67_65_73_68_6F_77 : LocalName = LocalName :: pack_static (562u32) ; +pub const ATOM_LOCALNAME__76_65_63_74_6F_72_70_72_6F_64_75_63_74 : LocalName = LocalName :: pack_static (563u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_6F_6C_65_64_65_73_63_72_69_70_74_69_6F_6E : LocalName = LocalName :: pack_static (564u32) ; +pub const ATOM_LOCALNAME__65_71_75_61_6C_63_6F_6C_75_6D_6E_73 : LocalName = LocalName :: pack_static (565u32) ; +pub const ATOM_LOCALNAME__66_61_63_74_6F_72_6F_66 : LocalName = LocalName :: pack_static (566u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_76_65_65_6E_64 : LocalName = LocalName :: pack_static (567u32) ; +pub const ATOM_LOCALNAME__6F_6E_6B_65_79_70_72_65_73_73 : LocalName = LocalName :: pack_static (568u32) ; +pub const ATOM_LOCALNAME__6F_70_65_72_61_74_6F_72 : LocalName = LocalName :: pack_static (569u32) ; +pub const ATOM_LOCALNAME__6B_65_72_6E_65_6C_55_6E_69_74_4C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (570u32) ; +pub const ATOM_LOCALNAME__6F_6E_63_6F_6E_74_65_78_74_6D_65_6E_75 : LocalName = LocalName :: pack_static (571u32) ; +pub const ATOM_LOCALNAME__6F_6E_61_63_74_69_76_61_74_65 : LocalName = LocalName :: pack_static (572u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6C_65_76_65_6C : LocalName = LocalName :: pack_static (573u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_59 : LocalName = LocalName :: pack_static (574u32) ; +pub const ATOM_LOCALNAME__6D_65_64_69_75_6D_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (575u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_4D_6F_74_69_6F_6E : LocalName = LocalName :: pack_static (576u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_70_72_6F_66_69_6C_65 : LocalName = LocalName :: pack_static (577u32) ; +pub const ATOM_LOCALNAME__76_65_72_79_76_65_72_79_74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (578u32) ; +pub const ATOM_LOCALNAME__61_6C_70_68_61_62_65_74_69_63 : LocalName = LocalName :: pack_static (579u32) ; +pub const ATOM_LOCALNAME__6B_65_79_70_6F_69_6E_74_73 : LocalName = LocalName :: pack_static (580u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_65_6E_64 : LocalName = LocalName :: pack_static (581u32) ; +pub const ATOM_LOCALNAME__6C_61_70_6C_61_63_69_61_6E : LocalName = LocalName :: pack_static (582u32) ; +pub const ATOM_LOCALNAME__6B_65_72_6E_65_6C_4D_61_74_72_69_78 : LocalName = LocalName :: pack_static (583u32) ; +pub const ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68_49_74_65_6D : LocalName = LocalName :: pack_static (584u32) ; +pub const ATOM_LOCALNAME__66_65_67_61_75_73_73_69_61_6E_62_6C_75_72 : LocalName = LocalName :: pack_static (585u32) ; +pub const ATOM_LOCALNAME__68_6F_72_69_7A_2D_6F_72_69_67_69_6E_2D_79 : LocalName = LocalName :: pack_static (586u32) ; +pub const ATOM_LOCALNAME__69_6D_61_67_69_6E_61_72_79 : LocalName = LocalName :: pack_static (587u32) ; +pub const ATOM_LOCALNAME__66_65_63_6F_6D_70_6F_6E_65_6E_74_74_72_61_6E_73_66_65_72 : LocalName = LocalName :: pack_static (588u32) ; +pub const ATOM_LOCALNAME__6D_65_74_61_64_61_74_61 : LocalName = LocalName :: pack_static (589u32) ; +pub const ATOM_LOCALNAME__72_65_71_75_69_72_65_64_45_78_74_65_6E_73_69_6F_6E_73 : LocalName = LocalName :: pack_static (590u32) ; +pub const ATOM_LOCALNAME__6F_6E_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (591u32) ; +pub const ATOM_LOCALNAME__6C_65_6E_67_74_68_41_64_6A_75_73_74 : LocalName = LocalName :: pack_static (592u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_43_6F_6E_74_65_6E_74_55_6E_69_74_73 : LocalName = LocalName :: pack_static (593u32) ; +pub const ATOM_LOCALNAME__6D_61_72_67_69_6E_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (594u32) ; +pub const ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_6E_61_6D_65 : LocalName = LocalName :: pack_static (595u32) ; +pub const ATOM_LOCALNAME__79_63_68_61_6E_6E_65_6C_73_65_6C_65_63_74_6F_72 : LocalName = LocalName :: pack_static (596u32) ; +pub const ATOM_LOCALNAME__6B_65_79_54_69_6D_65_73 : LocalName = LocalName :: pack_static (597u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_44_75_72 : LocalName = LocalName :: pack_static (598u32) ; +pub const ATOM_LOCALNAME__6C_69_6E_65_62_72_65_61_6B : LocalName = LocalName :: pack_static (599u32) ; +pub const ATOM_LOCALNAME__2A : LocalName = LocalName :: pack_inline (10752u64 , 1u8) ; +pub const ATOM_LOCALNAME__61 : LocalName = LocalName :: pack_inline (24832u64 , 1u8) ; +pub const ATOM_LOCALNAME__61_62_62_72 : LocalName = LocalName :: pack_inline (491276886272u64 , 4u8) ; +pub const ATOM_LOCALNAME__61_62_73 : LocalName = LocalName :: pack_inline (1935827200u64 , 3u8) ; +pub const ATOM_LOCALNAME__61_63_63_65_6E_74 : LocalName = LocalName :: pack_inline (32772479036645632u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_63_63_65_70_74 : LocalName = LocalName :: pack_inline (32774678059901184u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_63_72_6F_6E_79_6D : LocalName = LocalName :: pack_inline (7888457647255675136u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_63_74_69_6F_6E : LocalName = LocalName :: pack_inline (31084746153091328u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_63_74_69_76_65 : LocalName = LocalName :: pack_inline (28559167944089856u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_63_74_75_61_74_65 : LocalName = LocalName :: pack_inline (7310575252220895488u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_64_64_72_65_73_73 : LocalName = LocalName :: pack_inline (8319104478668415232u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_6C_69_67_6E : LocalName = LocalName :: pack_inline (121390429397248u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_6C_69_6E_6B : LocalName = LocalName :: pack_inline (118121959284992u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_6C_74 : LocalName = LocalName :: pack_inline (1953259776u64 , 3u8) ; +pub const ATOM_LOCALNAME__61_6C_74_69_6D_67 : LocalName = LocalName :: pack_inline (29112222293451008u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_6C_74_74_65_78_74 : LocalName = LocalName :: pack_inline (8392569456448790784u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_6E_64 : LocalName = LocalName :: pack_inline (1684955392u64 , 3u8) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65 : LocalName = LocalName :: pack_inline (7310575217677328640u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_70_70_6C_65_74 : LocalName = LocalName :: pack_inline (32762613715722496u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_70_70_6C_79 : LocalName = LocalName :: pack_inline (133506649841920u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_70_70_72_6F_78 : LocalName = LocalName :: pack_inline (33899534508646656u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_6F_73 : LocalName = LocalName :: pack_inline (32492094982611200u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_6F_73_68 : LocalName = LocalName :: pack_inline (7526481874927116544u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_6F_74 : LocalName = LocalName :: pack_inline (32773569959321856u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_6F_74_68 : LocalName = LocalName :: pack_inline (7526763349903827200u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_73_63 : LocalName = LocalName :: pack_inline (27992893401751808u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_73_63_68 : LocalName = LocalName :: pack_inline (7521982673346257152u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_68_69_76_65 : LocalName = LocalName :: pack_inline (7311146942148534528u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_72_6F_6C_65 : LocalName = LocalName :: pack_inline (7308338832400867584u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_73_65_63 : LocalName = LocalName :: pack_inline (27977568958439680u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_73_65_63_68 : LocalName = LocalName :: pack_inline (7521967348902945024u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_73_69_6E : LocalName = LocalName :: pack_inline (31078191748768000u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_73_69_6E_68 : LocalName = LocalName :: pack_inline (7525067971693273344u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_74_61_6E : LocalName = LocalName :: pack_inline (31069399950713088u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_74_61_6E_68 : LocalName = LocalName :: pack_inline (7525059179895218432u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_65_61 : LocalName = LocalName :: pack_inline (418313822464u64 , 4u8) ; +pub const ATOM_LOCALNAME__61_72_67 : LocalName = LocalName :: pack_inline (1735549184u64 , 3u8) ; +pub const ATOM_LOCALNAME__61_72_74_69_63_6C_65 : LocalName = LocalName :: pack_inline (7308325599891841280u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_73_63_65_6E_74 : LocalName = LocalName :: pack_inline (32772479037694208u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_73_69_64_65 : LocalName = LocalName :: pack_inline (111481940304128u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_73_79_6E_63 : LocalName = LocalName :: pack_inline (109326135156992u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_75_64_69_6F : LocalName = LocalName :: pack_inline (122498447663360u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_78_69_73 : LocalName = LocalName :: pack_inline (495690735872u64 , 4u8) ; +pub const ATOM_LOCALNAME__61_7A_69_6D_75_74_68 : LocalName = LocalName :: pack_inline (7526769990024454400u64 , 7u8) ; +pub const ATOM_LOCALNAME__62 : LocalName = LocalName :: pack_inline (25088u64 , 1u8) ; +pub const ATOM_LOCALNAME__62_61_73_65 : LocalName = LocalName :: pack_inline (435727458816u64 , 4u8) ; +pub const ATOM_LOCALNAME__62_62_6F_78 : LocalName = LocalName :: pack_inline (517264794112u64 , 4u8) ; +pub const ATOM_LOCALNAME__62_64_69 : LocalName = LocalName :: pack_inline (1768186368u64 , 3u8) ; +pub const ATOM_LOCALNAME__62_64_6F : LocalName = LocalName :: pack_inline (1868849664u64 , 3u8) ; +pub const ATOM_LOCALNAME__62_65_67_69_6E : LocalName = LocalName :: pack_inline (121398985318912u64 , 5u8) ; +pub const ATOM_LOCALNAME__62_67_63_6F_6C_6F_72 : LocalName = LocalName :: pack_inline (8245928668403556864u64 , 7u8) ; +pub const ATOM_LOCALNAME__62_67_73_6F_75_6E_64 : LocalName = LocalName :: pack_inline (7236850772768940544u64 , 7u8) ; +pub const ATOM_LOCALNAME__62_69_61_73 : LocalName = LocalName :: pack_inline (495555535360u64 , 4u8) ; +pub const ATOM_LOCALNAME__62_69_67 : LocalName = LocalName :: pack_inline (1734959616u64 , 3u8) ; +pub const ATOM_LOCALNAME__62_6C_69_6E_6B : LocalName = LocalName :: pack_inline (118121959285248u64 , 5u8) ; +pub const ATOM_LOCALNAME__62_6F_64_79 : LocalName = LocalName :: pack_inline (521376064000u64 , 4u8) ; +pub const ATOM_LOCALNAME__62_6F_72_64_65_72 : LocalName = LocalName :: pack_inline (32199629436051968u64 , 6u8) ; +pub const ATOM_LOCALNAME__62_72 : LocalName = LocalName :: pack_inline (7496192u64 , 2u8) ; +pub const ATOM_LOCALNAME__62_75_74_74_6F_6E : LocalName = LocalName :: pack_inline (31084793398911488u64 , 6u8) ; +pub const ATOM_LOCALNAME__62_76_61_72 : LocalName = LocalName :: pack_inline (491261420032u64 , 4u8) ; +pub const ATOM_LOCALNAME__62_79 : LocalName = LocalName :: pack_inline (7954944u64 , 2u8) ; +pub const ATOM_LOCALNAME__63_61_6E_76_61_73 : LocalName = LocalName :: pack_inline (32476783607636736u64 , 6u8) ; +pub const ATOM_LOCALNAME__63_61_70_74_69_6F_6E : LocalName = LocalName :: pack_inline (7957695015409509120u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_61_72_64 : LocalName = LocalName :: pack_inline (431415714560u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_65_69_6C_69_6E_67 : LocalName = LocalName :: pack_inline (7453010347690386176u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_65_6E_74_65_72 : LocalName = LocalName :: pack_inline (32199698087764736u64 , 6u8) ; +pub const ATOM_LOCALNAME__63_68_61_72 : LocalName = LocalName :: pack_inline (491260502784u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_68_61_72_6F_66_66 : LocalName = LocalName :: pack_inline (7378707576544322304u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_68_61_72_73_65_74 : LocalName = LocalName :: pack_inline (8387236816145113856u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_68_65_63_6B_65_64 : LocalName = LocalName :: pack_inline (7234306451087844096u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_69 : LocalName = LocalName :: pack_inline (6906624u64 , 2u8) ; +pub const ATOM_LOCALNAME__63_69_72_63_6C_65 : LocalName = LocalName :: pack_inline (28548147024847616u64 , 6u8) ; +pub const ATOM_LOCALNAME__63_69_74_65 : LocalName = LocalName :: pack_inline (435744760576u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_6C_61_73_73 : LocalName = LocalName :: pack_inline (126939392926464u64 , 5u8) ; +pub const ATOM_LOCALNAME__63_6C_61_73_73_69_64 : LocalName = LocalName :: pack_inline (7235441215740338944u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6C_65_61_72 : LocalName = LocalName :: pack_inline (125762638996224u64 , 5u8) ; +pub const ATOM_LOCALNAME__63_6C_69_70 : LocalName = LocalName :: pack_inline (482805048064u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_6C_6F_73_65 : LocalName = LocalName :: pack_inline (111546465018624u64 , 5u8) ; +pub const ATOM_LOCALNAME__63_6C_6F_73_75_72_65 : LocalName = LocalName :: pack_inline (7310034283826799360u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6E : LocalName = LocalName :: pack_inline (7234304u64 , 2u8) ; +pub const ATOM_LOCALNAME__63_6F_64_65 : LocalName = LocalName :: pack_inline (435476718336u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_6F_6C : LocalName = LocalName :: pack_inline (1819239168u64 , 3u8) ; +pub const ATOM_LOCALNAME__63_6F_6C_6F_72 : LocalName = LocalName :: pack_inline (125822886175488u64 , 5u8) ; +pub const ATOM_LOCALNAME__63_6F_6C_73 : LocalName = LocalName :: pack_inline (495740478208u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_6F_6C_73_70_61_6E : LocalName = LocalName :: pack_inline (7953762057955795712u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6F_6D_70_61_63_74 : LocalName = LocalName :: pack_inline (8386654066594243328u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6F_6D_70_6F_73_65 : LocalName = LocalName :: pack_inline (7310309148815483648u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74 : LocalName = LocalName :: pack_inline (8389754706581218048u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6F_6F_72_64_73 : LocalName = LocalName :: pack_inline (32480064980345600u64 , 6u8) ; +pub const ATOM_LOCALNAME__63_6F_73 : LocalName = LocalName :: pack_inline (1936679680u64 , 3u8) ; +pub const ATOM_LOCALNAME__63_6F_73_68 : LocalName = LocalName :: pack_inline (448613278464u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_6F_74 : LocalName = LocalName :: pack_inline (1953456896u64 , 3u8) ; +pub const ATOM_LOCALNAME__63_6F_74_68 : LocalName = LocalName :: pack_inline (448630055680u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_73_63 : LocalName = LocalName :: pack_inline (1668506368u64 , 3u8) ; +pub const ATOM_LOCALNAME__63_73_63_68 : LocalName = LocalName :: pack_inline (448345105152u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_73_79_6D_62_6F_6C : LocalName = LocalName :: pack_inline (7813572100839662336u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_75_72_6C : LocalName = LocalName :: pack_inline (465776763648u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_75_72_73_6F_72 : LocalName = LocalName :: pack_inline (32210688977232640u64 , 6u8) ; +pub const ATOM_LOCALNAME__63_78 : LocalName = LocalName :: pack_inline (7889664u64 , 2u8) ; +pub const ATOM_LOCALNAME__63_79 : LocalName = LocalName :: pack_inline (7955200u64 , 2u8) ; +pub const ATOM_LOCALNAME__64 : LocalName = LocalName :: pack_inline (25600u64 , 1u8) ; +pub const ATOM_LOCALNAME__64_61_74_61 : LocalName = LocalName :: pack_inline (418564367360u64 , 4u8) ; +pub const ATOM_LOCALNAME__64_61_74_61_66_6C_64 : LocalName = LocalName :: pack_inline (7236271270027944960u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_61_74_61_73_72_63 : LocalName = LocalName :: pack_inline (7165916819501442048u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_64 : LocalName = LocalName :: pack_inline (6579200u64 , 2u8) ; +pub const ATOM_LOCALNAME__64_65_63_6C_61_72_65 : LocalName = LocalName :: pack_inline (7310012263327687680u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_65_66_61_75_6C_74 : LocalName = LocalName :: pack_inline (8389209267074589696u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_65_66_65_72 : LocalName = LocalName :: pack_inline (125779835184128u64 , 5u8) ; +pub const ATOM_LOCALNAME__64_65_66_73 : LocalName = LocalName :: pack_inline (495639159808u64 , 4u8) ; +pub const ATOM_LOCALNAME__64_65_67_72_65_65 : LocalName = LocalName :: pack_inline (28540514683151360u64 , 6u8) ; +pub const ATOM_LOCALNAME__64_65_6C : LocalName = LocalName :: pack_inline (1818584064u64 , 3u8) ; +pub const ATOM_LOCALNAME__64_65_70_74_68 : LocalName = LocalName :: pack_inline (114849311187968u64 , 5u8) ; +pub const ATOM_LOCALNAME__64_65_73_63 : LocalName = LocalName :: pack_inline (427137786880u64 , 4u8) ; +pub const ATOM_LOCALNAME__64_65_73_63_65_6E_74 : LocalName = LocalName :: pack_inline (8389754633650004992u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_65_74_61_69_6C_73 : LocalName = LocalName :: pack_inline (8317138479132009472u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_66_6E : LocalName = LocalName :: pack_inline (1852204032u64 , 3u8) ; +pub const ATOM_LOCALNAME__64_69_61_6C_6F_67 : LocalName = LocalName :: pack_inline (29114433882645504u64 , 6u8) ; +pub const ATOM_LOCALNAME__64_69_66_66 : LocalName = LocalName :: pack_inline (439804847104u64 , 4u8) ; +pub const ATOM_LOCALNAME__64_69_72 : LocalName = LocalName :: pack_inline (1919509504u64 , 3u8) ; +pub const ATOM_LOCALNAME__64_69_72_6E_61_6D_65 : LocalName = LocalName :: pack_inline (7308604897285989376u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_69_73_63_61_72_64 : LocalName = LocalName :: pack_inline (7237954630903751680u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_69_73_70_6C_61_79 : LocalName = LocalName :: pack_inline (8746391181558637568u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_69_76 : LocalName = LocalName :: pack_inline (1986618368u64 , 3u8) ; +pub const ATOM_LOCALNAME__64_69_76_69_64_65 : LocalName = LocalName :: pack_inline (28539376768738304u64 , 6u8) ; +pub const ATOM_LOCALNAME__64_69_76_69_73_6F_72 : LocalName = LocalName :: pack_inline (8245936339534046208u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_6C : LocalName = LocalName :: pack_inline (7103488u64 , 2u8) ; +pub const ATOM_LOCALNAME__64_6F_6D_61_69_6E : LocalName = LocalName :: pack_inline (31078114606932992u64 , 6u8) ; +pub const ATOM_LOCALNAME__64_74 : LocalName = LocalName :: pack_inline (7627776u64 , 2u8) ; +pub const ATOM_LOCALNAME__64_75_72 : LocalName = LocalName :: pack_inline (1920295936u64 , 3u8) ; +pub const ATOM_LOCALNAME__64_78 : LocalName = LocalName :: pack_inline (7889920u64 , 2u8) ; +pub const ATOM_LOCALNAME__64_79 : LocalName = LocalName :: pack_inline (7955456u64 , 2u8) ; +pub const ATOM_LOCALNAME__65_64_67_65 : LocalName = LocalName :: pack_inline (435526329600u64 , 4u8) ; +pub const ATOM_LOCALNAME__65_6C_6C_69_70_73_65 : LocalName = LocalName :: pack_inline (7310310218245367040u64 , 7u8) ; +pub const ATOM_LOCALNAME__65_6D : LocalName = LocalName :: pack_inline (7169280u64 , 2u8) ; +pub const ATOM_LOCALNAME__65_6D_62_65_64 : LocalName = LocalName :: pack_inline (110386605810944u64 , 5u8) ; +pub const ATOM_LOCALNAME__65_6E_63_74_79_70_65 : LocalName = LocalName :: pack_inline (7309475736013661440u64 , 7u8) ; +pub const ATOM_LOCALNAME__65_6E_64 : LocalName = LocalName :: pack_inline (1684956416u64 , 3u8) ; +pub const ATOM_LOCALNAME__65_71 : LocalName = LocalName :: pack_inline (7431424u64 , 2u8) ; +pub const ATOM_LOCALNAME__65_76_65_6E_74 : LocalName = LocalName :: pack_inline (128017497482496u64 , 5u8) ; +pub const ATOM_LOCALNAME__65_78_69_73_74_73 : LocalName = LocalName :: pack_inline (32497661361284352u64 , 6u8) ; +pub const ATOM_LOCALNAME__65_78_70 : LocalName = LocalName :: pack_inline (1886938368u64 , 3u8) ; +pub const ATOM_LOCALNAME__66_61_63_65 : LocalName = LocalName :: pack_inline (435459024384u64 , 4u8) ; +pub const ATOM_LOCALNAME__66_61_6C_73_65 : LocalName = LocalName :: pack_inline (111546413966848u64 , 5u8) ; +pub const ATOM_LOCALNAME__66_65_42_6C_65_6E_64 : LocalName = LocalName :: pack_inline (7236833166875780608u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_46_6C_6F_6F_64 : LocalName = LocalName :: pack_inline (7237125637035877888u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_46_75_6E_63_41 : LocalName = LocalName :: pack_inline (4711731085130950144u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_46_75_6E_63_42 : LocalName = LocalName :: pack_inline (4783788679168878080u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_46_75_6E_63_47 : LocalName = LocalName :: pack_inline (5144076649358517760u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_46_75_6E_63_52 : LocalName = LocalName :: pack_inline (5936710183775725056u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_49_6D_61_67_65 : LocalName = LocalName :: pack_inline (7306916042442630656u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_4D_65_72_67_65 : LocalName = LocalName :: pack_inline (7306934699847673344u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_54_69_6C_65 : LocalName = LocalName :: pack_inline (28548172291073536u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_65_62_6C_65_6E_64 : LocalName = LocalName :: pack_inline (7236833167412651520u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_66_6C_6F_6F_64 : LocalName = LocalName :: pack_inline (7237125637572748800u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_66_75_6E_63_61 : LocalName = LocalName :: pack_inline (7017574094881515008u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_66_75_6E_63_62 : LocalName = LocalName :: pack_inline (7089631688919442944u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_66_75_6E_63_67 : LocalName = LocalName :: pack_inline (7449919659109082624u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_66_75_6E_63_72 : LocalName = LocalName :: pack_inline (8242553193526289920u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_69_6D_61_67_65 : LocalName = LocalName :: pack_inline (7306916042979501568u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_6D_65_72_67_65 : LocalName = LocalName :: pack_inline (7306934700384544256u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_6E_63_65 : LocalName = LocalName :: pack_inline (111477728306688u64 , 5u8) ; +pub const ATOM_LOCALNAME__66_65_74_63_68 : LocalName = LocalName :: pack_inline (114776363853312u64 , 5u8) ; +pub const ATOM_LOCALNAME__66_65_74_69_6C_65 : LocalName = LocalName :: pack_inline (28548172827944448u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_69_67_75_72_65 : LocalName = LocalName :: pack_inline (28554821219476992u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_69_6C_6C : LocalName = LocalName :: pack_inline (465675314688u64 , 4u8) ; +pub const ATOM_LOCALNAME__66_69_6C_74_65_72 : LocalName = LocalName :: pack_inline (32199698054473216u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_6C_6F_6F_72 : LocalName = LocalName :: pack_inline (125822936311296u64 , 5u8) ; +pub const ATOM_LOCALNAME__66_6E : LocalName = LocalName :: pack_inline (7235072u64 , 2u8) ; +pub const ATOM_LOCALNAME__66_6F_6E_74 : LocalName = LocalName :: pack_inline (500069000704u64 , 4u8) ; +pub const ATOM_LOCALNAME__66_6F_6F_74_65_72 : LocalName = LocalName :: pack_inline (32199698105198080u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_6F_72 : LocalName = LocalName :: pack_inline (1919903232u64 , 3u8) ; +pub const ATOM_LOCALNAME__66_6F_72_61_6C_6C : LocalName = LocalName :: pack_inline (30518463272281600u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_6F_72_6D : LocalName = LocalName :: pack_inline (470071338496u64 , 4u8) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_61_74 : LocalName = LocalName :: pack_inline (32758219997668864u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_72_61_6D_65 : LocalName = LocalName :: pack_inline (111520460727808u64 , 5u8) ; +pub const ATOM_LOCALNAME__66_72_6F_6D : LocalName = LocalName :: pack_inline (470021203456u64 , 4u8) ; +pub const ATOM_LOCALNAME__66_78 : LocalName = LocalName :: pack_inline (7890432u64 , 2u8) ; +pub const ATOM_LOCALNAME__66_79 : LocalName = LocalName :: pack_inline (7955968u64 , 2u8) ; +pub const ATOM_LOCALNAME__67 : LocalName = LocalName :: pack_inline (26368u64 , 1u8) ; +pub const ATOM_LOCALNAME__67_31 : LocalName = LocalName :: pack_inline (3237632u64 , 2u8) ; +pub const ATOM_LOCALNAME__67_32 : LocalName = LocalName :: pack_inline (3303168u64 , 2u8) ; +pub const ATOM_LOCALNAME__67_63_64 : LocalName = LocalName :: pack_inline (1684236032u64 , 3u8) ; +pub const ATOM_LOCALNAME__67_65_71 : LocalName = LocalName :: pack_inline (1902470912u64 , 3u8) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68 : LocalName = LocalName :: pack_inline (114832282773248u64 , 5u8) ; +pub const ATOM_LOCALNAME__67_72_61_64 : LocalName = LocalName :: pack_inline (431131617024u64 , 4u8) ; +pub const ATOM_LOCALNAME__67_74 : LocalName = LocalName :: pack_inline (7628544u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_31 : LocalName = LocalName :: pack_inline (3237888u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_32 : LocalName = LocalName :: pack_inline (3303424u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_33 : LocalName = LocalName :: pack_inline (3368960u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_34 : LocalName = LocalName :: pack_inline (3434496u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_35 : LocalName = LocalName :: pack_inline (3500032u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_36 : LocalName = LocalName :: pack_inline (3565568u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_61_6E_64_6C_65_72 : LocalName = LocalName :: pack_inline (8243113871575967744u64 , 7u8) ; +pub const ATOM_LOCALNAME__68_61_6E_67_69_6E_67 : LocalName = LocalName :: pack_inline (7453010326299174912u64 , 7u8) ; +pub const ATOM_LOCALNAME__68_65_61_64 : LocalName = LocalName :: pack_inline (431130765312u64 , 4u8) ; +pub const ATOM_LOCALNAME__68_65_61_64_65_72 : LocalName = LocalName :: pack_inline (32199629150185472u64 , 6u8) ; +pub const ATOM_LOCALNAME__68_65_61_64_65_72_73 : LocalName = LocalName :: pack_inline (8318822943511898112u64 , 7u8) ; +pub const ATOM_LOCALNAME__68_65_69_67_68_74 : LocalName = LocalName :: pack_inline (32765890657609728u64 , 6u8) ; +pub const ATOM_LOCALNAME__68_67_72_6F_75_70 : LocalName = LocalName :: pack_inline (31654318912792576u64 , 6u8) ; +pub const ATOM_LOCALNAME__68_69_64_64_65_6E : LocalName = LocalName :: pack_inline (31073729293936640u64 , 6u8) ; +pub const ATOM_LOCALNAME__68_69_67_68 : LocalName = LocalName :: pack_inline (448411559936u64 , 4u8) ; +pub const ATOM_LOCALNAME__68_6B_65_72_6E : LocalName = LocalName :: pack_inline (121437606864896u64 , 5u8) ; +pub const ATOM_LOCALNAME__68_72 : LocalName = LocalName :: pack_inline (7497728u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_72_65_66 : LocalName = LocalName :: pack_inline (439788660736u64 , 4u8) ; +pub const ATOM_LOCALNAME__68_73_70_61_63_65 : LocalName = LocalName :: pack_inline (28538242797365248u64 , 6u8) ; +pub const ATOM_LOCALNAME__68_74_6D_6C : LocalName = LocalName :: pack_inline (465692813312u64 , 4u8) ; +pub const ATOM_LOCALNAME__69 : LocalName = LocalName :: pack_inline (26880u64 , 1u8) ; +pub const ATOM_LOCALNAME__69_63_6F_6E : LocalName = LocalName :: pack_inline (474315188480u64 , 4u8) ; +pub const ATOM_LOCALNAME__69_64 : LocalName = LocalName :: pack_inline (6580480u64 , 2u8) ; +pub const ATOM_LOCALNAME__69_64_65_6E_74 : LocalName = LocalName :: pack_inline (128017496303872u64 , 5u8) ; +pub const ATOM_LOCALNAME__69_66_72_61_6D_65 : LocalName = LocalName :: pack_inline (28549237946345728u64 , 6u8) ; +pub const ATOM_LOCALNAME__69_6D_61_67_65 : LocalName = LocalName :: pack_inline (111494690597120u64 , 5u8) ; +pub const ATOM_LOCALNAME__69_6D_67 : LocalName = LocalName :: pack_inline (1735223552u64 , 3u8) ; +pub const ATOM_LOCALNAME__69_6D_70_6C_69_65_73 : LocalName = LocalName :: pack_inline (8315168201473091840u64 , 7u8) ; +pub const ATOM_LOCALNAME__69_6E : LocalName = LocalName :: pack_inline (7235840u64 , 2u8) ; +pub const ATOM_LOCALNAME__69_6E_32 : LocalName = LocalName :: pack_inline (846096640u64 , 3u8) ; +pub const ATOM_LOCALNAME__69_6E_64_65_78 : LocalName = LocalName :: pack_inline (132376871987456u64 , 5u8) ; +pub const ATOM_LOCALNAME__69_6E_70_75_74 : LocalName = LocalName :: pack_inline (128047746279680u64 , 5u8) ; +pub const ATOM_LOCALNAME__69_6E_73 : LocalName = LocalName :: pack_inline (1936615680u64 , 3u8) ; +pub const ATOM_LOCALNAME__69_6E_74 : LocalName = LocalName :: pack_inline (1953392896u64 , 3u8) ; +pub const ATOM_LOCALNAME__69_6E_76_65_72_73_65 : LocalName = LocalName :: pack_inline (7310312400256657664u64 , 7u8) ; +pub const ATOM_LOCALNAME__69_73_69_6E_64_65_78 : LocalName = LocalName :: pack_inline (8675450682577479936u64 , 7u8) ; +pub const ATOM_LOCALNAME__69_73_6D_61_70 : LocalName = LocalName :: pack_inline (123563750418688u64 , 5u8) ; +pub const ATOM_LOCALNAME__69_74_65_6D_69_64 : LocalName = LocalName :: pack_inline (28263416245545216u64 , 6u8) ; +pub const ATOM_LOCALNAME__69_74_65_6D_72_65_66 : LocalName = LocalName :: pack_inline (7378429378695555328u64 , 7u8) ; +pub const ATOM_LOCALNAME__6B : LocalName = LocalName :: pack_inline (27392u64 , 1u8) ; +pub const ATOM_LOCALNAME__6B_31 : LocalName = LocalName :: pack_inline (3238656u64 , 2u8) ; +pub const ATOM_LOCALNAME__6B_32 : LocalName = LocalName :: pack_inline (3304192u64 , 2u8) ; +pub const ATOM_LOCALNAME__6B_33 : LocalName = LocalName :: pack_inline (3369728u64 , 2u8) ; +pub const ATOM_LOCALNAME__6B_34 : LocalName = LocalName :: pack_inline (3435264u64 , 2u8) ; +pub const ATOM_LOCALNAME__6B_62_64 : LocalName = LocalName :: pack_inline (1684171520u64 , 3u8) ; +pub const ATOM_LOCALNAME__6B_65_72_6E_69_6E_67 : LocalName = LocalName :: pack_inline (7453010356431317760u64 , 7u8) ; +pub const ATOM_LOCALNAME__6B_65_79_67_65_6E : LocalName = LocalName :: pack_inline (31073742530898688u64 , 6u8) ; +pub const ATOM_LOCALNAME__6B_69_6E_64 : LocalName = LocalName :: pack_inline (431349132032u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_61_62_65_6C : LocalName = LocalName :: pack_inline (119182698048512u64 , 5u8) ; +pub const ATOM_LOCALNAME__6C_61_6D_62_64_61 : LocalName = LocalName :: pack_inline (27413446645607424u64 , 6u8) ; +pub const ATOM_LOCALNAME__6C_61_6E_67 : LocalName = LocalName :: pack_inline (444233509888u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_61_72_67_65_6F_70 : LocalName = LocalName :: pack_inline (8101805749637835776u64 , 7u8) ; +pub const ATOM_LOCALNAME__6C_63_6D : LocalName = LocalName :: pack_inline (1835232256u64 , 3u8) ; +pub const ATOM_LOCALNAME__6C_65_67_65_6E_64 : LocalName = LocalName :: pack_inline (28268879476517888u64 , 6u8) ; +pub const ATOM_LOCALNAME__6C_65_71 : LocalName = LocalName :: pack_inline (1902472192u64 , 3u8) ; +pub const ATOM_LOCALNAME__6C_69 : LocalName = LocalName :: pack_inline (6908928u64 , 2u8) ; +pub const ATOM_LOCALNAME__6C_69_6D_69_74 : LocalName = LocalName :: pack_inline (127996156013568u64 , 5u8) ; +pub const ATOM_LOCALNAME__6C_69_6E_65 : LocalName = LocalName :: pack_inline (435644099584u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_69_6E_6B : LocalName = LocalName :: pack_inline (461413903360u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_69_73_74 : LocalName = LocalName :: pack_inline (500152495104u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_69_73_74_69_6E_67 : LocalName = LocalName :: pack_inline (7453010382218161152u64 , 7u8) ; +pub const ATOM_LOCALNAME__6C_6E : LocalName = LocalName :: pack_inline (7236608u64 , 2u8) ; +pub const ATOM_LOCALNAME__6C_6F_61_64_69_6E_67 : LocalName = LocalName :: pack_inline (7453010313197087744u64 , 7u8) ; +pub const ATOM_LOCALNAME__6C_6F_63_61_6C : LocalName = LocalName :: pack_inline (119165535874048u64 , 5u8) ; +pub const ATOM_LOCALNAME__6C_6F_67 : LocalName = LocalName :: pack_inline (1735355392u64 , 3u8) ; +pub const ATOM_LOCALNAME__6C_6F_67_62_61_73_65 : LocalName = LocalName :: pack_inline (7310293695422491648u64 , 7u8) ; +pub const ATOM_LOCALNAME__6C_6F_6F_70 : LocalName = LocalName :: pack_inline (482905910272u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_6F_77 : LocalName = LocalName :: pack_inline (2003790848u64 , 3u8) ; +pub const ATOM_LOCALNAME__6C_6F_77_73_72_63 : LocalName = LocalName :: pack_inline (27991862944951296u64 , 6u8) ; +pub const ATOM_LOCALNAME__6C_71_75_6F_74_65 : LocalName = LocalName :: pack_inline (28556994708335616u64 , 6u8) ; +pub const ATOM_LOCALNAME__6C_73_70_61_63_65 : LocalName = LocalName :: pack_inline (28538242797366272u64 , 6u8) ; +pub const ATOM_LOCALNAME__6C_74 : LocalName = LocalName :: pack_inline (7629824u64 , 2u8) ; +pub const ATOM_LOCALNAME__6D_61_63_72_6F_73 : LocalName = LocalName :: pack_inline (32492159406009600u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_61_63_74_69_6F_6E : LocalName = LocalName :: pack_inline (7957695015191407872u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_61_69_6E : LocalName = LocalName :: pack_inline (474214395136u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_61_70 : LocalName = LocalName :: pack_inline (1885433088u64 , 3u8) ; +pub const ATOM_LOCALNAME__6D_61_72_6B : LocalName = LocalName :: pack_inline (461480488192u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72 : LocalName = LocalName :: pack_inline (32199659499908352u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_61_72_71_75_65_65 : LocalName = LocalName :: pack_inline (7306375100589239552u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_61_73_6B : LocalName = LocalName :: pack_inline (461497265408u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_61_74_68 : LocalName = LocalName :: pack_inline (448629140736u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_61_74_72_69_78 : LocalName = LocalName :: pack_inline (33892937505008896u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_61_78 : LocalName = LocalName :: pack_inline (2019650816u64 , 3u8) ; +pub const ATOM_LOCALNAME__6D_61_78_73_69_7A_65 : LocalName = LocalName :: pack_inline (7312272889651227904u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_65_61_6E : LocalName = LocalName :: pack_inline (474080439552u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_65_64_69_61 : LocalName = LocalName :: pack_inline (107105283828992u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_65_64_69_61_6E : LocalName = LocalName :: pack_inline (31069352722001152u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_65_6E_75 : LocalName = LocalName :: pack_inline (504363314432u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_65_72_72_6F_72 : LocalName = LocalName :: pack_inline (32210684681219328u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_65_74_61 : LocalName = LocalName :: pack_inline (418564631808u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_65_74_65_72 : LocalName = LocalName :: pack_inline (125780070067456u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_65_74_68_6F_64 : LocalName = LocalName :: pack_inline (28269992091151616u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_66_65_6E_63_65_64 : LocalName = LocalName :: pack_inline (7234297702239333632u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_66_72_61_63 : LocalName = LocalName :: pack_inline (109270182292736u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_67_6C_79_70_68 : LocalName = LocalName :: pack_inline (29397064389979392u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_69 : LocalName = LocalName :: pack_inline (6909184u64 , 2u8) ; +pub const ATOM_LOCALNAME__6D_69_6E : LocalName = LocalName :: pack_inline (1852402944u64 , 3u8) ; +pub const ATOM_LOCALNAME__6D_69_6E_73_69_7A_65 : LocalName = LocalName :: pack_inline (7312272889483980032u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_69_6E_75_73 : LocalName = LocalName :: pack_inline (126948200770816u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_6E : LocalName = LocalName :: pack_inline (7236864u64 , 2u8) ; +pub const ATOM_LOCALNAME__6D_6F : LocalName = LocalName :: pack_inline (7302400u64 , 2u8) ; +pub const ATOM_LOCALNAME__6D_6F_64_65 : LocalName = LocalName :: pack_inline (435476720896u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_6F_6D_65_6E_74 : LocalName = LocalName :: pack_inline (32772479205207296u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_6F_76_65_72 : LocalName = LocalName :: pack_inline (125780104277248u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_70_61_64_64_65_64 : LocalName = LocalName :: pack_inline (7234298758734834944u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_70_61_74_68 : LocalName = LocalName :: pack_inline (114849060252928u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_72_6F_6F_74 : LocalName = LocalName :: pack_inline (128021959961856u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_72_6F_77 : LocalName = LocalName :: pack_inline (512970878208u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_73 : LocalName = LocalName :: pack_inline (7564544u64 , 2u8) ; +pub const ATOM_LOCALNAME__6D_73_70_61_63_65 : LocalName = LocalName :: pack_inline (28538242797366528u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_73_71_72_74 : LocalName = LocalName :: pack_inline (128034878483712u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_73_74_79_6C_65 : LocalName = LocalName :: pack_inline (28548241548340480u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_73_75_62 : LocalName = LocalName :: pack_inline (422877293824u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_73_75_62_73_75_70 : LocalName = LocalName :: pack_inline (8103509971237563648u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_73_75_70 : LocalName = LocalName :: pack_inline (483006835968u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_74_61_62_6C_65 : LocalName = LocalName :: pack_inline (28548142445391104u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_74_64 : LocalName = LocalName :: pack_inline (1685351680u64 , 3u8) ; +pub const ATOM_LOCALNAME__6D_74_65_78_74 : LocalName = LocalName :: pack_inline (128060447026432u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_74_72 : LocalName = LocalName :: pack_inline (1920232704u64 , 3u8) ; +pub const ATOM_LOCALNAME__6D_75_6E_64_65_72 : LocalName = LocalName :: pack_inline (32199629369339136u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_75_74_65_64 : LocalName = LocalName :: pack_inline (110386908327168u64 , 5u8) ; +pub const ATOM_LOCALNAME__6E_61_6D_65 : LocalName = LocalName :: pack_inline (435626798592u64 , 4u8) ; +pub const ATOM_LOCALNAME__6E_61_72_67_73 : LocalName = LocalName :: pack_inline (126888137813504u64 , 5u8) ; +pub const ATOM_LOCALNAME__6E_61_76 : LocalName = LocalName :: pack_inline (1986096640u64 , 3u8) ; +pub const ATOM_LOCALNAME__6E_65_71 : LocalName = LocalName :: pack_inline (1902472704u64 , 3u8) ; +pub const ATOM_LOCALNAME__6E_65_73_74 : LocalName = LocalName :: pack_inline (500152233472u64 , 4u8) ; +pub const ATOM_LOCALNAME__6E_65_78_74_69_64 : LocalName = LocalName :: pack_inline (28263446628101632u64 , 6u8) ; +pub const ATOM_LOCALNAME__6E_6F_62_72 : LocalName = LocalName :: pack_inline (491277741568u64 , 4u8) ; +pub const ATOM_LOCALNAME__6E_6F_65_6D_62_65_64 : LocalName = LocalName :: pack_inline (7234296598433328640u64 , 7u8) ; +pub const ATOM_LOCALNAME__6E_6F_68_72_65_66 : LocalName = LocalName :: pack_inline (28821989677297152u64 , 6u8) ; +pub const ATOM_LOCALNAME__6E_6F_6E_63_65 : LocalName = LocalName :: pack_inline (111477728964096u64 , 5u8) ; +pub const ATOM_LOCALNAME__6E_6F_6E_65 : LocalName = LocalName :: pack_inline (435644493312u64 , 4u8) ; +pub const ATOM_LOCALNAME__6E_6F_73_68_61_64_65 : LocalName = LocalName :: pack_inline (7306071596742962688u64 , 7u8) ; +pub const ATOM_LOCALNAME__6E_6F_74 : LocalName = LocalName :: pack_inline (1953459712u64 , 3u8) ; +pub const ATOM_LOCALNAME__6E_6F_74_69_6E : LocalName = LocalName :: pack_inline (121399204081152u64 , 5u8) ; +pub const ATOM_LOCALNAME__6E_6F_77_72_61_70 : LocalName = LocalName :: pack_inline (31632341649550848u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_62_6A_65_63_74 : LocalName = LocalName :: pack_inline (32760384526118656u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_66_66_73_65_74 : LocalName = LocalName :: pack_inline (32762643612069632u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6C : LocalName = LocalName :: pack_inline (7106304u64 , 2u8) ; +pub const ATOM_LOCALNAME__6F_6E_61_62_6F_72_74 : LocalName = LocalName :: pack_inline (8390891524076760832u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_67_69_6E : LocalName = LocalName :: pack_inline (7956003901867454208u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_62_6C_75_72 : LocalName = LocalName :: pack_inline (32217255713337088u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_63_6C_69_63_6B : LocalName = LocalName :: pack_inline (7738144498998210304u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_63_6F_70_79 : LocalName = LocalName :: pack_inline (34182095893851904u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_63_75_74 : LocalName = LocalName :: pack_inline (128047528177408u64 , 5u8) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67 : LocalName = LocalName :: pack_inline (29099066540322560u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_6F_70 : LocalName = LocalName :: pack_inline (31647734493507328u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_65_6E_64 : LocalName = LocalName :: pack_inline (110425310916352u64 , 5u8) ; +pub const ATOM_LOCALNAME__6F_6E_65_72_72_6F_72 : LocalName = LocalName :: pack_inline (8245935278392241920u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_66_6F_63_75_73 : LocalName = LocalName :: pack_inline (8319665216747892480u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_68_65_6C_70 : LocalName = LocalName :: pack_inline (31644380191158016u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_69_6E_70_75_74 : LocalName = LocalName :: pack_inline (8391737100192345856u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_6B_65_79_75_70 : LocalName = LocalName :: pack_inline (8103516581024132864u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_6C_6F_61_64 : LocalName = LocalName :: pack_inline (28254628859506432u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_76_65 : LocalName = LocalName :: pack_inline (28559193597177600u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_70_61_73_74_65 : LocalName = LocalName :: pack_inline (7310594957464465152u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_72_65_73_65_74 : LocalName = LocalName :: pack_inline (8387236760596147968u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_73_74_61_72_74 : LocalName = LocalName :: pack_inline (8390876208525373184u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_73_74_6F_70 : LocalName = LocalName :: pack_inline (31647743335100160u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_7A_6F_6F_6D : LocalName = LocalName :: pack_inline (30803297047572224u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_70_61_63_69_74_79 : LocalName = LocalName :: pack_inline (8751735851445153536u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_70_65_6E : LocalName = LocalName :: pack_inline (474148269824u64 , 4u8) ; +pub const ATOM_LOCALNAME__6F_70_74_69_6D_75_6D : LocalName = LocalName :: pack_inline (7887330622101810944u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_70_74_69_6F_6E : LocalName = LocalName :: pack_inline (31084746153946880u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_72 : LocalName = LocalName :: pack_inline (7499520u64 , 2u8) ; +pub const ATOM_LOCALNAME__6F_72_64_65_72 : LocalName = LocalName :: pack_inline (125779802484480u64 , 5u8) ; +pub const ATOM_LOCALNAME__6F_72_69_65_6E_74 : LocalName = LocalName :: pack_inline (32772479138295552u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_72_69_67_69_6E : LocalName = LocalName :: pack_inline (31078140309827328u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_74_68_65_72 : LocalName = LocalName :: pack_inline (125779869724416u64 , 5u8) ; +pub const ATOM_LOCALNAME__6F_75_74_70_75_74 : LocalName = LocalName :: pack_inline (32780223149076224u64 , 6u8) ; +pub const ATOM_LOCALNAME__70 : LocalName = LocalName :: pack_inline (28672u64 , 1u8) ; +pub const ATOM_LOCALNAME__70_61_72_61_6D : LocalName = LocalName :: pack_inline (120265298243584u64 , 5u8) ; +pub const ATOM_LOCALNAME__70_61_72_73_65 : LocalName = LocalName :: pack_inline (111546514632704u64 , 5u8) ; +pub const ATOM_LOCALNAME__70_61_74_68 : LocalName = LocalName :: pack_inline (448629141504u64 , 4u8) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E : LocalName = LocalName :: pack_inline (7958535042360242176u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_69 : LocalName = LocalName :: pack_inline (6909952u64 , 2u8) ; +pub const ATOM_LOCALNAME__70_69_63_74_75_72_65 : LocalName = LocalName :: pack_inline (7310034287920246784u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_69_65_63_65 : LocalName = LocalName :: pack_inline (111477577576448u64 , 5u8) ; +pub const ATOM_LOCALNAME__70_69_6E_67 : LocalName = LocalName :: pack_inline (444234035200u64 , 4u8) ; +pub const ATOM_LOCALNAME__70_6C_75_73 : LocalName = LocalName :: pack_inline (495891279872u64 , 4u8) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73 : LocalName = LocalName :: pack_inline (32497639885860864u64 , 6u8) ; +pub const ATOM_LOCALNAME__70_6F_6C_79_67_6F_6E : LocalName = LocalName :: pack_inline (7957692837794902016u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_6F_73_74_65_72 : LocalName = LocalName :: pack_inline (32199698172309504u64 , 6u8) ; +pub const ATOM_LOCALNAME__70_6F_77_65_72 : LocalName = LocalName :: pack_inline (125780121055232u64 , 5u8) ; +pub const ATOM_LOCALNAME__70_72_65 : LocalName = LocalName :: pack_inline (1701998592u64 , 3u8) ; +pub const ATOM_LOCALNAME__70_72_65_6C_6F_61_64 : LocalName = LocalName :: pack_inline (7233184987882876928u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_72_69_6D_65_73 : LocalName = LocalName :: pack_inline (32481142916673536u64 , 6u8) ; +pub const ATOM_LOCALNAME__70_72_6F_64_75_63_74 : LocalName = LocalName :: pack_inline (8386676005320945664u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_72_6F_66_69_6C_65 : LocalName = LocalName :: pack_inline (7308332183992823808u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_72_6F_6D_70_74 : LocalName = LocalName :: pack_inline (32774712621953024u64 , 6u8) ; +pub const ATOM_LOCALNAME__71 : LocalName = LocalName :: pack_inline (28928u64 , 1u8) ; +pub const ATOM_LOCALNAME__72 : LocalName = LocalName :: pack_inline (29184u64 , 1u8) ; +pub const ATOM_LOCALNAME__72_61_64_69_75_73 : LocalName = LocalName :: pack_inline (32498717837849088u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_62 : LocalName = LocalName :: pack_inline (6451712u64 , 2u8) ; +pub const ATOM_LOCALNAME__72_65_61_6C : LocalName = LocalName :: pack_inline (465490506240u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_61_6C_73 : LocalName = LocalName :: pack_inline (126909327700480u64 , 5u8) ; +pub const ATOM_LOCALNAME__72_65_63_74 : LocalName = LocalName :: pack_inline (499883799040u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_66_58 : LocalName = LocalName :: pack_inline (379675046400u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_66_59 : LocalName = LocalName :: pack_inline (383970013696u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_66_78 : LocalName = LocalName :: pack_inline (517113999872u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_66_79 : LocalName = LocalName :: pack_inline (521408967168u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_6C : LocalName = LocalName :: pack_inline (1818587648u64 , 3u8) ; +pub const ATOM_LOCALNAME__72_65_6C_6E : LocalName = LocalName :: pack_inline (474264990208u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_6D : LocalName = LocalName :: pack_inline (1835364864u64 , 3u8) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74 : LocalName = LocalName :: pack_inline (32758185603723776u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_65_70_6C_61_63_65 : LocalName = LocalName :: pack_inline (7305790138895135232u64 , 7u8) ; +pub const ATOM_LOCALNAME__72_65_73_74_61_72_74 : LocalName = LocalName :: pack_inline (8390876208524784128u64 , 7u8) ; +pub const ATOM_LOCALNAME__72_65_73_75_6C_74 : LocalName = LocalName :: pack_inline (32770349001437696u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_65_76 : LocalName = LocalName :: pack_inline (1986359808u64 , 3u8) ; +pub const ATOM_LOCALNAME__72_6F_6C_65 : LocalName = LocalName :: pack_inline (435610939904u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_6F_6F_74 : LocalName = LocalName :: pack_inline (500085780992u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_6F_74_61_74_65 : LocalName = LocalName :: pack_inline (28556934561886720u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_6F_77_73 : LocalName = LocalName :: pack_inline (495925031424u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_6F_77_73_70_61_6E : LocalName = LocalName :: pack_inline (7953762058140348928u64 , 7u8) ; +pub const ATOM_LOCALNAME__72_70 : LocalName = LocalName :: pack_inline (7369216u64 , 2u8) ; +pub const ATOM_LOCALNAME__72_71_75_6F_74_65 : LocalName = LocalName :: pack_inline (28556994708337152u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_73_70_61_63_65 : LocalName = LocalName :: pack_inline (28538242797367808u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_74 : LocalName = LocalName :: pack_inline (7631360u64 , 2u8) ; +pub const ATOM_LOCALNAME__72_74_63 : LocalName = LocalName :: pack_inline (1668575744u64 , 3u8) ; +pub const ATOM_LOCALNAME__72_75_62_79 : LocalName = LocalName :: pack_inline (521342906880u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_75_6C_65 : LocalName = LocalName :: pack_inline (435611333120u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_75_6C_65_73 : LocalName = LocalName :: pack_inline (126879448527360u64 , 5u8) ; +pub const ATOM_LOCALNAME__72_78 : LocalName = LocalName :: pack_inline (7893504u64 , 2u8) ; +pub const ATOM_LOCALNAME__72_79 : LocalName = LocalName :: pack_inline (7959040u64 , 2u8) ; +pub const ATOM_LOCALNAME__73 : LocalName = LocalName :: pack_inline (29440u64 , 1u8) ; +pub const ATOM_LOCALNAME__73_61_6D_70 : LocalName = LocalName :: pack_inline (482871440128u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_61_6E_64_62_6F_78 : LocalName = LocalName :: pack_inline (8678263190454366976u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_63_61_6C_65 : LocalName = LocalName :: pack_inline (111516164780800u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_63_68_65_6D_65 : LocalName = LocalName :: pack_inline (28549254958248704u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_63_6F_70_65 : LocalName = LocalName :: pack_inline (111533579531008u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_63_6F_70_65_64 : LocalName = LocalName :: pack_inline (28259031250596608u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_63_72_69_70_74 : LocalName = LocalName :: pack_inline (32774695491433216u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_64_65_76 : LocalName = LocalName :: pack_inline (508507222784u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_65_61_72_63_68 : LocalName = LocalName :: pack_inline (29382740489368320u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_65_63 : LocalName = LocalName :: pack_inline (1667592960u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_65_63_68 : LocalName = LocalName :: pack_inline (448344191744u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_65_63_74_69_6F_6E : LocalName = LocalName :: pack_inline (7957695015191671552u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_65_65_64 : LocalName = LocalName :: pack_inline (431197876992u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_65_6C_65_63_74 : LocalName = LocalName :: pack_inline (32760384559870720u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_65_70 : LocalName = LocalName :: pack_inline (1885696768u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_65_74 : LocalName = LocalName :: pack_inline (1952805632u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_65_74_64_69_66_66 : LocalName = LocalName :: pack_inline (7378700919663588096u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_68_61_70_65 : LocalName = LocalName :: pack_inline (111533344977664u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_68_6F_77 : LocalName = LocalName :: pack_inline (512970224384u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_69_6E : LocalName = LocalName :: pack_inline (1852404480u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_69_6E_68 : LocalName = LocalName :: pack_inline (448529003264u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_69_7A_65 : LocalName = LocalName :: pack_inline (435845427968u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_69_7A_65_73 : LocalName = LocalName :: pack_inline (126879682622208u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_6C_6F_70_65 : LocalName = LocalName :: pack_inline (111533580120832u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_6C_6F_74 : LocalName = LocalName :: pack_inline (500085584640u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_6D_61_6C_6C : LocalName = LocalName :: pack_inline (119212746830592u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_6F_75_72_63_65 : LocalName = LocalName :: pack_inline (28538315895436032u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_70_61_63_65 : LocalName = LocalName :: pack_inline (111477510927104u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_70_61_63_65_72 : LocalName = LocalName :: pack_inline (32199624855941888u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_inline (7453010308902187776u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_70_61_6E : LocalName = LocalName :: pack_inline (474081161984u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_70_65_65_64 : LocalName = LocalName :: pack_inline (110386656342784u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_72_63 : LocalName = LocalName :: pack_inline (1668444928u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_72_63_64_6F_63 : LocalName = LocalName :: pack_inline (27988499650212608u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_72_63_6C_61_6E_67 : LocalName = LocalName :: pack_inline (7453001551497556736u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_72_63_73_65_74 : LocalName = LocalName :: pack_inline (32762643562525440u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_74_61_6E_64_62_79 : LocalName = LocalName :: pack_inline (8746663851551126272u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_74_61_72_74 : LocalName = LocalName :: pack_inline (128034610115328u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_74_65_6D_68 : LocalName = LocalName :: pack_inline (114819062854400u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_74_65_6D_76 : LocalName = LocalName :: pack_inline (130212225643264u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_74_65_70 : LocalName = LocalName :: pack_inline (482738467584u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_74_6F_70 : LocalName = LocalName :: pack_inline (482906239744u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_74_72_69_6B_65 : LocalName = LocalName :: pack_inline (28547073283748608u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_74_72_69_6E_67 : LocalName = LocalName :: pack_inline (29113321772053248u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65 : LocalName = LocalName :: pack_inline (28547099053552384u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6E_67 : LocalName = LocalName :: pack_inline (29113347541857024u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_74_79_6C_65 : LocalName = LocalName :: pack_inline (111516568548096u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_75_62 : LocalName = LocalName :: pack_inline (1651864320u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_75_62_73_65_74 : LocalName = LocalName :: pack_inline (32762643545944832u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_75_6D : LocalName = LocalName :: pack_inline (1836413696u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_75_6D_6D_61_72_79 : LocalName = LocalName :: pack_inline (8751164148550038272u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_75_70 : LocalName = LocalName :: pack_inline (1886745344u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_76_67 : LocalName = LocalName :: pack_inline (1735815936u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_77_69_74_63_68 : LocalName = LocalName :: pack_inline (29382749214700288u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_79_6D_62_6F_6C : LocalName = LocalName :: pack_inline (30521766018904832u64 , 6u8) ; +pub const ATOM_LOCALNAME__74_61_62_6C_65 : LocalName = LocalName :: pack_inline (111516181427200u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_61_6E : LocalName = LocalName :: pack_inline (1851880448u64 , 3u8) ; +pub const ATOM_LOCALNAME__74_61_6E_68 : LocalName = LocalName :: pack_inline (448528479232u64 , 4u8) ; +pub const ATOM_LOCALNAME__74_61_72_67_65_74 : LocalName = LocalName :: pack_inline (32762592273462272u64 , 6u8) ; +pub const ATOM_LOCALNAME__74_61_72_67_65_74_58 : LocalName = LocalName :: pack_inline (6373830867611120640u64 , 7u8) ; +pub const ATOM_LOCALNAME__74_61_72_67_65_74_59 : LocalName = LocalName :: pack_inline (6445888461649048576u64 , 7u8) ; +pub const ATOM_LOCALNAME__74_61_72_67_65_74_78 : LocalName = LocalName :: pack_inline (8679673876824814592u64 , 7u8) ; +pub const ATOM_LOCALNAME__74_61_72_67_65_74_79 : LocalName = LocalName :: pack_inline (8751731470862742528u64 , 7u8) ; +pub const ATOM_LOCALNAME__74_62_6F_64_79 : LocalName = LocalName :: pack_inline (133472272413696u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_62_72_65_61_6B : LocalName = LocalName :: pack_inline (30224910846686208u64 , 6u8) ; +pub const ATOM_LOCALNAME__74_64 : LocalName = LocalName :: pack_inline (6583296u64 , 2u8) ; +pub const ATOM_LOCALNAME__74_65_6E_64_73_74_6F : LocalName = LocalName :: pack_inline (8031170910694503424u64 , 7u8) ; +pub const ATOM_LOCALNAME__74_65_78_74 : LocalName = LocalName :: pack_inline (500236121088u64 , 4u8) ; +pub const ATOM_LOCALNAME__74_66_6F_6F_74 : LocalName = LocalName :: pack_inline (128021959177216u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_68 : LocalName = LocalName :: pack_inline (6845440u64 , 2u8) ; +pub const ATOM_LOCALNAME__74_68_65_61_64 : LocalName = LocalName :: pack_inline (110369475949568u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_69_6D_65 : LocalName = LocalName :: pack_inline (435627324416u64 , 4u8) ; +pub const ATOM_LOCALNAME__74_69_6D_65_73 : LocalName = LocalName :: pack_inline (126879464518656u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_69_74_6C_65 : LocalName = LocalName :: pack_inline (111516483941376u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_6F : LocalName = LocalName :: pack_inline (7304192u64 , 2u8) ; +pub const ATOM_LOCALNAME__74_6F_67_67_6C_65 : LocalName = LocalName :: pack_inline (28548164020564992u64 , 6u8) ; +pub const ATOM_LOCALNAME__74_72 : LocalName = LocalName :: pack_inline (7500800u64 , 2u8) ; +pub const ATOM_LOCALNAME__74_72_61_63_6B : LocalName = LocalName :: pack_inline (118074580825088u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_72_65_66 : LocalName = LocalName :: pack_inline (439788663808u64 , 4u8) ; +pub const ATOM_LOCALNAME__74_72_75_65 : LocalName = LocalName :: pack_inline (435762131968u64 , 4u8) ; +pub const ATOM_LOCALNAME__74_73_70_61_6E : LocalName = LocalName :: pack_inline (121364777497600u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_74 : LocalName = LocalName :: pack_inline (7631872u64 , 2u8) ; +pub const ATOM_LOCALNAME__74_79_70_65 : LocalName = LocalName :: pack_inline (435678704640u64 , 4u8) ; +pub const ATOM_LOCALNAME__75 : LocalName = LocalName :: pack_inline (29952u64 , 1u8) ; +pub const ATOM_LOCALNAME__75_31 : LocalName = LocalName :: pack_inline (3241216u64 , 2u8) ; +pub const ATOM_LOCALNAME__75_32 : LocalName = LocalName :: pack_inline (3306752u64 , 2u8) ; +pub const ATOM_LOCALNAME__75_6C : LocalName = LocalName :: pack_inline (7107840u64 , 2u8) ; +pub const ATOM_LOCALNAME__75_6E_69_63_6F_64_65 : LocalName = LocalName :: pack_inline (7306086968263079168u64 , 7u8) ; +pub const ATOM_LOCALNAME__75_6E_69_6F_6E : LocalName = LocalName :: pack_inline (121424789271808u64 , 5u8) ; +pub const ATOM_LOCALNAME__75_70_6C_69_6D_69_74 : LocalName = LocalName :: pack_inline (8388356080512562432u64 , 7u8) ; +pub const ATOM_LOCALNAME__75_73_65 : LocalName = LocalName :: pack_inline (1702065408u64 , 3u8) ; +pub const ATOM_LOCALNAME__75_73_65_6D_61_70 : LocalName = LocalName :: pack_inline (31632319872988416u64 , 6u8) ; +pub const ATOM_LOCALNAME__76_61_6C_69_67_6E : LocalName = LocalName :: pack_inline (31075949925725696u64 , 6u8) ; +pub const ATOM_LOCALNAME__76_61_6C_75_65 : LocalName = LocalName :: pack_inline (111555003905536u64 , 5u8) ; +pub const ATOM_LOCALNAME__76_61_6C_75_65_73 : LocalName = LocalName :: pack_inline (32481177325630976u64 , 6u8) ; +pub const ATOM_LOCALNAME__76_61_72 : LocalName = LocalName :: pack_inline (1918989824u64 , 3u8) ; +pub const ATOM_LOCALNAME__76_65_63_74_6F_72 : LocalName = LocalName :: pack_inline (32210693019497984u64 , 6u8) ; +pub const ATOM_LOCALNAME__76_65_72_73_69_6F_6E : LocalName = LocalName :: pack_inline (7957695011148363264u64 , 7u8) ; +pub const ATOM_LOCALNAME__76_69_64_65_6F : LocalName = LocalName :: pack_inline (122481267013120u64 , 5u8) ; +pub const ATOM_LOCALNAME__76_69_65_77 : LocalName = LocalName :: pack_inline (512802518528u64 , 4u8) ; +pub const ATOM_LOCALNAME__76_69_65_77_42_6F_78 : LocalName = LocalName :: pack_inline (8678228087536186880u64 , 7u8) ; +pub const ATOM_LOCALNAME__76_69_65_77_62_6F_78 : LocalName = LocalName :: pack_inline (8678263271908275712u64 , 7u8) ; +pub const ATOM_LOCALNAME__76_6B_65_72_6E : LocalName = LocalName :: pack_inline (121437606868480u64 , 5u8) ; +pub const ATOM_LOCALNAME__76_6C_69_6E_6B : LocalName = LocalName :: pack_inline (118121959290368u64 , 5u8) ; +pub const ATOM_LOCALNAME__76_73_70_61_63_65 : LocalName = LocalName :: pack_inline (28538242797368832u64 , 6u8) ; +pub const ATOM_LOCALNAME__77_62_72 : LocalName = LocalName :: pack_inline (1919055616u64 , 3u8) ; +pub const ATOM_LOCALNAME__77_68_65_6E : LocalName = LocalName :: pack_inline (474147747584u64 , 4u8) ; +pub const ATOM_LOCALNAME__77_69_64_74_68 : LocalName = LocalName :: pack_inline (114849110128384u64 , 5u8) ; +pub const ATOM_LOCALNAME__77_69_64_74_68_73 : LocalName = LocalName :: pack_inline (32484471431853824u64 , 6u8) ; +pub const ATOM_LOCALNAME__77_72_61_70 : LocalName = LocalName :: pack_inline (482671228672u64 , 4u8) ; +pub const ATOM_LOCALNAME__78 : LocalName = LocalName :: pack_inline (30720u64 , 1u8) ; +pub const ATOM_LOCALNAME__78_31 : LocalName = LocalName :: pack_inline (3241984u64 , 2u8) ; +pub const ATOM_LOCALNAME__78_32 : LocalName = LocalName :: pack_inline (3307520u64 , 2u8) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B : LocalName = LocalName :: pack_inline (118121959290880u64 , 5u8) ; +pub const ATOM_LOCALNAME__78_6D_6C_6E_73 : LocalName = LocalName :: pack_inline (126918102710272u64 , 5u8) ; +pub const ATOM_LOCALNAME__78_6D_70 : LocalName = LocalName :: pack_inline (1886222336u64 , 3u8) ; +pub const ATOM_LOCALNAME__78_6F_72 : LocalName = LocalName :: pack_inline (1919907840u64 , 3u8) ; +pub const ATOM_LOCALNAME__78_72_65_66 : LocalName = LocalName :: pack_inline (439788664832u64 , 4u8) ; +pub const ATOM_LOCALNAME__79 : LocalName = LocalName :: pack_inline (30976u64 , 1u8) ; +pub const ATOM_LOCALNAME__79_31 : LocalName = LocalName :: pack_inline (3242240u64 , 2u8) ; +pub const ATOM_LOCALNAME__79_32 : LocalName = LocalName :: pack_inline (3307776u64 , 2u8) ; +pub const ATOM_LOCALNAME__7A : LocalName = LocalName :: pack_inline (31232u64 , 1u8) ; +# [doc = "Takes a local name as a string and returns its key in the string cache."] # [macro_export] macro_rules ! local_name { ("columnspacing") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_75_6D_6E_73_70_61_63_69_6E_67 } ; +("kernelunitlength") => { $ crate :: ATOM_LOCALNAME__6B_65_72_6E_65_6C_75_6E_69_74_6C_65_6E_67_74_68 } ; +("color-interpolation") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_6F_72_2D_69_6E_74_65_72_70_6F_6C_61_74_69_6F_6E } ; +("complexes") => { $ crate :: ATOM_LOCALNAME__63_6F_6D_70_6C_65_78_65_73 } ; +("annotation-xml") => { $ crate :: ATOM_LOCALNAME__61_6E_6E_6F_74_61_74_69_6F_6E_2D_78_6D_6C } ; +("specularconstant") => { $ crate :: ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_63_6F_6E_73_74_61_6E_74 } ; +("mozbrowser") => { $ crate :: ATOM_LOCALNAME__6D_6F_7A_62_72_6F_77_73_65_72 } ; +("interval") => { $ crate :: ATOM_LOCALNAME__69_6E_74_65_72_76_61_6C } ; +("gradientUnits") => { $ crate :: ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_55_6E_69_74_73 } ; +("onmouseleave") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6C_65_61_76_65 } ; +("writing-mode") => { $ crate :: ATOM_LOCALNAME__77_72_69_74_69_6E_67_2D_6D_6F_64_65 } ; +("aria-valuemax") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6D_61_78 } ; +("animateTransform") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_54_72_61_6E_73_66_6F_72_6D } ; +("definitionURL") => { $ crate :: ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_55_52_4C } ; +("background") => { $ crate :: ATOM_LOCALNAME__62_61_63_6B_67_72_6F_75_6E_64 } ; +("aria-templateid") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_74_65_6D_70_6C_61_74_65_69_64 } ; +("feGaussianBlur") => { $ crate :: ATOM_LOCALNAME__66_65_47_61_75_73_73_69_61_6E_42_6C_75_72 } ; +("subscriptshift") => { $ crate :: ATOM_LOCALNAME__73_75_62_73_63_72_69_70_74_73_68_69_66_74 } ; +("xmlns:xlink") => { $ crate :: ATOM_LOCALNAME__78_6D_6C_6E_73_3A_78_6C_69_6E_6B } ; +("fieldset") => { $ crate :: ATOM_LOCALNAME__66_69_65_6C_64_73_65_74 } ; +("spreadmethod") => { $ crate :: ATOM_LOCALNAME__73_70_72_65_61_64_6D_65_74_68_6F_64 } ; +("formtarget") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_74_61_72_67_65_74 } ; +("feDiffuseLighting") => { $ crate :: ATOM_LOCALNAME__66_65_44_69_66_66_75_73_65_4C_69_67_68_74_69_6E_67 } ; +("feturbulence") => { $ crate :: ATOM_LOCALNAME__66_65_74_75_72_62_75_6C_65_6E_63_65 } ; +("onbeforeeditfocus") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_65_64_69_74_66_6F_63_75_73 } ; +("colgroup") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_67_72_6F_75_70 } ; +("mathbackground") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68_62_61_63_6B_67_72_6F_75_6E_64 } ; +("onkeydown") => { $ crate :: ATOM_LOCALNAME__6F_6E_6B_65_79_64_6F_77_6E } ; +("feColorMatrix") => { $ crate :: ATOM_LOCALNAME__66_65_43_6F_6C_6F_72_4D_61_74_72_69_78 } ; +("startoffset") => { $ crate :: ATOM_LOCALNAME__73_74_61_72_74_6F_66_66_73_65_74 } ; +("autofocus") => { $ crate :: ATOM_LOCALNAME__61_75_74_6F_66_6F_63_75_73 } ; +("contextmenu") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_78_74_6D_65_6E_75 } ; +("longdesc") => { $ crate :: ATOM_LOCALNAME__6C_6F_6E_67_64_65_73_63 } ; +("aria-relevant") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_65_6C_65_76_61_6E_74 } ; +("onbeforeprint") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_70_72_69_6E_74 } ; +("fill-rule") => { $ crate :: ATOM_LOCALNAME__66_69_6C_6C_2D_72_75_6C_65 } ; +("hreflang") => { $ crate :: ATOM_LOCALNAME__68_72_65_66_6C_61_6E_67 } ; +("domainofapplication") => { $ crate :: ATOM_LOCALNAME__64_6F_6D_61_69_6E_6F_66_61_70_70_6C_69_63_61_74_69_6F_6E } ; +("keytimes") => { $ crate :: ATOM_LOCALNAME__6B_65_79_74_69_6D_65_73 } ; +("numoctaves") => { $ crate :: ATOM_LOCALNAME__6E_75_6D_6F_63_74_61_76_65_73 } ; +("partialdiff") => { $ crate :: ATOM_LOCALNAME__70_61_72_74_69_61_6C_64_69_66_66 } ; +("aria-describedby") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_65_73_63_72_69_62_65_64_62_79 } ; +("color-interpolation-filters") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_6F_72_2D_69_6E_74_65_72_70_6F_6C_61_74_69_6F_6E_2D_66_69_6C_74_65_72_73 } ; +("preserveaspectratio") => { $ crate :: ATOM_LOCALNAME__70_72_65_73_65_72_76_65_61_73_70_65_63_74_72_61_74_69_6F } ; +("actiontype") => { $ crate :: ATOM_LOCALNAME__61_63_74_69_6F_6E_74_79_70_65 } ; +("quotient") => { $ crate :: ATOM_LOCALNAME__71_75_6F_74_69_65_6E_74 } ; +("notation") => { $ crate :: ATOM_LOCALNAME__6E_6F_74_61_74_69_6F_6E } ; +("autocomplete") => { $ crate :: ATOM_LOCALNAME__61_75_74_6F_63_6F_6D_70_6C_65_74_65 } ; +("contentStyleType") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_53_74_79_6C_65_54_79_70_65 } ; +("strikethrough-thickness") => { $ crate :: ATOM_LOCALNAME__73_74_72_69_6B_65_74_68_72_6F_75_67_68_2D_74_68_69_63_6B_6E_65_73_73 } ; +("stop-color") => { $ crate :: ATOM_LOCALNAME__73_74_6F_70_2D_63_6F_6C_6F_72 } ; +("itemtype") => { $ crate :: ATOM_LOCALNAME__69_74_65_6D_74_79_70_65 } ; +("fepointlight") => { $ crate :: ATOM_LOCALNAME__66_65_70_6F_69_6E_74_6C_69_67_68_74 } ; +("formmethod") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_6D_65_74_68_6F_64 } ; +("seamless") => { $ crate :: ATOM_LOCALNAME__73_65_61_6D_6C_65_73_73 } ; +("plaintext") => { $ crate :: ATOM_LOCALNAME__70_6C_61_69_6E_74_65_78_74 } ; +("aria-modal") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6D_6F_64_61_6C } ; +("required") => { $ crate :: ATOM_LOCALNAME__72_65_71_75_69_72_65_64 } ; +("numOctaves") => { $ crate :: ATOM_LOCALNAME__6E_75_6D_4F_63_74_61_76_65_73 } ; +("maxlength") => { $ crate :: ATOM_LOCALNAME__6D_61_78_6C_65_6E_67_74_68 } ; +("piecewise") => { $ crate :: ATOM_LOCALNAME__70_69_65_63_65_77_69_73_65 } ; +("cellspacing") => { $ crate :: ATOM_LOCALNAME__63_65_6C_6C_73_70_61_63_69_6E_67 } ; +("xChannelSelector") => { $ crate :: ATOM_LOCALNAME__78_43_68_61_6E_6E_65_6C_53_65_6C_65_63_74_6F_72 } ; +("momentabout") => { $ crate :: ATOM_LOCALNAME__6D_6F_6D_65_6E_74_61_62_6F_75_74 } ; +("onfinish") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_69_6E_69_73_68 } ; +("kernelmatrix") => { $ crate :: ATOM_LOCALNAME__6B_65_72_6E_65_6C_6D_61_74_72_69_78 } ; +("color-profile") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_6F_72_2D_70_72_6F_66_69_6C_65 } ; +("fedropshadow") => { $ crate :: ATOM_LOCALNAME__66_65_64_72_6F_70_73_68_61_64_6F_77 } ; +("aria-haspopup") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_68_61_73_70_6F_70_75_70 } ; +("pointsatz") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_7A } ; +("decoding") => { $ crate :: ATOM_LOCALNAME__64_65_63_6F_64_69_6E_67 } ; +("linearGradient") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65_61_72_47_72_61_64_69_65_6E_74 } ; +("columnlines") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_75_6D_6E_6C_69_6E_65_73 } ; +("onmousemove") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6D_6F_76_65 } ; +("codomain") => { $ crate :: ATOM_LOCALNAME__63_6F_64_6F_6D_61_69_6E } ; +("prsubset") => { $ crate :: ATOM_LOCALNAME__70_72_73_75_62_73_65_74 } ; +("alignment-baseline") => { $ crate :: ATOM_LOCALNAME__61_6C_69_67_6E_6D_65_6E_74_2D_62_61_73_65_6C_69_6E_65 } ; +("intercept") => { $ crate :: ATOM_LOCALNAME__69_6E_74_65_72_63_65_70_74 } ; +("font-face-src") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_73_72_63 } ; +("aria-multiselectable") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6D_75_6C_74_69_73_65_6C_65_63_74_61_62_6C_65 } ; +("keyPoints") => { $ crate :: ATOM_LOCALNAME__6B_65_79_50_6F_69_6E_74_73 } ; +("diffuseconstant") => { $ crate :: ATOM_LOCALNAME__64_69_66_66_75_73_65_63_6F_6E_73_74_61_6E_74 } ; +("xlink:arcrole") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_61_72_63_72_6F_6C_65 } ; +("onafterupdate") => { $ crate :: ATOM_LOCALNAME__6F_6E_61_66_74_65_72_75_70_64_61_74_65 } ; +("foreignObject") => { $ crate :: ATOM_LOCALNAME__66_6F_72_65_69_67_6E_4F_62_6A_65_63_74 } ; +("autosubmit") => { $ crate :: ATOM_LOCALNAME__61_75_74_6F_73_75_62_6D_69_74 } ; +("scrolldelay") => { $ crate :: ATOM_LOCALNAME__73_63_72_6F_6C_6C_64_65_6C_61_79 } ; +("stretchy") => { $ crate :: ATOM_LOCALNAME__73_74_72_65_74_63_68_79 } ; +("font-weight") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_77_65_69_67_68_74 } ; +("onafterprint") => { $ crate :: ATOM_LOCALNAME__6F_6E_61_66_74_65_72_70_72_69_6E_74 } ; +("aria-pressed") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_70_72_65_73_73_65_64 } ; +("line-height") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65_2D_68_65_69_67_68_74 } ; +("basefrequency") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_66_72_65_71_75_65_6E_63_79 } ; +("aria-description") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_65_73_63_72_69_70_74_69_6F_6E } ; +("onhashchange") => { $ crate :: ATOM_LOCALNAME__6F_6E_68_61_73_68_63_68_61_6E_67_65 } ; +("displaystyle") => { $ crate :: ATOM_LOCALNAME__64_69_73_70_6C_61_79_73_74_79_6C_65 } ; +("v-hanging") => { $ crate :: ATOM_LOCALNAME__76_2D_68_61_6E_67_69_6E_67 } ; +("patterncontentunits") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_63_6F_6E_74_65_6E_74_75_6E_69_74_73 } ; +("http-equiv") => { $ crate :: ATOM_LOCALNAME__68_74_74_70_2D_65_71_75_69_76 } ; +("animation") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_69_6F_6E } ; +("vert-adv-y") => { $ crate :: ATOM_LOCALNAME__76_65_72_74_2D_61_64_76_2D_79 } ; +("onrowsdelete") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_6F_77_73_64_65_6C_65_74_65 } ; +("aria-labelledby") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6C_61_62_65_6C_6C_65_64_62_79 } ; +("unicode-range") => { $ crate :: ATOM_LOCALNAME__75_6E_69_63_6F_64_65_2D_72_61_6E_67_65 } ; +("listener") => { $ crate :: ATOM_LOCALNAME__6C_69_73_74_65_6E_65_72 } ; +("accent-height") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_6E_74_2D_68_65_69_67_68_74 } ; +("dominant-baseline") => { $ crate :: ATOM_LOCALNAME__64_6F_6D_69_6E_61_6E_74_2D_62_61_73_65_6C_69_6E_65 } ; +("datetime") => { $ crate :: ATOM_LOCALNAME__64_61_74_65_74_69_6D_65 } ; +("aria-colspan") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_73_70_61_6E } ; +("conjugate") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_6A_75_67_61_74_65 } ; +("onmousedown") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_64_6F_77_6E } ; +("equalrows") => { $ crate :: ATOM_LOCALNAME__65_71_75_61_6C_72_6F_77_73 } ; +("stitchtiles") => { $ crate :: ATOM_LOCALNAME__73_74_69_74_63_68_74_69_6C_65_73 } ; +("edgemode") => { $ crate :: ATOM_LOCALNAME__65_64_67_65_6D_6F_64_65 } ; +("aria-autocomplete") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_61_75_74_6F_63_6F_6D_70_6C_65_74_65 } ; +("aria-atomic") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_61_74_6F_6D_69_63 } ; +("mathsize") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68_73_69_7A_65 } ; +("glyphref") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68_72_65_66 } ; +("maskunits") => { $ crate :: ATOM_LOCALNAME__6D_61_73_6B_75_6E_69_74_73 } ; +("clippathunits") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_70_61_74_68_75_6E_69_74_73 } ; +("aria-checked") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_68_65_63_6B_65_64 } ; +("enable-background") => { $ crate :: ATOM_LOCALNAME__65_6E_61_62_6C_65_2D_62_61_63_6B_67_72_6F_75_6E_64 } ; +("onbeforecut") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_63_75_74 } ; +("onmouseover") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6F_76_65_72 } ; +("pointsAtX") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_58 } ; +("ondblclick") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_62_6C_63_6C_69_63_6B } ; +("xchannelselector") => { $ crate :: ATOM_LOCALNAME__78_63_68_61_6E_6E_65_6C_73_65_6C_65_63_74_6F_72 } ; +("symmetric") => { $ crate :: ATOM_LOCALNAME__73_79_6D_6D_65_74_72_69_63 } ; +("fediffuselighting") => { $ crate :: ATOM_LOCALNAME__66_65_64_69_66_66_75_73_65_6C_69_67_68_74_69_6E_67 } ; +("aria-multiline") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6D_75_6C_74_69_6C_69_6E_65 } ; +("oninvalid") => { $ crate :: ATOM_LOCALNAME__6F_6E_69_6E_76_61_6C_69_64 } ; +("markerHeight") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_48_65_69_67_68_74 } ; +("repeatdur") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_64_75_72 } ; +("vert-origin-y") => { $ crate :: ATOM_LOCALNAME__76_65_72_74_2D_6F_72_69_67_69_6E_2D_79 } ; +("requiredFeatures") => { $ crate :: ATOM_LOCALNAME__72_65_71_75_69_72_65_64_46_65_61_74_75_72_65_73 } ; +("elevation") => { $ crate :: ATOM_LOCALNAME__65_6C_65_76_61_74_69_6F_6E } ; +("viewtarget") => { $ crate :: ATOM_LOCALNAME__76_69_65_77_74_61_72_67_65_74 } ; +("aria-label") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6C_61_62_65_6C } ; +("solidcolor") => { $ crate :: ATOM_LOCALNAME__73_6F_6C_69_64_63_6F_6C_6F_72 } ; +("onforminput") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_6F_72_6D_69_6E_70_75_74 } ; +("textpath") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_70_61_74_68 } ; +("spellcheck") => { $ crate :: ATOM_LOCALNAME__73_70_65_6C_6C_63_68_65_63_6B } ; +("patternTransform") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_54_72_61_6E_73_66_6F_72_6D } ; +("aria-disabled") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_69_73_61_62_6C_65_64 } ; +("font-face-format") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_66_6F_72_6D_61_74 } ; +("autoplay") => { $ crate :: ATOM_LOCALNAME__61_75_74_6F_70_6C_61_79 } ; +("altGlyph") => { $ crate :: ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68 } ; +("imaginaryi") => { $ crate :: ATOM_LOCALNAME__69_6D_61_67_69_6E_61_72_79_69 } ; +("dataformatas") => { $ crate :: ATOM_LOCALNAME__64_61_74_61_66_6F_72_6D_61_74_61_73 } ; +("femorphology") => { $ crate :: ATOM_LOCALNAME__66_65_6D_6F_72_70_68_6F_6C_6F_67_79 } ; +("x-height") => { $ crate :: ATOM_LOCALNAME__78_2D_68_65_69_67_68_74 } ; +("onbefordeactivate") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_64_65_61_63_74_69_76_61_74_65 } ; +("zoomAndPan") => { $ crate :: ATOM_LOCALNAME__7A_6F_6F_6D_41_6E_64_50_61_6E } ; +("letter-spacing") => { $ crate :: ATOM_LOCALNAME__6C_65_74_74_65_72_2D_73_70_61_63_69_6E_67 } ; +("aria-expanded") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_65_78_70_61_6E_64_65_64 } ; +("aria-braillelabel") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_62_72_61_69_6C_6C_65_6C_61_62_65_6C } ; +("mathcolor") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68_63_6F_6C_6F_72 } ; +("equivalent") => { $ crate :: ATOM_LOCALNAME__65_71_75_69_76_61_6C_65_6E_74 } ; +("fontfamily") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_66_61_6D_69_6C_79 } ; +("scriptlevel") => { $ crate :: ATOM_LOCALNAME__73_63_72_69_70_74_6C_65_76_65_6C } ; +("rowspacing") => { $ crate :: ATOM_LOCALNAME__72_6F_77_73_70_61_63_69_6E_67 } ; +("maskUnits") => { $ crate :: ATOM_LOCALNAME__6D_61_73_6B_55_6E_69_74_73 } ; +("glyphRef") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68_52_65_66 } ; +("glyph-orientation-horizontal") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68_2D_6F_72_69_65_6E_74_61_74_69_6F_6E_2D_68_6F_72_69_7A_6F_6E_74_61_6C } ; +("multicol") => { $ crate :: ATOM_LOCALNAME__6D_75_6C_74_69_63_6F_6C } ; +("maskContentUnits") => { $ crate :: ATOM_LOCALNAME__6D_61_73_6B_43_6F_6E_74_65_6E_74_55_6E_69_74_73 } ; +("thinmathspace") => { $ crate :: ATOM_LOCALNAME__74_68_69_6E_6D_61_74_68_73_70_61_63_65 } ; +("condition") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_64_69_74_69_6F_6E } ; +("formnovalidate") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_6E_6F_76_61_6C_69_64_61_74_65 } ; +("attributeName") => { $ crate :: ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_4E_61_6D_65 } ; +("cellpadding") => { $ crate :: ATOM_LOCALNAME__63_65_6C_6C_70_61_64_64_69_6E_67 } ; +("stroke-miterlimit") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6D_69_74_65_72_6C_69_6D_69_74 } ; +("altglyph") => { $ crate :: ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68 } ; +("selector") => { $ crate :: ATOM_LOCALNAME__73_65_6C_65_63_74_6F_72 } ; +("onbeforeunload") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_75_6E_6C_6F_61_64 } ; +("lowlimit") => { $ crate :: ATOM_LOCALNAME__6C_6F_77_6C_69_6D_69_74 } ; +("optgroup") => { $ crate :: ATOM_LOCALNAME__6F_70_74_67_72_6F_75_70 } ; +("feDistantLight") => { $ crate :: ATOM_LOCALNAME__66_65_44_69_73_74_61_6E_74_4C_69_67_68_74 } ; +("frameset") => { $ crate :: ATOM_LOCALNAME__66_72_61_6D_65_73_65_74 } ; +("underline-thickness") => { $ crate :: ATOM_LOCALNAME__75_6E_64_65_72_6C_69_6E_65_2D_74_68_69_63_6B_6E_65_73_73 } ; +("strikethrough-position") => { $ crate :: ATOM_LOCALNAME__73_74_72_69_6B_65_74_68_72_6F_75_67_68_2D_70_6F_73_69_74_69_6F_6E } ; +("onrowsinserted") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_6F_77_73_69_6E_73_65_72_74_65_64 } ; +("definitionurl") => { $ crate :: ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_75_72_6C } ; +("fontweight") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_77_65_69_67_68_74 } ; +("aria-placeholder") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_70_6C_61_63_65_68_6F_6C_64_65_72 } ; +("marker-start") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_73_74_61_72_74 } ; +("ononline") => { $ crate :: ATOM_LOCALNAME__6F_6E_6F_6E_6C_69_6E_65 } ; +("xml:base") => { $ crate :: ATOM_LOCALNAME__78_6D_6C_3A_62_61_73_65 } ; +("allowfullscreen") => { $ crate :: ATOM_LOCALNAME__61_6C_6C_6F_77_66_75_6C_6C_73_63_72_65_65_6E } ; +("noresize") => { $ crate :: ATOM_LOCALNAME__6E_6F_72_65_73_69_7A_65 } ; +("spreadMethod") => { $ crate :: ATOM_LOCALNAME__73_70_72_65_61_64_4D_65_74_68_6F_64 } ; +("feConvolveMatrix") => { $ crate :: ATOM_LOCALNAME__66_65_43_6F_6E_76_6F_6C_76_65_4D_61_74_72_69_78 } ; +("limitingConeAngle") => { $ crate :: ATOM_LOCALNAME__6C_69_6D_69_74_69_6E_67_43_6F_6E_65_41_6E_67_6C_65 } ; +("attributetype") => { $ crate :: ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_74_79_70_65 } ; +("selection") => { $ crate :: ATOM_LOCALNAME__73_65_6C_65_63_74_69_6F_6E } ; +("repeat-max") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_2D_6D_61_78 } ; +("font-face-name") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_6E_61_6D_65 } ; +("controllerchange") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_72_6F_6C_6C_65_72_63_68_61_6E_67_65 } ; +("aria-selected") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_73_65_6C_65_63_74_65_64 } ; +("formenctype") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_65_6E_63_74_79_70_65 } ; +("datalist") => { $ crate :: ATOM_LOCALNAME__64_61_74_61_6C_69_73_74 } ; +("rowalign") => { $ crate :: ATOM_LOCALNAME__72_6F_77_61_6C_69_67_6E } ; +("scalarproduct") => { $ crate :: ATOM_LOCALNAME__73_63_61_6C_61_72_70_72_6F_64_75_63_74 } ; +("limitingconeangle") => { $ crate :: ATOM_LOCALNAME__6C_69_6D_69_74_69_6E_67_63_6F_6E_65_61_6E_67_6C_65 } ; +("mprescripts") => { $ crate :: ATOM_LOCALNAME__6D_70_72_65_73_63_72_69_70_74_73 } ; +("aria-valuetext") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_74_65_78_74 } ; +("disabled") => { $ crate :: ATOM_LOCALNAME__64_69_73_61_62_6C_65_64 } ; +("stroke-width") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_77_69_64_74_68 } ; +("noscript") => { $ crate :: ATOM_LOCALNAME__6E_6F_73_63_72_69_70_74 } ; +("onresize") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_65_73_69_7A_65 } ; +("filterUnits") => { $ crate :: ATOM_LOCALNAME__66_69_6C_74_65_72_55_6E_69_74_73 } ; +("aria-setsize") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_73_65_74_73_69_7A_65 } ; +("onbeforepaste") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_70_61_73_74_65 } ; +("aria-busy") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_62_75_73_79 } ; +("aria-controls") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6E_74_72_6F_6C_73 } ; +("malignmark") => { $ crate :: ATOM_LOCALNAME__6D_61_6C_69_67_6E_6D_61_72_6B } ; +("aria-keyshortcuts") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6B_65_79_73_68_6F_72_74_63_75_74_73 } ; +("calcmode") => { $ crate :: ATOM_LOCALNAME__63_61_6C_63_6D_6F_64_65 } ; +("marker-mid") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_6D_69_64 } ; +("onformchange") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_6F_72_6D_63_68_61_6E_67_65 } ; +("aria-flowto") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_66_6C_6F_77_74_6F } ; +("animatemotion") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_6D_6F_74_69_6F_6E } ; +("amplitude") => { $ crate :: ATOM_LOCALNAME__61_6D_70_6C_69_74_75_64_65 } ; +("aria-valuemin") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6D_69_6E } ; +("aria-posinset") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_70_6F_73_69_6E_73_65_74 } ; +("lengthadjust") => { $ crate :: ATOM_LOCALNAME__6C_65_6E_67_74_68_61_64_6A_75_73_74 } ; +("diffuseConstant") => { $ crate :: ATOM_LOCALNAME__64_69_66_66_75_73_65_43_6F_6E_73_74_61_6E_74 } ; +("baseProfile") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_50_72_6F_66_69_6C_65 } ; +("color-rendering") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_6F_72_2D_72_65_6E_64_65_72_69_6E_67 } ; +("altGlyphDef") => { $ crate :: ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68_44_65_66 } ; +("primitiveunits") => { $ crate :: ATOM_LOCALNAME__70_72_69_6D_69_74_69_76_65_75_6E_69_74_73 } ; +("preservealpha") => { $ crate :: ATOM_LOCALNAME__70_72_65_73_65_72_76_65_61_6C_70_68_61 } ; +("aria-rowindex") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_69_6E_64_65_78 } ; +("ondeactivate") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_65_61_63_74_69_76_61_74_65 } ; +("font-face-uri") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_75_72_69 } ; +("feSpecularLighting") => { $ crate :: ATOM_LOCALNAME__66_65_53_70_65_63_75_6C_61_72_4C_69_67_68_74_69_6E_67 } ; +("v-ideographic") => { $ crate :: ATOM_LOCALNAME__76_2D_69_64_65_6F_67_72_61_70_68_69_63 } ; +("stdDeviation") => { $ crate :: ATOM_LOCALNAME__73_74_64_44_65_76_69_61_74_69_6F_6E } ; +("onsubmit") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_75_62_6D_69_74 } ; +("scriptsizemultiplier") => { $ crate :: ATOM_LOCALNAME__73_63_72_69_70_74_73_69_7A_65_6D_75_6C_74_69_70_6C_69_65_72 } ; +("onrowexit") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_6F_77_65_78_69_74 } ; +("font-face") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65 } ; +("gradienttransform") => { $ crate :: ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_74_72_61_6E_73_66_6F_72_6D } ; +("veryverythinmathspace") => { $ crate :: ATOM_LOCALNAME__76_65_72_79_76_65_72_79_74_68_69_6E_6D_61_74_68_73_70_61_63_65 } ; +("onselect") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_65_6C_65_63_74 } ; +("clip-rule") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_2D_72_75_6C_65 } ; +("codebase") => { $ crate :: ATOM_LOCALNAME__63_6F_64_65_62_61_73_65 } ; +("underline-position") => { $ crate :: ATOM_LOCALNAME__75_6E_64_65_72_6C_69_6E_65_2D_70_6F_73_69_74_69_6F_6E } ; +("v-mathematical") => { $ crate :: ATOM_LOCALNAME__76_2D_6D_61_74_68_65_6D_61_74_69_63_61_6C } ; +("separator") => { $ crate :: ATOM_LOCALNAME__73_65_70_61_72_61_74_6F_72 } ; +("matrixrow") => { $ crate :: ATOM_LOCALNAME__6D_61_74_72_69_78_72_6F_77 } ; +("selected") => { $ crate :: ATOM_LOCALNAME__73_65_6C_65_63_74_65_64 } ; +("xlink:href") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_68_72_65_66 } ; +("horiz-adv-x") => { $ crate :: ATOM_LOCALNAME__68_6F_72_69_7A_2D_61_64_76_2D_78 } ; +("controls") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_72_6F_6C_73 } ; +("aria-current") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_75_72_72_65_6E_74 } ; +("onscroll") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_63_72_6F_6C_6C } ; +("pointsAtZ") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_5A } ; +("overflow") => { $ crate :: ATOM_LOCALNAME__6F_76_65_72_66_6C_6F_77 } ; +("") => { $ crate :: ATOM_LOCALNAME_ } ; +("onpagehide") => { $ crate :: ATOM_LOCALNAME__6F_6E_70_61_67_65_68_69_64_65 } ; +("visibility") => { $ crate :: ATOM_LOCALNAME__76_69_73_69_62_69_6C_69_74_79 } ; +("feComponentTransfer") => { $ crate :: ATOM_LOCALNAME__66_65_43_6F_6D_70_6F_6E_65_6E_74_54_72_61_6E_73_66_65_72 } ; +("overline-position") => { $ crate :: ATOM_LOCALNAME__6F_76_65_72_6C_69_6E_65_2D_70_6F_73_69_74_69_6F_6E } ; +("rendering-intent") => { $ crate :: ATOM_LOCALNAME__72_65_6E_64_65_72_69_6E_67_2D_69_6E_74_65_6E_74 } ; +("infinity") => { $ crate :: ATOM_LOCALNAME__69_6E_66_69_6E_69_74_79 } ; +("feconvolvematrix") => { $ crate :: ATOM_LOCALNAME__66_65_63_6F_6E_76_6F_6C_76_65_6D_61_74_72_69_78 } ; +("repeatCount") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_43_6F_75_6E_74 } ; +("onselectstart") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_65_6C_65_63_74_73_74_61_72_74 } ; +("pointsaty") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_79 } ; +("direction") => { $ crate :: ATOM_LOCALNAME__64_69_72_65_63_74_69_6F_6E } ; +("fecolormatrix") => { $ crate :: ATOM_LOCALNAME__66_65_63_6F_6C_6F_72_6D_61_74_72_69_78 } ; +("tabindex") => { $ crate :: ATOM_LOCALNAME__74_61_62_69_6E_64_65_78 } ; +("placeholder") => { $ crate :: ATOM_LOCALNAME__70_6C_61_63_65_68_6F_6C_64_65_72 } ; +("transpose") => { $ crate :: ATOM_LOCALNAME__74_72_61_6E_73_70_6F_73_65 } ; +("gradientunits") => { $ crate :: ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_75_6E_69_74_73 } ; +("feDropShadow") => { $ crate :: ATOM_LOCALNAME__66_65_44_72_6F_70_53_68_61_64_6F_77 } ; +("xlink:role") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_72_6F_6C_65 } ; +("edgeMode") => { $ crate :: ATOM_LOCALNAME__65_64_67_65_4D_6F_64_65 } ; +("gradientTransform") => { $ crate :: ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_54_72_61_6E_73_66_6F_72_6D } ; +("integers") => { $ crate :: ATOM_LOCALNAME__69_6E_74_65_67_65_72_73 } ; +("stddeviation") => { $ crate :: ATOM_LOCALNAME__73_74_64_64_65_76_69_61_74_69_6F_6E } ; +("repeat-start") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_2D_73_74_61_72_74 } ; +("cap-height") => { $ crate :: ATOM_LOCALNAME__63_61_70_2D_68_65_69_67_68_74 } ; +("xlink:type") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_74_79_70_65 } ; +("unselectable") => { $ crate :: ATOM_LOCALNAME__75_6E_73_65_6C_65_63_74_61_62_6C_65 } ; +("contentstyletype") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_73_74_79_6C_65_74_79_70_65 } ; +("transform") => { $ crate :: ATOM_LOCALNAME__74_72_61_6E_73_66_6F_72_6D } ; +("stroke-linejoin") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6C_69_6E_65_6A_6F_69_6E } ; +("integrity") => { $ crate :: ATOM_LOCALNAME__69_6E_74_65_67_72_69_74_79 } ; +("ondatasetchanged") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_61_74_61_73_65_74_63_68_61_6E_67_65_64 } ; +("foreignobject") => { $ crate :: ATOM_LOCALNAME__66_6F_72_65_69_67_6E_6F_62_6A_65_63_74 } ; +("radiogroup") => { $ crate :: ATOM_LOCALNAME__72_61_64_69_6F_67_72_6F_75_70 } ; +("contenteditable") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_65_64_69_74_61_62_6C_65 } ; +("template") => { $ crate :: ATOM_LOCALNAME__74_65_6D_70_6C_61_74_65 } ; +("statechange") => { $ crate :: ATOM_LOCALNAME__73_74_61_74_65_63_68_61_6E_67_65 } ; +("pathlength") => { $ crate :: ATOM_LOCALNAME__70_61_74_68_6C_65_6E_67_74_68 } ; +("divergence") => { $ crate :: ATOM_LOCALNAME__64_69_76_65_72_67_65_6E_63_65 } ; +("aria-hidden") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_68_69_64_64_65_6E } ; +("ondragleave") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_6C_65_61_76_65 } ; +("maligngroup") => { $ crate :: ATOM_LOCALNAME__6D_61_6C_69_67_6E_67_72_6F_75_70 } ; +("outerproduct") => { $ crate :: ATOM_LOCALNAME__6F_75_74_65_72_70_72_6F_64_75_63_74 } ; +("aria-channel") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_68_61_6E_6E_65_6C } ; +("systemlanguage") => { $ crate :: ATOM_LOCALNAME__73_79_73_74_65_6D_6C_61_6E_67_75_61_67_65 } ; +("fetchpriority") => { $ crate :: ATOM_LOCALNAME__66_65_74_63_68_70_72_69_6F_72_69_74_79 } ; +("polyline") => { $ crate :: ATOM_LOCALNAME__70_6F_6C_79_6C_69_6E_65 } ; +("lighting-color") => { $ crate :: ATOM_LOCALNAME__6C_69_67_68_74_69_6E_67_2D_63_6F_6C_6F_72 } ; +("property") => { $ crate :: ATOM_LOCALNAME__70_72_6F_70_65_72_74_79 } ; +("animateColor") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_43_6F_6C_6F_72 } ; +("ondragdrop") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_64_72_6F_70 } ; +("repeat-min") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_2D_6D_69_6E } ; +("specification") => { $ crate :: ATOM_LOCALNAME__73_70_65_63_69_66_69_63_61_74_69_6F_6E } ; +("surfacescale") => { $ crate :: ATOM_LOCALNAME__73_75_72_66_61_63_65_73_63_61_6C_65 } ; +("clippath") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_70_61_74_68 } ; +("patternUnits") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_55_6E_69_74_73 } ; +("flood-opacity") => { $ crate :: ATOM_LOCALNAME__66_6C_6F_6F_64_2D_6F_70_61_63_69_74_79 } ; +("referrerpolicy") => { $ crate :: ATOM_LOCALNAME__72_65_66_65_72_72_65_72_70_6F_6C_69_63_79 } ; +("factorial") => { $ crate :: ATOM_LOCALNAME__66_61_63_74_6F_72_69_61_6C } ; +("hidefocus") => { $ crate :: ATOM_LOCALNAME__68_69_64_65_66_6F_63_75_73 } ; +("stitchTiles") => { $ crate :: ATOM_LOCALNAME__73_74_69_74_63_68_54_69_6C_65_73 } ; +("arabic-form") => { $ crate :: ATOM_LOCALNAME__61_72_61_62_69_63_2D_66_6F_72_6D } ; +("blockquote") => { $ crate :: ATOM_LOCALNAME__62_6C_6F_63_6B_71_75_6F_74_65 } ; +("mlabeledtr") => { $ crate :: ATOM_LOCALNAME__6D_6C_61_62_65_6C_65_64_74_72 } ; +("novalidate") => { $ crate :: ATOM_LOCALNAME__6E_6F_76_61_6C_69_64_61_74_65 } ; +("onpopstate") => { $ crate :: ATOM_LOCALNAME__6F_6E_70_6F_70_73_74_61_74_65 } ; +("onerrorupdate") => { $ crate :: ATOM_LOCALNAME__6F_6E_65_72_72_6F_72_75_70_64_61_74_65 } ; +("feSpotLight") => { $ crate :: ATOM_LOCALNAME__66_65_53_70_6F_74_4C_69_67_68_74 } ; +("stop-opacity") => { $ crate :: ATOM_LOCALNAME__73_74_6F_70_2D_6F_70_61_63_69_74_79 } ; +("readonly") => { $ crate :: ATOM_LOCALNAME__72_65_61_64_6F_6E_6C_79 } ; +("markerUnits") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_55_6E_69_74_73 } ; +("naturalnumbers") => { $ crate :: ATOM_LOCALNAME__6E_61_74_75_72_61_6C_6E_75_6D_62_65_72_73 } ; +("markerunits") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_75_6E_69_74_73 } ; +("font-family") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_6D_69_6C_79 } ; +("patternunits") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_75_6E_69_74_73 } ; +("orientation") => { $ crate :: ATOM_LOCALNAME__6F_72_69_65_6E_74_61_74_69_6F_6E } ; +("markerheight") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_68_65_69_67_68_74 } ; +("aria-colindextext") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_69_6E_64_65_78_74_65_78_74 } ; +("attributeType") => { $ crate :: ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_54_79_70_65 } ; +("accesskey") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_73_73_6B_65_79 } ; +("clipPathUnits") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_50_61_74_68_55_6E_69_74_73 } ; +("keySplines") => { $ crate :: ATOM_LOCALNAME__6B_65_79_53_70_6C_69_6E_65_73 } ; +("onstorage") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_74_6F_72_61_67_65 } ; +("font-style") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_73_74_79_6C_65 } ; +("fedisplacementmap") => { $ crate :: ATOM_LOCALNAME__66_65_64_69_73_70_6C_61_63_65_6D_65_6E_74_6D_61_70 } ; +("separators") => { $ crate :: ATOM_LOCALNAME__73_65_70_61_72_61_74_6F_72_73 } ; +("verythinmathspace") => { $ crate :: ATOM_LOCALNAME__76_65_72_79_74_68_69_6E_6D_61_74_68_73_70_61_63_65 } ; +("primitiveUnits") => { $ crate :: ATOM_LOCALNAME__70_72_69_6D_69_74_69_76_65_55_6E_69_74_73 } ; +("surfaceScale") => { $ crate :: ATOM_LOCALNAME__73_75_72_66_61_63_65_53_63_61_6C_65 } ; +("formaction") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_61_63_74_69_6F_6E } ; +("verythickmathspace") => { $ crate :: ATOM_LOCALNAME__76_65_72_79_74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 } ; +("calcMode") => { $ crate :: ATOM_LOCALNAME__63_61_6C_63_4D_6F_64_65 } ; +("xml:lang") => { $ crate :: ATOM_LOCALNAME__78_6D_6C_3A_6C_61_6E_67 } ; +("fedistantlight") => { $ crate :: ATOM_LOCALNAME__66_65_64_69_73_74_61_6E_74_6C_69_67_68_74 } ; +("fontstyle") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_73_74_79_6C_65 } ; +("overline-thickness") => { $ crate :: ATOM_LOCALNAME__6F_76_65_72_6C_69_6E_65_2D_74_68_69_63_6B_6E_65_73_73 } ; +("onbounce") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_6F_75_6E_63_65 } ; +("bevelled") => { $ crate :: ATOM_LOCALNAME__62_65_76_65_6C_6C_65_64 } ; +("onmouseout") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6F_75_74 } ; +("exponent") => { $ crate :: ATOM_LOCALNAME__65_78_70_6F_6E_65_6E_74 } ; +("prefetch") => { $ crate :: ATOM_LOCALNAME__70_72_65_66_65_74_63_68 } ; +("tablevalues") => { $ crate :: ATOM_LOCALNAME__74_61_62_6C_65_76_61_6C_75_65_73 } ; +("itemscope") => { $ crate :: ATOM_LOCALNAME__69_74_65_6D_73_63_6F_70_65 } ; +("manifest") => { $ crate :: ATOM_LOCALNAME__6D_61_6E_69_66_65_73_74 } ; +("nomodule") => { $ crate :: ATOM_LOCALNAME__6E_6F_6D_6F_64_75_6C_65 } ; +("mathvariant") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68_76_61_72_69_61_6E_74 } ; +("v-alphabetic") => { $ crate :: ATOM_LOCALNAME__76_2D_61_6C_70_68_61_62_65_74_69_63 } ; +("scrolling") => { $ crate :: ATOM_LOCALNAME__73_63_72_6F_6C_6C_69_6E_67 } ; +("keysplines") => { $ crate :: ATOM_LOCALNAME__6B_65_79_73_70_6C_69_6E_65_73 } ; +("variance") => { $ crate :: ATOM_LOCALNAME__76_61_72_69_61_6E_63_65 } ; +("feMorphology") => { $ crate :: ATOM_LOCALNAME__66_65_4D_6F_72_70_68_6F_6C_6F_67_79 } ; +("preserveAlpha") => { $ crate :: ATOM_LOCALNAME__70_72_65_73_65_72_76_65_41_6C_70_68_61 } ; +("viewTarget") => { $ crate :: ATOM_LOCALNAME__76_69_65_77_54_61_72_67_65_74 } ; +("aria-orientation") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6F_72_69_65_6E_74_61_74_69_6F_6E } ; +("aria-rowcount") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_63_6F_75_6E_74 } ; +("onlanguagechange") => { $ crate :: ATOM_LOCALNAME__6F_6E_6C_61_6E_67_75_61_67_65_63_68_61_6E_67_65 } ; +("oncontrolselect") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_6F_6E_74_72_6F_6C_73_65_6C_65_63_74 } ; +("onmouseup") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_75_70 } ; +("inputmode") => { $ crate :: ATOM_LOCALNAME__69_6E_70_75_74_6D_6F_64_65 } ; +("notsubset") => { $ crate :: ATOM_LOCALNAME__6E_6F_74_73_75_62_73_65_74 } ; +("definition-src") => { $ crate :: ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_2D_73_72_63 } ; +("aria-readonly") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_65_61_64_6F_6E_6C_79 } ; +("specularexponent") => { $ crate :: ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_65_78_70_6F_6E_65_6E_74 } ; +("multiple") => { $ crate :: ATOM_LOCALNAME__6D_75_6C_74_69_70_6C_65 } ; +("onunload") => { $ crate :: ATOM_LOCALNAME__6F_6E_75_6E_6C_6F_61_64 } ; +("aria-colindex") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_69_6E_64_65_78 } ; +("reversed") => { $ crate :: ATOM_LOCALNAME__72_65_76_65_72_73_65_64 } ; +("onoffline") => { $ crate :: ATOM_LOCALNAME__6F_6E_6F_66_66_6C_69_6E_65 } ; +("aria-rowindextext") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_69_6E_64_65_78_74_65_78_74 } ; +("externalresourcesrequired") => { $ crate :: ATOM_LOCALNAME__65_78_74_65_72_6E_61_6C_72_65_73_6F_75_72_63_65_73_72_65_71_75_69_72_65_64 } ; +("datatemplate") => { $ crate :: ATOM_LOCALNAME__64_61_74_61_74_65_6D_70_6C_61_74_65 } ; +("fontsize") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_73_69_7A_65 } ; +("image-rendering") => { $ crate :: ATOM_LOCALNAME__69_6D_61_67_65_2D_72_65_6E_64_65_72_69_6E_67 } ; +("basefont") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_66_6F_6E_74 } ; +("fill-opacity") => { $ crate :: ATOM_LOCALNAME__66_69_6C_6C_2D_6F_70_61_63_69_74_79 } ; +("radialgradient") => { $ crate :: ATOM_LOCALNAME__72_61_64_69_61_6C_67_72_61_64_69_65_6E_74 } ; +("frameborder") => { $ crate :: ATOM_LOCALNAME__66_72_61_6D_65_62_6F_72_64_65_72 } ; +("stroke-dasharray") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_64_61_73_68_61_72_72_61_79 } ; +("encoding") => { $ crate :: ATOM_LOCALNAME__65_6E_63_6F_64_69_6E_67 } ; +("animatetransform") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_74_72_61_6E_73_66_6F_72_6D } ; +("movablelimits") => { $ crate :: ATOM_LOCALNAME__6D_6F_76_61_62_6C_65_6C_69_6D_69_74_73 } ; +("filterres") => { $ crate :: ATOM_LOCALNAME__66_69_6C_74_65_72_72_65_73 } ; +("font-stretch") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_73_74_72_65_74_63_68 } ; +("clipPath") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_50_61_74_68 } ; +("xlink:show") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_73_68_6F_77 } ; +("notanumber") => { $ crate :: ATOM_LOCALNAME__6E_6F_74_61_6E_75_6D_62_65_72 } ; +("onmouseenter") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_65_6E_74_65_72 } ; +("aria-dropeffect") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_72_6F_70_65_66_66_65_63_74 } ; +("progress") => { $ crate :: ATOM_LOCALNAME__70_72_6F_67_72_65_73_73 } ; +("ondataavailable") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_61_74_61_61_76_61_69_6C_61_62_6C_65 } ; +("valuetype") => { $ crate :: ATOM_LOCALNAME__76_61_6C_75_65_74_79_70_65 } ; +("noframes") => { $ crate :: ATOM_LOCALNAME__6E_6F_66_72_61_6D_65_73 } ; +("specularExponent") => { $ crate :: ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_45_78_70_6F_6E_65_6E_74 } ; +("text-rendering") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_2D_72_65_6E_64_65_72_69_6E_67 } ; +("otherwise") => { $ crate :: ATOM_LOCALNAME__6F_74_68_65_72_77_69_73_65 } ; +("baseline") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_6C_69_6E_65 } ; +("framespacing") => { $ crate :: ATOM_LOCALNAME__66_72_61_6D_65_73_70_61_63_69_6E_67 } ; +("xlink:title") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_74_69_74_6C_65 } ; +("feOffset") => { $ crate :: ATOM_LOCALNAME__66_65_4F_66_66_73_65_74 } ; +("aria-secret") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_73_65_63_72_65_74 } ; +("aria-valuenow") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6E_6F_77 } ; +("emptyset") => { $ crate :: ATOM_LOCALNAME__65_6D_70_74_79_73_65_74 } ; +("determinant") => { $ crate :: ATOM_LOCALNAME__64_65_74_65_72_6D_69_6E_61_6E_74 } ; +("textlength") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_6C_65_6E_67_74_68 } ; +("font-variant") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_76_61_72_69_61_6E_74 } ; +("horiz-origin-x") => { $ crate :: ATOM_LOCALNAME__68_6F_72_69_7A_2D_6F_72_69_67_69_6E_2D_78 } ; +("aria-brailleroledescription") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_62_72_61_69_6C_6C_65_72_6F_6C_65_64_65_73_63_72_69_70_74_69_6F_6E } ; +("onfocusout") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_6F_63_75_73_6F_75_74 } ; +("menuitem") => { $ crate :: ATOM_LOCALNAME__6D_65_6E_75_69_74_65_6D } ; +("ondragend") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_65_6E_64 } ; +("baseline-shift") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_6C_69_6E_65_2D_73_68_69_66_74 } ; +("feComposite") => { $ crate :: ATOM_LOCALNAME__66_65_43_6F_6D_70_6F_73_69_74_65 } ; +("pathLength") => { $ crate :: ATOM_LOCALNAME__70_61_74_68_4C_65_6E_67_74_68 } ; +("startOffset") => { $ crate :: ATOM_LOCALNAME__73_74_61_72_74_4F_66_66_73_65_74 } ; +("glyph-orientation-vertical") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68_2D_6F_72_69_65_6E_74_61_74_69_6F_6E_2D_76_65_72_74_69_63_61_6C } ; +("textPath") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_50_61_74_68 } ; +("onreadystatechange") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_65_61_64_79_73_74_61_74_65_63_68_61_6E_67_65 } ; +("stroke-opacity") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6F_70_61_63_69_74_79 } ; +("accumulate") => { $ crate :: ATOM_LOCALNAME__61_63_63_75_6D_75_6C_61_74_65 } ; +("onbeforeupdate") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_75_70_64_61_74_65 } ; +("shape-rendering") => { $ crate :: ATOM_LOCALNAME__73_68_61_70_65_2D_72_65_6E_64_65_72_69_6E_67 } ; +("figcaption") => { $ crate :: ATOM_LOCALNAME__66_69_67_63_61_70_74_69_6F_6E } ; +("thickmathspace") => { $ crate :: ATOM_LOCALNAME__74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 } ; +("minlength") => { $ crate :: ATOM_LOCALNAME__6D_69_6E_6C_65_6E_67_74_68 } ; +("requiredextensions") => { $ crate :: ATOM_LOCALNAME__72_65_71_75_69_72_65_64_65_78_74_65_6E_73_69_6F_6E_73 } ; +("repeat-template") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_2D_74_65_6D_70_6C_61_74_65 } ; +("vert-origin-x") => { $ crate :: ATOM_LOCALNAME__76_65_72_74_2D_6F_72_69_67_69_6E_2D_78 } ; +("lineargradient") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65_61_72_67_72_61_64_69_65_6E_74 } ; +("download") => { $ crate :: ATOM_LOCALNAME__64_6F_77_6E_6C_6F_61_64 } ; +("onmovestart") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_76_65_73_74_61_72_74 } ; +("patterntransform") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_74_72_61_6E_73_66_6F_72_6D } ; +("superscriptshift") => { $ crate :: ATOM_LOCALNAME__73_75_70_65_72_73_63_72_69_70_74_73_68_69_66_74 } ; +("externalResourcesRequired") => { $ crate :: ATOM_LOCALNAME__65_78_74_65_72_6E_61_6C_52_65_73_6F_75_72_63_65_73_52_65_71_75_69_72_65_64 } ; +("animatecolor") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_63_6F_6C_6F_72 } ; +("panose-1") => { $ crate :: ATOM_LOCALNAME__70_61_6E_6F_73_65_2D_31 } ; +("filterRes") => { $ crate :: ATOM_LOCALNAME__66_69_6C_74_65_72_52_65_73 } ; +("aria-colcount") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_63_6F_75_6E_74 } ; +("missing-glyph") => { $ crate :: ATOM_LOCALNAME__6D_69_73_73_69_6E_67_2D_67_6C_79_70_68 } ; +("cartesianproduct") => { $ crate :: ATOM_LOCALNAME__63_61_72_74_65_73_69_61_6E_70_72_6F_64_75_63_74 } ; +("femergenode") => { $ crate :: ATOM_LOCALNAME__66_65_6D_65_72_67_65_6E_6F_64_65 } ; +("ondragover") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_6F_76_65_72 } ; +("fespecularlighting") => { $ crate :: ATOM_LOCALNAME__66_65_73_70_65_63_75_6C_61_72_6C_69_67_68_74_69_6E_67 } ; +("mphantom") => { $ crate :: ATOM_LOCALNAME__6D_70_68_61_6E_74_6F_6D } ; +("aria-activedescendant") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_61_63_74_69_76_65_64_65_73_63_65_6E_64_61_6E_74 } ; +("exponentiale") => { $ crate :: ATOM_LOCALNAME__65_78_70_6F_6E_65_6E_74_69_61_6C_65 } ; +("aria-invalid") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_69_6E_76_61_6C_69_64 } ; +("requiredfeatures") => { $ crate :: ATOM_LOCALNAME__72_65_71_75_69_72_65_64_66_65_61_74_75_72_65_73 } ; +("additive") => { $ crate :: ATOM_LOCALNAME__61_64_64_69_74_69_76_65 } ; +("onbeforeactivate") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_61_63_74_69_76_61_74_65 } ; +("altglyphitem") => { $ crate :: ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68_69_74_65_6D } ; +("repeatcount") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_63_6F_75_6E_74 } ; +("rationals") => { $ crate :: ATOM_LOCALNAME__72_61_74_69_6F_6E_61_6C_73 } ; +("stroke-linecap") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6C_69_6E_65_63_61_70 } ; +("annotation") => { $ crate :: ATOM_LOCALNAME__61_6E_6E_6F_74_61_74_69_6F_6E } ; +("units-per-em") => { $ crate :: ATOM_LOCALNAME__75_6E_69_74_73_2D_70_65_72_2D_65_6D } ; +("tableValues") => { $ crate :: ATOM_LOCALNAME__74_61_62_6C_65_56_61_6C_75_65_73 } ; +("mmultiscripts") => { $ crate :: ATOM_LOCALNAME__6D_6D_75_6C_74_69_73_63_72_69_70_74_73 } ; +("aria-owns") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6F_77_6E_73 } ; +("ideographic") => { $ crate :: ATOM_LOCALNAME__69_64_65_6F_67_72_61_70_68_69_63 } ; +("text-anchor") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_2D_61_6E_63_68_6F_72 } ; +("aria-sort") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_73_6F_72_74 } ; +("aria-datatype") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_61_74_61_74_79_70_65 } ; +("irrelevant") => { $ crate :: ATOM_LOCALNAME__69_72_72_65_6C_65_76_61_6E_74 } ; +("preserveAspectRatio") => { $ crate :: ATOM_LOCALNAME__70_72_65_73_65_72_76_65_41_73_70_65_63_74_52_61_74_69_6F } ; +("markerWidth") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_57_69_64_74_68 } ; +("columnalign") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_75_6D_6E_61_6C_69_67_6E } ; +("notprsubset") => { $ crate :: ATOM_LOCALNAME__6E_6F_74_70_72_73_75_62_73_65_74 } ; +("language") => { $ crate :: ATOM_LOCALNAME__6C_61_6E_67_75_61_67_65 } ; +("onbeforecopy") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_63_6F_70_79 } ; +("onfilterchange") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_69_6C_74_65_72_63_68_61_6E_67_65 } ; +("altglyphdef") => { $ crate :: ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68_64_65_66 } ; +("fePointLight") => { $ crate :: ATOM_LOCALNAME__66_65_50_6F_69_6E_74_4C_69_67_68_74 } ; +("pointer-events") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_65_72_2D_65_76_65_6E_74_73 } ; +("feDisplacementMap") => { $ crate :: ATOM_LOCALNAME__66_65_44_69_73_70_6C_61_63_65_6D_65_6E_74_4D_61_70 } ; +("ondatasetcomplete") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_61_74_61_73_65_74_63_6F_6D_70_6C_65_74_65 } ; +("aria-rowspan") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_73_70_61_6E } ; +("columnspan") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_75_6D_6E_73_70_61_6E } ; +("stroke-dashoffset") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_64_61_73_68_6F_66_66_73_65_74 } ; +("aria-required") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_65_71_75_69_72_65_64 } ; +("occurrence") => { $ crate :: ATOM_LOCALNAME__6F_63_63_75_72_72_65_6E_63_65 } ; +("munderover") => { $ crate :: ATOM_LOCALNAME__6D_75_6E_64_65_72_6F_76_65_72 } ; +("linethickness") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65_74_68_69_63_6B_6E_65_73_73 } ; +("feMergeNode") => { $ crate :: ATOM_LOCALNAME__66_65_4D_65_72_67_65_4E_6F_64_65 } ; +("menclose") => { $ crate :: ATOM_LOCALNAME__6D_65_6E_63_6C_6F_73_65 } ; +("alignmentscope") => { $ crate :: ATOM_LOCALNAME__61_6C_69_67_6E_6D_65_6E_74_73_63_6F_70_65 } ; +("markerwidth") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_77_69_64_74_68 } ; +("accentunder") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_6E_74_75_6E_64_65_72 } ; +("feoffset") => { $ crate :: ATOM_LOCALNAME__66_65_6F_66_66_73_65_74 } ; +("columnwidth") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_75_6D_6E_77_69_64_74_68 } ; +("textarea") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_61_72_65_61 } ; +("fecomposite") => { $ crate :: ATOM_LOCALNAME__66_65_63_6F_6D_70_6F_73_69_74_65 } ; +("itemprop") => { $ crate :: ATOM_LOCALNAME__69_74_65_6D_70_72_6F_70 } ; +("intersect") => { $ crate :: ATOM_LOCALNAME__69_6E_74_65_72_73_65_63_74 } ; +("semantics") => { $ crate :: ATOM_LOCALNAME__73_65_6D_61_6E_74_69_63_73 } ; +("font-size-adjust") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_73_69_7A_65_2D_61_64_6A_75_73_74 } ; +("word-spacing") => { $ crate :: ATOM_LOCALNAME__77_6F_72_64_2D_73_70_61_63_69_6E_67 } ; +("oncellchange") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_65_6C_6C_63_68_61_6E_67_65 } ; +("crossorigin") => { $ crate :: ATOM_LOCALNAME__63_72_6F_73_73_6F_72_69_67_69_6E } ; +("ondragstart") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_73_74_61_72_74 } ; +("flood-color") => { $ crate :: ATOM_LOCALNAME__66_6C_6F_6F_64_2D_63_6F_6C_6F_72 } ; +("glyph-name") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68_2D_6E_61_6D_65 } ; +("pointsatx") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_78 } ; +("textLength") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_4C_65_6E_67_74_68 } ; +("eulergamma") => { $ crate :: ATOM_LOCALNAME__65_75_6C_65_72_67_61_6D_6D_61 } ; +("aria-details") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_65_74_61_69_6C_73 } ; +("translate") => { $ crate :: ATOM_LOCALNAME__74_72_61_6E_73_6C_61_74_65 } ; +("filterunits") => { $ crate :: ATOM_LOCALNAME__66_69_6C_74_65_72_75_6E_69_74_73 } ; +("contentscripttype") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_73_63_72_69_70_74_74_79_70_65 } ; +("mathematical") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68_65_6D_61_74_69_63_61_6C } ; +("onrowenter") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_6F_77_65_6E_74_65_72 } ; +("aria-grab") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_67_72_61_62 } ; +("onfocusin") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_6F_63_75_73_69_6E } ; +("onpropertychange") => { $ crate :: ATOM_LOCALNAME__6F_6E_70_72_6F_70_65_72_74_79_63_68_61_6E_67_65 } ; +("zoomandpan") => { $ crate :: ATOM_LOCALNAME__7A_6F_6F_6D_61_6E_64_70_61_6E } ; +("xlink:actuate") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_61_63_74_75_61_74_65 } ; +("unicode-bidi") => { $ crate :: ATOM_LOCALNAME__75_6E_69_63_6F_64_65_2D_62_69_64_69 } ; +("onmessage") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_65_73_73_61_67_65 } ; +("fespotlight") => { $ crate :: ATOM_LOCALNAME__66_65_73_70_6F_74_6C_69_67_68_74 } ; +("clip-path") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_2D_70_61_74_68 } ; +("onmousewheel") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_77_68_65_65_6C } ; +("marginwidth") => { $ crate :: ATOM_LOCALNAME__6D_61_72_67_69_6E_77_69_64_74_68 } ; +("aria-errormessage") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_65_72_72_6F_72_6D_65_73_73_61_67_65 } ; +("baseFrequency") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_46_72_65_71_75_65_6E_63_79 } ; +("scriptminsize") => { $ crate :: ATOM_LOCALNAME__73_63_72_69_70_74_6D_69_6E_73_69_7A_65 } ; +("systemLanguage") => { $ crate :: ATOM_LOCALNAME__73_79_73_74_65_6D_4C_61_6E_67_75_61_67_65 } ; +("codetype") => { $ crate :: ATOM_LOCALNAME__63_6F_64_65_74_79_70_65 } ; +("text-decoration") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_2D_64_65_63_6F_72_61_74_69_6F_6E } ; +("ondragenter") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_65_6E_74_65_72 } ; +("specularConstant") => { $ crate :: ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_43_6F_6E_73_74_61_6E_74 } ; +("feTurbulence") => { $ crate :: ATOM_LOCALNAME__66_65_54_75_72_62_75_6C_65_6E_63_65 } ; +("font-size") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_73_69_7A_65 } ; +("accept-charset") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_70_74_2D_63_68_61_72_73_65_74 } ; +("draggable") => { $ crate :: ATOM_LOCALNAME__64_72_61_67_67_61_62_6C_65 } ; +("maskcontentunits") => { $ crate :: ATOM_LOCALNAME__6D_61_73_6B_63_6F_6E_74_65_6E_74_75_6E_69_74_73 } ; +("onlosecapture") => { $ crate :: ATOM_LOCALNAME__6F_6E_6C_6F_73_65_63_61_70_74_75_72_65 } ; +("contentScriptType") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_53_63_72_69_70_74_54_79_70_65 } ; +("rowlines") => { $ crate :: ATOM_LOCALNAME__72_6F_77_6C_69_6E_65_73 } ; +("radialGradient") => { $ crate :: ATOM_LOCALNAME__72_61_64_69_61_6C_47_72_61_64_69_65_6E_74 } ; +("yChannelSelector") => { $ crate :: ATOM_LOCALNAME__79_43_68_61_6E_6E_65_6C_53_65_6C_65_63_74_6F_72 } ; +("xml:space") => { $ crate :: ATOM_LOCALNAME__78_6D_6C_3A_73_70_61_63_65 } ; +("aria-live") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6C_69_76_65 } ; +("groupalign") => { $ crate :: ATOM_LOCALNAME__67_72_6F_75_70_61_6C_69_67_6E } ; +("onrepeat") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_65_70_65_61_74 } ; +("onpageshow") => { $ crate :: ATOM_LOCALNAME__6F_6E_70_61_67_65_73_68_6F_77 } ; +("vectorproduct") => { $ crate :: ATOM_LOCALNAME__76_65_63_74_6F_72_70_72_6F_64_75_63_74 } ; +("aria-roledescription") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_6F_6C_65_64_65_73_63_72_69_70_74_69_6F_6E } ; +("equalcolumns") => { $ crate :: ATOM_LOCALNAME__65_71_75_61_6C_63_6F_6C_75_6D_6E_73 } ; +("factorof") => { $ crate :: ATOM_LOCALNAME__66_61_63_74_6F_72_6F_66 } ; +("onmoveend") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_76_65_65_6E_64 } ; +("onkeypress") => { $ crate :: ATOM_LOCALNAME__6F_6E_6B_65_79_70_72_65_73_73 } ; +("operator") => { $ crate :: ATOM_LOCALNAME__6F_70_65_72_61_74_6F_72 } ; +("kernelUnitLength") => { $ crate :: ATOM_LOCALNAME__6B_65_72_6E_65_6C_55_6E_69_74_4C_65_6E_67_74_68 } ; +("oncontextmenu") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_6F_6E_74_65_78_74_6D_65_6E_75 } ; +("onactivate") => { $ crate :: ATOM_LOCALNAME__6F_6E_61_63_74_69_76_61_74_65 } ; +("aria-level") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6C_65_76_65_6C } ; +("pointsAtY") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_59 } ; +("mediummathspace") => { $ crate :: ATOM_LOCALNAME__6D_65_64_69_75_6D_6D_61_74_68_73_70_61_63_65 } ; +("animateMotion") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_4D_6F_74_69_6F_6E } ; +("baseprofile") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_70_72_6F_66_69_6C_65 } ; +("veryverythickmathspace") => { $ crate :: ATOM_LOCALNAME__76_65_72_79_76_65_72_79_74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 } ; +("alphabetic") => { $ crate :: ATOM_LOCALNAME__61_6C_70_68_61_62_65_74_69_63 } ; +("keypoints") => { $ crate :: ATOM_LOCALNAME__6B_65_79_70_6F_69_6E_74_73 } ; +("marker-end") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_65_6E_64 } ; +("laplacian") => { $ crate :: ATOM_LOCALNAME__6C_61_70_6C_61_63_69_61_6E } ; +("kernelMatrix") => { $ crate :: ATOM_LOCALNAME__6B_65_72_6E_65_6C_4D_61_74_72_69_78 } ; +("altGlyphItem") => { $ crate :: ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68_49_74_65_6D } ; +("fegaussianblur") => { $ crate :: ATOM_LOCALNAME__66_65_67_61_75_73_73_69_61_6E_62_6C_75_72 } ; +("horiz-origin-y") => { $ crate :: ATOM_LOCALNAME__68_6F_72_69_7A_2D_6F_72_69_67_69_6E_2D_79 } ; +("imaginary") => { $ crate :: ATOM_LOCALNAME__69_6D_61_67_69_6E_61_72_79 } ; +("fecomponenttransfer") => { $ crate :: ATOM_LOCALNAME__66_65_63_6F_6D_70_6F_6E_65_6E_74_74_72_61_6E_73_66_65_72 } ; +("metadata") => { $ crate :: ATOM_LOCALNAME__6D_65_74_61_64_61_74_61 } ; +("requiredExtensions") => { $ crate :: ATOM_LOCALNAME__72_65_71_75_69_72_65_64_45_78_74_65_6E_73_69_6F_6E_73 } ; +("onchange") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_68_61_6E_67_65 } ; +("lengthAdjust") => { $ crate :: ATOM_LOCALNAME__6C_65_6E_67_74_68_41_64_6A_75_73_74 } ; +("patternContentUnits") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_43_6F_6E_74_65_6E_74_55_6E_69_74_73 } ; +("marginheight") => { $ crate :: ATOM_LOCALNAME__6D_61_72_67_69_6E_68_65_69_67_68_74 } ; +("attributename") => { $ crate :: ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_6E_61_6D_65 } ; +("ychannelselector") => { $ crate :: ATOM_LOCALNAME__79_63_68_61_6E_6E_65_6C_73_65_6C_65_63_74_6F_72 } ; +("keyTimes") => { $ crate :: ATOM_LOCALNAME__6B_65_79_54_69_6D_65_73 } ; +("repeatDur") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_44_75_72 } ; +("linebreak") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65_62_72_65_61_6B } ; +("*") => { $ crate :: ATOM_LOCALNAME__2A } ; +("a") => { $ crate :: ATOM_LOCALNAME__61 } ; +("abbr") => { $ crate :: ATOM_LOCALNAME__61_62_62_72 } ; +("abs") => { $ crate :: ATOM_LOCALNAME__61_62_73 } ; +("accent") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_6E_74 } ; +("accept") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_70_74 } ; +("acronym") => { $ crate :: ATOM_LOCALNAME__61_63_72_6F_6E_79_6D } ; +("action") => { $ crate :: ATOM_LOCALNAME__61_63_74_69_6F_6E } ; +("active") => { $ crate :: ATOM_LOCALNAME__61_63_74_69_76_65 } ; +("actuate") => { $ crate :: ATOM_LOCALNAME__61_63_74_75_61_74_65 } ; +("address") => { $ crate :: ATOM_LOCALNAME__61_64_64_72_65_73_73 } ; +("align") => { $ crate :: ATOM_LOCALNAME__61_6C_69_67_6E } ; +("alink") => { $ crate :: ATOM_LOCALNAME__61_6C_69_6E_6B } ; +("alt") => { $ crate :: ATOM_LOCALNAME__61_6C_74 } ; +("altimg") => { $ crate :: ATOM_LOCALNAME__61_6C_74_69_6D_67 } ; +("alttext") => { $ crate :: ATOM_LOCALNAME__61_6C_74_74_65_78_74 } ; +("and") => { $ crate :: ATOM_LOCALNAME__61_6E_64 } ; +("animate") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65 } ; +("applet") => { $ crate :: ATOM_LOCALNAME__61_70_70_6C_65_74 } ; +("apply") => { $ crate :: ATOM_LOCALNAME__61_70_70_6C_79 } ; +("approx") => { $ crate :: ATOM_LOCALNAME__61_70_70_72_6F_78 } ; +("arccos") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_6F_73 } ; +("arccosh") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_6F_73_68 } ; +("arccot") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_6F_74 } ; +("arccoth") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_6F_74_68 } ; +("arccsc") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_73_63 } ; +("arccsch") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_73_63_68 } ; +("archive") => { $ crate :: ATOM_LOCALNAME__61_72_63_68_69_76_65 } ; +("arcrole") => { $ crate :: ATOM_LOCALNAME__61_72_63_72_6F_6C_65 } ; +("arcsec") => { $ crate :: ATOM_LOCALNAME__61_72_63_73_65_63 } ; +("arcsech") => { $ crate :: ATOM_LOCALNAME__61_72_63_73_65_63_68 } ; +("arcsin") => { $ crate :: ATOM_LOCALNAME__61_72_63_73_69_6E } ; +("arcsinh") => { $ crate :: ATOM_LOCALNAME__61_72_63_73_69_6E_68 } ; +("arctan") => { $ crate :: ATOM_LOCALNAME__61_72_63_74_61_6E } ; +("arctanh") => { $ crate :: ATOM_LOCALNAME__61_72_63_74_61_6E_68 } ; +("area") => { $ crate :: ATOM_LOCALNAME__61_72_65_61 } ; +("arg") => { $ crate :: ATOM_LOCALNAME__61_72_67 } ; +("article") => { $ crate :: ATOM_LOCALNAME__61_72_74_69_63_6C_65 } ; +("ascent") => { $ crate :: ATOM_LOCALNAME__61_73_63_65_6E_74 } ; +("aside") => { $ crate :: ATOM_LOCALNAME__61_73_69_64_65 } ; +("async") => { $ crate :: ATOM_LOCALNAME__61_73_79_6E_63 } ; +("audio") => { $ crate :: ATOM_LOCALNAME__61_75_64_69_6F } ; +("axis") => { $ crate :: ATOM_LOCALNAME__61_78_69_73 } ; +("azimuth") => { $ crate :: ATOM_LOCALNAME__61_7A_69_6D_75_74_68 } ; +("b") => { $ crate :: ATOM_LOCALNAME__62 } ; +("base") => { $ crate :: ATOM_LOCALNAME__62_61_73_65 } ; +("bbox") => { $ crate :: ATOM_LOCALNAME__62_62_6F_78 } ; +("bdi") => { $ crate :: ATOM_LOCALNAME__62_64_69 } ; +("bdo") => { $ crate :: ATOM_LOCALNAME__62_64_6F } ; +("begin") => { $ crate :: ATOM_LOCALNAME__62_65_67_69_6E } ; +("bgcolor") => { $ crate :: ATOM_LOCALNAME__62_67_63_6F_6C_6F_72 } ; +("bgsound") => { $ crate :: ATOM_LOCALNAME__62_67_73_6F_75_6E_64 } ; +("bias") => { $ crate :: ATOM_LOCALNAME__62_69_61_73 } ; +("big") => { $ crate :: ATOM_LOCALNAME__62_69_67 } ; +("blink") => { $ crate :: ATOM_LOCALNAME__62_6C_69_6E_6B } ; +("body") => { $ crate :: ATOM_LOCALNAME__62_6F_64_79 } ; +("border") => { $ crate :: ATOM_LOCALNAME__62_6F_72_64_65_72 } ; +("br") => { $ crate :: ATOM_LOCALNAME__62_72 } ; +("button") => { $ crate :: ATOM_LOCALNAME__62_75_74_74_6F_6E } ; +("bvar") => { $ crate :: ATOM_LOCALNAME__62_76_61_72 } ; +("by") => { $ crate :: ATOM_LOCALNAME__62_79 } ; +("canvas") => { $ crate :: ATOM_LOCALNAME__63_61_6E_76_61_73 } ; +("caption") => { $ crate :: ATOM_LOCALNAME__63_61_70_74_69_6F_6E } ; +("card") => { $ crate :: ATOM_LOCALNAME__63_61_72_64 } ; +("ceiling") => { $ crate :: ATOM_LOCALNAME__63_65_69_6C_69_6E_67 } ; +("center") => { $ crate :: ATOM_LOCALNAME__63_65_6E_74_65_72 } ; +("char") => { $ crate :: ATOM_LOCALNAME__63_68_61_72 } ; +("charoff") => { $ crate :: ATOM_LOCALNAME__63_68_61_72_6F_66_66 } ; +("charset") => { $ crate :: ATOM_LOCALNAME__63_68_61_72_73_65_74 } ; +("checked") => { $ crate :: ATOM_LOCALNAME__63_68_65_63_6B_65_64 } ; +("ci") => { $ crate :: ATOM_LOCALNAME__63_69 } ; +("circle") => { $ crate :: ATOM_LOCALNAME__63_69_72_63_6C_65 } ; +("cite") => { $ crate :: ATOM_LOCALNAME__63_69_74_65 } ; +("class") => { $ crate :: ATOM_LOCALNAME__63_6C_61_73_73 } ; +("classid") => { $ crate :: ATOM_LOCALNAME__63_6C_61_73_73_69_64 } ; +("clear") => { $ crate :: ATOM_LOCALNAME__63_6C_65_61_72 } ; +("clip") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70 } ; +("close") => { $ crate :: ATOM_LOCALNAME__63_6C_6F_73_65 } ; +("closure") => { $ crate :: ATOM_LOCALNAME__63_6C_6F_73_75_72_65 } ; +("cn") => { $ crate :: ATOM_LOCALNAME__63_6E } ; +("code") => { $ crate :: ATOM_LOCALNAME__63_6F_64_65 } ; +("col") => { $ crate :: ATOM_LOCALNAME__63_6F_6C } ; +("color") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_6F_72 } ; +("cols") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_73 } ; +("colspan") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_73_70_61_6E } ; +("compact") => { $ crate :: ATOM_LOCALNAME__63_6F_6D_70_61_63_74 } ; +("compose") => { $ crate :: ATOM_LOCALNAME__63_6F_6D_70_6F_73_65 } ; +("content") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74 } ; +("coords") => { $ crate :: ATOM_LOCALNAME__63_6F_6F_72_64_73 } ; +("cos") => { $ crate :: ATOM_LOCALNAME__63_6F_73 } ; +("cosh") => { $ crate :: ATOM_LOCALNAME__63_6F_73_68 } ; +("cot") => { $ crate :: ATOM_LOCALNAME__63_6F_74 } ; +("coth") => { $ crate :: ATOM_LOCALNAME__63_6F_74_68 } ; +("csc") => { $ crate :: ATOM_LOCALNAME__63_73_63 } ; +("csch") => { $ crate :: ATOM_LOCALNAME__63_73_63_68 } ; +("csymbol") => { $ crate :: ATOM_LOCALNAME__63_73_79_6D_62_6F_6C } ; +("curl") => { $ crate :: ATOM_LOCALNAME__63_75_72_6C } ; +("cursor") => { $ crate :: ATOM_LOCALNAME__63_75_72_73_6F_72 } ; +("cx") => { $ crate :: ATOM_LOCALNAME__63_78 } ; +("cy") => { $ crate :: ATOM_LOCALNAME__63_79 } ; +("d") => { $ crate :: ATOM_LOCALNAME__64 } ; +("data") => { $ crate :: ATOM_LOCALNAME__64_61_74_61 } ; +("datafld") => { $ crate :: ATOM_LOCALNAME__64_61_74_61_66_6C_64 } ; +("datasrc") => { $ crate :: ATOM_LOCALNAME__64_61_74_61_73_72_63 } ; +("dd") => { $ crate :: ATOM_LOCALNAME__64_64 } ; +("declare") => { $ crate :: ATOM_LOCALNAME__64_65_63_6C_61_72_65 } ; +("default") => { $ crate :: ATOM_LOCALNAME__64_65_66_61_75_6C_74 } ; +("defer") => { $ crate :: ATOM_LOCALNAME__64_65_66_65_72 } ; +("defs") => { $ crate :: ATOM_LOCALNAME__64_65_66_73 } ; +("degree") => { $ crate :: ATOM_LOCALNAME__64_65_67_72_65_65 } ; +("del") => { $ crate :: ATOM_LOCALNAME__64_65_6C } ; +("depth") => { $ crate :: ATOM_LOCALNAME__64_65_70_74_68 } ; +("desc") => { $ crate :: ATOM_LOCALNAME__64_65_73_63 } ; +("descent") => { $ crate :: ATOM_LOCALNAME__64_65_73_63_65_6E_74 } ; +("details") => { $ crate :: ATOM_LOCALNAME__64_65_74_61_69_6C_73 } ; +("dfn") => { $ crate :: ATOM_LOCALNAME__64_66_6E } ; +("dialog") => { $ crate :: ATOM_LOCALNAME__64_69_61_6C_6F_67 } ; +("diff") => { $ crate :: ATOM_LOCALNAME__64_69_66_66 } ; +("dir") => { $ crate :: ATOM_LOCALNAME__64_69_72 } ; +("dirname") => { $ crate :: ATOM_LOCALNAME__64_69_72_6E_61_6D_65 } ; +("discard") => { $ crate :: ATOM_LOCALNAME__64_69_73_63_61_72_64 } ; +("display") => { $ crate :: ATOM_LOCALNAME__64_69_73_70_6C_61_79 } ; +("div") => { $ crate :: ATOM_LOCALNAME__64_69_76 } ; +("divide") => { $ crate :: ATOM_LOCALNAME__64_69_76_69_64_65 } ; +("divisor") => { $ crate :: ATOM_LOCALNAME__64_69_76_69_73_6F_72 } ; +("dl") => { $ crate :: ATOM_LOCALNAME__64_6C } ; +("domain") => { $ crate :: ATOM_LOCALNAME__64_6F_6D_61_69_6E } ; +("dt") => { $ crate :: ATOM_LOCALNAME__64_74 } ; +("dur") => { $ crate :: ATOM_LOCALNAME__64_75_72 } ; +("dx") => { $ crate :: ATOM_LOCALNAME__64_78 } ; +("dy") => { $ crate :: ATOM_LOCALNAME__64_79 } ; +("edge") => { $ crate :: ATOM_LOCALNAME__65_64_67_65 } ; +("ellipse") => { $ crate :: ATOM_LOCALNAME__65_6C_6C_69_70_73_65 } ; +("em") => { $ crate :: ATOM_LOCALNAME__65_6D } ; +("embed") => { $ crate :: ATOM_LOCALNAME__65_6D_62_65_64 } ; +("enctype") => { $ crate :: ATOM_LOCALNAME__65_6E_63_74_79_70_65 } ; +("end") => { $ crate :: ATOM_LOCALNAME__65_6E_64 } ; +("eq") => { $ crate :: ATOM_LOCALNAME__65_71 } ; +("event") => { $ crate :: ATOM_LOCALNAME__65_76_65_6E_74 } ; +("exists") => { $ crate :: ATOM_LOCALNAME__65_78_69_73_74_73 } ; +("exp") => { $ crate :: ATOM_LOCALNAME__65_78_70 } ; +("face") => { $ crate :: ATOM_LOCALNAME__66_61_63_65 } ; +("false") => { $ crate :: ATOM_LOCALNAME__66_61_6C_73_65 } ; +("feBlend") => { $ crate :: ATOM_LOCALNAME__66_65_42_6C_65_6E_64 } ; +("feFlood") => { $ crate :: ATOM_LOCALNAME__66_65_46_6C_6F_6F_64 } ; +("feFuncA") => { $ crate :: ATOM_LOCALNAME__66_65_46_75_6E_63_41 } ; +("feFuncB") => { $ crate :: ATOM_LOCALNAME__66_65_46_75_6E_63_42 } ; +("feFuncG") => { $ crate :: ATOM_LOCALNAME__66_65_46_75_6E_63_47 } ; +("feFuncR") => { $ crate :: ATOM_LOCALNAME__66_65_46_75_6E_63_52 } ; +("feImage") => { $ crate :: ATOM_LOCALNAME__66_65_49_6D_61_67_65 } ; +("feMerge") => { $ crate :: ATOM_LOCALNAME__66_65_4D_65_72_67_65 } ; +("feTile") => { $ crate :: ATOM_LOCALNAME__66_65_54_69_6C_65 } ; +("feblend") => { $ crate :: ATOM_LOCALNAME__66_65_62_6C_65_6E_64 } ; +("feflood") => { $ crate :: ATOM_LOCALNAME__66_65_66_6C_6F_6F_64 } ; +("fefunca") => { $ crate :: ATOM_LOCALNAME__66_65_66_75_6E_63_61 } ; +("fefuncb") => { $ crate :: ATOM_LOCALNAME__66_65_66_75_6E_63_62 } ; +("fefuncg") => { $ crate :: ATOM_LOCALNAME__66_65_66_75_6E_63_67 } ; +("fefuncr") => { $ crate :: ATOM_LOCALNAME__66_65_66_75_6E_63_72 } ; +("feimage") => { $ crate :: ATOM_LOCALNAME__66_65_69_6D_61_67_65 } ; +("femerge") => { $ crate :: ATOM_LOCALNAME__66_65_6D_65_72_67_65 } ; +("fence") => { $ crate :: ATOM_LOCALNAME__66_65_6E_63_65 } ; +("fetch") => { $ crate :: ATOM_LOCALNAME__66_65_74_63_68 } ; +("fetile") => { $ crate :: ATOM_LOCALNAME__66_65_74_69_6C_65 } ; +("figure") => { $ crate :: ATOM_LOCALNAME__66_69_67_75_72_65 } ; +("fill") => { $ crate :: ATOM_LOCALNAME__66_69_6C_6C } ; +("filter") => { $ crate :: ATOM_LOCALNAME__66_69_6C_74_65_72 } ; +("floor") => { $ crate :: ATOM_LOCALNAME__66_6C_6F_6F_72 } ; +("fn") => { $ crate :: ATOM_LOCALNAME__66_6E } ; +("font") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74 } ; +("footer") => { $ crate :: ATOM_LOCALNAME__66_6F_6F_74_65_72 } ; +("for") => { $ crate :: ATOM_LOCALNAME__66_6F_72 } ; +("forall") => { $ crate :: ATOM_LOCALNAME__66_6F_72_61_6C_6C } ; +("form") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D } ; +("format") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_61_74 } ; +("frame") => { $ crate :: ATOM_LOCALNAME__66_72_61_6D_65 } ; +("from") => { $ crate :: ATOM_LOCALNAME__66_72_6F_6D } ; +("fx") => { $ crate :: ATOM_LOCALNAME__66_78 } ; +("fy") => { $ crate :: ATOM_LOCALNAME__66_79 } ; +("g") => { $ crate :: ATOM_LOCALNAME__67 } ; +("g1") => { $ crate :: ATOM_LOCALNAME__67_31 } ; +("g2") => { $ crate :: ATOM_LOCALNAME__67_32 } ; +("gcd") => { $ crate :: ATOM_LOCALNAME__67_63_64 } ; +("geq") => { $ crate :: ATOM_LOCALNAME__67_65_71 } ; +("glyph") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68 } ; +("grad") => { $ crate :: ATOM_LOCALNAME__67_72_61_64 } ; +("gt") => { $ crate :: ATOM_LOCALNAME__67_74 } ; +("h1") => { $ crate :: ATOM_LOCALNAME__68_31 } ; +("h2") => { $ crate :: ATOM_LOCALNAME__68_32 } ; +("h3") => { $ crate :: ATOM_LOCALNAME__68_33 } ; +("h4") => { $ crate :: ATOM_LOCALNAME__68_34 } ; +("h5") => { $ crate :: ATOM_LOCALNAME__68_35 } ; +("h6") => { $ crate :: ATOM_LOCALNAME__68_36 } ; +("handler") => { $ crate :: ATOM_LOCALNAME__68_61_6E_64_6C_65_72 } ; +("hanging") => { $ crate :: ATOM_LOCALNAME__68_61_6E_67_69_6E_67 } ; +("head") => { $ crate :: ATOM_LOCALNAME__68_65_61_64 } ; +("header") => { $ crate :: ATOM_LOCALNAME__68_65_61_64_65_72 } ; +("headers") => { $ crate :: ATOM_LOCALNAME__68_65_61_64_65_72_73 } ; +("height") => { $ crate :: ATOM_LOCALNAME__68_65_69_67_68_74 } ; +("hgroup") => { $ crate :: ATOM_LOCALNAME__68_67_72_6F_75_70 } ; +("hidden") => { $ crate :: ATOM_LOCALNAME__68_69_64_64_65_6E } ; +("high") => { $ crate :: ATOM_LOCALNAME__68_69_67_68 } ; +("hkern") => { $ crate :: ATOM_LOCALNAME__68_6B_65_72_6E } ; +("hr") => { $ crate :: ATOM_LOCALNAME__68_72 } ; +("href") => { $ crate :: ATOM_LOCALNAME__68_72_65_66 } ; +("hspace") => { $ crate :: ATOM_LOCALNAME__68_73_70_61_63_65 } ; +("html") => { $ crate :: ATOM_LOCALNAME__68_74_6D_6C } ; +("i") => { $ crate :: ATOM_LOCALNAME__69 } ; +("icon") => { $ crate :: ATOM_LOCALNAME__69_63_6F_6E } ; +("id") => { $ crate :: ATOM_LOCALNAME__69_64 } ; +("ident") => { $ crate :: ATOM_LOCALNAME__69_64_65_6E_74 } ; +("iframe") => { $ crate :: ATOM_LOCALNAME__69_66_72_61_6D_65 } ; +("image") => { $ crate :: ATOM_LOCALNAME__69_6D_61_67_65 } ; +("img") => { $ crate :: ATOM_LOCALNAME__69_6D_67 } ; +("implies") => { $ crate :: ATOM_LOCALNAME__69_6D_70_6C_69_65_73 } ; +("in") => { $ crate :: ATOM_LOCALNAME__69_6E } ; +("in2") => { $ crate :: ATOM_LOCALNAME__69_6E_32 } ; +("index") => { $ crate :: ATOM_LOCALNAME__69_6E_64_65_78 } ; +("input") => { $ crate :: ATOM_LOCALNAME__69_6E_70_75_74 } ; +("ins") => { $ crate :: ATOM_LOCALNAME__69_6E_73 } ; +("int") => { $ crate :: ATOM_LOCALNAME__69_6E_74 } ; +("inverse") => { $ crate :: ATOM_LOCALNAME__69_6E_76_65_72_73_65 } ; +("isindex") => { $ crate :: ATOM_LOCALNAME__69_73_69_6E_64_65_78 } ; +("ismap") => { $ crate :: ATOM_LOCALNAME__69_73_6D_61_70 } ; +("itemid") => { $ crate :: ATOM_LOCALNAME__69_74_65_6D_69_64 } ; +("itemref") => { $ crate :: ATOM_LOCALNAME__69_74_65_6D_72_65_66 } ; +("k") => { $ crate :: ATOM_LOCALNAME__6B } ; +("k1") => { $ crate :: ATOM_LOCALNAME__6B_31 } ; +("k2") => { $ crate :: ATOM_LOCALNAME__6B_32 } ; +("k3") => { $ crate :: ATOM_LOCALNAME__6B_33 } ; +("k4") => { $ crate :: ATOM_LOCALNAME__6B_34 } ; +("kbd") => { $ crate :: ATOM_LOCALNAME__6B_62_64 } ; +("kerning") => { $ crate :: ATOM_LOCALNAME__6B_65_72_6E_69_6E_67 } ; +("keygen") => { $ crate :: ATOM_LOCALNAME__6B_65_79_67_65_6E } ; +("kind") => { $ crate :: ATOM_LOCALNAME__6B_69_6E_64 } ; +("label") => { $ crate :: ATOM_LOCALNAME__6C_61_62_65_6C } ; +("lambda") => { $ crate :: ATOM_LOCALNAME__6C_61_6D_62_64_61 } ; +("lang") => { $ crate :: ATOM_LOCALNAME__6C_61_6E_67 } ; +("largeop") => { $ crate :: ATOM_LOCALNAME__6C_61_72_67_65_6F_70 } ; +("lcm") => { $ crate :: ATOM_LOCALNAME__6C_63_6D } ; +("legend") => { $ crate :: ATOM_LOCALNAME__6C_65_67_65_6E_64 } ; +("leq") => { $ crate :: ATOM_LOCALNAME__6C_65_71 } ; +("li") => { $ crate :: ATOM_LOCALNAME__6C_69 } ; +("limit") => { $ crate :: ATOM_LOCALNAME__6C_69_6D_69_74 } ; +("line") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65 } ; +("link") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_6B } ; +("list") => { $ crate :: ATOM_LOCALNAME__6C_69_73_74 } ; +("listing") => { $ crate :: ATOM_LOCALNAME__6C_69_73_74_69_6E_67 } ; +("ln") => { $ crate :: ATOM_LOCALNAME__6C_6E } ; +("loading") => { $ crate :: ATOM_LOCALNAME__6C_6F_61_64_69_6E_67 } ; +("local") => { $ crate :: ATOM_LOCALNAME__6C_6F_63_61_6C } ; +("log") => { $ crate :: ATOM_LOCALNAME__6C_6F_67 } ; +("logbase") => { $ crate :: ATOM_LOCALNAME__6C_6F_67_62_61_73_65 } ; +("loop") => { $ crate :: ATOM_LOCALNAME__6C_6F_6F_70 } ; +("low") => { $ crate :: ATOM_LOCALNAME__6C_6F_77 } ; +("lowsrc") => { $ crate :: ATOM_LOCALNAME__6C_6F_77_73_72_63 } ; +("lquote") => { $ crate :: ATOM_LOCALNAME__6C_71_75_6F_74_65 } ; +("lspace") => { $ crate :: ATOM_LOCALNAME__6C_73_70_61_63_65 } ; +("lt") => { $ crate :: ATOM_LOCALNAME__6C_74 } ; +("macros") => { $ crate :: ATOM_LOCALNAME__6D_61_63_72_6F_73 } ; +("maction") => { $ crate :: ATOM_LOCALNAME__6D_61_63_74_69_6F_6E } ; +("main") => { $ crate :: ATOM_LOCALNAME__6D_61_69_6E } ; +("map") => { $ crate :: ATOM_LOCALNAME__6D_61_70 } ; +("mark") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B } ; +("marker") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72 } ; +("marquee") => { $ crate :: ATOM_LOCALNAME__6D_61_72_71_75_65_65 } ; +("mask") => { $ crate :: ATOM_LOCALNAME__6D_61_73_6B } ; +("math") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68 } ; +("matrix") => { $ crate :: ATOM_LOCALNAME__6D_61_74_72_69_78 } ; +("max") => { $ crate :: ATOM_LOCALNAME__6D_61_78 } ; +("maxsize") => { $ crate :: ATOM_LOCALNAME__6D_61_78_73_69_7A_65 } ; +("mean") => { $ crate :: ATOM_LOCALNAME__6D_65_61_6E } ; +("media") => { $ crate :: ATOM_LOCALNAME__6D_65_64_69_61 } ; +("median") => { $ crate :: ATOM_LOCALNAME__6D_65_64_69_61_6E } ; +("menu") => { $ crate :: ATOM_LOCALNAME__6D_65_6E_75 } ; +("merror") => { $ crate :: ATOM_LOCALNAME__6D_65_72_72_6F_72 } ; +("meta") => { $ crate :: ATOM_LOCALNAME__6D_65_74_61 } ; +("meter") => { $ crate :: ATOM_LOCALNAME__6D_65_74_65_72 } ; +("method") => { $ crate :: ATOM_LOCALNAME__6D_65_74_68_6F_64 } ; +("mfenced") => { $ crate :: ATOM_LOCALNAME__6D_66_65_6E_63_65_64 } ; +("mfrac") => { $ crate :: ATOM_LOCALNAME__6D_66_72_61_63 } ; +("mglyph") => { $ crate :: ATOM_LOCALNAME__6D_67_6C_79_70_68 } ; +("mi") => { $ crate :: ATOM_LOCALNAME__6D_69 } ; +("min") => { $ crate :: ATOM_LOCALNAME__6D_69_6E } ; +("minsize") => { $ crate :: ATOM_LOCALNAME__6D_69_6E_73_69_7A_65 } ; +("minus") => { $ crate :: ATOM_LOCALNAME__6D_69_6E_75_73 } ; +("mn") => { $ crate :: ATOM_LOCALNAME__6D_6E } ; +("mo") => { $ crate :: ATOM_LOCALNAME__6D_6F } ; +("mode") => { $ crate :: ATOM_LOCALNAME__6D_6F_64_65 } ; +("moment") => { $ crate :: ATOM_LOCALNAME__6D_6F_6D_65_6E_74 } ; +("mover") => { $ crate :: ATOM_LOCALNAME__6D_6F_76_65_72 } ; +("mpadded") => { $ crate :: ATOM_LOCALNAME__6D_70_61_64_64_65_64 } ; +("mpath") => { $ crate :: ATOM_LOCALNAME__6D_70_61_74_68 } ; +("mroot") => { $ crate :: ATOM_LOCALNAME__6D_72_6F_6F_74 } ; +("mrow") => { $ crate :: ATOM_LOCALNAME__6D_72_6F_77 } ; +("ms") => { $ crate :: ATOM_LOCALNAME__6D_73 } ; +("mspace") => { $ crate :: ATOM_LOCALNAME__6D_73_70_61_63_65 } ; +("msqrt") => { $ crate :: ATOM_LOCALNAME__6D_73_71_72_74 } ; +("mstyle") => { $ crate :: ATOM_LOCALNAME__6D_73_74_79_6C_65 } ; +("msub") => { $ crate :: ATOM_LOCALNAME__6D_73_75_62 } ; +("msubsup") => { $ crate :: ATOM_LOCALNAME__6D_73_75_62_73_75_70 } ; +("msup") => { $ crate :: ATOM_LOCALNAME__6D_73_75_70 } ; +("mtable") => { $ crate :: ATOM_LOCALNAME__6D_74_61_62_6C_65 } ; +("mtd") => { $ crate :: ATOM_LOCALNAME__6D_74_64 } ; +("mtext") => { $ crate :: ATOM_LOCALNAME__6D_74_65_78_74 } ; +("mtr") => { $ crate :: ATOM_LOCALNAME__6D_74_72 } ; +("munder") => { $ crate :: ATOM_LOCALNAME__6D_75_6E_64_65_72 } ; +("muted") => { $ crate :: ATOM_LOCALNAME__6D_75_74_65_64 } ; +("name") => { $ crate :: ATOM_LOCALNAME__6E_61_6D_65 } ; +("nargs") => { $ crate :: ATOM_LOCALNAME__6E_61_72_67_73 } ; +("nav") => { $ crate :: ATOM_LOCALNAME__6E_61_76 } ; +("neq") => { $ crate :: ATOM_LOCALNAME__6E_65_71 } ; +("nest") => { $ crate :: ATOM_LOCALNAME__6E_65_73_74 } ; +("nextid") => { $ crate :: ATOM_LOCALNAME__6E_65_78_74_69_64 } ; +("nobr") => { $ crate :: ATOM_LOCALNAME__6E_6F_62_72 } ; +("noembed") => { $ crate :: ATOM_LOCALNAME__6E_6F_65_6D_62_65_64 } ; +("nohref") => { $ crate :: ATOM_LOCALNAME__6E_6F_68_72_65_66 } ; +("nonce") => { $ crate :: ATOM_LOCALNAME__6E_6F_6E_63_65 } ; +("none") => { $ crate :: ATOM_LOCALNAME__6E_6F_6E_65 } ; +("noshade") => { $ crate :: ATOM_LOCALNAME__6E_6F_73_68_61_64_65 } ; +("not") => { $ crate :: ATOM_LOCALNAME__6E_6F_74 } ; +("notin") => { $ crate :: ATOM_LOCALNAME__6E_6F_74_69_6E } ; +("nowrap") => { $ crate :: ATOM_LOCALNAME__6E_6F_77_72_61_70 } ; +("object") => { $ crate :: ATOM_LOCALNAME__6F_62_6A_65_63_74 } ; +("offset") => { $ crate :: ATOM_LOCALNAME__6F_66_66_73_65_74 } ; +("ol") => { $ crate :: ATOM_LOCALNAME__6F_6C } ; +("onabort") => { $ crate :: ATOM_LOCALNAME__6F_6E_61_62_6F_72_74 } ; +("onbegin") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_67_69_6E } ; +("onblur") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_6C_75_72 } ; +("onclick") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_6C_69_63_6B } ; +("oncopy") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_6F_70_79 } ; +("oncut") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_75_74 } ; +("ondrag") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67 } ; +("ondrop") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_6F_70 } ; +("onend") => { $ crate :: ATOM_LOCALNAME__6F_6E_65_6E_64 } ; +("onerror") => { $ crate :: ATOM_LOCALNAME__6F_6E_65_72_72_6F_72 } ; +("onfocus") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_6F_63_75_73 } ; +("onhelp") => { $ crate :: ATOM_LOCALNAME__6F_6E_68_65_6C_70 } ; +("oninput") => { $ crate :: ATOM_LOCALNAME__6F_6E_69_6E_70_75_74 } ; +("onkeyup") => { $ crate :: ATOM_LOCALNAME__6F_6E_6B_65_79_75_70 } ; +("onload") => { $ crate :: ATOM_LOCALNAME__6F_6E_6C_6F_61_64 } ; +("onmove") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_76_65 } ; +("onpaste") => { $ crate :: ATOM_LOCALNAME__6F_6E_70_61_73_74_65 } ; +("onreset") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_65_73_65_74 } ; +("onstart") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_74_61_72_74 } ; +("onstop") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_74_6F_70 } ; +("onzoom") => { $ crate :: ATOM_LOCALNAME__6F_6E_7A_6F_6F_6D } ; +("opacity") => { $ crate :: ATOM_LOCALNAME__6F_70_61_63_69_74_79 } ; +("open") => { $ crate :: ATOM_LOCALNAME__6F_70_65_6E } ; +("optimum") => { $ crate :: ATOM_LOCALNAME__6F_70_74_69_6D_75_6D } ; +("option") => { $ crate :: ATOM_LOCALNAME__6F_70_74_69_6F_6E } ; +("or") => { $ crate :: ATOM_LOCALNAME__6F_72 } ; +("order") => { $ crate :: ATOM_LOCALNAME__6F_72_64_65_72 } ; +("orient") => { $ crate :: ATOM_LOCALNAME__6F_72_69_65_6E_74 } ; +("origin") => { $ crate :: ATOM_LOCALNAME__6F_72_69_67_69_6E } ; +("other") => { $ crate :: ATOM_LOCALNAME__6F_74_68_65_72 } ; +("output") => { $ crate :: ATOM_LOCALNAME__6F_75_74_70_75_74 } ; +("p") => { $ crate :: ATOM_LOCALNAME__70 } ; +("param") => { $ crate :: ATOM_LOCALNAME__70_61_72_61_6D } ; +("parse") => { $ crate :: ATOM_LOCALNAME__70_61_72_73_65 } ; +("path") => { $ crate :: ATOM_LOCALNAME__70_61_74_68 } ; +("pattern") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E } ; +("pi") => { $ crate :: ATOM_LOCALNAME__70_69 } ; +("picture") => { $ crate :: ATOM_LOCALNAME__70_69_63_74_75_72_65 } ; +("piece") => { $ crate :: ATOM_LOCALNAME__70_69_65_63_65 } ; +("ping") => { $ crate :: ATOM_LOCALNAME__70_69_6E_67 } ; +("plus") => { $ crate :: ATOM_LOCALNAME__70_6C_75_73 } ; +("points") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73 } ; +("polygon") => { $ crate :: ATOM_LOCALNAME__70_6F_6C_79_67_6F_6E } ; +("poster") => { $ crate :: ATOM_LOCALNAME__70_6F_73_74_65_72 } ; +("power") => { $ crate :: ATOM_LOCALNAME__70_6F_77_65_72 } ; +("pre") => { $ crate :: ATOM_LOCALNAME__70_72_65 } ; +("preload") => { $ crate :: ATOM_LOCALNAME__70_72_65_6C_6F_61_64 } ; +("primes") => { $ crate :: ATOM_LOCALNAME__70_72_69_6D_65_73 } ; +("product") => { $ crate :: ATOM_LOCALNAME__70_72_6F_64_75_63_74 } ; +("profile") => { $ crate :: ATOM_LOCALNAME__70_72_6F_66_69_6C_65 } ; +("prompt") => { $ crate :: ATOM_LOCALNAME__70_72_6F_6D_70_74 } ; +("q") => { $ crate :: ATOM_LOCALNAME__71 } ; +("r") => { $ crate :: ATOM_LOCALNAME__72 } ; +("radius") => { $ crate :: ATOM_LOCALNAME__72_61_64_69_75_73 } ; +("rb") => { $ crate :: ATOM_LOCALNAME__72_62 } ; +("real") => { $ crate :: ATOM_LOCALNAME__72_65_61_6C } ; +("reals") => { $ crate :: ATOM_LOCALNAME__72_65_61_6C_73 } ; +("rect") => { $ crate :: ATOM_LOCALNAME__72_65_63_74 } ; +("refX") => { $ crate :: ATOM_LOCALNAME__72_65_66_58 } ; +("refY") => { $ crate :: ATOM_LOCALNAME__72_65_66_59 } ; +("refx") => { $ crate :: ATOM_LOCALNAME__72_65_66_78 } ; +("refy") => { $ crate :: ATOM_LOCALNAME__72_65_66_79 } ; +("rel") => { $ crate :: ATOM_LOCALNAME__72_65_6C } ; +("reln") => { $ crate :: ATOM_LOCALNAME__72_65_6C_6E } ; +("rem") => { $ crate :: ATOM_LOCALNAME__72_65_6D } ; +("repeat") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74 } ; +("replace") => { $ crate :: ATOM_LOCALNAME__72_65_70_6C_61_63_65 } ; +("restart") => { $ crate :: ATOM_LOCALNAME__72_65_73_74_61_72_74 } ; +("result") => { $ crate :: ATOM_LOCALNAME__72_65_73_75_6C_74 } ; +("rev") => { $ crate :: ATOM_LOCALNAME__72_65_76 } ; +("role") => { $ crate :: ATOM_LOCALNAME__72_6F_6C_65 } ; +("root") => { $ crate :: ATOM_LOCALNAME__72_6F_6F_74 } ; +("rotate") => { $ crate :: ATOM_LOCALNAME__72_6F_74_61_74_65 } ; +("rows") => { $ crate :: ATOM_LOCALNAME__72_6F_77_73 } ; +("rowspan") => { $ crate :: ATOM_LOCALNAME__72_6F_77_73_70_61_6E } ; +("rp") => { $ crate :: ATOM_LOCALNAME__72_70 } ; +("rquote") => { $ crate :: ATOM_LOCALNAME__72_71_75_6F_74_65 } ; +("rspace") => { $ crate :: ATOM_LOCALNAME__72_73_70_61_63_65 } ; +("rt") => { $ crate :: ATOM_LOCALNAME__72_74 } ; +("rtc") => { $ crate :: ATOM_LOCALNAME__72_74_63 } ; +("ruby") => { $ crate :: ATOM_LOCALNAME__72_75_62_79 } ; +("rule") => { $ crate :: ATOM_LOCALNAME__72_75_6C_65 } ; +("rules") => { $ crate :: ATOM_LOCALNAME__72_75_6C_65_73 } ; +("rx") => { $ crate :: ATOM_LOCALNAME__72_78 } ; +("ry") => { $ crate :: ATOM_LOCALNAME__72_79 } ; +("s") => { $ crate :: ATOM_LOCALNAME__73 } ; +("samp") => { $ crate :: ATOM_LOCALNAME__73_61_6D_70 } ; +("sandbox") => { $ crate :: ATOM_LOCALNAME__73_61_6E_64_62_6F_78 } ; +("scale") => { $ crate :: ATOM_LOCALNAME__73_63_61_6C_65 } ; +("scheme") => { $ crate :: ATOM_LOCALNAME__73_63_68_65_6D_65 } ; +("scope") => { $ crate :: ATOM_LOCALNAME__73_63_6F_70_65 } ; +("scoped") => { $ crate :: ATOM_LOCALNAME__73_63_6F_70_65_64 } ; +("script") => { $ crate :: ATOM_LOCALNAME__73_63_72_69_70_74 } ; +("sdev") => { $ crate :: ATOM_LOCALNAME__73_64_65_76 } ; +("search") => { $ crate :: ATOM_LOCALNAME__73_65_61_72_63_68 } ; +("sec") => { $ crate :: ATOM_LOCALNAME__73_65_63 } ; +("sech") => { $ crate :: ATOM_LOCALNAME__73_65_63_68 } ; +("section") => { $ crate :: ATOM_LOCALNAME__73_65_63_74_69_6F_6E } ; +("seed") => { $ crate :: ATOM_LOCALNAME__73_65_65_64 } ; +("select") => { $ crate :: ATOM_LOCALNAME__73_65_6C_65_63_74 } ; +("sep") => { $ crate :: ATOM_LOCALNAME__73_65_70 } ; +("set") => { $ crate :: ATOM_LOCALNAME__73_65_74 } ; +("setdiff") => { $ crate :: ATOM_LOCALNAME__73_65_74_64_69_66_66 } ; +("shape") => { $ crate :: ATOM_LOCALNAME__73_68_61_70_65 } ; +("show") => { $ crate :: ATOM_LOCALNAME__73_68_6F_77 } ; +("sin") => { $ crate :: ATOM_LOCALNAME__73_69_6E } ; +("sinh") => { $ crate :: ATOM_LOCALNAME__73_69_6E_68 } ; +("size") => { $ crate :: ATOM_LOCALNAME__73_69_7A_65 } ; +("sizes") => { $ crate :: ATOM_LOCALNAME__73_69_7A_65_73 } ; +("slope") => { $ crate :: ATOM_LOCALNAME__73_6C_6F_70_65 } ; +("slot") => { $ crate :: ATOM_LOCALNAME__73_6C_6F_74 } ; +("small") => { $ crate :: ATOM_LOCALNAME__73_6D_61_6C_6C } ; +("source") => { $ crate :: ATOM_LOCALNAME__73_6F_75_72_63_65 } ; +("space") => { $ crate :: ATOM_LOCALNAME__73_70_61_63_65 } ; +("spacer") => { $ crate :: ATOM_LOCALNAME__73_70_61_63_65_72 } ; +("spacing") => { $ crate :: ATOM_LOCALNAME__73_70_61_63_69_6E_67 } ; +("span") => { $ crate :: ATOM_LOCALNAME__73_70_61_6E } ; +("speed") => { $ crate :: ATOM_LOCALNAME__73_70_65_65_64 } ; +("src") => { $ crate :: ATOM_LOCALNAME__73_72_63 } ; +("srcdoc") => { $ crate :: ATOM_LOCALNAME__73_72_63_64_6F_63 } ; +("srclang") => { $ crate :: ATOM_LOCALNAME__73_72_63_6C_61_6E_67 } ; +("srcset") => { $ crate :: ATOM_LOCALNAME__73_72_63_73_65_74 } ; +("standby") => { $ crate :: ATOM_LOCALNAME__73_74_61_6E_64_62_79 } ; +("start") => { $ crate :: ATOM_LOCALNAME__73_74_61_72_74 } ; +("stemh") => { $ crate :: ATOM_LOCALNAME__73_74_65_6D_68 } ; +("stemv") => { $ crate :: ATOM_LOCALNAME__73_74_65_6D_76 } ; +("step") => { $ crate :: ATOM_LOCALNAME__73_74_65_70 } ; +("stop") => { $ crate :: ATOM_LOCALNAME__73_74_6F_70 } ; +("strike") => { $ crate :: ATOM_LOCALNAME__73_74_72_69_6B_65 } ; +("string") => { $ crate :: ATOM_LOCALNAME__73_74_72_69_6E_67 } ; +("stroke") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65 } ; +("strong") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6E_67 } ; +("style") => { $ crate :: ATOM_LOCALNAME__73_74_79_6C_65 } ; +("sub") => { $ crate :: ATOM_LOCALNAME__73_75_62 } ; +("subset") => { $ crate :: ATOM_LOCALNAME__73_75_62_73_65_74 } ; +("sum") => { $ crate :: ATOM_LOCALNAME__73_75_6D } ; +("summary") => { $ crate :: ATOM_LOCALNAME__73_75_6D_6D_61_72_79 } ; +("sup") => { $ crate :: ATOM_LOCALNAME__73_75_70 } ; +("svg") => { $ crate :: ATOM_LOCALNAME__73_76_67 } ; +("switch") => { $ crate :: ATOM_LOCALNAME__73_77_69_74_63_68 } ; +("symbol") => { $ crate :: ATOM_LOCALNAME__73_79_6D_62_6F_6C } ; +("table") => { $ crate :: ATOM_LOCALNAME__74_61_62_6C_65 } ; +("tan") => { $ crate :: ATOM_LOCALNAME__74_61_6E } ; +("tanh") => { $ crate :: ATOM_LOCALNAME__74_61_6E_68 } ; +("target") => { $ crate :: ATOM_LOCALNAME__74_61_72_67_65_74 } ; +("targetX") => { $ crate :: ATOM_LOCALNAME__74_61_72_67_65_74_58 } ; +("targetY") => { $ crate :: ATOM_LOCALNAME__74_61_72_67_65_74_59 } ; +("targetx") => { $ crate :: ATOM_LOCALNAME__74_61_72_67_65_74_78 } ; +("targety") => { $ crate :: ATOM_LOCALNAME__74_61_72_67_65_74_79 } ; +("tbody") => { $ crate :: ATOM_LOCALNAME__74_62_6F_64_79 } ; +("tbreak") => { $ crate :: ATOM_LOCALNAME__74_62_72_65_61_6B } ; +("td") => { $ crate :: ATOM_LOCALNAME__74_64 } ; +("tendsto") => { $ crate :: ATOM_LOCALNAME__74_65_6E_64_73_74_6F } ; +("text") => { $ crate :: ATOM_LOCALNAME__74_65_78_74 } ; +("tfoot") => { $ crate :: ATOM_LOCALNAME__74_66_6F_6F_74 } ; +("th") => { $ crate :: ATOM_LOCALNAME__74_68 } ; +("thead") => { $ crate :: ATOM_LOCALNAME__74_68_65_61_64 } ; +("time") => { $ crate :: ATOM_LOCALNAME__74_69_6D_65 } ; +("times") => { $ crate :: ATOM_LOCALNAME__74_69_6D_65_73 } ; +("title") => { $ crate :: ATOM_LOCALNAME__74_69_74_6C_65 } ; +("to") => { $ crate :: ATOM_LOCALNAME__74_6F } ; +("toggle") => { $ crate :: ATOM_LOCALNAME__74_6F_67_67_6C_65 } ; +("tr") => { $ crate :: ATOM_LOCALNAME__74_72 } ; +("track") => { $ crate :: ATOM_LOCALNAME__74_72_61_63_6B } ; +("tref") => { $ crate :: ATOM_LOCALNAME__74_72_65_66 } ; +("true") => { $ crate :: ATOM_LOCALNAME__74_72_75_65 } ; +("tspan") => { $ crate :: ATOM_LOCALNAME__74_73_70_61_6E } ; +("tt") => { $ crate :: ATOM_LOCALNAME__74_74 } ; +("type") => { $ crate :: ATOM_LOCALNAME__74_79_70_65 } ; +("u") => { $ crate :: ATOM_LOCALNAME__75 } ; +("u1") => { $ crate :: ATOM_LOCALNAME__75_31 } ; +("u2") => { $ crate :: ATOM_LOCALNAME__75_32 } ; +("ul") => { $ crate :: ATOM_LOCALNAME__75_6C } ; +("unicode") => { $ crate :: ATOM_LOCALNAME__75_6E_69_63_6F_64_65 } ; +("union") => { $ crate :: ATOM_LOCALNAME__75_6E_69_6F_6E } ; +("uplimit") => { $ crate :: ATOM_LOCALNAME__75_70_6C_69_6D_69_74 } ; +("use") => { $ crate :: ATOM_LOCALNAME__75_73_65 } ; +("usemap") => { $ crate :: ATOM_LOCALNAME__75_73_65_6D_61_70 } ; +("valign") => { $ crate :: ATOM_LOCALNAME__76_61_6C_69_67_6E } ; +("value") => { $ crate :: ATOM_LOCALNAME__76_61_6C_75_65 } ; +("values") => { $ crate :: ATOM_LOCALNAME__76_61_6C_75_65_73 } ; +("var") => { $ crate :: ATOM_LOCALNAME__76_61_72 } ; +("vector") => { $ crate :: ATOM_LOCALNAME__76_65_63_74_6F_72 } ; +("version") => { $ crate :: ATOM_LOCALNAME__76_65_72_73_69_6F_6E } ; +("video") => { $ crate :: ATOM_LOCALNAME__76_69_64_65_6F } ; +("view") => { $ crate :: ATOM_LOCALNAME__76_69_65_77 } ; +("viewBox") => { $ crate :: ATOM_LOCALNAME__76_69_65_77_42_6F_78 } ; +("viewbox") => { $ crate :: ATOM_LOCALNAME__76_69_65_77_62_6F_78 } ; +("vkern") => { $ crate :: ATOM_LOCALNAME__76_6B_65_72_6E } ; +("vlink") => { $ crate :: ATOM_LOCALNAME__76_6C_69_6E_6B } ; +("vspace") => { $ crate :: ATOM_LOCALNAME__76_73_70_61_63_65 } ; +("wbr") => { $ crate :: ATOM_LOCALNAME__77_62_72 } ; +("when") => { $ crate :: ATOM_LOCALNAME__77_68_65_6E } ; +("width") => { $ crate :: ATOM_LOCALNAME__77_69_64_74_68 } ; +("widths") => { $ crate :: ATOM_LOCALNAME__77_69_64_74_68_73 } ; +("wrap") => { $ crate :: ATOM_LOCALNAME__77_72_61_70 } ; +("x") => { $ crate :: ATOM_LOCALNAME__78 } ; +("x1") => { $ crate :: ATOM_LOCALNAME__78_31 } ; +("x2") => { $ crate :: ATOM_LOCALNAME__78_32 } ; +("xlink") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B } ; +("xmlns") => { $ crate :: ATOM_LOCALNAME__78_6D_6C_6E_73 } ; +("xmp") => { $ crate :: ATOM_LOCALNAME__78_6D_70 } ; +("xor") => { $ crate :: ATOM_LOCALNAME__78_6F_72 } ; +("xref") => { $ crate :: ATOM_LOCALNAME__78_72_65_66 } ; +("y") => { $ crate :: ATOM_LOCALNAME__79 } ; +("y1") => { $ crate :: ATOM_LOCALNAME__79_31 } ; +("y2") => { $ crate :: ATOM_LOCALNAME__79_32 } ; +("z") => { $ crate :: ATOM_LOCALNAME__7A } ; +}pub type Prefix = :: string_cache :: Atom < PrefixStaticSet > ; +# [derive (PartialEq , Eq , PartialOrd , Ord)] pub struct PrefixStaticSet ; +impl :: string_cache :: StaticAtomSet for PrefixStaticSet { fn get () -> & 'static :: string_cache :: PhfStrSet { static SET : :: string_cache :: PhfStrSet = :: string_cache :: PhfStrSet { key : 12913932095322966823u64 , disps : & [(0u32 , 0u32)] , atoms : & [""] , hashes : & [4082073077u32] } ; +& SET } fn empty_string_index () -> u32 { 0u32 } } pub const ATOM_PREFIX_ : Prefix = Prefix :: pack_static (0u32) ; +pub const ATOM_PREFIX__2A : Prefix = Prefix :: pack_inline (10752u64 , 1u8) ; +pub const ATOM_PREFIX__68_74_6D_6C : Prefix = Prefix :: pack_inline (465692813312u64 , 4u8) ; +pub const ATOM_PREFIX__6D_61_74_68_6D_6C : Prefix = Prefix :: pack_inline (30519592881319168u64 , 6u8) ; +pub const ATOM_PREFIX__73_76_67 : Prefix = Prefix :: pack_inline (1735815936u64 , 3u8) ; +pub const ATOM_PREFIX__78_6C_69_6E_6B : Prefix = Prefix :: pack_inline (118121959290880u64 , 5u8) ; +pub const ATOM_PREFIX__78_6D_6C : Prefix = Prefix :: pack_inline (1819113472u64 , 3u8) ; +pub const ATOM_PREFIX__78_6D_6C_6E_73 : Prefix = Prefix :: pack_inline (126918102710272u64 , 5u8) ; +# [doc = "Takes a namespace prefix string and returns its key in a string cache."] # [macro_export] macro_rules ! namespace_prefix { ("") => { $ crate :: ATOM_PREFIX_ } ; +("*") => { $ crate :: ATOM_PREFIX__2A } ; +("html") => { $ crate :: ATOM_PREFIX__68_74_6D_6C } ; +("mathml") => { $ crate :: ATOM_PREFIX__6D_61_74_68_6D_6C } ; +("svg") => { $ crate :: ATOM_PREFIX__73_76_67 } ; +("xlink") => { $ crate :: ATOM_PREFIX__78_6C_69_6E_6B } ; +("xml") => { $ crate :: ATOM_PREFIX__78_6D_6C } ; +("xmlns") => { $ crate :: ATOM_PREFIX__78_6D_6C_6E_73 } ; +}pub type Namespace = :: string_cache :: Atom < NamespaceStaticSet > ; +# [derive (PartialEq , Eq , PartialOrd , Ord)] pub struct NamespaceStaticSet ; +impl :: string_cache :: StaticAtomSet for NamespaceStaticSet { fn get () -> & 'static :: string_cache :: PhfStrSet { static SET : :: string_cache :: PhfStrSet = :: string_cache :: PhfStrSet { key : 15467950696543387533u64 , disps : & [(1u32 , 0u32) , (1u32 , 4u32)] , atoms : & ["http://www.w3.org/1999/xhtml", +"http://www.w3.org/2000/svg", +"http://www.w3.org/XML/1998/namespace", +"http://www.w3.org/1998/Math/MathML", +"http://www.w3.org/1999/xlink", +"", +"http://www.w3.org/2000/xmlns/"] , hashes : & [1895391709u32 , 3069293938u32 , 2770585642u32 , 1216229735u32 , 2535599242u32 , 811901650u32 , 830072559u32] } ; +& SET } fn empty_string_index () -> u32 { 5u32 } } pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_39_2F_78_68_74_6D_6C : Namespace = Namespace :: pack_static (0u32) ; +pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_32_30_30_30_2F_73_76_67 : Namespace = Namespace :: pack_static (1u32) ; +pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_58_4D_4C_2F_31_39_39_38_2F_6E_61_6D_65_73_70_61_63_65 : Namespace = Namespace :: pack_static (2u32) ; +pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_38_2F_4D_61_74_68_2F_4D_61_74_68_4D_4C : Namespace = Namespace :: pack_static (3u32) ; +pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_39_2F_78_6C_69_6E_6B : Namespace = Namespace :: pack_static (4u32) ; +pub const ATOM_NAMESPACE_ : Namespace = Namespace :: pack_static (5u32) ; +pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_32_30_30_30_2F_78_6D_6C_6E_73_2F : Namespace = Namespace :: pack_static (6u32) ; +pub const ATOM_NAMESPACE__2A : Namespace = Namespace :: pack_inline (10752u64 , 1u8) ; +# [doc = "Takes a namespace url string and returns its key in a string cache."] # [macro_export] macro_rules ! namespace_url { ("http://www.w3.org/1999/xhtml") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_39_2F_78_68_74_6D_6C } ; +("http://www.w3.org/2000/svg") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_32_30_30_30_2F_73_76_67 } ; +("http://www.w3.org/XML/1998/namespace") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_58_4D_4C_2F_31_39_39_38_2F_6E_61_6D_65_73_70_61_63_65 } ; +("http://www.w3.org/1998/Math/MathML") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_38_2F_4D_61_74_68_2F_4D_61_74_68_4D_4C } ; +("http://www.w3.org/1999/xlink") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_39_2F_78_6C_69_6E_6B } ; +("") => { $ crate :: ATOM_NAMESPACE_ } ; +("http://www.w3.org/2000/xmlns/") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_32_30_30_30_2F_78_6D_6C_6E_73_2F } ; +("*") => { $ crate :: ATOM_NAMESPACE__2A } ; +} + /// Maps the input of [`namespace_prefix!`](macro.namespace_prefix.html) to + /// the output of [`namespace_url!`](macro.namespace_url.html). + /// + #[macro_export] macro_rules! ns { + +() => { namespace_url!("") }; +(*) => { namespace_url!("*") }; +(html) => { namespace_url!("http://www.w3.org/1999/xhtml") }; +(xml) => { namespace_url!("http://www.w3.org/XML/1998/namespace") }; +(xmlns) => { namespace_url!("http://www.w3.org/2000/xmlns/") }; +(xlink) => { namespace_url!("http://www.w3.org/1999/xlink") }; +(svg) => { namespace_url!("http://www.w3.org/2000/svg") }; +(mathml) => { namespace_url!("http://www.w3.org/1998/Math/MathML") }; +} diff --git a/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/named_entities.rs b/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/named_entities.rs new file mode 100644 index 0000000..5c967d5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/named_entities.rs @@ -0,0 +1,11844 @@ + +/// A map of entity names to their codepoints. The second codepoint will +/// be 0 if the entity contains a single codepoint. Entities have their preceding '&' removed. +/// +/// # Examples +/// +/// ``` +/// use markup5ever::data::NAMED_ENTITIES; +/// +/// assert_eq!(NAMED_ENTITIES.get("gt;").unwrap(), &(62, 0)); +/// ``` + +pub static NAMED_ENTITIES: Map<&'static str, (u32, u32)> = ::phf::Map { + key: 12913932095322966823, + disps: &[ + (0, 147), + (0, 2), + (0, 236), + (0, 9), + (0, 66), + (0, 0), + (0, 38), + (0, 154), + (0, 0), + (0, 2), + (0, 777), + (0, 73), + (0, 65), + (0, 0), + (0, 1), + (0, 0), + (0, 24), + (0, 131), + (0, 0), + (0, 5), + (0, 0), + (0, 193), + (0, 25), + (0, 7), + (0, 442), + (0, 154), + (0, 240), + (0, 8), + (0, 6), + (0, 53), + (0, 17), + (0, 4), + (0, 35), + (0, 346), + (0, 91), + (0, 85), + (0, 89), + (0, 0), + (0, 787), + (0, 27), + (0, 1), + (0, 4), + (0, 7), + (0, 79), + (0, 7), + (0, 44), + (0, 82), + (0, 437), + (0, 4), + (0, 58), + (0, 3), + (0, 51), + (0, 1), + (0, 65), + (0, 249), + (0, 9), + (0, 1), + (0, 66), + (0, 30), + (0, 1244), + (0, 21), + (0, 1), + (0, 15), + (0, 510), + (0, 5), + (0, 0), + (0, 9), + (0, 0), + (0, 5), + (0, 86), + (0, 46), + (0, 118), + (0, 28), + (0, 30), + (0, 0), + (0, 0), + (0, 0), + (0, 1009), + (0, 1), + (0, 10), + (0, 259), + (0, 326), + (0, 29), + (0, 1), + (0, 0), + (0, 889), + (0, 9), + (0, 165), + (0, 73), + (0, 19), + (0, 69), + (0, 237), + (0, 6), + (0, 686), + (0, 2), + (0, 6), + (0, 83), + (0, 1955), + (0, 116), + (0, 161), + (0, 2), + (0, 88), + (0, 10), + (0, 1066), + (0, 1), + (0, 1414), + (0, 3), + (0, 57), + (0, 10), + (0, 9), + (0, 276), + (0, 464), + (0, 26), + (0, 458), + (0, 9), + (0, 699), + (0, 117), + (0, 1136), + (0, 26), + (0, 218), + (0, 31), + (0, 46), + (0, 261), + (0, 183), + (0, 319), + (0, 1553), + (0, 232), + (0, 1), + (0, 1279), + (0, 13), + (0, 8), + (0, 1), + (0, 1728), + (0, 600), + (0, 4), + (0, 584), + (0, 1), + (0, 146), + (0, 342), + (0, 1442), + (0, 223), + (0, 473), + (0, 230), + (0, 510), + (0, 19), + (0, 255), + (0, 90), + (0, 152), + (0, 1), + (0, 1773), + (0, 3333), + (0, 1), + (0, 1855), + (0, 30), + (0, 1151), + (0, 132), + (0, 980), + (0, 0), + (0, 11), + (0, 1021), + (0, 398), + (0, 2985), + (0, 936), + (0, 26), + (0, 1563), + (0, 15), + (0, 26), + (0, 2), + (0, 570), + (0, 868), + (0, 200), + (0, 302), + (0, 27), + (0, 686), + (0, 196), + (0, 16), + (0, 33), + (0, 19), + (0, 162), + (0, 11), + (0, 24), + (0, 8), + (0, 7), + (0, 83), + (0, 766), + (0, 8), + (0, 1639), + (0, 555), + (0, 191), + (0, 0), + (0, 4), + (0, 28), + (0, 32), + (0, 25), + (0, 564), + (0, 11), + (0, 3), + (0, 8), + (0, 25), + (0, 3), + (0, 225), + (0, 47), + (0, 274), + (0, 51), + (0, 60), + (0, 2), + (0, 142), + (0, 84), + (0, 1236), + (0, 374), + (0, 528), + (0, 742), + (0, 156), + (0, 1), + (0, 0), + (0, 148), + (0, 7), + (0, 1), + (0, 5), + (0, 174), + (0, 479), + (0, 465), + (0, 125), + (0, 94), + (0, 8), + (0, 63), + (0, 119), + (0, 844), + (0, 147), + (0, 1), + (0, 325), + (0, 224), + (0, 1), + (0, 757), + (0, 4), + (0, 2), + (0, 69), + (0, 17), + (0, 165), + (0, 118), + (0, 20), + (0, 88), + (0, 12), + (0, 184), + (0, 1), + (0, 349), + (0, 319), + (0, 22), + (0, 247), + (0, 15), + (0, 255), + (0, 0), + (0, 0), + (0, 4), + (0, 0), + (0, 1951), + (0, 18), + (0, 58), + (0, 620), + (0, 495), + (0, 5), + (0, 2), + (0, 1166), + (0, 2), + (0, 0), + (0, 29), + (0, 2), + (0, 51), + (0, 7), + (0, 1075), + (0, 48), + (0, 680), + (0, 2970), + (0, 1), + (0, 255), + (0, 16), + (0, 57), + (0, 13), + (0, 2), + (0, 364), + (0, 75), + (0, 1821), + (0, 1), + (0, 0), + (0, 2), + (0, 10), + (0, 372), + (0, 6), + (0, 123), + (0, 1753), + (0, 103), + (0, 2), + (0, 2), + (0, 441), + (0, 38), + (0, 3), + (0, 4), + (0, 79), + (0, 0), + (0, 1), + (0, 272), + (0, 3), + (0, 2), + (0, 0), + (0, 42), + (0, 522), + (0, 42), + (0, 462), + (0, 31), + (0, 3), + (0, 18), + (0, 88), + (0, 13), + (0, 47), + (0, 2005), + (0, 76), + (0, 88), + (0, 18), + (0, 36), + (0, 26), + (0, 29), + (0, 7), + (0, 47), + (0, 14), + (0, 46), + (0, 169), + (0, 205), + (0, 1), + (0, 100), + (0, 523), + (0, 93), + (0, 23), + (0, 6), + (0, 74), + (0, 1), + (0, 4), + (0, 4), + (0, 115), + (0, 6), + (0, 5511), + (0, 6), + (0, 815), + (0, 2), + (0, 123), + (0, 332), + (0, 693), + (0, 328), + (0, 752), + (0, 39), + (0, 13), + (0, 101), + (0, 0), + (0, 2031), + (0, 65), + (0, 842), + (0, 13), + (0, 5), + (0, 1114), + (0, 25), + (0, 167), + (0, 457), + (0, 828), + (0, 156), + (0, 2), + (0, 500), + (0, 0), + (0, 348), + (0, 0), + (0, 15), + (0, 4), + (0, 7), + (0, 0), + (0, 596), + (0, 531), + (0, 92), + (0, 79), + (0, 1122), + (0, 108), + (0, 44), + (0, 75), + (0, 225), + (0, 438), + (0, 37), + (0, 12), + (0, 1), + (0, 1095), + (0, 131), + (0, 36), + (0, 299), + (0, 784), + (0, 1576), + (0, 396), + (0, 6), + (0, 0), + (0, 219), + (0, 6), + (0, 233), + (0, 726), + (0, 22), + (0, 301), + (0, 28), + (0, 1363), + (0, 45), + (0, 1761), + (0, 0), + (0, 744), + (0, 25), + (0, 2), + (0, 10), + (0, 6), + (0, 2), + (0, 1417), + (0, 822), + (0, 101), + (0, 4), + (0, 60), + (0, 226), + (0, 28), + (0, 13), + (0, 598), + (0, 4), + (0, 75), + (0, 2555), + (0, 6), + (0, 0), + (0, 74), + (0, 256), + (0, 11), + (0, 0), + (0, 231), + (0, 0), + (0, 4), + (0, 409), + (0, 68), + (0, 19), + (0, 176), + (0, 1), + (0, 416), + (0, 903), + (0, 28), + (0, 4), + (0, 287), + (0, 1781), + (0, 2163), + (0, 19), + (0, 3), + (0, 173), + (0, 1), + (0, 195), + (0, 67), + (0, 14), + (0, 157), + (0, 1), + (0, 130), + (0, 44), + (0, 68), + (0, 19), + (0, 11), + (0, 14), + (0, 198), + (0, 2), + (0, 30), + (0, 457), + (0, 634), + (0, 365), + (0, 10), + (0, 68), + (0, 63), + (0, 850), + (0, 28), + (0, 57), + (0, 638), + (0, 33), + (0, 250), + (0, 228), + (0, 2719), + (0, 21), + (0, 1), + (0, 71), + (0, 0), + (0, 132), + (0, 551), + (0, 23), + (0, 0), + (0, 831), + (0, 3), + (0, 2), + (0, 0), + (0, 7), + (0, 4873), + (0, 285), + (0, 21), + (0, 232), + (0, 1950), + (0, 164), + (0, 33), + (0, 237), + (0, 0), + (0, 1755), + (0, 0), + (0, 1922), + (0, 80), + (0, 4), + (0, 319), + (0, 6), + (0, 65), + (0, 1664), + (0, 319), + (0, 176), + (0, 784), + (0, 4), + (0, 15), + (0, 15), + (0, 4), + (0, 1), + (0, 8), + (0, 1009), + (0, 123), + (0, 83), + (0, 0), + (0, 25), + (0, 66), + (0, 11), + (0, 18), + (0, 7), + (0, 136), + (0, 0), + (0, 6), + (0, 648), + (0, 424), + (0, 0), + (0, 100), + (0, 579), + (0, 74), + (0, 6), + (0, 188), + (0, 3469), + (0, 293), + (0, 1), + (0, 145), + (0, 87), + (0, 46), + (0, 1088), + (0, 45), + (0, 131), + (0, 2375), + (0, 87), + (0, 2), + (0, 0), + (0, 1), + (0, 0), + (0, 167), + (0, 29), + (0, 121), + (0, 249), + (0, 9), + (0, 260), + (0, 24), + (0, 143), + (0, 59), + (0, 321), + (0, 273), + (0, 86), + (0, 457), + (0, 1028), + (0, 1327), + (0, 1093), + (0, 53), + (0, 324), + (0, 17), + (0, 7), + (0, 441), + (0, 312), + (0, 701), + (0, 10), + (0, 473), + (0, 2398), + (0, 460), + (0, 0), + (0, 364), + (0, 394), + (0, 334), + (0, 156), + (0, 560), + (0, 366), + (0, 456), + (0, 609), + (0, 224), + (0, 51), + (0, 972), + (0, 48), + (0, 964), + (0, 0), + (0, 0), + (0, 1371), + (0, 104), + (0, 73), + (0, 463), + (0, 1), + (0, 24), + (0, 40), + (0, 2), + (0, 162), + (0, 1), + (0, 49), + (0, 0), + (0, 0), + (0, 352), + (0, 243), + (0, 679), + (0, 64), + (0, 473), + (0, 95), + (0, 215), + (0, 312), + (0, 141), + (0, 4), + (0, 1024), + (0, 0), + (0, 1211), + (0, 11), + (0, 8), + (0, 25), + (0, 194), + (0, 261), + (0, 25), + (0, 145), + (0, 69), + (0, 125), + (0, 1), + (0, 2), + (0, 198), + (0, 180), + (0, 350), + (0, 1), + (0, 36), + (0, 340), + (0, 29), + (0, 99), + (0, 868), + (0, 0), + (0, 542), + (0, 255), + (0, 273), + (0, 12), + (0, 975), + (0, 3664), + (0, 206), + (0, 240), + (0, 2), + (0, 838), + (0, 316), + (0, 107), + (0, 1), + (0, 53), + (0, 62), + (0, 3), + (0, 1500), + (0, 1009), + (0, 145), + (0, 243), + (0, 1418), + (0, 6), + (0, 51), + (0, 225), + (0, 85), + (0, 10), + (0, 1), + (0, 69), + (0, 36), + (0, 22), + (0, 3), + (0, 69), + (0, 8), + (0, 47), + (0, 1351), + (0, 283), + (0, 12), + (0, 226), + (0, 603), + (0, 62), + (0, 2070), + (0, 8), + (0, 2), + (0, 631), + (0, 276), + (0, 449), + (0, 115), + (0, 240), + (0, 27), + (0, 1106), + (0, 7), + (0, 1), + (0, 85), + (0, 0), + (0, 42), + (0, 7), + (0, 1), + (0, 1611), + (0, 17), + (0, 0), + (0, 1), + (0, 143), + (0, 257), + (0, 220), + (0, 397), + (0, 353), + (0, 1), + (0, 5), + (0, 935), + (0, 1), + (0, 9), + (0, 5), + (0, 53), + (0, 4), + (0, 2559), + (0, 37), + (0, 75), + (0, 540), + (0, 2488), + (0, 136), + (0, 236), + (0, 57), + (0, 12), + (0, 54), + (0, 14), + (0, 648), + (0, 4), + (0, 0), + (0, 9), + (0, 635), + (0, 0), + (0, 357), + (0, 115), + (0, 91), + (0, 7), + (0, 221), + (0, 892), + (0, 2383), + (0, 551), + (0, 29), + (0, 18), + (0, 1416), + (0, 2697), + (0, 69), + (0, 131), + (0, 97), + (0, 1671), + (0, 39), + (0, 0), + (0, 179), + (0, 0), + (0, 360), + (0, 144), + (0, 649), + (0, 1516), + (0, 163), + (0, 52), + (0, 5), + (0, 531), + (0, 1028), + (0, 121), + (0, 204), + (0, 364), + (0, 867), + (0, 123), + (0, 38), + (0, 8), + (0, 2334), + (0, 9), + (0, 34), + (0, 351), + (0, 166), + (0, 1), + (0, 902), + (0, 832), + (0, 117), + (0, 256), + (0, 41), + (0, 4846), + (0, 444), + (0, 225), + (0, 25), + (0, 0), + (0, 1963), + (0, 0), + (0, 1834), + (0, 90), + (0, 30), + (0, 1786), + (0, 6), + (0, 42), + (0, 284), + (0, 281), + (0, 192), + (0, 11), + (0, 187), + (0, 2), + (0, 7), + (0, 4), + (0, 33), + (0, 847), + (0, 1), + (0, 0), + (0, 223), + (0, 52), + (0, 979), + (0, 11), + (0, 6), + (0, 121), + (0, 337), + (0, 92), + (0, 49), + (0, 87), + (0, 596), + (0, 58), + (0, 0), + (0, 0), + (0, 30), + (0, 19), + (0, 4), + (0, 849), + (0, 0), + (0, 12), + (0, 145), + (0, 857), + (0, 1), + (0, 177), + (0, 45), + (0, 3), + (0, 18), + (0, 5), + (0, 59), + (0, 1254), + (0, 335), + (0, 16), + (0, 26), + (0, 15), + (0, 1733), + (0, 1), + (0, 0), + (0, 1006), + (0, 1001), + (0, 219), + (0, 12), + (0, 271), + (0, 5), + (0, 34), + (0, 7), + (0, 11), + (0, 1), + (0, 12), + (0, 102), + (0, 31), + (0, 65), + (0, 408), + (0, 12), + (0, 2), + (0, 88), + (0, 3280), + (0, 93), + (0, 4546), + (0, 1530), + (0, 14), + (0, 26), + (0, 34), + (0, 4), + (0, 1), + (0, 279), + (0, 696), + (0, 64), + (0, 221), + (0, 39), + (0, 71), + (0, 81), + (0, 0), + (0, 15), + (0, 210), + (0, 72), + (0, 696), + (0, 2337), + (0, 954), + (0, 170), + (0, 1415), + (0, 180), + (0, 2104), + (0, 4), + (0, 38), + (0, 2), + (0, 5), + (0, 14), + (0, 98), + (0, 1), + (0, 193), + (0, 188), + (0, 61), + (0, 91), + (0, 1085), + (0, 586), + (0, 20), + (0, 611), + (0, 33), + (0, 5063), + (0, 0), + (0, 3200), + (0, 22), + (0, 757), + (0, 51), + (0, 1), + (0, 6), + (0, 150), + (0, 7), + (0, 1), + (0, 51), + (0, 526), + (0, 30), + (0, 0), + (0, 193), + (0, 482), + (0, 38), + (0, 2391), + (0, 2), + (0, 27), + (0, 30), + (0, 35), + (0, 0), + (0, 0), + (0, 1), + (0, 131), + (0, 2952), + (0, 38), + (0, 215), + (0, 5), + (0, 0), + (0, 1659), + (0, 181), + (0, 39), + (0, 23), + (0, 14), + (0, 3862), + (0, 197), + (0, 1), + (0, 0), + (0, 2428), + (0, 239), + (0, 1), + (0, 0), + (0, 106), + (0, 0), + (0, 9), + (0, 0), + (0, 85), + (0, 867), + (0, 205), + (0, 138), + (0, 1413), + (0, 70), + (0, 498), + (0, 1), + (0, 2269), + (0, 16), + (0, 6), + (0, 0), + (0, 2), + (0, 30), + (0, 282), + (0, 566), + (0, 54), + (0, 54), + (0, 182), + (0, 131), + (0, 1240), + (0, 89), + (0, 15), + (0, 36), + (0, 450), + (0, 9), + (0, 79), + (0, 2435), + (0, 5), + (0, 1589), + (0, 2), + (0, 97), + (0, 962), + (0, 21), + (0, 36), + (0, 409), + (0, 537), + (0, 1068), + (0, 9), + (0, 126), + (0, 830), + (0, 1), + (0, 1392), + (0, 1), + (0, 55), + (0, 2), + (0, 1), + (0, 305), + (0, 3260), + (0, 427), + (0, 262), + (0, 5), + (0, 253), + (0, 879), + (0, 52), + (0, 160), + (0, 4056), + (0, 3806), + (0, 6), + (0, 1539), + (0, 9), + (0, 580), + (0, 198), + (0, 617), + (0, 65), + (0, 14), + (0, 2), + (0, 50), + (0, 0), + (0, 50), + (0, 32), + (0, 6), + (0, 1402), + (0, 1074), + (0, 4601), + (0, 230), + (0, 23), + (0, 40), + (0, 789), + (0, 938), + (0, 1555), + (0, 2), + (0, 594), + (0, 2), + (0, 14), + (0, 223), + (0, 8), + (0, 75), + (0, 1198), + (0, 136), + (0, 0), + (0, 3), + (0, 864), + (0, 137), + (0, 9290), + (0, 0), + (0, 209), + (0, 165), + (0, 836), + (0, 103), + (0, 720), + (0, 708), + (0, 2), + (0, 0), + (0, 150), + (0, 1021), + (0, 41), + (0, 3329), + (0, 1), + (0, 191), + (0, 1), + (0, 148), + (0, 27), + (0, 154), + (0, 1498), + (0, 733), + (0, 154), + (0, 1), + (0, 3982), + (0, 8095), + (0, 3), + (0, 67), + (0, 1001), + (0, 703), + (0, 756), + (0, 76), + (0, 34), + (0, 963), + (0, 1197), + (0, 0), + (0, 2), + (0, 121), + (0, 1062), + (0, 776), + (0, 145), + (0, 276), + (0, 0), + (0, 20), + (0, 5030), + (0, 100), + (0, 3104), + (0, 1), + (0, 1), + (0, 15), + (0, 0), + (0, 2313), + (0, 31), + (0, 5277), + (0, 11), + (0, 434), + (0, 112), + (0, 2), + (0, 635), + (0, 339), + (0, 1103), + (0, 23), + (0, 86), + (0, 1), + (0, 145), + (0, 61), + (0, 1242), + (0, 0), + (0, 0), + (0, 2), + (0, 4), + (0, 28), + (0, 7), + (0, 5580), + (0, 22), + (0, 1125), + (0, 20), + (0, 137), + (0, 3609), + (0, 131), + (0, 6), + (0, 0), + (0, 1289), + (0, 2), + (0, 1559), + (0, 598), + (0, 11), + (0, 1909), + (0, 1591), + (0, 22), + (0, 0), + (0, 23), + (0, 296), + (0, 19), + (0, 8441), + (0, 0), + (0, 9), + (0, 8), + (0, 2), + (0, 1993), + (0, 69), + (0, 19), + (0, 19), + (0, 5), + (0, 331), + (0, 16), + (0, 6), + (0, 3347), + (0, 49), + (0, 17), + (0, 1), + (0, 516), + (0, 156), + (0, 26), + (0, 501), + (0, 72), + (0, 106), + (0, 2), + (0, 336), + (0, 22), + (0, 0), + (0, 107), + (0, 939), + (0, 341), + (0, 19), + (0, 2877), + (0, 6), + (0, 177), + (0, 821), + (0, 1100), + (0, 194), + (0, 24), + (0, 599), + (0, 18), + (0, 21), + (0, 17), + (0, 42), + (0, 7), + (0, 86), + (0, 0), + (0, 238), + (0, 8), + (0, 5), + (0, 1), + (0, 68), + (0, 9193), + (0, 11), + (0, 6763), + (0, 158), + (0, 386), + (0, 4041), + (0, 63), + (0, 1819), + (0, 18), + (0, 0), + (0, 2036), + (0, 345), + (0, 2203), + (0, 113), + (0, 6), + (0, 371), + (0, 7), + (0, 194), + (0, 26), + (0, 3184), + (0, 185), + (0, 136), + (0, 35), + (0, 1883), + (0, 981), + (0, 1497), + (0, 140), + (0, 6), + (0, 0), + (0, 5), + (0, 4246), + (0, 121), + (0, 404), + (0, 398), + (0, 260), + (0, 368), + (0, 212), + (0, 2), + (0, 30), + (0, 45), + (0, 988), + (0, 82), + (0, 79), + (0, 1556), + (0, 5), + (0, 168), + (0, 0), + (0, 336), + (0, 1699), + (0, 141), + (0, 13), + (0, 0), + (0, 242), + (0, 40), + (0, 263), + (0, 6464), + (0, 1332), + (0, 4), + (0, 459), + (0, 7), + (0, 20), + (0, 1), + (0, 3523), + (0, 19), + (0, 0), + (0, 11), + (0, 8), + (0, 24), + (0, 608), + (0, 8), + (0, 50), + (0, 1), + (0, 2), + (0, 1723), + (0, 157), + (1, 108), + (0, 3), + (0, 0), + (0, 7122), + (0, 151), + (0, 4), + (0, 0), + (0, 1), + (0, 30), + (0, 5289), + (0, 2), + (0, 122), + (0, 66), + (0, 3), + (0, 7), + (0, 8258), + (0, 227), + (0, 3), + (0, 652), + (0, 574), + (0, 376), + (0, 522), + (0, 110), + (0, 1), + (0, 920), + (0, 2012), + (0, 4754), + (0, 412), + (0, 2774), + (0, 12), + (0, 1262), + (0, 144), + (0, 181), + (0, 94), + (0, 1903), + (0, 249), + (0, 8), + (0, 9), + (0, 96), + (0, 1323), + (0, 65), + (0, 20), + (0, 1270), + (0, 0), + (0, 1551), + (0, 13), + (0, 0), + (0, 5090), + (0, 2007), + (0, 6405), + (1, 891), + (0, 2327), + (0, 2029), + (0, 1078), + (0, 2), + (0, 3), + (0, 1), + (0, 661), + (0, 71), + (0, 43), + (0, 73), + (0, 12), + (0, 223), + (0, 90), + (0, 1360), + (0, 5), + (0, 329), + (0, 29), + (0, 398), + (0, 25), + (0, 14), + (0, 980), + (0, 271), + (0, 0), + (0, 466), + (0, 6142), + (0, 247), + (0, 172), + (0, 47), + (0, 38), + (0, 1576), + (0, 364), + (0, 4167), + (0, 3656), + (0, 3934), + (0, 721), + (0, 1329), + (0, 96), + (0, 625), + (0, 82), + (0, 72), + (0, 1763), + (0, 20), + (0, 947), + (0, 62), + (0, 478), + (0, 0), + (0, 1), + (0, 5), + (0, 1), + (0, 272), + (0, 1522), + (0, 857), + (0, 10), + (0, 4), + (0, 51), + (0, 252), + (0, 4), + (0, 90), + (0, 65), + (0, 1148), + (0, 990), + (0, 39), + (0, 6), + (0, 3926), + (0, 49), + (0, 1362), + (0, 9), + (0, 35), + (0, 0), + (0, 3880), + (0, 330), + (0, 32), + (0, 16), + (0, 5919), + (0, 22), + (0, 122), + (0, 3527), + (0, 16), + (0, 1085), + (0, 308), + (0, 134), + (0, 185), + (0, 138), + (0, 2443), + (0, 754), + (0, 506), + (0, 184), + (0, 6121), + (0, 1), + (0, 162), + (0, 17), + (0, 28), + (0, 17), + (0, 3843), + (0, 5), + (0, 158), + (0, 29), + (0, 42), + (0, 664), + (0, 388), + (0, 1209), + (0, 0), + (0, 1640), + (0, 58), + (0, 1), + (0, 18), + (0, 41), + (0, 7498), + (0, 7138), + (0, 5), + (0, 134), + (0, 9), + (0, 1), + (0, 207), + (0, 82), + (0, 7984), + (0, 42), + (0, 903), + (0, 258), + (0, 9392), + (0, 36), + (0, 46), + (0, 0), + (0, 228), + (0, 1633), + (0, 2445), + (0, 163), + (0, 885), + (0, 2340), + (0, 1173), + (0, 137), + (0, 5859), + (0, 202), + (0, 12), + (0, 1147), + (0, 3825), + (0, 525), + (0, 198), + (0, 182), + (0, 326), + (0, 210), + (0, 3107), + (0, 50), + (0, 257), + (0, 47), + (0, 832), + (0, 4166), + (0, 1592), + (0, 16), + (0, 10), + (1, 6970), + (0, 36), + (0, 16), + (0, 1), + (0, 9), + (0, 31), + (0, 4294), + (0, 4069), + (0, 28), + (0, 476), + (0, 2810), + (0, 403), + (0, 225), + (0, 583), + (0, 29), + (0, 261), + (0, 705), + (0, 5), + (0, 1938), + (0, 948), + (0, 7), + (0, 3653), + (0, 612), + (0, 7244), + (0, 29), + (0, 154), + (0, 111), + (0, 164), + (0, 61), + (0, 36), + (0, 226), + (0, 7905), + (0, 767), + (0, 0), + (0, 32), + (0, 6), + (0, 949), + (0, 2011), + (0, 25), + (0, 0), + (0, 27), + (0, 993), + (0, 108), + (0, 496), + (0, 2591), + (0, 2225), + (1, 1620), + (0, 182), + (0, 369), + (0, 2765), + (0, 165), + (0, 78), + (0, 313), + (0, 163), + (0, 26), + (0, 5609), + (0, 123), + (0, 8), + (0, 750), + (0, 3621), + (0, 272), + (0, 1), + (0, 0), + (0, 2785), + (0, 1), + (0, 9118), + (0, 1166), + (0, 1564), + (0, 0), + (0, 2468), + (0, 20), + (0, 4), + (0, 1506), + (1, 371), + (0, 533), + (0, 7), + (0, 38), + (0, 1051), + (0, 4), + (0, 7), + (0, 5), + (0, 1), + (0, 1177), + (0, 6404), + (0, 64), + (0, 51), + (0, 17), + (0, 4), + (0, 3), + (0, 0), + (0, 31), + (0, 367), + (0, 211), + (0, 1066), + (0, 693), + (0, 74), + (0, 1175), + (0, 25), + (0, 900), + (0, 1848), + (0, 19), + (0, 64), + (0, 18), + (0, 28), + (1, 4212), + (0, 1909), + (0, 1480), + (0, 176), + (0, 33), + (0, 0), + (0, 223), + (0, 2), + (0, 34), + (0, 444), + (0, 1564), + (0, 25), + (0, 1085), + (0, 808), + (0, 5), + (0, 0), + (0, 27), + (0, 6328), + (0, 9), + (0, 69), + (0, 282), + (0, 1832), + (1, 8685), + (0, 299), + (0, 6813), + (0, 4), + (0, 167), + (0, 348), + (0, 4403), + (1, 3801), + (0, 66), + (0, 6324), + (0, 1879), + (0, 33), + (0, 145), + (0, 180), + (0, 4675), + (0, 11), + (0, 0), + (0, 38), + (0, 1119), + (0, 100), + (0, 430), + (0, 843), + (0, 77), + (0, 8663), + (0, 7), + (0, 6805), + (1, 2379), + (0, 1556), + (0, 6029), + (0, 6596), + (0, 99), + (0, 6554), + (0, 1025), + (0, 1223), + (0, 58), + (0, 7), + (0, 737), + (0, 443), + (0, 407), + (0, 219), + (0, 2227), + (0, 2286), + (0, 4165), + (0, 54), + (0, 298), + (2, 3184), + (0, 185), + (0, 8251), + (0, 0), + (0, 33), + (0, 30), + (0, 2), + (0, 310), + (0, 802), + (0, 5196), + (0, 2985), + (0, 211), + (0, 66), + (0, 74), + (0, 97), + (0, 40), + (0, 1), + (0, 521), + (0, 8), + (0, 813), + (0, 974), + (0, 3396), + (1, 5828), + (0, 40), + (0, 277), + (0, 17), + (0, 597), + (0, 718), + (0, 280), + (0, 9), + (0, 4), + (0, 340), + (0, 0), + (0, 552), + (0, 1), + (0, 275), + (1, 5278), + (0, 58), + (0, 3), + (0, 5371), + (0, 1), + (0, 16), + (0, 162), + (1, 8009), + (0, 835), + (0, 4572), + (0, 242), + (0, 510), + (0, 1), + (0, 52), + (0, 57), + (0, 517), + (0, 4415), + (0, 16), + (0, 3225), + (0, 31), + (0, 99), + (0, 0), + (0, 146), + (0, 0), + (0, 161), + (0, 4), + (0, 4), + (0, 216), + (0, 0), + (0, 1160), + (0, 5675), + (0, 154), + (0, 112), + (0, 132), + (0, 2), + (0, 66), + (0, 53), + (0, 51), + (0, 0), + (0, 325), + (0, 2296), + (0, 109), + (0, 7514), + (0, 2850), + (0, 44), + (0, 1530), + (0, 248), + (0, 654), + (0, 44), + (0, 2282), + (0, 299), + (0, 2151), + (0, 2886), + (0, 114), + (0, 5823), + (0, 182), + (0, 872), + (0, 0), + (0, 3170), + (0, 0), + (0, 50), + (0, 71), + (0, 33), + (0, 11), + (0, 1), + (0, 1258), + (0, 14), + (0, 3255), + (0, 216), + (0, 6127), + (0, 2144), + (0, 0), + (0, 2588), + (0, 1169), + (0, 1311), + (0, 588), + (0, 5), + (0, 174), + (0, 1393), + (0, 63), + (0, 50), + (0, 3955), + (0, 473), + (0, 1519), + (0, 0), + (0, 327), + (0, 2475), + (0, 15), + (0, 0), + (2, 2826), + (0, 2896), + (0, 0), + (0, 7005), + (1, 2910), + (0, 217), + (0, 2121), + (0, 75), + (0, 336), + (0, 9830), + (1, 1127), + (0, 26), + (0, 250), + (0, 1550), + (0, 31), + (0, 170), + (0, 21), + (0, 3383), + (0, 3241), + (0, 8864), + (0, 426), + (0, 45), + (0, 5113), + (0, 622), + (0, 288), + (0, 3), + (0, 3236), + (0, 23), + (0, 3996), + (0, 2), + (0, 2), + (0, 584), + (0, 0), + (0, 4), + (0, 0), + (0, 6088), + (0, 5672), + (0, 3725), + (0, 1803), + (0, 230), + (0, 251), + (0, 725), + (0, 2059), + (0, 421), + (0, 86), + (0, 5), + (0, 6924), + (0, 28), + (0, 1440), + (0, 1976), + (0, 1836), + (0, 2), + (1, 1615), + (0, 4462), + (0, 4846), + (0, 5436), + (0, 123), + (1, 519), + (0, 87), + (0, 1595), + (0, 2401), + (0, 5), + (0, 0), + (1, 341), + (0, 4), + (0, 899), + (0, 1939), + (0, 2), + (0, 1105), + (0, 1273), + (0, 74), + (0, 56), + (0, 1685), + (0, 1154), + (0, 1130), + (0, 19), + (0, 5971), + (0, 2940), + (0, 8020), + (0, 0), + (0, 116), + (2, 5930), + (0, 41), + (0, 162), + (0, 57), + (0, 1375), + (0, 398), + (0, 4008), + (0, 9287), + (0, 817), + (0, 0), + (0, 2793), + (0, 556), + (0, 997), + (0, 282), + (0, 0), + (0, 553), + (0, 5742), + (0, 382), + (0, 6670), + (0, 5301), + (0, 0), + (2, 9658), + (0, 463), + (1, 2981), + (0, 3716), + (0, 4894), + (0, 35), + (1, 75), + (0, 86), + (0, 3384), + (0, 0), + (0, 73), + (0, 635), + (0, 2), + (0, 7793), + (1, 126), + (0, 21), + (0, 173), + (0, 505), + (0, 1558), + (0, 45), + (0, 3137), + (2, 9424), + (0, 4030), + (0, 1749), + (0, 172), + (0, 1309), + (0, 240), + (0, 735), + (0, 400), + (0, 4), + (0, 160), + (0, 0), + (0, 1), + (0, 105), + (0, 1), + (0, 5051), + (0, 365), + (0, 146), + (0, 30), + (0, 3), + (0, 470), + (0, 452), + (0, 1824), + (0, 1716), + (0, 15), + (0, 1028), + (0, 332), + (0, 3606), + (0, 19), + (0, 6), + (0, 405), + (0, 7770), + (0, 4300), + (0, 247), + (0, 7550), + (0, 6643), + (2, 1261), + (0, 7147), + (0, 30), + (0, 9), + (0, 223), + (0, 403), + (0, 372), + (3, 4276), + (0, 9288), + (0, 6212), + (0, 714), + (4, 6377), + (0, 4), + (0, 46), + (1, 8403), + (0, 142), + (0, 4462), + (0, 7581), + (0, 12), + (0, 0), + (0, 4864), + (0, 2961), + (0, 265), + (0, 19), + (0, 119), + (0, 5454), + (2, 2981), + (0, 3230), + (0, 3), + (0, 0), + (0, 6000), + (1, 9805), + (0, 354), + (0, 61), + (0, 8529), + (0, 0), + (0, 2076), + (0, 629), + (1, 1194), + (0, 3377), + (0, 0), + (0, 1956), + (0, 1749), + (3, 3998), + (0, 109), + (0, 16), + (0, 1467), + (0, 5195), + (0, 35), + (0, 9700), + (0, 4738), + ], + entries: &[ + ("blacktrianglel", (0, 0)), + ("sharp", (0, 0)), + ("bowtie", (0, 0)), + ("NotPrecedesSlantEqual;", (8928, 0)), + ("Aci", (0, 0)), + ("Atilde;", (195, 0)), + ("Zacute;", (377, 0)), + ("gvertn", (0, 0)), + ("ordm", (186, 0)), + ("LeftV", (0, 0)), + ("circlearrowl", (0, 0)), + ("updo", (0, 0)), + ("wcirc", (0, 0)), + ("gtlPar;", (10645, 0)), + ("leftharpoondow", (0, 0)), + ("NotGreaterLess", (0, 0)), + ("curlyeqpr", (0, 0)), + ("Downarrow", (0, 0)), + ("mdas", (0, 0)), + ("timesd;", (10800, 0)), + ("smash", (0, 0)), + ("VerticalL", (0, 0)), + ("LessSlantE", (0, 0)), + ("Lamb", (0, 0)), + ("prap;", (10935, 0)), + ("Updownarro", (0, 0)), + ("right", (0, 0)), + ("bull", (0, 0)), + ("plusdo", (0, 0)), + ("Iuk", (0, 0)), + ("xmap;", (10236, 0)), + ("We", (0, 0)), + ("iiiin", (0, 0)), + ("Rsh;", (8625, 0)), + ("sac", (0, 0)), + ("nVDash;", (8879, 0)), + ("ns", (0, 0)), + ("NotNestedGr", (0, 0)), + ("RightCe", (0, 0)), + ("lce", (0, 0)), + ("lb", (0, 0)), + ("dArr;", (8659, 0)), + ("Hfr;", (8460, 0)), + ("lnE", (0, 0)), + ("emsp14", (0, 0)), + ("Ubre", (0, 0)), + ("bumpE", (0, 0)), + ("DoubleDo", (0, 0)), + ("g", (0, 0)), + ("grave", (0, 0)), + ("DoubleDownAr", (0, 0)), + ("bigt", (0, 0)), + ("nbu", (0, 0)), + ("Becau", (0, 0)), + ("curvearrowright;", (8631, 0)), + ("RightDownVector", (0, 0)), + ("xwedge;", (8896, 0)), + ("CircleTi", (0, 0)), + ("dashv", (0, 0)), + ("CupCa", (0, 0)), + ("vpro", (0, 0)), + ("scsim", (0, 0)), + ("kgr", (0, 0)), + ("fpartint", (0, 0)), + ("ShortDo", (0, 0)), + ("iiot", (0, 0)), + ("escr", (0, 0)), + ("lmidot", (0, 0)), + ("na", (0, 0)), + ("bigcup;", (8899, 0)), + ("bn", (0, 0)), + ("gneq", (0, 0)), + ("rBar", (0, 0)), + ("preceq;", (10927, 0)), + ("MediumSp", (0, 0)), + ("Ha", (0, 0)), + ("xve", (0, 0)), + ("tce", (0, 0)), + ("bsim", (0, 0)), + ("NotGreaterSlantEq", (0, 0)), + ("LeftAngleBra", (0, 0)), + ("nat", (0, 0)), + ("Acirc", (194, 0)), + ("Kappa", (0, 0)), + ("Uscr", (0, 0)), + ("intca", (0, 0)), + ("cylct", (0, 0)), + ("blk14", (0, 0)), + ("vdash", (0, 0)), + ("Laplacetr", (0, 0)), + ("Imaginar", (0, 0)), + ("Uma", (0, 0)), + ("DoubleLongRightArrow", (0, 0)), + ("lurd", (0, 0)), + ("icirc", (238, 0)), + ("lsquor;", (8218, 0)), + ("Idot", (0, 0)), + ("LessFull", (0, 0)), + ("ShortRightAr", (0, 0)), + ("DownLeftTeeVe", (0, 0)), + ("iiiint;", (10764, 0)), + ("ods", (0, 0)), + ("cwcon", (0, 0)), + ("ruluha", (0, 0)), + ("leftrightsquiga", (0, 0)), + ("odash", (0, 0)), + ("gel", (0, 0)), + ("Bu", (0, 0)), + ("xscr;", (120013, 0)), + ("succn", (0, 0)), + ("capdot;", (10816, 0)), + ("rat", (0, 0)), + ("topfor", (0, 0)), + ("NestedG", (0, 0)), + ("ContourIn", (0, 0)), + ("EqualT", (0, 0)), + ("Gscr;", (119970, 0)), + ("UpperLeftAr", (0, 0)), + ("pc", (0, 0)), + ("drcro", (0, 0)), + ("Vsc", (0, 0)), + ("thetasy", (0, 0)), + ("Clockwise", (0, 0)), + ("bigvee;", (8897, 0)), + ("jopf;", (120155, 0)), + ("Hcir", (0, 0)), + ("sw", (0, 0)), + ("Upsilon", (0, 0)), + ("CounterClockwiseContourIntegral;", (8755, 0)), + ("plusdu", (0, 0)), + ("searr;", (8600, 0)), + ("mnplus;", (8723, 0)), + ("shchc", (0, 0)), + ("clubsuit", (0, 0)), + ("epars", (0, 0)), + ("SquareUni", (0, 0)), + ("NotSubs", (0, 0)), + ("nltr", (0, 0)), + ("curly", (0, 0)), + ("NotGreater", (0, 0)), + ("DoubleLe", (0, 0)), + ("DoubleLongLeftRigh", (0, 0)), + ("ori", (0, 0)), + ("LeftAngl", (0, 0)), + ("jma", (0, 0)), + ("SquareSubs", (0, 0)), + ("Or", (0, 0)), + ("gna", (0, 0)), + ("circledast", (0, 0)), + ("RightUpVe", (0, 0)), + ("leftt", (0, 0)), + ("EmptySmallS", (0, 0)), + ("natu", (0, 0)), + ("succe", (0, 0)), + ("downdownar", (0, 0)), + ("Ogr", (0, 0)), + ("GT", (62, 0)), + ("YAcy;", (1071, 0)), + ("lcedil", (0, 0)), + ("clu", (0, 0)), + ("sd", (0, 0)), + ("nprec;", (8832, 0)), + ("NotSucceedsEq", (0, 0)), + ("slar", (0, 0)), + ("LongLeftRightA", (0, 0)), + ("smt;", (10922, 0)), + ("UnionPlus", (0, 0)), + ("col", (0, 0)), + ("clubsu", (0, 0)), + ("ruluh", (0, 0)), + ("vprop;", (8733, 0)), + ("gtreqles", (0, 0)), + ("succcurl", (0, 0)), + ("dotminus;", (8760, 0)), + ("DoubleLeftTee", (0, 0)), + ("duhar;", (10607, 0)), + ("Suc", (0, 0)), + ("DiacriticalDoubleAc", (0, 0)), + ("eqcolon;", (8789, 0)), + ("upharpoo", (0, 0)), + ("looparrow", (0, 0)), + ("ycirc;", (375, 0)), + ("gtra", (0, 0)), + ("succnsim;", (8937, 0)), + ("LeftRightV", (0, 0)), + ("dag", (0, 0)), + ("NotLessSlantEqual", (0, 0)), + ("varsigm", (0, 0)), + ("m", (0, 0)), + ("ouml", (246, 0)), + ("hkse", (0, 0)), + ("NotEqualTilde", (0, 0)), + ("NotGreaterTi", (0, 0)), + ("approxe", (0, 0)), + ("LeftTeeVe", (0, 0)), + ("sem", (0, 0)), + ("ou", (0, 0)), + ("straight", (0, 0)), + ("scc", (0, 0)), + ("ReverseElem", (0, 0)), + ("curlyeqprec;", (8926, 0)), + ("efr;", (120098, 0)), + ("ropl", (0, 0)), + ("downarro", (0, 0)), + ("Tild", (0, 0)), + ("SquareSubsetEqual;", (8849, 0)), + ("NotV", (0, 0)), + ("Ea", (0, 0)), + ("Lopf", (0, 0)), + ("swarr;", (8601, 0)), + ("rtimes;", (8906, 0)), + ("h", (0, 0)), + ("ntlg;", (8824, 0)), + ("Omicron;", (927, 0)), + ("Map;", (10501, 0)), + ("Gce", (0, 0)), + ("ZeroWidthSpac", (0, 0)), + ("Topf;", (120139, 0)), + ("ic", (0, 0)), + ("uarr;", (8593, 0)), + ("util", (0, 0)), + ("frac13", (0, 0)), + ("Longleftrightarro", (0, 0)), + ("Ufr", (0, 0)), + ("infin", (0, 0)), + ("Eq", (0, 0)), + ("cudarrl;", (10552, 0)), + ("Beta", (0, 0)), + ("NotEl", (0, 0)), + ("KHcy;", (1061, 0)), + ("diamonds", (0, 0)), + ("cca", (0, 0)), + ("LessF", (0, 0)), + ("nshortparallel;", (8742, 0)), + ("vsc", (0, 0)), + ("OverParenthe", (0, 0)), + ("Diamond", (0, 0)), + ("RightTri", (0, 0)), + ("iscr", (0, 0)), + ("HumpEqu", (0, 0)), + ("centerdot;", (183, 0)), + ("DownArrowUpA", (0, 0)), + ("lagran;", (8466, 0)), + ("dotpl", (0, 0)), + ("ulcorne", (0, 0)), + ("UpperLeftArr", (0, 0)), + ("lAarr", (0, 0)), + ("lhb", (0, 0)), + ("supnE", (0, 0)), + ("Brev", (0, 0)), + ("ulco", (0, 0)), + ("ccap", (0, 0)), + ("OverBracket", (0, 0)), + ("lArr", (0, 0)), + ("supplus", (0, 0)), + ("expe", (0, 0)), + ("expecta", (0, 0)), + ("om", (0, 0)), + ("eg;", (10906, 0)), + ("Ici", (0, 0)), + ("leftthreetime", (0, 0)), + ("iprod", (0, 0)), + ("ssetmn;", (8726, 0)), + ("A", (0, 0)), + ("ntrianglelefteq;", (8940, 0)), + ("Laplac", (0, 0)), + ("smeparsl;", (10724, 0)), + ("RightT", (0, 0)), + ("rsq", (0, 0)), + ("LeftUpDownVector;", (10577, 0)), + ("Rcedil;", (342, 0)), + ("Iot", (0, 0)), + ("NotSucceeds;", (8833, 0)), + ("uum", (0, 0)), + ("Llef", (0, 0)), + ("NegativeThinS", (0, 0)), + ("fj", (0, 0)), + ("breve", (0, 0)), + ("tbr", (0, 0)), + ("bkarow;", (10509, 0)), + ("NotSquare", (0, 0)), + ("RightArrowBar;", (8677, 0)), + ("RightDownVecto", (0, 0)), + ("Fi", (0, 0)), + ("Kfr", (0, 0)), + ("rightarrow;", (8594, 0)), + ("UpEquilib", (0, 0)), + ("leftrightsqu", (0, 0)), + ("succcurlye", (0, 0)), + ("blacktrianglele", (0, 0)), + ("Lcedi", (0, 0)), + ("djcy", (0, 0)), + ("ndash", (0, 0)), + ("LeftUpDownV", (0, 0)), + ("LessSlantEqu", (0, 0)), + ("RightDownTe", (0, 0)), + ("Ycy", (0, 0)), + ("exc", (0, 0)), + ("lef", (0, 0)), + ("ratai", (0, 0)), + ("LessFullEqual", (0, 0)), + ("icirc;", (238, 0)), + ("Nf", (0, 0)), + ("NotLessGr", (0, 0)), + ("gtreq", (0, 0)), + ("nvDa", (0, 0)), + ("Gcirc", (0, 0)), + ("otil", (0, 0)), + ("Hf", (0, 0)), + ("LeftUpTe", (0, 0)), + ("ThinSpace;", (8201, 0)), + ("el;", (10905, 0)), + ("Qf", (0, 0)), + ("backprime", (0, 0)), + ("LeftTr", (0, 0)), + ("DownRig", (0, 0)), + ("xhArr;", (10234, 0)), + ("Rop", (0, 0)), + ("DownTeeArrow", (0, 0)), + ("lozeng", (0, 0)), + ("CloseCurlyDoubleQu", (0, 0)), + ("Kcy", (0, 0)), + ("gsc", (0, 0)), + ("ReverseEquilibriu", (0, 0)), + ("GreaterSla", (0, 0)), + ("larrsim", (0, 0)), + ("vangrt;", (10652, 0)), + ("Rcaro", (0, 0)), + ("nco", (0, 0)), + ("LessEqual", (0, 0)), + ("uHar;", (10595, 0)), + ("andd", (0, 0)), + ("hstrok;", (295, 0)), + ("hyb", (0, 0)), + ("PrecedesTild", (0, 0)), + ("rangle;", (10217, 0)), + ("ContourIntegr", (0, 0)), + ("RBarr", (0, 0)), + ("Vscr", (0, 0)), + ("Negativ", (0, 0)), + ("Yo", (0, 0)), + ("cula", (0, 0)), + ("nGt", (0, 0)), + ("lesseqqg", (0, 0)), + ("rscr;", (120007, 0)), + ("nesim", (0, 0)), + ("LeftDownTeeVector;", (10593, 0)), + ("barv", (0, 0)), + ("succnapprox;", (10938, 0)), + ("lbrksld;", (10639, 0)), + ("triangl", (0, 0)), + ("CircleDo", (0, 0)), + ("xlarr", (0, 0)), + ("larrbf", (0, 0)), + ("larr", (0, 0)), + ("fal", (0, 0)), + ("Triple", (0, 0)), + ("opar", (0, 0)), + ("Uci", (0, 0)), + ("Roun", (0, 0)), + ("DoubleRightAr", (0, 0)), + ("planckh", (0, 0)), + ("EmptyVer", (0, 0)), + ("Prim", (0, 0)), + ("apo", (0, 0)), + ("RightTriangleEqua", (0, 0)), + ("blackt", (0, 0)), + ("Diac", (0, 0)), + ("UnderBracket", (0, 0)), + ("larrlp", (0, 0)), + ("Dot;", (168, 0)), + ("asympeq", (0, 0)), + ("mDDo", (0, 0)), + ("Uuml;", (220, 0)), + ("Tce", (0, 0)), + ("Integral", (0, 0)), + ("llcor", (0, 0)), + ("Prece", (0, 0)), + ("Part", (0, 0)), + ("herco", (0, 0)), + ("cacute", (0, 0)), + ("profli", (0, 0)), + ("of", (0, 0)), + ("uopf", (0, 0)), + ("Ti", (0, 0)), + ("edot;", (279, 0)), + ("drcor", (0, 0)), + ("RightArrowLeftArro", (0, 0)), + ("rightsquigarrow;", (8605, 0)), + ("upuparr", (0, 0)), + ("queste", (0, 0)), + ("Longleft", (0, 0)), + ("laemptyv", (0, 0)), + ("trie", (0, 0)), + ("hAr", (0, 0)), + ("xutr", (0, 0)), + ("siml;", (10909, 0)), + ("sup1", (185, 0)), + ("PrecedesSlan", (0, 0)), + ("Ntilde", (209, 0)), + ("uwa", (0, 0)), + ("frac34", (190, 0)), + ("boxVR;", (9568, 0)), + ("zig", (0, 0)), + ("dotsqua", (0, 0)), + ("dtr", (0, 0)), + ("Diacritic", (0, 0)), + ("gjcy;", (1107, 0)), + ("epsiv;", (1013, 0)), + ("IE", (0, 0)), + ("boxDR", (0, 0)), + ("fa", (0, 0)), + ("npara", (0, 0)), + ("frac45", (0, 0)), + ("pi;", (960, 0)), + ("cirmi", (0, 0)), + ("leftthreeti", (0, 0)), + ("bigotimes", (0, 0)), + ("bigsqc", (0, 0)), + ("xlarr;", (10229, 0)), + ("lhbl", (0, 0)), + ("ldc", (0, 0)), + ("ugrave;", (249, 0)), + ("NotHumpDownHump;", (8782, 824)), + ("Rho;", (929, 0)), + ("rarrs", (0, 0)), + ("NotLessS", (0, 0)), + ("inca", (0, 0)), + ("RoundImplies", (0, 0)), + ("FilledVerySmallS", (0, 0)), + ("esi", (0, 0)), + ("orslo", (0, 0)), + ("ddag", (0, 0)), + ("curre", (0, 0)), + ("uuarr;", (8648, 0)), + ("up", (0, 0)), + ("ccar", (0, 0)), + ("ri", (0, 0)), + ("lhard", (0, 0)), + ("nles", (0, 0)), + ("Utild", (0, 0)), + ("eqcirc;", (8790, 0)), + ("ltime", (0, 0)), + ("yacy;", (1103, 0)), + ("malt;", (10016, 0)), + ("aac", (0, 0)), + ("RoundImp", (0, 0)), + ("phmmat", (0, 0)), + ("RightDownTeeVect", (0, 0)), + ("cap;", (8745, 0)), + ("jm", (0, 0)), + ("looparrowle", (0, 0)), + ("profline;", (8978, 0)), + ("plus", (0, 0)), + ("straightepsi", (0, 0)), + ("RightCeili", (0, 0)), + ("awconin", (0, 0)), + ("mapstodown", (0, 0)), + ("triangleleft", (0, 0)), + ("gc", (0, 0)), + ("oo", (0, 0)), + ("zet", (0, 0)), + ("setmin", (0, 0)), + ("twix", (0, 0)), + ("mapstoleft", (0, 0)), + ("LowerLeftArrow", (0, 0)), + ("sqsub", (0, 0)), + ("iocy", (0, 0)), + ("imagpar", (0, 0)), + ("softcy", (0, 0)), + ("acd;", (8767, 0)), + ("Ium", (0, 0)), + ("DoubleLongRightArrow;", (10233, 0)), + ("Pri", (0, 0)), + ("tfr", (0, 0)), + ("DoubleLo", (0, 0)), + ("Tilde;", (8764, 0)), + ("Equal", (0, 0)), + ("Iu", (0, 0)), + ("Hs", (0, 0)), + ("nvl", (0, 0)), + ("ClockwiseContourIntegra", (0, 0)), + ("RightTriangleBar", (0, 0)), + ("downharpoonle", (0, 0)), + ("expec", (0, 0)), + ("bigotim", (0, 0)), + ("AMP;", (38, 0)), + ("boxH;", (9552, 0)), + ("Intersectio", (0, 0)), + ("aum", (0, 0)), + ("niv", (0, 0)), + ("nlefta", (0, 0)), + ("lesseq", (0, 0)), + ("mar", (0, 0)), + ("male", (0, 0)), + ("curlyeqpre", (0, 0)), + ("LowerRight", (0, 0)), + ("lon", (0, 0)), + ("Exponenti", (0, 0)), + ("nexist", (0, 0)), + ("siml", (0, 0)), + ("NotGreaterT", (0, 0)), + ("rfloor;", (8971, 0)), + ("Bsc", (0, 0)), + ("Otim", (0, 0)), + ("capbrcup", (0, 0)), + ("varkappa;", (1008, 0)), + ("circ", (0, 0)), + ("plan", (0, 0)), + ("Sacu", (0, 0)), + ("varsig", (0, 0)), + ("RoundImpli", (0, 0)), + ("jsercy;", (1112, 0)), + ("di", (0, 0)), + ("bepsi", (0, 0)), + ("hearts", (0, 0)), + ("nleqsla", (0, 0)), + ("RuleDel", (0, 0)), + ("boxhd", (0, 0)), + ("profl", (0, 0)), + ("downharpo", (0, 0)), + ("raemptyv;", (10675, 0)), + ("ominus", (0, 0)), + ("bsolb;", (10693, 0)), + ("straightepsilon;", (1013, 0)), + ("nsub", (0, 0)), + ("DoubleLongLeftArro", (0, 0)), + ("ensp", (0, 0)), + ("Aopf", (0, 0)), + ("gacute", (0, 0)), + ("Colone;", (10868, 0)), + ("zw", (0, 0)), + ("leftharpoo", (0, 0)), + ("UpArrowDownAr", (0, 0)), + ("IEcy", (0, 0)), + ("shortpar", (0, 0)), + ("nGtv;", (8811, 824)), + ("downh", (0, 0)), + ("commat;", (64, 0)), + ("ContourIntegral;", (8750, 0)), + ("eacut", (0, 0)), + ("gnapprox;", (10890, 0)), + ("breve;", (728, 0)), + ("iinf", (0, 0)), + ("hom", (0, 0)), + ("nlA", (0, 0)), + ("cupdo", (0, 0)), + ("ee", (0, 0)), + ("TScy;", (1062, 0)), + ("LeftDoubl", (0, 0)), + ("Succee", (0, 0)), + ("curlyv", (0, 0)), + ("rightarro", (0, 0)), + ("rbrace", (0, 0)), + ("NotGreaterFullE", (0, 0)), + ("quest;", (63, 0)), + ("cuvee", (0, 0)), + ("Cou", (0, 0)), + ("ReverseE", (0, 0)), + ("barwedg", (0, 0)), + ("succc", (0, 0)), + ("B", (0, 0)), + ("Uring", (0, 0)), + ("supne;", (8843, 0)), + ("capca", (0, 0)), + ("ohba", (0, 0)), + ("CloseCurlyQuote", (0, 0)), + ("nleqs", (0, 0)), + ("thksi", (0, 0)), + ("dol", (0, 0)), + ("ro", (0, 0)), + ("NotSucceedsSlantEqu", (0, 0)), + ("VerticalTi", (0, 0)), + ("LessGrea", (0, 0)), + ("copro", (0, 0)), + ("LessSlantEqual", (0, 0)), + ("upsilo", (0, 0)), + ("osol", (0, 0)), + ("peri", (0, 0)), + ("NotTildeE", (0, 0)), + ("varsupse", (0, 0)), + ("Eogon;", (280, 0)), + ("Ys", (0, 0)), + ("NotGreaterSlant", (0, 0)), + ("PrecedesEqual;", (10927, 0)), + ("FilledSmall", (0, 0)), + ("updownarrow;", (8597, 0)), + ("cupdot;", (8845, 0)), + ("Verb", (0, 0)), + ("subse", (0, 0)), + ("swar", (0, 0)), + ("pop", (0, 0)), + ("YAcy", (0, 0)), + ("PrecedesEqual", (0, 0)), + ("rHa", (0, 0)), + ("Bernoullis;", (8492, 0)), + ("DownRigh", (0, 0)), + ("circlearrowlef", (0, 0)), + ("hair", (0, 0)), + ("odi", (0, 0)), + ("NotTildeFullEqu", (0, 0)), + ("ntrianglele", (0, 0)), + ("Verbar;", (8214, 0)), + ("llcorner;", (8990, 0)), + ("AMP", (38, 0)), + ("hardc", (0, 0)), + ("LessFullEqu", (0, 0)), + ("ucy", (0, 0)), + ("rtri", (0, 0)), + ("Longleftarrow;", (10232, 0)), + ("SquareSupersetE", (0, 0)), + ("gesles;", (10900, 0)), + ("gg", (0, 0)), + ("Nscr;", (119977, 0)), + ("sqsubsete", (0, 0)), + ("twoheadrig", (0, 0)), + ("curvear", (0, 0)), + ("eqcirc", (0, 0)), + ("ClockwiseContourInt", (0, 0)), + ("Mop", (0, 0)), + ("pointint", (0, 0)), + ("NotTild", (0, 0)), + ("empt", (0, 0)), + ("Sma", (0, 0)), + ("aleph;", (8501, 0)), + ("copysr;", (8471, 0)), + ("la", (0, 0)), + ("lAa", (0, 0)), + ("Iop", (0, 0)), + ("CloseCurlyDoubleQuot", (0, 0)), + ("ltrie;", (8884, 0)), + ("rul", (0, 0)), + ("Umacr;", (362, 0)), + ("NJcy;", (1034, 0)), + ("NotSupersetEqual;", (8841, 0)), + ("rlar", (0, 0)), + ("NotPrecedesEqual", (0, 0)), + ("sopf;", (120164, 0)), + ("fork;", (8916, 0)), + ("Jopf;", (120129, 0)), + ("nsccue", (0, 0)), + ("leftrightarrow;", (8596, 0)), + ("ForAll", (0, 0)), + ("urin", (0, 0)), + ("nvap", (0, 0)), + ("squf;", (9642, 0)), + ("Gbreve", (0, 0)), + ("lmidot;", (320, 0)), + ("mapstoleft;", (8612, 0)), + ("er", (0, 0)), + ("LeftDownTeeVe", (0, 0)), + ("ominu", (0, 0)), + ("sharp;", (9839, 0)), + ("ccaps;", (10829, 0)), + ("Thet", (0, 0)), + ("Upsilo", (0, 0)), + ("rightharpoonup;", (8640, 0)), + ("spades;", (9824, 0)), + ("rightharpoond", (0, 0)), + ("SquareSubset;", (8847, 0)), + ("yscr;", (120014, 0)), + ("iac", (0, 0)), + ("permil", (0, 0)), + ("Rsh", (0, 0)), + ("rangd", (0, 0)), + ("els", (0, 0)), + ("cuepr", (0, 0)), + ("Ama", (0, 0)), + ("TripleDot;", (8411, 0)), + ("OpenCurlyDoubleQuote;", (8220, 0)), + ("gesl;", (8923, 65024)), + ("yci", (0, 0)), + ("nlAr", (0, 0)), + ("notnivc", (0, 0)), + ("gscr;", (8458, 0)), + ("NegativeMe", (0, 0)), + ("twi", (0, 0)), + ("lvertneqq", (0, 0)), + ("eth", (240, 0)), + ("Pi", (0, 0)), + ("MediumSpac", (0, 0)), + ("ultri", (0, 0)), + ("LongLeftA", (0, 0)), + ("SquareSupers", (0, 0)), + ("TildeT", (0, 0)), + ("FilledSmallSquare;", (9724, 0)), + ("nvrAr", (0, 0)), + ("nsho", (0, 0)), + ("RightAngl", (0, 0)), + ("dcy;", (1076, 0)), + ("RightVecto", (0, 0)), + ("szlig", (223, 0)), + ("NotSucce", (0, 0)), + ("lna", (0, 0)), + ("Not;", (10988, 0)), + ("InvisibleTimes", (0, 0)), + ("acir", (0, 0)), + ("uharr", (0, 0)), + ("RightFloor", (0, 0)), + ("npars", (0, 0)), + ("DownArro", (0, 0)), + ("squ", (0, 0)), + ("numer", (0, 0)), + ("Cc", (0, 0)), + ("succappr", (0, 0)), + ("cwco", (0, 0)), + ("dso", (0, 0)), + ("bu", (0, 0)), + ("Alph", (0, 0)), + ("UpTeeArrow;", (8613, 0)), + ("upharpoonrig", (0, 0)), + ("rarrt", (0, 0)), + ("expectati", (0, 0)), + ("easter", (0, 0)), + ("nsime", (0, 0)), + ("OpenC", (0, 0)), + ("lparl", (0, 0)), + ("LongRightA", (0, 0)), + ("NotGreate", (0, 0)), + ("LeftTria", (0, 0)), + ("sscr", (0, 0)), + ("drbkarow;", (10512, 0)), + ("Fscr;", (8497, 0)), + ("scap", (0, 0)), + ("minusdu", (0, 0)), + ("ycy", (0, 0)), + ("curlyve", (0, 0)), + ("trpezium", (0, 0)), + ("smtes", (0, 0)), + ("subr", (0, 0)), + ("For", (0, 0)), + ("dzcy;", (1119, 0)), + ("UpEquilibriu", (0, 0)), + ("order", (0, 0)), + ("iogon;", (303, 0)), + ("racute;", (341, 0)), + ("shortparallel", (0, 0)), + ("TildeFul", (0, 0)), + ("Ro", (0, 0)), + ("proflin", (0, 0)), + ("iukc", (0, 0)), + ("VeryThi", (0, 0)), + ("blo", (0, 0)), + ("Lmidot;", (319, 0)), + ("IJlig", (0, 0)), + ("LeftAng", (0, 0)), + ("circe", (0, 0)), + ("Ts", (0, 0)), + ("exponentiale;", (8519, 0)), + ("TildeFullE", (0, 0)), + ("angmsdab;", (10665, 0)), + ("Jo", (0, 0)), + ("Lscr;", (8466, 0)), + ("dis", (0, 0)), + ("Ut", (0, 0)), + ("odo", (0, 0)), + ("uwangle;", (10663, 0)), + ("apaci", (0, 0)), + ("comm", (0, 0)), + ("cirs", (0, 0)), + ("risin", (0, 0)), + ("NotSquareSupe", (0, 0)), + ("uparrow", (0, 0)), + ("UnderBracke", (0, 0)), + ("xlar", (0, 0)), + ("NotPrecedesEqual;", (10927, 824)), + ("Zscr;", (119989, 0)), + ("barwedge", (0, 0)), + ("Oop", (0, 0)), + ("bigsq", (0, 0)), + ("llcorn", (0, 0)), + ("backepsil", (0, 0)), + ("LJc", (0, 0)), + ("kh", (0, 0)), + ("varsupsetneq;", (8843, 65024)), + ("ve", (0, 0)), + ("omicron;", (959, 0)), + ("leftrightarro", (0, 0)), + ("leftrightarr", (0, 0)), + ("caret", (0, 0)), + ("topf", (0, 0)), + ("sdot", (0, 0)), + ("thickappr", (0, 0)), + ("radi", (0, 0)), + ("dopf;", (120149, 0)), + ("nex", (0, 0)), + ("copy", (169, 0)), + ("NotLessE", (0, 0)), + ("vltri", (0, 0)), + ("comma;", (44, 0)), + ("hoar", (0, 0)), + ("orig", (0, 0)), + ("nshortparal", (0, 0)), + ("rightsquiga", (0, 0)), + ("RightDown", (0, 0)), + ("ap", (0, 0)), + ("nltrie", (0, 0)), + ("HumpDow", (0, 0)), + ("straightph", (0, 0)), + ("circlearrowleft;", (8634, 0)), + ("tw", (0, 0)), + ("olci", (0, 0)), + ("phmm", (0, 0)), + ("SOFT", (0, 0)), + ("gopf", (0, 0)), + ("dotsquare", (0, 0)), + ("Bumpeq", (0, 0)), + ("erar", (0, 0)), + ("boxbo", (0, 0)), + ("nVDas", (0, 0)), + ("shch", (0, 0)), + ("OverBra", (0, 0)), + ("angmsdac", (0, 0)), + ("RightArrowLef", (0, 0)), + ("bigca", (0, 0)), + ("NotReverseElemen", (0, 0)), + ("perp", (0, 0)), + ("appr", (0, 0)), + ("js", (0, 0)), + ("profline", (0, 0)), + ("Wedge", (0, 0)), + ("LeftArrow;", (8592, 0)), + ("nwnear;", (10535, 0)), + ("eqvparsl", (0, 0)), + ("Vbar;", (10987, 0)), + ("lpa", (0, 0)), + ("searrow", (0, 0)), + ("DJ", (0, 0)), + ("nlarr;", (8602, 0)), + ("bigci", (0, 0)), + ("Clockwi", (0, 0)), + ("Sups", (0, 0)), + ("loarr", (0, 0)), + ("Cro", (0, 0)), + ("Beca", (0, 0)), + ("cirf", (0, 0)), + ("NotLeftTriangleEqu", (0, 0)), + ("vartriangl", (0, 0)), + ("real", (0, 0)), + ("ZeroWidthSp", (0, 0)), + ("lba", (0, 0)), + ("NotRightTriangleBar", (0, 0)), + ("oplus;", (8853, 0)), + ("times", (215, 0)), + ("rightr", (0, 0)), + ("leftri", (0, 0)), + ("Dcaron", (0, 0)), + ("rarrbfs;", (10528, 0)), + ("nLeftrightarr", (0, 0)), + ("ReverseUpE", (0, 0)), + ("DownLeftRightVector;", (10576, 0)), + ("pert", (0, 0)), + ("DoubleLongRightArro", (0, 0)), + ("iukcy;", (1110, 0)), + ("lowa", (0, 0)), + ("og", (0, 0)), + ("Cente", (0, 0)), + ("kcedil;", (311, 0)), + ("DoubleLongLeftRightArro", (0, 0)), + ("bnot", (0, 0)), + ("nrarrw;", (8605, 824)), + ("rfr;", (120111, 0)), + ("oti", (0, 0)), + ("Left", (0, 0)), + ("OverParenthesis;", (9180, 0)), + ("measuredangle", (0, 0)), + ("fpart", (0, 0)), + ("dotsquar", (0, 0)), + ("NotSquareSubsetEq", (0, 0)), + ("DiacriticalAcute", (0, 0)), + ("DS", (0, 0)), + ("downharpoonleft;", (8643, 0)), + ("harrcir", (0, 0)), + ("DownLeftRightVec", (0, 0)), + ("Egr", (0, 0)), + ("Jserc", (0, 0)), + ("ShortL", (0, 0)), + ("lessd", (0, 0)), + ("succcu", (0, 0)), + ("dotplu", (0, 0)), + ("PlusM", (0, 0)), + ("hyph", (0, 0)), + ("rightleftarrows;", (8644, 0)), + ("LeftTe", (0, 0)), + ("EmptySmallSqua", (0, 0)), + ("NotGreaterFullEq", (0, 0)), + ("cl", (0, 0)), + ("rppo", (0, 0)), + ("ldqu", (0, 0)), + ("DiacriticalDot", (0, 0)), + ("nvdas", (0, 0)), + ("LessTil", (0, 0)), + ("LowerRightArrow", (0, 0)), + ("dalet", (0, 0)), + ("Otilde", (213, 0)), + ("sh", (0, 0)), + ("lbrke;", (10635, 0)), + ("seArr;", (8664, 0)), + ("oma", (0, 0)), + ("gEl", (0, 0)), + ("NonBreakingSpace", (0, 0)), + ("LessEqualGreat", (0, 0)), + ("uhblk;", (9600, 0)), + ("timesba", (0, 0)), + ("bopf", (0, 0)), + ("CloseCu", (0, 0)), + ("curlyvee", (0, 0)), + ("thksim;", (8764, 0)), + ("boxvH;", (9578, 0)), + ("luruha", (0, 0)), + ("vns", (0, 0)), + ("Hopf;", (8461, 0)), + ("CloseCurlyDoub", (0, 0)), + ("Square;", (9633, 0)), + ("subs", (0, 0)), + ("fltn", (0, 0)), + ("diga", (0, 0)), + ("rfloo", (0, 0)), + ("nspar;", (8742, 0)), + ("rightleftar", (0, 0)), + ("precnapprox;", (10937, 0)), + ("leftharpo", (0, 0)), + ("nleq;", (8816, 0)), + ("boxVR", (0, 0)), + ("range", (0, 0)), + ("robrk", (0, 0)), + ("xup", (0, 0)), + ("vangrt", (0, 0)), + ("nLeftrightarro", (0, 0)), + ("var", (0, 0)), + ("nRi", (0, 0)), + ("gnE", (0, 0)), + ("cros", (0, 0)), + ("pla", (0, 0)), + ("RightF", (0, 0)), + ("DoubleUpDownArrow;", (8661, 0)), + ("trianglerighte", (0, 0)), + ("Sfr", (0, 0)), + ("copys", (0, 0)), + ("xcir", (0, 0)), + ("odbla", (0, 0)), + ("rHar", (0, 0)), + ("yuc", (0, 0)), + ("alefsy", (0, 0)), + ("bigwedge;", (8896, 0)), + ("olar", (0, 0)), + ("Igrave", (204, 0)), + ("EmptyVerySmallSquar", (0, 0)), + ("ContourInte", (0, 0)), + ("vartrianglerigh", (0, 0)), + ("NegativeThinSpac", (0, 0)), + ("twoheadrightarrow;", (8608, 0)), + ("subne", (0, 0)), + ("NegativeTh", (0, 0)), + ("lBarr", (0, 0)), + ("oeli", (0, 0)), + ("Iota", (0, 0)), + ("intcal;", (8890, 0)), + ("equals", (0, 0)), + ("frac2", (0, 0)), + ("abreve;", (259, 0)), + ("upharpoonri", (0, 0)), + ("DiacriticalDoub", (0, 0)), + ("pe", (0, 0)), + ("SquareSubsetEqua", (0, 0)), + ("Lambda;", (923, 0)), + ("Dashv;", (10980, 0)), + ("Za", (0, 0)), + ("NonBreak", (0, 0)), + ("LeftUpDownVe", (0, 0)), + ("setm", (0, 0)), + ("spadesu", (0, 0)), + ("Nacut", (0, 0)), + ("approx;", (8776, 0)), + ("parsl;", (11005, 0)), + ("leftrightharpoons", (0, 0)), + ("rarrap", (0, 0)), + ("NestedGreaterGreat", (0, 0)), + ("plusacir;", (10787, 0)), + ("CircleTimes", (0, 0)), + ("dwa", (0, 0)), + ("cul", (0, 0)), + ("SupersetEqua", (0, 0)), + ("downha", (0, 0)), + ("sqcaps;", (8851, 65024)), + ("Therefo", (0, 0)), + ("hookrightarrow;", (8618, 0)), + ("boxDL;", (9559, 0)), + ("complexes;", (8450, 0)), + ("dopf", (0, 0)), + ("nLeftrightarrow;", (8654, 0)), + ("leftthr", (0, 0)), + ("rulu", (0, 0)), + ("NotElemen", (0, 0)), + ("LessFullE", (0, 0)), + ("EmptySmallSq", (0, 0)), + ("rAtail;", (10524, 0)), + ("zigrar", (0, 0)), + ("DownArr", (0, 0)), + ("Yopf", (0, 0)), + ("boxtimes", (0, 0)), + ("Upsil", (0, 0)), + ("nrarrc;", (10547, 824)), + ("DownLe", (0, 0)), + ("Bopf", (0, 0)), + ("minusdu;", (10794, 0)), + ("TSHc", (0, 0)), + ("Gdot;", (288, 0)), + ("LessEqua", (0, 0)), + ("Re", (0, 0)), + ("icy;", (1080, 0)), + ("im", (0, 0)), + ("bumpE;", (10926, 0)), + ("Ema", (0, 0)), + ("or", (0, 0)), + ("djc", (0, 0)), + ("phmma", (0, 0)), + ("ocir", (0, 0)), + ("profsurf;", (8979, 0)), + ("looparrowleft;", (8619, 0)), + ("lefth", (0, 0)), + ("nabl", (0, 0)), + ("iq", (0, 0)), + ("emac", (0, 0)), + ("odot", (0, 0)), + ("RightAngleBracke", (0, 0)), + ("wcir", (0, 0)), + ("LeftTeeArro", (0, 0)), + ("oelig;", (339, 0)), + ("nlef", (0, 0)), + ("imagline;", (8464, 0)), + ("ssm", (0, 0)), + ("NotGrea", (0, 0)), + ("LowerLef", (0, 0)), + ("Lfr;", (120079, 0)), + ("DownRightVecto", (0, 0)), + ("longmaps", (0, 0)), + ("sol", (0, 0)), + ("exponential", (0, 0)), + ("barwedge;", (8965, 0)), + ("ltq", (0, 0)), + ("LongRightArr", (0, 0)), + ("aa", (0, 0)), + ("ofr;", (120108, 0)), + ("numsp;", (8199, 0)), + ("oscr", (0, 0)), + ("Iacut", (0, 0)), + ("lvertneq", (0, 0)), + ("udar", (0, 0)), + ("to", (0, 0)), + ("varsupsetn", (0, 0)), + ("racute", (0, 0)), + ("kfr;", (120104, 0)), + ("mid;", (8739, 0)), + ("npolint", (0, 0)), + ("ContourIntegra", (0, 0)), + ("rightthree", (0, 0)), + ("velli", (0, 0)), + ("ngeq", (0, 0)), + ("nums", (0, 0)), + ("upd", (0, 0)), + ("thor", (0, 0)), + ("rthree;", (8908, 0)), + ("Pf", (0, 0)), + ("mapstoup", (0, 0)), + ("NotGreaterSlantE", (0, 0)), + ("Poin", (0, 0)), + ("Laplacetrf", (0, 0)), + ("roa", (0, 0)), + ("precn", (0, 0)), + ("imaglin", (0, 0)), + ("hookl", (0, 0)), + ("Ccedil;", (199, 0)), + ("searhk;", (10533, 0)), + ("downharpoon", (0, 0)), + ("RightUpDownVe", (0, 0)), + ("cf", (0, 0)), + ("Efr", (0, 0)), + ("Rrightarrow;", (8667, 0)), + ("bigodo", (0, 0)), + ("Wcir", (0, 0)), + ("loang;", (10220, 0)), + ("rightsquig", (0, 0)), + ("langd", (0, 0)), + ("laem", (0, 0)), + ("nsqsu", (0, 0)), + ("smallsetminu", (0, 0)), + ("dl", (0, 0)), + ("DiacriticalD", (0, 0)), + ("DownLeftVe", (0, 0)), + ("DownLeftVectorBar;", (10582, 0)), + ("vzig", (0, 0)), + ("varnothing;", (8709, 0)), + ("Rri", (0, 0)), + ("NonBre", (0, 0)), + ("andv;", (10842, 0)), + ("NotLessSlantEqual;", (10877, 824)), + ("isindot", (0, 0)), + ("nspa", (0, 0)), + ("complemen", (0, 0)), + ("frac56;", (8538, 0)), + ("ReverseUpEqui", (0, 0)), + ("varsubs", (0, 0)), + ("sacut", (0, 0)), + ("bnequi", (0, 0)), + ("DownArrow", (0, 0)), + ("UpperRight", (0, 0)), + ("Jsercy", (0, 0)), + ("ac", (0, 0)), + ("lfi", (0, 0)), + ("natura", (0, 0)), + ("TildeEqua", (0, 0)), + ("UpArrowBar;", (10514, 0)), + ("uparr", (0, 0)), + ("Uogon;", (370, 0)), + ("pcy", (0, 0)), + ("Dcaron;", (270, 0)), + ("Cconint;", (8752, 0)), + ("LessFul", (0, 0)), + ("ReverseUpEq", (0, 0)), + ("cylc", (0, 0)), + ("DoubleLeftTee;", (10980, 0)), + ("oopf;", (120160, 0)), + ("nR", (0, 0)), + ("hami", (0, 0)), + ("nesea", (0, 0)), + ("mcy", (0, 0)), + ("boxm", (0, 0)), + ("RightTeeArro", (0, 0)), + ("varsubsetneqq", (0, 0)), + ("lthr", (0, 0)), + ("dharl", (0, 0)), + ("mD", (0, 0)), + ("OpenCurly", (0, 0)), + ("UpperLeftA", (0, 0)), + ("DownLeftRightVector", (0, 0)), + ("lneqq;", (8808, 0)), + ("rightsq", (0, 0)), + ("DotE", (0, 0)), + ("SquareIntersect", (0, 0)), + ("Succeeds;", (8827, 0)), + ("ReverseElemen", (0, 0)), + ("RightArrowLeftArr", (0, 0)), + ("gla", (0, 0)), + ("CircleM", (0, 0)), + ("VeryThinSpac", (0, 0)), + ("elin", (0, 0)), + ("xu", (0, 0)), + ("UpEquil", (0, 0)), + ("big", (0, 0)), + ("Bfr;", (120069, 0)), + ("Cross;", (10799, 0)), + ("gdo", (0, 0)), + ("ctdot", (0, 0)), + ("larrfs", (0, 0)), + ("vnsub;", (8834, 8402)), + ("leftharpoonu", (0, 0)), + ("cdot;", (267, 0)), + ("NotExist", (0, 0)), + ("NotCongru", (0, 0)), + ("lB", (0, 0)), + ("curlyvee;", (8910, 0)), + ("ShortLe", (0, 0)), + ("prece", (0, 0)), + ("Aring;", (197, 0)), + ("tar", (0, 0)), + ("Zdo", (0, 0)), + ("Bscr", (0, 0)), + ("upupar", (0, 0)), + ("NotSquareSuperset;", (8848, 824)), + ("origof", (0, 0)), + ("sset", (0, 0)), + ("Differential", (0, 0)), + ("NegativeThickSpace", (0, 0)), + ("CloseCurlyQuote;", (8217, 0)), + ("SquareIntersection", (0, 0)), + ("su", (0, 0)), + ("downarr", (0, 0)), + ("GreaterEq", (0, 0)), + ("leftrightharpo", (0, 0)), + ("LessFu", (0, 0)), + ("ecolon;", (8789, 0)), + ("LeftVe", (0, 0)), + ("ks", (0, 0)), + ("Theref", (0, 0)), + ("Sci", (0, 0)), + ("lrhar", (0, 0)), + ("ntilde;", (241, 0)), + ("iop", (0, 0)), + ("suphso", (0, 0)), + ("DoubleLongLeftRightArr", (0, 0)), + ("hyp", (0, 0)), + ("Ntild", (0, 0)), + ("rdldh", (0, 0)), + ("notni", (0, 0)), + ("rdca;", (10551, 0)), + ("Ccedi", (0, 0)), + ("leftarrow", (0, 0)), + ("Leftarrow", (0, 0)), + ("Dia", (0, 0)), + ("IOcy", (0, 0)), + ("Vcy;", (1042, 0)), + ("zd", (0, 0)), + ("QUOT;", (34, 0)), + ("YAc", (0, 0)), + ("angz", (0, 0)), + ("co", (0, 0)), + ("Lleftarro", (0, 0)), + ("odiv;", (10808, 0)), + ("Leftri", (0, 0)), + ("Horizo", (0, 0)), + ("Longlefta", (0, 0)), + ("LeftVecto", (0, 0)), + ("Nscr", (0, 0)), + ("Aa", (0, 0)), + ("RightUpVectorBar;", (10580, 0)), + ("Con", (0, 0)), + ("ldrdhar", (0, 0)), + ("Iuml", (207, 0)), + ("sacu", (0, 0)), + ("nLt", (0, 0)), + ("circlearr", (0, 0)), + ("AEli", (0, 0)), + ("Lacute", (0, 0)), + ("NotSuc", (0, 0)), + ("llarr", (0, 0)), + ("Negat", (0, 0)), + ("intercal", (0, 0)), + ("twoheadrighta", (0, 0)), + ("lefthar", (0, 0)), + ("middot", (183, 0)), + ("prc", (0, 0)), + ("Minu", (0, 0)), + ("tau", (0, 0)), + ("yacy", (0, 0)), + ("andand;", (10837, 0)), + ("LeftDownTeeVecto", (0, 0)), + ("ntriangl", (0, 0)), + ("scpolin", (0, 0)), + ("DownArrowUpArr", (0, 0)), + ("jmath;", (567, 0)), + ("ique", (0, 0)), + ("Ho", (0, 0)), + ("Ari", (0, 0)), + ("nscr;", (120003, 0)), + ("utilde;", (361, 0)), + ("succnsim", (0, 0)), + ("Bopf;", (120121, 0)), + ("InvisibleCo", (0, 0)), + ("barwe", (0, 0)), + ("lam", (0, 0)), + ("capcu", (0, 0)), + ("NotCu", (0, 0)), + ("rarrhk;", (8618, 0)), + ("bf", (0, 0)), + ("wfr;", (120116, 0)), + ("GreaterSl", (0, 0)), + ("wreat", (0, 0)), + ("leftthreetimes;", (8907, 0)), + ("a", (0, 0)), + ("mapsto", (0, 0)), + ("acute", (180, 0)), + ("mldr", (0, 0)), + ("VerticalLi", (0, 0)), + ("rnmid", (0, 0)), + ("Succ", (0, 0)), + ("LeftTriangle", (0, 0)), + ("dz", (0, 0)), + ("hy", (0, 0)), + ("LongLeftRig", (0, 0)), + ("LeftDoubleBrac", (0, 0)), + ("NonB", (0, 0)), + ("DownLeftTe", (0, 0)), + ("frac18;", (8539, 0)), + ("disi", (0, 0)), + ("Longleftrightarrow;", (10234, 0)), + ("lambda;", (955, 0)), + ("rBarr;", (10511, 0)), + ("boxt", (0, 0)), + ("nvle", (0, 0)), + ("ograv", (0, 0)), + ("poin", (0, 0)), + ("xlArr;", (10232, 0)), + ("rdquor;", (8221, 0)), + ("Iukcy", (0, 0)), + ("tp", (0, 0)), + ("ge;", (8805, 0)), + ("rceil;", (8969, 0)), + ("Lt;", (8810, 0)), + ("acirc;", (226, 0)), + ("bullet;", (8226, 0)), + ("sm", (0, 0)), + ("LJ", (0, 0)), + ("rightha", (0, 0)), + ("NotGreaterSlantEqual", (0, 0)), + ("hookleftarrow;", (8617, 0)), + ("qopf", (0, 0)), + ("ShortRightArrow", (0, 0)), + ("rppol", (0, 0)), + ("caps", (0, 0)), + ("quo", (0, 0)), + ("ycirc", (0, 0)), + ("digamm", (0, 0)), + ("LT", (60, 0)), + ("rlarr", (0, 0)), + ("Udblac", (0, 0)), + ("yen;", (165, 0)), + ("luruhar", (0, 0)), + ("ddarr", (0, 0)), + ("nexist;", (8708, 0)), + ("RoundImplie", (0, 0)), + ("rightharpoondo", (0, 0)), + ("nsqsupe;", (8931, 0)), + ("Minus", (0, 0)), + ("bigv", (0, 0)), + ("Backs", (0, 0)), + ("nleftrigh", (0, 0)), + ("plusa", (0, 0)), + ("rtr", (0, 0)), + ("NotLessG", (0, 0)), + ("Barw", (0, 0)), + ("ShortRightA", (0, 0)), + ("vrt", (0, 0)), + ("epl", (0, 0)), + ("lbra", (0, 0)), + ("nh", (0, 0)), + ("bigtriangledown", (0, 0)), + ("longmapst", (0, 0)), + ("LeftTriangleEqu", (0, 0)), + ("zac", (0, 0)), + ("bigtriangleup", (0, 0)), + ("lesdot;", (10879, 0)), + ("hai", (0, 0)), + ("llar", (0, 0)), + ("sma", (0, 0)), + ("fltns", (0, 0)), + ("Icirc", (206, 0)), + ("MediumSpa", (0, 0)), + ("cwconint;", (8754, 0)), + ("blacklo", (0, 0)), + ("Cl", (0, 0)), + ("ncedil;", (326, 0)), + ("lopf", (0, 0)), + ("Is", (0, 0)), + ("eqslan", (0, 0)), + ("ohbar", (0, 0)), + ("xodot;", (10752, 0)), + ("rarrb", (0, 0)), + ("supds", (0, 0)), + ("down", (0, 0)), + ("Differentia", (0, 0)), + ("nhA", (0, 0)), + ("LeftCeiling", (0, 0)), + ("measure", (0, 0)), + ("NotLessSlantE", (0, 0)), + ("supseteq", (0, 0)), + ("Ecir", (0, 0)), + ("Afr;", (120068, 0)), + ("barve", (0, 0)), + ("LeftDoubleBracket", (0, 0)), + ("downdowna", (0, 0)), + ("planckh;", (8462, 0)), + ("Aogon", (0, 0)), + ("plusb;", (8862, 0)), + ("center", (0, 0)), + ("PrecedesEqu", (0, 0)), + ("rsh;", (8625, 0)), + ("Mellin", (0, 0)), + ("SubsetEqu", (0, 0)), + ("gve", (0, 0)), + ("LeftArrowRightArrow", (0, 0)), + ("Ar", (0, 0)), + ("loang", (0, 0)), + ("supmul", (0, 0)), + ("Horizontal", (0, 0)), + ("Cac", (0, 0)), + ("supe;", (8839, 0)), + ("LeftRightArrow", (0, 0)), + ("gbreve;", (287, 0)), + ("LeftVect", (0, 0)), + ("micro;", (181, 0)), + ("fl", (0, 0)), + ("RightCeiling", (0, 0)), + ("em", (0, 0)), + ("Rca", (0, 0)), + ("OpenCurlyDoubl", (0, 0)), + ("bcong;", (8780, 0)), + ("HorizontalLin", (0, 0)), + ("nvHa", (0, 0)), + ("CloseCurlyDoubleQuo", (0, 0)), + ("rAr", (0, 0)), + ("RightDownVectorB", (0, 0)), + ("NotNestedGreaterGr", (0, 0)), + ("rightthreetime", (0, 0)), + ("nlArr;", (8653, 0)), + ("DownArrowUpAr", (0, 0)), + ("Iti", (0, 0)), + ("nsupseteqq", (0, 0)), + ("nrarr;", (8603, 0)), + ("lesdoto;", (10881, 0)), + ("angmsdah;", (10671, 0)), + ("OverPare", (0, 0)), + ("kfr", (0, 0)), + ("lsi", (0, 0)), + ("Be", (0, 0)), + ("ReverseU", (0, 0)), + ("low", (0, 0)), + ("asympeq;", (8781, 0)), + ("leftarrowtail", (0, 0)), + ("andv", (0, 0)), + ("iquest;", (191, 0)), + ("heartsuit", (0, 0)), + ("blacktrian", (0, 0)), + ("UnderBrack", (0, 0)), + ("vert", (0, 0)), + ("quat", (0, 0)), + ("cir", (0, 0)), + ("wf", (0, 0)), + ("downdownarrows", (0, 0)), + ("smallset", (0, 0)), + ("sccue", (0, 0)), + ("RightTriangleEqual;", (8885, 0)), + ("quaternio", (0, 0)), + ("DownRightTeeVecto", (0, 0)), + ("eqv", (0, 0)), + ("npreceq", (0, 0)), + ("Zac", (0, 0)), + ("oli", (0, 0)), + ("parsim", (0, 0)), + ("supdsub", (0, 0)), + ("equiv;", (8801, 0)), + ("ola", (0, 0)), + ("dtdot;", (8945, 0)), + ("raempt", (0, 0)), + ("LeftAngle", (0, 0)), + ("nshort", (0, 0)), + ("Rarrtl", (0, 0)), + ("frac4", (0, 0)), + ("ltrP", (0, 0)), + ("curvearrow", (0, 0)), + ("mdash", (0, 0)), + ("nearhk", (0, 0)), + ("suplar", (0, 0)), + ("GreaterEqualLes", (0, 0)), + ("kjcy", (0, 0)), + ("vartheta;", (977, 0)), + ("llco", (0, 0)), + ("boxHU;", (9577, 0)), + ("rightthr", (0, 0)), + ("nharr", (0, 0)), + ("para", (182, 0)), + ("W", (0, 0)), + ("andslope", (0, 0)), + ("sqsupsete", (0, 0)), + ("CircleMinus;", (8854, 0)), + ("nexi", (0, 0)), + ("Hilber", (0, 0)), + ("iex", (0, 0)), + ("UnionPlu", (0, 0)), + ("Bumpe", (0, 0)), + ("acu", (0, 0)), + ("cw", (0, 0)), + ("Eop", (0, 0)), + ("bigupl", (0, 0)), + ("mapstodown;", (8615, 0)), + ("hslash", (0, 0)), + ("Congruent", (0, 0)), + ("nGg", (0, 0)), + ("supE;", (10950, 0)), + ("parsl", (0, 0)), + ("lsa", (0, 0)), + ("spadesuit;", (9824, 0)), + ("ju", (0, 0)), + ("Juk", (0, 0)), + ("cwint;", (8753, 0)), + ("Equilibrium;", (8652, 0)), + ("Lon", (0, 0)), + ("NotNestedLe", (0, 0)), + ("succsim", (0, 0)), + ("varr", (0, 0)), + ("rbrke", (0, 0)), + ("Precedes", (0, 0)), + ("angmsd;", (8737, 0)), + ("lth", (0, 0)), + ("dal", (0, 0)), + ("GJc", (0, 0)), + ("ldrushar", (0, 0)), + ("Upsi;", (978, 0)), + ("nLtv", (0, 0)), + ("rationa", (0, 0)), + ("downharpoonr", (0, 0)), + ("DoubleDownArrow", (0, 0)), + ("urcorner", (0, 0)), + ("tscy;", (1094, 0)), + ("upharpoonleft;", (8639, 0)), + ("vBarv", (0, 0)), + ("square;", (9633, 0)), + ("HumpEqua", (0, 0)), + ("jcy;", (1081, 0)), + ("gtlPar", (0, 0)), + ("nsucceq", (0, 0)), + ("sacute;", (347, 0)), + ("eta;", (951, 0)), + ("bop", (0, 0)), + ("PrecedesSlantEqual;", (8828, 0)), + ("VerticalB", (0, 0)), + ("NotSucceedsSlantEq", (0, 0)), + ("vsupnE;", (10956, 65024)), + ("hoa", (0, 0)), + ("ea", (0, 0)), + ("leftrighth", (0, 0)), + ("LT;", (60, 0)), + ("divo", (0, 0)), + ("sra", (0, 0)), + ("DownLeftR", (0, 0)), + ("lopa", (0, 0)), + ("Esim;", (10867, 0)), + ("rhov", (0, 0)), + ("xha", (0, 0)), + ("NotNestedLessLess", (0, 0)), + ("DoubleLongLeftRightAr", (0, 0)), + ("kcy", (0, 0)), + ("Zop", (0, 0)), + ("nvdash;", (8876, 0)), + ("NonBreakin", (0, 0)), + ("NotLeftTriangleE", (0, 0)), + ("subedot", (0, 0)), + ("LeftDouble", (0, 0)), + ("hba", (0, 0)), + ("DoubleUpArr", (0, 0)), + ("D", (0, 0)), + ("bull;", (8226, 0)), + ("EmptySmallSqu", (0, 0)), + ("Rule", (0, 0)), + ("RightTeeV", (0, 0)), + ("Imag", (0, 0)), + ("Sh", (0, 0)), + ("lesdo", (0, 0)), + ("EmptyVery", (0, 0)), + ("nla", (0, 0)), + ("nv", (0, 0)), + ("botto", (0, 0)), + ("NotEle", (0, 0)), + ("InvisibleComm", (0, 0)), + ("cen", (0, 0)), + ("QU", (0, 0)), + ("llt", (0, 0)), + ("boxhu", (0, 0)), + ("psi", (0, 0)), + ("LongLeftArr", (0, 0)), + ("NotSucceedsEqual;", (10928, 824)), + ("bempt", (0, 0)), + ("mcom", (0, 0)), + ("p", (0, 0)), + ("Abrev", (0, 0)), + ("Longl", (0, 0)), + ("ClockwiseContour", (0, 0)), + ("NotSucceedsTi", (0, 0)), + ("curlyeqsuc", (0, 0)), + ("rpargt", (0, 0)), + ("lacut", (0, 0)), + ("TildeFullEqual;", (8773, 0)), + ("NotRightTri", (0, 0)), + ("rsaqu", (0, 0)), + ("shortparall", (0, 0)), + ("homt", (0, 0)), + ("nvg", (0, 0)), + ("rlhar", (0, 0)), + ("nr", (0, 0)), + ("bprime;", (8245, 0)), + ("zeta;", (950, 0)), + ("LeftTriangleBa", (0, 0)), + ("supsetn", (0, 0)), + ("kgreen;", (312, 0)), + ("uua", (0, 0)), + ("exi", (0, 0)), + ("LongLeftRightArro", (0, 0)), + ("dzc", (0, 0)), + ("Pcy;", (1055, 0)), + ("SquareSupersetEq", (0, 0)), + ("rba", (0, 0)), + ("Clockwis", (0, 0)), + ("DJc", (0, 0)), + ("fpartint;", (10765, 0)), + ("gesles", (0, 0)), + ("CloseCurly", (0, 0)), + ("lowbar;", (95, 0)), + ("toea", (0, 0)), + ("OverParenthesis", (0, 0)), + ("measu", (0, 0)), + ("inodo", (0, 0)), + ("jop", (0, 0)), + ("Psi", (0, 0)), + ("Yscr", (0, 0)), + ("RightUpVect", (0, 0)), + ("NotGreaterGreat", (0, 0)), + ("acy;", (1072, 0)), + ("ulcor", (0, 0)), + ("gla;", (10917, 0)), + ("emacr", (0, 0)), + ("nsupe", (0, 0)), + ("lltri;", (9722, 0)), + ("COPY;", (169, 0)), + ("NotSucceedsSl", (0, 0)), + ("lagran", (0, 0)), + ("thetav", (0, 0)), + ("boxVL", (0, 0)), + ("risingdo", (0, 0)), + ("NotSucceedsTil", (0, 0)), + ("blan", (0, 0)), + ("NotTildeFullEqual", (0, 0)), + ("DoubleLongLef", (0, 0)), + ("top", (0, 0)), + ("tin", (0, 0)), + ("olcross", (0, 0)), + ("intege", (0, 0)), + ("YIcy", (0, 0)), + ("dw", (0, 0)), + ("nleftrightar", (0, 0)), + ("doteq", (0, 0)), + ("S", (0, 0)), + ("egs", (0, 0)), + ("jmat", (0, 0)), + ("vdas", (0, 0)), + ("vsup", (0, 0)), + ("DZcy;", (1039, 0)), + ("rational", (0, 0)), + ("rthr", (0, 0)), + ("imagpart", (0, 0)), + ("RightUpDownVect", (0, 0)), + ("GreaterGrea", (0, 0)), + ("Uri", (0, 0)), + ("blacktriang", (0, 0)), + ("GreaterSlantE", (0, 0)), + ("ncy", (0, 0)), + ("colone;", (8788, 0)), + ("rpargt;", (10644, 0)), + ("lH", (0, 0)), + ("lgE", (0, 0)), + ("ari", (0, 0)), + ("Vf", (0, 0)), + ("Oma", (0, 0)), + ("lAtail;", (10523, 0)), + ("escr;", (8495, 0)), + ("cylcty", (0, 0)), + ("Updownarr", (0, 0)), + ("spades", (0, 0)), + ("DDotrahd;", (10513, 0)), + ("AEl", (0, 0)), + ("fem", (0, 0)), + ("image;", (8465, 0)), + ("CapitalDifferential", (0, 0)), + ("leftrightsquig", (0, 0)), + ("prurel", (0, 0)), + ("fallin", (0, 0)), + ("agr", (0, 0)), + ("DoubleUpA", (0, 0)), + ("uhar", (0, 0)), + ("DownLeftVectorB", (0, 0)), + ("RightAngleBrac", (0, 0)), + ("dsol;", (10742, 0)), + ("vcy;", (1074, 0)), + ("NestedGr", (0, 0)), + ("lopar", (0, 0)), + ("Lmid", (0, 0)), + ("aeli", (0, 0)), + ("nsubset;", (8834, 8402)), + ("LeftRightArr", (0, 0)), + ("longlef", (0, 0)), + ("leftleft", (0, 0)), + ("NewLin", (0, 0)), + ("dash;", (8208, 0)), + ("Udbl", (0, 0)), + ("thickappro", (0, 0)), + ("LeftUpV", (0, 0)), + ("awconint", (0, 0)), + ("DoubleLeftArr", (0, 0)), + ("qfr", (0, 0)), + ("DoubleVert", (0, 0)), + ("rob", (0, 0)), + ("hArr;", (8660, 0)), + ("backepsilo", (0, 0)), + ("DSc", (0, 0)), + ("RightVe", (0, 0)), + ("ba", (0, 0)), + ("bigcup", (0, 0)), + ("lv", (0, 0)), + ("Rev", (0, 0)), + ("fltns;", (9649, 0)), + ("lAtail", (0, 0)), + ("OElig", (0, 0)), + ("looparrowlef", (0, 0)), + ("swarr", (0, 0)), + ("olt;", (10688, 0)), + ("Zc", (0, 0)), + ("rightlefta", (0, 0)), + ("OEl", (0, 0)), + ("triangleright;", (9657, 0)), + ("cupbrca", (0, 0)), + ("square", (0, 0)), + ("Cr", (0, 0)), + ("longleftrig", (0, 0)), + ("lced", (0, 0)), + ("As", (0, 0)), + ("eacute", (233, 0)), + ("backsimeq;", (8909, 0)), + ("rightharp", (0, 0)), + ("not;", (172, 0)), + ("ord", (0, 0)), + ("Gbreve;", (286, 0)), + ("lve", (0, 0)), + ("rarrb;", (8677, 0)), + ("hairsp", (0, 0)), + ("Pi;", (928, 0)), + ("ltc", (0, 0)), + ("Dcar", (0, 0)), + ("nvlA", (0, 0)), + ("Dag", (0, 0)), + ("Imacr;", (298, 0)), + ("fi", (0, 0)), + ("leftarrowtai", (0, 0)), + ("Ascr", (0, 0)), + ("midast;", (42, 0)), + ("aogo", (0, 0)), + ("AElig", (198, 0)), + ("RightArrowL", (0, 0)), + ("oh", (0, 0)), + ("I", (0, 0)), + ("DiacriticalG", (0, 0)), + ("NestedLessLess;", (8810, 0)), + ("Int;", (8748, 0)), + ("capdo", (0, 0)), + ("straighte", (0, 0)), + ("NotExis", (0, 0)), + ("CupC", (0, 0)), + ("napprox", (0, 0)), + ("NotSquareSubsetEqual;", (8930, 0)), + ("ssmi", (0, 0)), + ("loti", (0, 0)), + ("SucceedsEqu", (0, 0)), + ("hf", (0, 0)), + ("Dash", (0, 0)), + ("lceil;", (8968, 0)), + ("sim", (0, 0)), + ("tcar", (0, 0)), + ("ccaps", (0, 0)), + ("frac12;", (189, 0)), + ("ufr", (0, 0)), + ("iff", (0, 0)), + ("noti", (0, 0)), + ("Das", (0, 0)), + ("Tfr", (0, 0)), + ("apE;", (10864, 0)), + ("equa", (0, 0)), + ("leftleftarr", (0, 0)), + ("NewL", (0, 0)), + ("ShortRi", (0, 0)), + ("ddagge", (0, 0)), + ("diamondsu", (0, 0)), + ("Ya", (0, 0)), + ("ul", (0, 0)), + ("LongRightArrow", (0, 0)), + ("Hilbe", (0, 0)), + ("ntgl;", (8825, 0)), + ("DoubleLeftRigh", (0, 0)), + ("sstarf", (0, 0)), + ("blank", (0, 0)), + ("vopf;", (120167, 0)), + ("uhbl", (0, 0)), + ("NotLessEqual", (0, 0)), + ("NotElem", (0, 0)), + ("NotLeftTria", (0, 0)), + ("DoubleContou", (0, 0)), + ("vopf", (0, 0)), + ("Xo", (0, 0)), + ("lmoust", (0, 0)), + ("NestedGreaterGrea", (0, 0)), + ("nt", (0, 0)), + ("NegativeV", (0, 0)), + ("ShortUpArr", (0, 0)), + ("alep", (0, 0)), + ("uopf;", (120166, 0)), + ("LeftDoubleBrack", (0, 0)), + ("ngE", (0, 0)), + ("NJc", (0, 0)), + ("Precede", (0, 0)), + ("hybull", (0, 0)), + ("hybu", (0, 0)), + ("vartrianglele", (0, 0)), + ("DoubleLeftRightArr", (0, 0)), + ("Ccaron;", (268, 0)), + ("range;", (10661, 0)), + ("angle", (0, 0)), + ("Cco", (0, 0)), + ("SucceedsEqua", (0, 0)), + ("nisd;", (8954, 0)), + ("NotSubset", (0, 0)), + ("rcedi", (0, 0)), + ("kjcy;", (1116, 0)), + ("Wedge;", (8896, 0)), + ("nleftarrow;", (8602, 0)), + ("there4", (0, 0)), + ("Iogon;", (302, 0)), + ("minusb", (0, 0)), + ("longl", (0, 0)), + ("NotSupersetEqua", (0, 0)), + ("trianglele", (0, 0)), + ("hel", (0, 0)), + ("ltrPar;", (10646, 0)), + ("NotGreaterFullEqua", (0, 0)), + ("CloseCur", (0, 0)), + ("aelig", (230, 0)), + ("ltrie", (0, 0)), + ("tstrok;", (359, 0)), + ("fopf", (0, 0)), + ("upharpoonl", (0, 0)), + ("tshc", (0, 0)), + ("imo", (0, 0)), + ("rthree", (0, 0)), + ("iinfin", (0, 0)), + ("Longleftri", (0, 0)), + ("oda", (0, 0)), + ("EmptyVerySma", (0, 0)), + ("lang;", (10216, 0)), + ("rbbrk;", (10099, 0)), + ("nbump", (0, 0)), + ("Wscr", (0, 0)), + ("LeftRightA", (0, 0)), + ("sesw", (0, 0)), + ("oint", (0, 0)), + ("pm;", (177, 0)), + ("nparal", (0, 0)), + ("subsup;", (10963, 0)), + ("Tced", (0, 0)), + ("xnis", (0, 0)), + ("lst", (0, 0)), + ("utdot;", (8944, 0)), + ("Yfr", (0, 0)), + ("NegativeThin", (0, 0)), + ("orv", (0, 0)), + ("Mu;", (924, 0)), + ("agrave", (224, 0)), + ("del", (0, 0)), + ("GreaterEqualL", (0, 0)), + ("dwangl", (0, 0)), + ("approx", (0, 0)), + ("ClockwiseC", (0, 0)), + ("Dsc", (0, 0)), + ("doublebarwedg", (0, 0)), + ("DownArrowU", (0, 0)), + ("lrtri", (0, 0)), + ("NegativeVeryThinSpace;", (8203, 0)), + ("bump;", (8782, 0)), + ("bigcirc", (0, 0)), + ("divideontime", (0, 0)), + ("uph", (0, 0)), + ("upharpoonleft", (0, 0)), + ("bigwed", (0, 0)), + ("GreaterLess", (0, 0)), + ("Invisible", (0, 0)), + ("RightTee", (0, 0)), + ("measuredan", (0, 0)), + ("DoubleLef", (0, 0)), + ("NestedGre", (0, 0)), + ("eDDot;", (10871, 0)), + ("Ccirc;", (264, 0)), + ("RightUpD", (0, 0)), + ("Sig", (0, 0)), + ("Scedi", (0, 0)), + ("NotNestedGrea", (0, 0)), + ("cwconi", (0, 0)), + ("DoubleContourInteg", (0, 0)), + ("curvearrowri", (0, 0)), + ("lfr;", (120105, 0)), + ("olin", (0, 0)), + ("vlt", (0, 0)), + ("RuleDela", (0, 0)), + ("imof;", (8887, 0)), + ("RightTeeVect", (0, 0)), + ("Mu", (0, 0)), + ("gescc", (0, 0)), + ("NotSuperset;", (8835, 8402)), + ("curlyeqsu", (0, 0)), + ("Element", (0, 0)), + ("ut", (0, 0)), + ("boxminu", (0, 0)), + ("DoubleUpDownA", (0, 0)), + ("xoplus", (0, 0)), + ("varkapp", (0, 0)), + ("Clock", (0, 0)), + ("Superset", (0, 0)), + ("sha", (0, 0)), + ("cap", (0, 0)), + ("Ucy", (0, 0)), + ("neAr", (0, 0)), + ("isind", (0, 0)), + ("npolint;", (10772, 0)), + ("bemptyv", (0, 0)), + ("cuw", (0, 0)), + ("Leftarro", (0, 0)), + ("EmptyVerySmallSqu", (0, 0)), + ("Cu", (0, 0)), + ("squar", (0, 0)), + ("Bec", (0, 0)), + ("Longleftarrow", (0, 0)), + ("LeftTriangl", (0, 0)), + ("nva", (0, 0)), + ("odsold", (0, 0)), + ("straightepsil", (0, 0)), + ("circlearrowleft", (0, 0)), + ("Cros", (0, 0)), + ("OEli", (0, 0)), + ("boxUL", (0, 0)), + ("DoubleLongR", (0, 0)), + ("NotTildeT", (0, 0)), + ("boxVl;", (9570, 0)), + ("gE;", (8807, 0)), + ("ThickSpac", (0, 0)), + ("NotL", (0, 0)), + ("longri", (0, 0)), + ("eas", (0, 0)), + ("ThickSpace", (0, 0)), + ("Rfr", (0, 0)), + ("Prod", (0, 0)), + ("pr;", (8826, 0)), + ("dot;", (729, 0)), + ("duarr;", (8693, 0)), + ("T", (0, 0)), + ("hbar", (0, 0)), + ("ange", (0, 0)), + ("duarr", (0, 0)), + ("ufish", (0, 0)), + ("Del;", (8711, 0)), + ("xv", (0, 0)), + ("SucceedsSlant", (0, 0)), + ("ofcir;", (10687, 0)), + ("forall;", (8704, 0)), + ("reals;", (8477, 0)), + ("afr;", (120094, 0)), + ("rightrigh", (0, 0)), + ("cirfni", (0, 0)), + ("rfisht;", (10621, 0)), + ("nacut", (0, 0)), + ("Sa", (0, 0)), + ("VeryThin", (0, 0)), + ("emp", (0, 0)), + ("angrtvbd", (0, 0)), + ("iot", (0, 0)), + ("cup;", (8746, 0)), + ("ngsim;", (8821, 0)), + ("latail", (0, 0)), + ("dtd", (0, 0)), + ("neA", (0, 0)), + ("NotSupersetEqual", (0, 0)), + ("Lang", (0, 0)), + ("Exp", (0, 0)), + ("supedot;", (10948, 0)), + ("SquareSupe", (0, 0)), + ("eta", (0, 0)), + ("slarr;", (8592, 0)), + ("xdtr", (0, 0)), + ("euro;", (8364, 0)), + ("nvrA", (0, 0)), + ("NotSuccee", (0, 0)), + ("mnplus", (0, 0)), + ("emptyset", (0, 0)), + ("gopf;", (120152, 0)), + ("profsu", (0, 0)), + ("RightDoubleBra", (0, 0)), + ("angmsdab", (0, 0)), + ("Leftrightar", (0, 0)), + ("zcaron;", (382, 0)), + ("timesb;", (8864, 0)), + ("curlywedg", (0, 0)), + ("QUO", (0, 0)), + ("NotReverse", (0, 0)), + ("ogra", (0, 0)), + ("hstr", (0, 0)), + ("NotNe", (0, 0)), + ("l", (0, 0)), + ("nab", (0, 0)), + ("bepsi;", (1014, 0)), + ("upar", (0, 0)), + ("Subse", (0, 0)), + ("rs", (0, 0)), + ("Congruent;", (8801, 0)), + ("NotGreaterLes", (0, 0)), + ("juk", (0, 0)), + ("Cfr;", (8493, 0)), + ("nleftrightarrow;", (8622, 0)), + ("gel;", (8923, 0)), + ("Leftrig", (0, 0)), + ("Uarroci", (0, 0)), + ("fnof", (0, 0)), + ("angmsdaf;", (10669, 0)), + ("YUc", (0, 0)), + ("Tcedi", (0, 0)), + ("les", (0, 0)), + ("loze", (0, 0)), + ("lesseqqgtr", (0, 0)), + ("percnt;", (37, 0)), + ("bne;", (61, 8421)), + ("nrightarrow", (0, 0)), + ("piv;", (982, 0)), + ("lsim;", (8818, 0)), + ("COP", (0, 0)), + ("blacksquar", (0, 0)), + ("DoubleVertica", (0, 0)), + ("Reverse", (0, 0)), + ("vsupne", (0, 0)), + ("It", (0, 0)), + ("Popf;", (8473, 0)), + ("GreaterGr", (0, 0)), + ("bbrk;", (9141, 0)), + ("Pl", (0, 0)), + ("NotCupCa", (0, 0)), + ("simd", (0, 0)), + ("boxtim", (0, 0)), + ("GreaterSlantEqu", (0, 0)), + ("GreaterLes", (0, 0)), + ("LessEqualG", (0, 0)), + ("ntrianglerighteq", (0, 0)), + ("ho", (0, 0)), + ("HumpEqual", (0, 0)), + ("hookleftarro", (0, 0)), + ("smid", (0, 0)), + ("shchcy;", (1097, 0)), + ("rbra", (0, 0)), + ("LeftArrowRig", (0, 0)), + ("Doub", (0, 0)), + ("bernou;", (8492, 0)), + ("Vdas", (0, 0)), + ("dote", (0, 0)), + ("eac", (0, 0)), + ("gneqq", (0, 0)), + ("ApplyFunc", (0, 0)), + ("rationals;", (8474, 0)), + ("kapp", (0, 0)), + ("NotG", (0, 0)), + ("ag", (0, 0)), + ("supplu", (0, 0)), + ("sec", (0, 0)), + ("Expone", (0, 0)), + ("ctdo", (0, 0)), + ("pound", (163, 0)), + ("NotGreaterGreater;", (8811, 824)), + ("simplu", (0, 0)), + ("Exi", (0, 0)), + ("st", (0, 0)), + ("kopf;", (120156, 0)), + ("zwnj;", (8204, 0)), + ("UnionPlus;", (8846, 0)), + ("ntriangleri", (0, 0)), + ("xdtri", (0, 0)), + ("supmult", (0, 0)), + ("The", (0, 0)), + ("blacklozenge", (0, 0)), + ("ngeqsl", (0, 0)), + ("iio", (0, 0)), + ("fallingdotseq;", (8786, 0)), + ("Co", (0, 0)), + ("bcong", (0, 0)), + ("lvertneqq;", (8808, 65024)), + ("LeftUpTeeVec", (0, 0)), + ("triangledow", (0, 0)), + ("Uparrow;", (8657, 0)), + ("varep", (0, 0)), + ("R", (0, 0)), + ("alefsym", (0, 0)), + ("RBar", (0, 0)), + ("lceil", (0, 0)), + ("DownRightVector", (0, 0)), + ("suph", (0, 0)), + ("DownAr", (0, 0)), + ("ZeroWidth", (0, 0)), + ("NotRi", (0, 0)), + ("precsim", (0, 0)), + ("xop", (0, 0)), + ("Mfr", (0, 0)), + ("pluss", (0, 0)), + ("ogt;", (10689, 0)), + ("gtlP", (0, 0)), + ("nwArr;", (8662, 0)), + ("rarrl", (0, 0)), + ("larrp", (0, 0)), + ("ShortRigh", (0, 0)), + ("lneqq", (0, 0)), + ("Cconint", (0, 0)), + ("CounterClockwi", (0, 0)), + ("inodot;", (305, 0)), + ("planc", (0, 0)), + ("nsupseteqq;", (10950, 824)), + ("Updownarrow;", (8661, 0)), + ("DD;", (8517, 0)), + ("black", (0, 0)), + ("gtcir;", (10874, 0)), + ("righta", (0, 0)), + ("Uum", (0, 0)), + ("NotLess;", (8814, 0)), + ("pu", (0, 0)), + ("SquareIntersecti", (0, 0)), + ("rarr;", (8594, 0)), + ("capand", (0, 0)), + ("nrtri;", (8939, 0)), + ("LeftUpDownVect", (0, 0)), + ("trade;", (8482, 0)), + ("Eacut", (0, 0)), + ("sqsups", (0, 0)), + ("CircleD", (0, 0)), + ("rsaquo;", (8250, 0)), + ("sum", (0, 0)), + ("vell", (0, 0)), + ("ZeroWid", (0, 0)), + ("hscr", (0, 0)), + ("Subset", (0, 0)), + ("Gcirc;", (284, 0)), + ("awconi", (0, 0)), + ("VDas", (0, 0)), + ("Ouml", (214, 0)), + ("Im", (0, 0)), + ("sdo", (0, 0)), + ("Ecirc", (202, 0)), + ("supsetneqq;", (10956, 0)), + ("Scar", (0, 0)), + ("kgreen", (0, 0)), + ("ncaron;", (328, 0)), + ("doublebarwedge", (0, 0)), + ("femal", (0, 0)), + ("gammad;", (989, 0)), + ("dlcorn", (0, 0)), + ("twoh", (0, 0)), + ("RuleDelay", (0, 0)), + ("submul", (0, 0)), + ("mapsto;", (8614, 0)), + ("rtime", (0, 0)), + ("scar", (0, 0)), + ("Ecaron;", (282, 0)), + ("late;", (10925, 0)), + ("QUOT", (34, 0)), + ("aring", (229, 0)), + ("Rscr;", (8475, 0)), + ("Hstro", (0, 0)), + ("ZHcy", (0, 0)), + ("anda", (0, 0)), + ("Elem", (0, 0)), + ("nsucc", (0, 0)), + ("prna", (0, 0)), + ("NotHumpDownHum", (0, 0)), + ("succapp", (0, 0)), + ("DoubleVerticalBar", (0, 0)), + ("sigmav;", (962, 0)), + ("TRA", (0, 0)), + ("ofci", (0, 0)), + ("UpTee;", (8869, 0)), + ("zdo", (0, 0)), + ("NotDoubleVer", (0, 0)), + ("delta", (0, 0)), + ("rbrke;", (10636, 0)), + ("zopf", (0, 0)), + ("lesdotor;", (10883, 0)), + ("sig", (0, 0)), + ("epa", (0, 0)), + ("divideontimes;", (8903, 0)), + ("NotTilde;", (8769, 0)), + ("NotPrecedesSlantEq", (0, 0)), + ("Eo", (0, 0)), + ("UpDownA", (0, 0)), + ("frown;", (8994, 0)), + ("DotEqual", (0, 0)), + ("IO", (0, 0)), + ("iuml", (239, 0)), + ("lharul", (0, 0)), + ("falli", (0, 0)), + ("udhar;", (10606, 0)), + ("dfr;", (120097, 0)), + ("Qopf;", (8474, 0)), + ("frac14;", (188, 0)), + ("raemptyv", (0, 0)), + ("nprece", (0, 0)), + ("rdquor", (0, 0)), + ("vnsup;", (8835, 8402)), + ("iacu", (0, 0)), + ("longrightarrow", (0, 0)), + ("leftrightarrows", (0, 0)), + ("prop", (0, 0)), + ("orde", (0, 0)), + ("otimesa", (0, 0)), + ("suplarr;", (10619, 0)), + ("macr;", (175, 0)), + ("grav", (0, 0)), + ("napos", (0, 0)), + ("weierp;", (8472, 0)), + ("leftharpoon", (0, 0)), + ("RightTeeVec", (0, 0)), + ("GreaterEqualLe", (0, 0)), + ("SO", (0, 0)), + ("bdquo;", (8222, 0)), + ("NegativeMediumSpac", (0, 0)), + ("vscr", (0, 0)), + ("nop", (0, 0)), + ("nsups", (0, 0)), + ("boxhd;", (9516, 0)), + ("nea", (0, 0)), + ("Ne", (0, 0)), + ("EmptyVerySm", (0, 0)), + ("zh", (0, 0)), + ("Smal", (0, 0)), + ("oopf", (0, 0)), + ("hA", (0, 0)), + ("Au", (0, 0)), + ("apE", (0, 0)), + ("Eogo", (0, 0)), + ("int;", (8747, 0)), + ("Urin", (0, 0)), + ("fras", (0, 0)), + ("leftrightha", (0, 0)), + ("rtrie;", (8885, 0)), + ("nvsi", (0, 0)), + ("eogon;", (281, 0)), + ("OpenCurlyQuot", (0, 0)), + ("lscr", (0, 0)), + ("ufisht;", (10622, 0)), + ("Gbr", (0, 0)), + ("NotSquareSupersetEq", (0, 0)), + ("capcup;", (10823, 0)), + ("DoubleLeft", (0, 0)), + ("oplus", (0, 0)), + ("equivDD", (0, 0)), + ("LeftRightVec", (0, 0)), + ("dj", (0, 0)), + ("DownArrowUp", (0, 0)), + ("Epsilon;", (917, 0)), + ("Ubrev", (0, 0)), + ("RightDownVect", (0, 0)), + ("Lang;", (10218, 0)), + ("laq", (0, 0)), + ("Poincarep", (0, 0)), + ("vpr", (0, 0)), + ("straighteps", (0, 0)), + ("phi", (0, 0)), + ("quaternions;", (8461, 0)), + ("nsqsupe", (0, 0)), + ("RB", (0, 0)), + ("varnoth", (0, 0)), + ("realine", (0, 0)), + ("rB", (0, 0)), + ("curvea", (0, 0)), + ("UpperL", (0, 0)), + ("Io", (0, 0)), + ("RightUpTeeVector", (0, 0)), + ("NotRightTriangle", (0, 0)), + ("ltdo", (0, 0)), + ("nVd", (0, 0)), + ("bc", (0, 0)), + ("nshortpa", (0, 0)), + ("nu", (0, 0)), + ("midas", (0, 0)), + ("angmsd", (0, 0)), + ("cup", (0, 0)), + ("heartsu", (0, 0)), + ("Tstro", (0, 0)), + ("dfis", (0, 0)), + ("lesseqgtr;", (8922, 0)), + ("bnequiv;", (8801, 8421)), + ("rcub", (0, 0)), + ("orsl", (0, 0)), + ("Lstr", (0, 0)), + ("ForAl", (0, 0)), + ("downdo", (0, 0)), + ("npar;", (8742, 0)), + ("rx;", (8478, 0)), + ("curarr;", (8631, 0)), + ("Emacr", (0, 0)), + ("sigma", (0, 0)), + ("topc", (0, 0)), + ("Gcy;", (1043, 0)), + ("nLef", (0, 0)), + ("spad", (0, 0)), + ("NotRightTriangleEqu", (0, 0)), + ("gi", (0, 0)), + ("vfr", (0, 0)), + ("CounterClockwiseContou", (0, 0)), + ("lsc", (0, 0)), + ("downd", (0, 0)), + ("ap;", (8776, 0)), + ("ubrcy", (0, 0)), + ("piv", (0, 0)), + ("backpr", (0, 0)), + ("DiacriticalTil", (0, 0)), + ("Hori", (0, 0)), + ("supdsub;", (10968, 0)), + ("scns", (0, 0)), + ("precnsi", (0, 0)), + ("Horizonta", (0, 0)), + ("VerticalSeparat", (0, 0)), + ("angst", (0, 0)), + ("VeryThinS", (0, 0)), + ("uring", (0, 0)), + ("Itild", (0, 0)), + ("ShortDownArr", (0, 0)), + ("nd", (0, 0)), + ("Preced", (0, 0)), + ("glE", (0, 0)), + ("G", (0, 0)), + ("plustwo;", (10791, 0)), + ("notindo", (0, 0)), + ("CounterC", (0, 0)), + ("Iacute;", (205, 0)), + ("looparrowrigh", (0, 0)), + ("Hfr", (0, 0)), + ("isinE;", (8953, 0)), + ("gtques", (0, 0)), + ("Oscr", (0, 0)), + ("Ps", (0, 0)), + ("DoubleLeftArro", (0, 0)), + ("Ot", (0, 0)), + ("Qs", (0, 0)), + ("curarr", (0, 0)), + ("RightUpT", (0, 0)), + ("check;", (10003, 0)), + ("trpezi", (0, 0)), + ("bla", (0, 0)), + ("intcal", (0, 0)), + ("LeftUpVe", (0, 0)), + ("Fscr", (0, 0)), + ("uplu", (0, 0)), + ("npoli", (0, 0)), + ("lfisht;", (10620, 0)), + ("precc", (0, 0)), + ("lotime", (0, 0)), + ("nleftar", (0, 0)), + ("Tr", (0, 0)), + ("quot;", (34, 0)), + ("gimel;", (8503, 0)), + ("twoheadlefta", (0, 0)), + ("jcir", (0, 0)), + ("Dstr", (0, 0)), + ("Backslash;", (8726, 0)), + ("hookleftarrow", (0, 0)), + ("Oslash", (216, 0)), + ("orslop", (0, 0)), + ("Wfr;", (120090, 0)), + ("NestedLe", (0, 0)), + ("nvap;", (8781, 8402)), + ("Vopf", (0, 0)), + ("strns;", (175, 0)), + ("nLl;", (8920, 824)), + ("varkap", (0, 0)), + ("backp", (0, 0)), + ("ffilig", (0, 0)), + ("image", (0, 0)), + ("Zcaron;", (381, 0)), + ("OE", (0, 0)), + ("frown", (0, 0)), + ("Implies;", (8658, 0)), + ("dca", (0, 0)), + ("ApplyFunction", (0, 0)), + ("DoubleLongRig", (0, 0)), + ("oas", (0, 0)), + ("prs", (0, 0)), + ("HAR", (0, 0)), + ("SmallCirc", (0, 0)), + ("succnappro", (0, 0)), + ("Unde", (0, 0)), + ("RightDownTeeV", (0, 0)), + ("star;", (9734, 0)), + ("notinvb;", (8951, 0)), + ("nvlAr", (0, 0)), + ("NotRightTriangl", (0, 0)), + ("prure", (0, 0)), + ("DownRightT", (0, 0)), + ("P", (0, 0)), + ("subpl", (0, 0)), + ("Thic", (0, 0)), + ("TRADE", (0, 0)), + ("rH", (0, 0)), + ("elinter", (0, 0)), + ("M", (0, 0)), + ("boxvL", (0, 0)), + ("NotSubsetEq", (0, 0)), + ("lagr", (0, 0)), + ("vDa", (0, 0)), + ("itilde;", (297, 0)), + ("blacktrianglerig", (0, 0)), + ("agrave;", (224, 0)), + ("Lcy;", (1051, 0)), + ("apacir;", (10863, 0)), + ("sqsube;", (8849, 0)), + ("roan", (0, 0)), + ("ts", (0, 0)), + ("lesge", (0, 0)), + ("vartrianglerig", (0, 0)), + ("cemptyv;", (10674, 0)), + ("nscc", (0, 0)), + ("verb", (0, 0)), + ("ubrcy;", (1118, 0)), + ("dotminu", (0, 0)), + ("dstr", (0, 0)), + ("auml;", (228, 0)), + ("rtrif", (0, 0)), + ("NotGreaterG", (0, 0)), + ("nvltrie", (0, 0)), + ("Leftrightarrow;", (8660, 0)), + ("CHcy;", (1063, 0)), + ("curvearrowr", (0, 0)), + ("NotLessGreater;", (8824, 0)), + ("suppl", (0, 0)), + ("FilledSmallSquar", (0, 0)), + ("Horiz", (0, 0)), + ("CloseC", (0, 0)), + ("precappr", (0, 0)), + ("Atil", (0, 0)), + ("opl", (0, 0)), + ("nLeft", (0, 0)), + ("Ba", (0, 0)), + ("LeftVector", (0, 0)), + ("UpArrowB", (0, 0)), + ("InvisibleC", (0, 0)), + ("kgree", (0, 0)), + ("Dfr;", (120071, 0)), + ("bigcirc;", (9711, 0)), + ("NotCong", (0, 0)), + ("gesdotol", (0, 0)), + ("DownLeftRight", (0, 0)), + ("hcir", (0, 0)), + ("sqsubseteq;", (8849, 0)), + ("succnappr", (0, 0)), + ("rang;", (10217, 0)), + ("leg", (0, 0)), + ("Utilde", (0, 0)), + ("eqvparsl;", (10725, 0)), + ("LeftAngleBracket;", (10216, 0)), + ("pcy;", (1087, 0)), + ("RightDownVector;", (8642, 0)), + ("vartrianglel", (0, 0)), + ("HorizontalLine;", (9472, 0)), + ("downar", (0, 0)), + ("backepsilon;", (1014, 0)), + ("t", (0, 0)), + ("spadesuit", (0, 0)), + ("nsubE", (0, 0)), + ("rightt", (0, 0)), + ("LessTild", (0, 0)), + ("rightharpoondow", (0, 0)), + ("Umac", (0, 0)), + ("ange;", (10660, 0)), + ("circlearrowri", (0, 0)), + ("lrhar;", (8651, 0)), + ("NotEqualT", (0, 0)), + ("squ;", (9633, 0)), + ("tstrok", (0, 0)), + ("lmoustac", (0, 0)), + ("dcaron", (0, 0)), + ("succappro", (0, 0)), + ("gcirc;", (285, 0)), + ("RBarr;", (10512, 0)), + ("multimap;", (8888, 0)), + ("cempt", (0, 0)), + ("Right", (0, 0)), + ("Atilde", (195, 0)), + ("nvltr", (0, 0)), + ("NotLeftTrian", (0, 0)), + ("nV", (0, 0)), + ("Rarrtl;", (10518, 0)), + ("drco", (0, 0)), + ("GT;", (62, 0)), + ("Al", (0, 0)), + ("shortparal", (0, 0)), + ("ljc", (0, 0)), + ("sse", (0, 0)), + ("MinusP", (0, 0)), + ("Cayle", (0, 0)), + ("bigtriangledo", (0, 0)), + ("erDo", (0, 0)), + ("mcomm", (0, 0)), + ("intpr", (0, 0)), + ("Scirc", (0, 0)), + ("Kf", (0, 0)), + ("Coni", (0, 0)), + ("llha", (0, 0)), + ("xuplus", (0, 0)), + ("leftrightharpoons;", (8651, 0)), + ("dzigra", (0, 0)), + ("Lcedil;", (315, 0)), + ("diam;", (8900, 0)), + ("CircleTim", (0, 0)), + ("nwArr", (0, 0)), + ("pa", (0, 0)), + ("ordf;", (170, 0)), + ("tra", (0, 0)), + ("kce", (0, 0)), + ("ocirc;", (244, 0)), + ("Itil", (0, 0)), + ("Nfr;", (120081, 0)), + ("RightUpDownVector;", (10575, 0)), + ("cupcap;", (10822, 0)), + ("intpro", (0, 0)), + ("SubsetEqual;", (8838, 0)), + ("nleftri", (0, 0)), + ("easter;", (10862, 0)), + ("erDot", (0, 0)), + ("NotLeftTriangleEqua", (0, 0)), + ("betwe", (0, 0)), + ("cirmid;", (10991, 0)), + ("gtrar", (0, 0)), + ("SquareI", (0, 0)), + ("boxmi", (0, 0)), + ("realpart;", (8476, 0)), + ("varsups", (0, 0)), + ("hArr", (0, 0)), + ("NotNestedGreaterG", (0, 0)), + ("par;", (8741, 0)), + ("DoubleUpDo", (0, 0)), + ("zhc", (0, 0)), + ("DoubleContourInte", (0, 0)), + ("cop", (0, 0)), + ("xscr", (0, 0)), + ("nvgt;", (62, 8402)), + ("rightarr", (0, 0)), + ("xcap", (0, 0)), + ("blacktriangleleft;", (9666, 0)), + ("Ascr;", (119964, 0)), + ("pscr;", (120005, 0)), + ("straightepsilo", (0, 0)), + ("Upd", (0, 0)), + ("rnm", (0, 0)), + ("nright", (0, 0)), + ("NotNestedLessLe", (0, 0)), + ("cupc", (0, 0)), + ("rightthreet", (0, 0)), + ("ordf", (170, 0)), + ("notind", (0, 0)), + ("lBa", (0, 0)), + ("varsubsetne", (0, 0)), + ("Pr;", (10939, 0)), + ("Scaro", (0, 0)), + ("odot;", (8857, 0)), + ("OverPa", (0, 0)), + ("TSHcy", (0, 0)), + ("drcrop", (0, 0)), + ("Clos", (0, 0)), + ("UnderPar", (0, 0)), + ("dagge", (0, 0)), + ("nvsim", (0, 0)), + ("lowast;", (8727, 0)), + ("succa", (0, 0)), + ("ncup;", (10818, 0)), + ("v", (0, 0)), + ("backsime", (0, 0)), + ("frac25", (0, 0)), + ("backcong;", (8780, 0)), + ("DownRightTeeVe", (0, 0)), + ("Sc", (0, 0)), + ("odblac;", (337, 0)), + ("oslash", (248, 0)), + ("HumpDownHump;", (8782, 0)), + ("dHar;", (10597, 0)), + ("Circle", (0, 0)), + ("xcup", (0, 0)), + ("centerdo", (0, 0)), + ("yc", (0, 0)), + ("searhk", (0, 0)), + ("aw", (0, 0)), + ("Ograve;", (210, 0)), + ("HumpDo", (0, 0)), + ("nLe", (0, 0)), + ("DoubleUpArrow", (0, 0)), + ("DownRightVec", (0, 0)), + ("Nfr", (0, 0)), + ("lambd", (0, 0)), + ("Exis", (0, 0)), + ("CupCap;", (8781, 0)), + ("angl", (0, 0)), + ("trade", (0, 0)), + ("straightp", (0, 0)), + ("swarhk", (0, 0)), + ("llhard;", (10603, 0)), + ("fallingdotseq", (0, 0)), + ("roti", (0, 0)), + ("excl", (0, 0)), + ("NegativeMediumS", (0, 0)), + ("Righ", (0, 0)), + ("Uparro", (0, 0)), + ("Barwed;", (8966, 0)), + ("LeftDownTeeV", (0, 0)), + ("demptyv;", (10673, 0)), + ("udblac;", (369, 0)), + ("sub;", (8834, 0)), + ("urtr", (0, 0)), + ("vartriang", (0, 0)), + ("race;", (8765, 817)), + ("LeftRight", (0, 0)), + ("doubleb", (0, 0)), + ("Delt", (0, 0)), + ("DoubleRightA", (0, 0)), + ("RightDownVectorBar;", (10581, 0)), + ("DD", (0, 0)), + ("boxUL;", (9565, 0)), + ("uacut", (0, 0)), + ("NonBreaking", (0, 0)), + ("aacute", (225, 0)), + ("rarrfs;", (10526, 0)), + ("Prime;", (8243, 0)), + ("blk34", (0, 0)), + ("capcap;", (10827, 0)), + ("sext", (0, 0)), + ("cups;", (8746, 65024)), + ("LeftArrowBa", (0, 0)), + ("upharpoon", (0, 0)), + ("gl", (0, 0)), + ("ngs", (0, 0)), + ("lsh", (0, 0)), + ("NegativeThi", (0, 0)), + ("circledast;", (8859, 0)), + ("GreaterEqual", (0, 0)), + ("paral", (0, 0)), + ("Bernoul", (0, 0)), + ("Vert;", (8214, 0)), + ("swarh", (0, 0)), + ("spade", (0, 0)), + ("Aacute;", (193, 0)), + ("boxhU", (0, 0)), + ("LowerLeftAr", (0, 0)), + ("NotGreaterEq", (0, 0)), + ("csup;", (10960, 0)), + ("vee;", (8744, 0)), + ("DownTeeAr", (0, 0)), + ("Pr", (0, 0)), + ("gvertneqq;", (8809, 65024)), + ("NotPrecedesS", (0, 0)), + ("boxV", (0, 0)), + ("ngsim", (0, 0)), + ("NotGreaterF", (0, 0)), + ("vArr", (0, 0)), + ("origof;", (8886, 0)), + ("RightUpDown", (0, 0)), + ("DoubleCont", (0, 0)), + ("pitchfork;", (8916, 0)), + ("Iacu", (0, 0)), + ("rl", (0, 0)), + ("precneqq", (0, 0)), + ("larrlp;", (8619, 0)), + ("geqq", (0, 0)), + ("nb", (0, 0)), + ("simne;", (8774, 0)), + ("ldrdhar;", (10599, 0)), + ("nshortp", (0, 0)), + ("DownLeftVector", (0, 0)), + ("wp;", (8472, 0)), + ("LeftDownVectorBa", (0, 0)), + ("Cacute", (0, 0)), + ("swarhk;", (10534, 0)), + ("Rrightarr", (0, 0)), + ("NegativeMediumSp", (0, 0)), + ("Qscr", (0, 0)), + ("GJcy", (0, 0)), + ("imagpart;", (8465, 0)), + ("rmous", (0, 0)), + ("there4;", (8756, 0)), + ("larrb", (0, 0)), + ("angzar", (0, 0)), + ("me", (0, 0)), + ("Nacute", (0, 0)), + ("rbrkslu;", (10640, 0)), + ("RightUpTeeVec", (0, 0)), + ("EmptySmal", (0, 0)), + ("NotGreat", (0, 0)), + ("VerticalTild", (0, 0)), + ("pitchf", (0, 0)), + ("nexists", (0, 0)), + ("notinva;", (8713, 0)), + ("Conto", (0, 0)), + ("clubs", (0, 0)), + ("bigtriangleu", (0, 0)), + ("harrc", (0, 0)), + ("nwarr", (0, 0)), + ("wopf;", (120168, 0)), + ("downarrow;", (8595, 0)), + ("Partia", (0, 0)), + ("nvrArr", (0, 0)), + ("supse", (0, 0)), + ("And;", (10835, 0)), + ("thks", (0, 0)), + ("triangleq", (0, 0)), + ("Pc", (0, 0)), + ("GreaterTild", (0, 0)), + ("CounterClockwiseConto", (0, 0)), + ("szl", (0, 0)), + ("preccurlyeq", (0, 0)), + ("NotPrecedesSla", (0, 0)), + ("ac;", (8766, 0)), + ("lfloor", (0, 0)), + ("eplus", (0, 0)), + ("rbrace;", (125, 0)), + ("rarrap;", (10613, 0)), + ("awin", (0, 0)), + ("eqc", (0, 0)), + ("fscr;", (119995, 0)), + ("hairsp;", (8202, 0)), + ("searro", (0, 0)), + ("DoubleContourIntegra", (0, 0)), + ("VerticalSeparator", (0, 0)), + ("Cedil", (0, 0)), + ("smepars", (0, 0)), + ("LowerRig", (0, 0)), + ("NotPr", (0, 0)), + ("rha", (0, 0)), + ("boxhD;", (9573, 0)), + ("ems", (0, 0)), + ("efDot", (0, 0)), + ("shortmi", (0, 0)), + ("lmoustache", (0, 0)), + ("backs", (0, 0)), + ("rdldha", (0, 0)), + ("bsolhsub", (0, 0)), + ("mapstoup;", (8613, 0)), + ("fla", (0, 0)), + ("circledcir", (0, 0)), + ("uscr", (0, 0)), + ("bigopl", (0, 0)), + ("niv;", (8715, 0)), + ("RoundI", (0, 0)), + ("boxplus", (0, 0)), + ("dha", (0, 0)), + ("smtes;", (10924, 65024)), + ("vB", (0, 0)), + ("imagli", (0, 0)), + ("bfr;", (120095, 0)), + ("HilbertS", (0, 0)), + ("GreaterFullEqu", (0, 0)), + ("uri", (0, 0)), + ("circlearrow", (0, 0)), + ("Me", (0, 0)), + ("RightUpVector", (0, 0)), + ("njcy", (0, 0)), + ("Lcaron", (0, 0)), + ("ncaron", (0, 0)), + ("bigtri", (0, 0)), + ("nlsi", (0, 0)), + ("reg", (174, 0)), + ("lescc;", (10920, 0)), + ("gbrev", (0, 0)), + ("prnE;", (10933, 0)), + ("leq;", (8804, 0)), + ("Reve", (0, 0)), + ("cwconin", (0, 0)), + ("RightV", (0, 0)), + ("becaus;", (8757, 0)), + ("Racu", (0, 0)), + ("Ncedil;", (325, 0)), + ("SquareInte", (0, 0)), + ("hookrightarrow", (0, 0)), + ("qprim", (0, 0)), + ("Kced", (0, 0)), + ("nrtrie", (0, 0)), + ("lowast", (0, 0)), + ("ltquest;", (10875, 0)), + ("SucceedsTil", (0, 0)), + ("Amacr", (0, 0)), + ("Hilb", (0, 0)), + ("NotHumpDownH", (0, 0)), + ("sqsupse", (0, 0)), + ("bep", (0, 0)), + ("boxu", (0, 0)), + ("Ma", (0, 0)), + ("bem", (0, 0)), + ("ApplyFunctio", (0, 0)), + ("dagger;", (8224, 0)), + ("Colone", (0, 0)), + ("lesd", (0, 0)), + ("SubsetEq", (0, 0)), + ("khcy;", (1093, 0)), + ("nvrtr", (0, 0)), + ("Oopf;", (120134, 0)), + ("otimes;", (8855, 0)), + ("trianglelefteq;", (8884, 0)), + ("nVdash", (0, 0)), + ("profala", (0, 0)), + ("risingdotseq;", (8787, 0)), + ("NotReverseElement", (0, 0)), + ("nRighta", (0, 0)), + ("langle;", (10216, 0)), + ("Kc", (0, 0)), + ("numero;", (8470, 0)), + ("UpEquilibrium;", (10606, 0)), + ("DiacriticalDoubleA", (0, 0)), + ("Xs", (0, 0)), + ("lrc", (0, 0)), + ("Abre", (0, 0)), + ("iota;", (953, 0)), + ("Rcy", (0, 0)), + ("simlE;", (10911, 0)), + ("Os", (0, 0)), + ("ugr", (0, 0)), + ("PrecedesEqua", (0, 0)), + ("eo", (0, 0)), + ("kjc", (0, 0)), + ("SquareUnio", (0, 0)), + ("lacute", (0, 0)), + ("GreaterEqualLess", (0, 0)), + ("bec", (0, 0)), + ("backsim;", (8765, 0)), + ("DoubleLongLeftA", (0, 0)), + ("longmap", (0, 0)), + ("tho", (0, 0)), + ("ApplyFu", (0, 0)), + ("equ", (0, 0)), + ("Kopf", (0, 0)), + ("Agr", (0, 0)), + ("LongLeftArro", (0, 0)), + ("Scaron;", (352, 0)), + ("SquareSubsetEqual", (0, 0)), + ("frac18", (0, 0)), + ("succns", (0, 0)), + ("bigcap;", (8898, 0)), + ("plusdu;", (10789, 0)), + ("nsm", (0, 0)), + ("real;", (8476, 0)), + ("NJcy", (0, 0)), + ("blacklozen", (0, 0)), + ("ncaro", (0, 0)), + ("bkar", (0, 0)), + ("gtrap", (0, 0)), + ("rdq", (0, 0)), + ("SquareInt", (0, 0)), + ("rpar", (0, 0)), + ("VD", (0, 0)), + ("CapitalDiffere", (0, 0)), + ("Gam", (0, 0)), + ("geqslant", (0, 0)), + ("leq", (0, 0)), + ("dia", (0, 0)), + ("straightepsilon", (0, 0)), + ("ncap", (0, 0)), + ("vDash", (0, 0)), + ("ugrave", (249, 0)), + ("rightleftharpoons;", (8652, 0)), + ("approxeq", (0, 0)), + ("RightTriang", (0, 0)), + ("odiv", (0, 0)), + ("egsdo", (0, 0)), + ("Exist", (0, 0)), + ("RightTeeArr", (0, 0)), + ("Equilibriu", (0, 0)), + ("Qsc", (0, 0)), + ("rightleftharp", (0, 0)), + ("srar", (0, 0)), + ("gl;", (8823, 0)), + ("rmoust;", (9137, 0)), + ("Bern", (0, 0)), + ("hksearow", (0, 0)), + ("oacute", (243, 0)), + ("Xscr", (0, 0)), + ("gfr;", (120100, 0)), + ("bsime", (0, 0)), + ("ordero", (0, 0)), + ("uAr", (0, 0)), + ("UnderBrace", (0, 0)), + ("NotLes", (0, 0)), + ("lscr;", (120001, 0)), + ("ntrianglerigh", (0, 0)), + ("nleftright", (0, 0)), + ("rh", (0, 0)), + ("pra", (0, 0)), + ("SucceedsE", (0, 0)), + ("RightTriangleB", (0, 0)), + ("per", (0, 0)), + ("eqvpar", (0, 0)), + ("mlcp", (0, 0)), + ("NegativeVeryThi", (0, 0)), + ("TildeEqual", (0, 0)), + ("api", (0, 0)), + ("therefore;", (8756, 0)), + ("gdot;", (289, 0)), + ("ntrianglelefte", (0, 0)), + ("scpo", (0, 0)), + ("Ifr;", (8465, 0)), + ("Tst", (0, 0)), + ("Invisib", (0, 0)), + ("csu", (0, 0)), + ("RightD", (0, 0)), + ("Differe", (0, 0)), + ("nra", (0, 0)), + ("lesges;", (10899, 0)), + ("Psc", (0, 0)), + ("io", (0, 0)), + ("iprod;", (10812, 0)), + ("Int", (0, 0)), + ("DownLeftTeeVector;", (10590, 0)), + ("LeftDownVec", (0, 0)), + ("ml", (0, 0)), + ("DownLeftT", (0, 0)), + ("ReverseElement;", (8715, 0)), + ("lsim", (0, 0)), + ("nlar", (0, 0)), + ("CapitalDifferenti", (0, 0)), + ("Ua", (0, 0)), + ("uml", (168, 0)), + ("nmi", (0, 0)), + ("sce", (0, 0)), + ("Hacek;", (711, 0)), + ("Coun", (0, 0)), + ("poun", (0, 0)), + ("rhov;", (1009, 0)), + ("NotDoubleVe", (0, 0)), + ("UpTeeAr", (0, 0)), + ("larrf", (0, 0)), + ("Bump", (0, 0)), + ("nLeftarro", (0, 0)), + ("ddo", (0, 0)), + ("lflo", (0, 0)), + ("Wc", (0, 0)), + ("ovbar;", (9021, 0)), + ("starf", (0, 0)), + ("Wci", (0, 0)), + ("Longrightarr", (0, 0)), + ("looparr", (0, 0)), + ("Appl", (0, 0)), + ("ascr;", (119990, 0)), + ("NotNestedGreaterGreat", (0, 0)), + ("NotVertica", (0, 0)), + ("subset", (0, 0)), + ("npol", (0, 0)), + ("Ou", (0, 0)), + ("nsupseteq", (0, 0)), + ("Iscr;", (8464, 0)), + ("nscr", (0, 0)), + ("Q", (0, 0)), + ("lnap", (0, 0)), + ("sla", (0, 0)), + ("DiacriticalDoubleAcute", (0, 0)), + ("RightUpVectorB", (0, 0)), + ("NotPrecedesSlant", (0, 0)), + ("DoubleLongRightArr", (0, 0)), + ("LeftDownV", (0, 0)), + ("Ecirc;", (202, 0)), + ("lbrksld", (0, 0)), + ("NotGreaterLe", (0, 0)), + ("LongLeftRi", (0, 0)), + ("cyl", (0, 0)), + ("Longrightarro", (0, 0)), + ("DDotrahd", (0, 0)), + ("tscy", (0, 0)), + ("If", (0, 0)), + ("plustwo", (0, 0)), + ("rcu", (0, 0)), + ("ch", (0, 0)), + ("Diacritica", (0, 0)), + ("Hace", (0, 0)), + ("InvisibleT", (0, 0)), + ("Dfr", (0, 0)), + ("Yuml;", (376, 0)), + ("bcy", (0, 0)), + ("udhar", (0, 0)), + ("Propo", (0, 0)), + ("dashv;", (8867, 0)), + ("nprcue;", (8928, 0)), + ("Asc", (0, 0)), + ("commat", (0, 0)), + ("Grea", (0, 0)), + ("xvee;", (8897, 0)), + ("rbrksl", (0, 0)), + ("Tsc", (0, 0)), + ("ccupss", (0, 0)), + ("nesear", (0, 0)), + ("rightlefthar", (0, 0)), + ("DoubleLongRightAr", (0, 0)), + ("min", (0, 0)), + ("meas", (0, 0)), + ("npolin", (0, 0)), + ("swn", (0, 0)), + ("bd", (0, 0)), + ("nsuc", (0, 0)), + ("fra", (0, 0)), + ("dzigr", (0, 0)), + ("usc", (0, 0)), + ("risingdotse", (0, 0)), + ("ocirc", (244, 0)), + ("csup", (0, 0)), + ("tscr;", (120009, 0)), + ("hor", (0, 0)), + ("cuesc", (0, 0)), + ("cudarrr", (0, 0)), + ("boxDL", (0, 0)), + ("ncongdo", (0, 0)), + ("Mscr", (0, 0)), + ("DownLeftVec", (0, 0)), + ("Cay", (0, 0)), + ("cupb", (0, 0)), + ("checkma", (0, 0)), + ("gjc", (0, 0)), + ("lm", (0, 0)), + ("Gced", (0, 0)), + ("vee", (0, 0)), + ("xi", (0, 0)), + ("preccu", (0, 0)), + ("EmptyVerySmallS", (0, 0)), + ("Rightarrow", (0, 0)), + ("longleftr", (0, 0)), + ("ipro", (0, 0)), + ("frac23;", (8532, 0)), + ("lA", (0, 0)), + ("Cconin", (0, 0)), + ("Vba", (0, 0)), + ("ddar", (0, 0)), + ("mstpos;", (8766, 0)), + ("angsph;", (8738, 0)), + ("HARD", (0, 0)), + ("sup;", (8835, 0)), + ("HumpDown", (0, 0)), + ("Edot;", (278, 0)), + ("NotSucceedsTilde;", (8831, 824)), + ("Uog", (0, 0)), + ("NestedLessLe", (0, 0)), + ("Ocir", (0, 0)), + ("heart", (0, 0)), + ("Agrave;", (192, 0)), + ("SquareIntersection;", (8851, 0)), + ("uparro", (0, 0)), + ("strn", (0, 0)), + ("rsh", (0, 0)), + ("lHa", (0, 0)), + ("hci", (0, 0)), + ("bigotime", (0, 0)), + ("LessLe", (0, 0)), + ("Capit", (0, 0)), + ("Equ", (0, 0)), + ("nrt", (0, 0)), + ("Lam", (0, 0)), + ("centerdot", (0, 0)), + ("realpa", (0, 0)), + ("gammad", (0, 0)), + ("NotLessTi", (0, 0)), + ("OverBrace", (0, 0)), + ("vda", (0, 0)), + ("twoheadrightarr", (0, 0)), + ("ClockwiseContourInteg", (0, 0)), + ("dot", (0, 0)), + ("ii", (0, 0)), + ("curvearrowrigh", (0, 0)), + ("PrecedesSl", (0, 0)), + ("zi", (0, 0)), + ("tsh", (0, 0)), + ("vnsub", (0, 0)), + ("rb", (0, 0)), + ("lcub;", (123, 0)), + ("betwee", (0, 0)), + ("Super", (0, 0)), + ("NotGreaterTilde;", (8821, 0)), + ("dua", (0, 0)), + ("Great", (0, 0)), + ("NotS", (0, 0)), + ("nle", (0, 0)), + ("lharu", (0, 0)), + ("rin", (0, 0)), + ("Sacute;", (346, 0)), + ("rbrack;", (93, 0)), + ("DoubleDot;", (168, 0)), + ("Jcy;", (1049, 0)), + ("xsqcup;", (10758, 0)), + ("UpArrowDownArrow", (0, 0)), + ("Laplacet", (0, 0)), + ("Map", (0, 0)), + ("HARDc", (0, 0)), + ("bfr", (0, 0)), + ("preceq", (0, 0)), + ("rdsh", (0, 0)), + ("Mellintrf;", (8499, 0)), + ("LeftRightVector", (0, 0)), + ("Poinca", (0, 0)), + ("imp", (0, 0)), + ("varsubsetneqq;", (10955, 65024)), + ("nsupset;", (8835, 8402)), + ("exp", (0, 0)), + ("rmoust", (0, 0)), + ("NegativeVeryThinS", (0, 0)), + ("NotHumpEqual", (0, 0)), + ("rdquo;", (8221, 0)), + ("TildeEqu", (0, 0)), + ("sccue;", (8829, 0)), + ("ThinSpa", (0, 0)), + ("hairs", (0, 0)), + ("nes", (0, 0)), + ("Hat", (0, 0)), + ("Rcaron", (0, 0)), + ("TildeE", (0, 0)), + ("hslas", (0, 0)), + ("bcy;", (1073, 0)), + ("amalg", (0, 0)), + ("SquareSubse", (0, 0)), + ("NotGreater;", (8815, 0)), + ("bullet", (0, 0)), + ("otimesas;", (10806, 0)), + ("ed", (0, 0)), + ("NegativeVeryThinSpac", (0, 0)), + ("jukc", (0, 0)), + ("planck;", (8463, 0)), + ("VerticalLine", (0, 0)), + ("nvD", (0, 0)), + ("oel", (0, 0)), + ("nparall", (0, 0)), + ("qpr", (0, 0)), + ("capa", (0, 0)), + ("gtrd", (0, 0)), + ("nsupseteq;", (8841, 0)), + ("Conint;", (8751, 0)), + ("NonBr", (0, 0)), + ("twoheadrightar", (0, 0)), + ("Iuml;", (207, 0)), + ("rlarr;", (8644, 0)), + ("epar;", (8917, 0)), + ("LeftUpVectorBar;", (10584, 0)), + ("To", (0, 0)), + ("LessEqualGrea", (0, 0)), + ("jc", (0, 0)), + ("yacute", (253, 0)), + ("leftrightsquigar", (0, 0)), + ("targe", (0, 0)), + ("uArr", (0, 0)), + ("EmptyVerySmallSquare;", (9643, 0)), + ("Rang", (0, 0)), + ("uwangle", (0, 0)), + ("iopf", (0, 0)), + ("gtrappr", (0, 0)), + ("smte", (0, 0)), + ("hslash;", (8463, 0)), + ("Impli", (0, 0)), + ("nrig", (0, 0)), + ("imag", (0, 0)), + ("od", (0, 0)), + ("Thi", (0, 0)), + ("O", (0, 0)), + ("RightUpDownVector", (0, 0)), + ("vltri;", (8882, 0)), + ("ShortRight", (0, 0)), + ("ntr", (0, 0)), + ("ddotseq;", (10871, 0)), + ("LessLess", (0, 0)), + ("toea;", (10536, 0)), + ("macr", (175, 0)), + ("LeftUpVectorBa", (0, 0)), + ("tsc", (0, 0)), + ("ldru", (0, 0)), + ("simpl", (0, 0)), + ("bigtriangled", (0, 0)), + ("DownRightVect", (0, 0)), + ("zfr", (0, 0)), + ("CloseCurlyQu", (0, 0)), + ("bdqu", (0, 0)), + ("lessap", (0, 0)), + ("NegativeThinSpa", (0, 0)), + ("verba", (0, 0)), + ("gsi", (0, 0)), + ("ClockwiseContou", (0, 0)), + ("phone", (0, 0)), + ("Zopf;", (8484, 0)), + ("lbrke", (0, 0)), + ("wopf", (0, 0)), + ("clubs;", (9827, 0)), + ("parallel;", (8741, 0)), + ("mapstole", (0, 0)), + ("sfrown;", (8994, 0)), + ("rAar", (0, 0)), + ("lrhard;", (10605, 0)), + ("Nopf;", (8469, 0)), + ("rppolint", (0, 0)), + ("notniv", (0, 0)), + ("gtr", (0, 0)), + ("NotGre", (0, 0)), + ("ENG;", (330, 0)), + ("inter", (0, 0)), + ("Jcirc", (0, 0)), + ("Intersecti", (0, 0)), + ("bscr", (0, 0)), + ("order;", (8500, 0)), + ("fll", (0, 0)), + ("xc", (0, 0)), + ("supdo", (0, 0)), + ("DDotra", (0, 0)), + ("cylcty;", (9005, 0)), + ("DownRightTee", (0, 0)), + ("supseteq;", (8839, 0)), + ("gim", (0, 0)), + ("ctdot;", (8943, 0)), + ("mu;", (956, 0)), + ("part;", (8706, 0)), + ("Bc", (0, 0)), + ("npreceq;", (10927, 824)), + ("cupor;", (10821, 0)), + ("looparrowl", (0, 0)), + ("boxvR;", (9566, 0)), + ("doubl", (0, 0)), + ("ldquo;", (8220, 0)), + ("Ecy", (0, 0)), + ("minusb;", (8863, 0)), + ("RightUpDow", (0, 0)), + ("oin", (0, 0)), + ("lneq;", (10887, 0)), + ("DoubleLongLeftRi", (0, 0)), + ("awc", (0, 0)), + ("latail;", (10521, 0)), + ("blacktriangle", (0, 0)), + ("sfro", (0, 0)), + ("questeq;", (8799, 0)), + ("bigtria", (0, 0)), + ("ZeroWidthSpace", (0, 0)), + ("NotCupCap;", (8813, 0)), + ("urc", (0, 0)), + ("Hsc", (0, 0)), + ("llcorne", (0, 0)), + ("rscr", (0, 0)), + ("DoubleLeftT", (0, 0)), + ("LongRightArro", (0, 0)), + ("PlusMinus;", (177, 0)), + ("Lacu", (0, 0)), + ("SquareUnion", (0, 0)), + ("bne", (0, 0)), + ("Ccirc", (0, 0)), + ("FilledVerySmallSquare;", (9642, 0)), + ("rightrightarro", (0, 0)), + ("HARDcy;", (1066, 0)), + ("Barwe", (0, 0)), + ("Very", (0, 0)), + ("CircleDot;", (8857, 0)), + ("jo", (0, 0)), + ("lata", (0, 0)), + ("nge;", (8817, 0)), + ("imat", (0, 0)), + ("boxUR;", (9562, 0)), + ("DoubleContourIntegral", (0, 0)), + ("notin", (0, 0)), + ("curlyeqp", (0, 0)), + ("equi", (0, 0)), + ("npre;", (10927, 824)), + ("diamo", (0, 0)), + ("LeftDoub", (0, 0)), + ("Yu", (0, 0)), + ("leftarrowtail;", (8610, 0)), + ("CounterClockwiseContourInte", (0, 0)), + ("Ri", (0, 0)), + ("ThickSpace;", (8287, 8202)), + ("hscr;", (119997, 0)), + ("fcy;", (1092, 0)), + ("rang", (0, 0)), + ("longrigh", (0, 0)), + ("Ncaro", (0, 0)), + ("ses", (0, 0)), + ("LeftArrowRightArr", (0, 0)), + ("DoubleDown", (0, 0)), + ("lessgt", (0, 0)), + ("ReverseEquilibri", (0, 0)), + ("RightCei", (0, 0)), + ("fall", (0, 0)), + ("de", (0, 0)), + ("precnappr", (0, 0)), + ("NonBreaki", (0, 0)), + ("xoplus;", (10753, 0)), + ("jserc", (0, 0)), + ("updownar", (0, 0)), + ("N", (0, 0)), + ("frac38;", (8540, 0)), + ("Nes", (0, 0)), + ("subseteqq", (0, 0)), + ("NotLessTilde", (0, 0)), + ("NotHumpE", (0, 0)), + ("OverBa", (0, 0)), + ("Prop", (0, 0)), + ("bbrk", (0, 0)), + ("bno", (0, 0)), + ("nLt;", (8810, 8402)), + ("ltqu", (0, 0)), + ("looparrowrig", (0, 0)), + ("lsqb;", (91, 0)), + ("efDot;", (8786, 0)), + ("gamma", (0, 0)), + ("Rrightarro", (0, 0)), + ("longleft", (0, 0)), + ("TildeEq", (0, 0)), + ("mho;", (8487, 0)), + ("longrig", (0, 0)), + ("Kce", (0, 0)), + ("scnap", (0, 0)), + ("Scedil;", (350, 0)), + ("nVdas", (0, 0)), + ("Om", (0, 0)), + ("xwedg", (0, 0)), + ("vzigzag;", (10650, 0)), + ("Exists", (0, 0)), + ("rightleftharpo", (0, 0)), + ("gsiml;", (10896, 0)), + ("rsquor;", (8217, 0)), + ("LongLef", (0, 0)), + ("Capi", (0, 0)), + ("isinE", (0, 0)), + ("triangle;", (9653, 0)), + ("SucceedsSlantEqual", (0, 0)), + ("twoheadright", (0, 0)), + ("jcy", (0, 0)), + ("OverPar", (0, 0)), + ("Of", (0, 0)), + ("frac13;", (8531, 0)), + ("toe", (0, 0)), + ("lamb", (0, 0)), + ("nLeftri", (0, 0)), + ("stra", (0, 0)), + ("RightTe", (0, 0)), + ("rp", (0, 0)), + ("DownB", (0, 0)), + ("els;", (10901, 0)), + ("larrbfs", (0, 0)), + ("CH", (0, 0)), + ("bco", (0, 0)), + ("naturals", (0, 0)), + ("odsol", (0, 0)), + ("nsu", (0, 0)), + ("DiacriticalAcu", (0, 0)), + ("phi;", (966, 0)), + ("RuleDelaye", (0, 0)), + ("frac56", (0, 0)), + ("rtrilt", (0, 0)), + ("nsupE;", (10950, 824)), + ("doubleba", (0, 0)), + ("yac", (0, 0)), + ("curlywed", (0, 0)), + ("Hstrok;", (294, 0)), + ("cuda", (0, 0)), + ("capc", (0, 0)), + ("Kscr;", (119974, 0)), + ("seArr", (0, 0)), + ("LongRigh", (0, 0)), + ("larrl", (0, 0)), + ("ThinSp", (0, 0)), + ("scpol", (0, 0)), + ("raq", (0, 0)), + ("Tscr;", (119983, 0)), + ("rlm;", (8207, 0)), + ("xsqcup", (0, 0)), + ("varepsilo", (0, 0)), + ("RightUpDownVec", (0, 0)), + ("prn", (0, 0)), + ("NotRightTrian", (0, 0)), + ("Racute;", (340, 0)), + ("lacu", (0, 0)), + ("eg", (0, 0)), + ("scpolint;", (10771, 0)), + ("gbre", (0, 0)), + ("TScy", (0, 0)), + ("curvearrowleft;", (8630, 0)), + ("nedot", (0, 0)), + ("angzarr", (0, 0)), + ("Top", (0, 0)), + ("dolla", (0, 0)), + ("CapitalDifferent", (0, 0)), + ("amacr", (0, 0)), + ("ldquor;", (8222, 0)), + ("ecolo", (0, 0)), + ("notinE", (0, 0)), + ("Clo", (0, 0)), + ("nvinfi", (0, 0)), + ("succapprox", (0, 0)), + ("lesssim", (0, 0)), + ("para;", (182, 0)), + ("plankv;", (8463, 0)), + ("ClockwiseContourIn", (0, 0)), + ("nrarr", (0, 0)), + ("searh", (0, 0)), + ("precneq", (0, 0)), + ("ensp;", (8194, 0)), + ("RightC", (0, 0)), + ("Ce", (0, 0)), + ("rtriltri", (0, 0)), + ("LeftFlo", (0, 0)), + ("RightAngleBracket;", (10217, 0)), + ("boxdR", (0, 0)), + ("Contou", (0, 0)), + ("boxUR", (0, 0)), + ("Rarrt", (0, 0)), + ("FilledVerySmallSquar", (0, 0)), + ("Diacrit", (0, 0)), + ("NotLeftTriangleEq", (0, 0)), + ("dots", (0, 0)), + ("ijli", (0, 0)), + ("Od", (0, 0)), + ("ReverseUp", (0, 0)), + ("Colon", (0, 0)), + ("zc", (0, 0)), + ("DownLeftTeeVect", (0, 0)), + ("ecy;", (1101, 0)), + ("afr", (0, 0)), + ("emsp13", (0, 0)), + ("ulcrop;", (8975, 0)), + ("rarrw", (0, 0)), + ("nvsim;", (8764, 8402)), + ("rc", (0, 0)), + ("vartrian", (0, 0)), + ("dfish", (0, 0)), + ("acute;", (180, 0)), + ("edot", (0, 0)), + ("Vvda", (0, 0)), + ("RightUpVectorBa", (0, 0)), + ("LeftTee", (0, 0)), + ("notniva", (0, 0)), + ("Iota;", (921, 0)), + ("iocy;", (1105, 0)), + ("NotTildeTi", (0, 0)), + ("scnsim;", (8937, 0)), + ("PrecedesTilde;", (8830, 0)), + ("nsupe;", (8841, 0)), + ("bsim;", (8765, 0)), + ("se", (0, 0)), + ("asymp", (0, 0)), + ("EmptyVerySmallSq", (0, 0)), + ("omid;", (10678, 0)), + ("circledR", (0, 0)), + ("NotGreaterFull", (0, 0)), + ("acE", (0, 0)), + ("Congr", (0, 0)), + ("olarr;", (8634, 0)), + ("bigtrian", (0, 0)), + ("X", (0, 0)), + ("nl", (0, 0)), + ("lAarr;", (8666, 0)), + ("isinsv", (0, 0)), + ("SquareIntersec", (0, 0)), + ("udblac", (0, 0)), + ("Xfr", (0, 0)), + ("vBarv;", (10985, 0)), + ("capbrc", (0, 0)), + ("simrarr;", (10610, 0)), + ("prsim", (0, 0)), + ("CirclePlus", (0, 0)), + ("spadesui", (0, 0)), + ("varsigma;", (962, 0)), + ("TR", (0, 0)), + ("oper", (0, 0)), + ("diamondsuit;", (9830, 0)), + ("sqcap", (0, 0)), + ("ltl", (0, 0)), + ("NotRightTriang", (0, 0)), + ("ici", (0, 0)), + ("gtrappro", (0, 0)), + ("HorizontalL", (0, 0)), + ("boxHU", (0, 0)), + ("Imacr", (0, 0)), + ("rect;", (9645, 0)), + ("GJ", (0, 0)), + ("boxplu", (0, 0)), + ("circledd", (0, 0)), + ("gnsim", (0, 0)), + ("eque", (0, 0)), + ("boxHd", (0, 0)), + ("swAr", (0, 0)), + ("boxb", (0, 0)), + ("LessSlant", (0, 0)), + ("Ll;", (8920, 0)), + ("larr;", (8592, 0)), + ("Lowe", (0, 0)), + ("ma", (0, 0)), + ("vop", (0, 0)), + ("eog", (0, 0)), + ("Sac", (0, 0)), + ("nvrt", (0, 0)), + ("precnsim", (0, 0)), + ("fopf;", (120151, 0)), + ("loarr;", (8701, 0)), + ("lg;", (8822, 0)), + ("iiiint", (0, 0)), + ("approxeq;", (8778, 0)), + ("hookright", (0, 0)), + ("NotDoubl", (0, 0)), + ("nsc", (0, 0)), + ("Sscr;", (119982, 0)), + ("Diacriti", (0, 0)), + ("gtreqqless", (0, 0)), + ("NotGreaterSlan", (0, 0)), + ("icir", (0, 0)), + ("Sub", (0, 0)), + ("twoheadrightarrow", (0, 0)), + ("DoubleUpDown", (0, 0)), + ("NotSucceedsSlantE", (0, 0)), + ("subseteq", (0, 0)), + ("nsubE;", (10949, 824)), + ("rtri;", (9657, 0)), + ("LongLeft", (0, 0)), + ("Tca", (0, 0)), + ("vsupne;", (8843, 65024)), + ("Updow", (0, 0)), + ("xrArr;", (10233, 0)), + ("prec;", (8826, 0)), + ("efr", (0, 0)), + ("VerticalSeparator;", (10072, 0)), + ("OpenCurlyDoub", (0, 0)), + ("Qop", (0, 0)), + ("homtht", (0, 0)), + ("Ido", (0, 0)), + ("rightrig", (0, 0)), + ("andslo", (0, 0)), + ("lesc", (0, 0)), + ("Scy;", (1057, 0)), + ("LeftTriangleEq", (0, 0)), + ("simdot;", (10858, 0)), + ("ffllig", (0, 0)), + ("trim", (0, 0)), + ("larrtl", (0, 0)), + ("nri", (0, 0)), + ("GreaterSlantEqua", (0, 0)), + ("rightarrowta", (0, 0)), + ("nshortpar", (0, 0)), + ("ncedi", (0, 0)), + ("RightArrowLe", (0, 0)), + ("simdot", (0, 0)), + ("GreaterFu", (0, 0)), + ("RightUpTeeVector;", (10588, 0)), + ("gtrsim;", (8819, 0)), + ("lates;", (10925, 65024)), + ("NotTildeF", (0, 0)), + ("simra", (0, 0)), + ("zcaro", (0, 0)), + ("LeftTriangleE", (0, 0)), + ("DoubleVertical", (0, 0)), + ("awi", (0, 0)), + ("Ucir", (0, 0)), + ("qua", (0, 0)), + ("LessTilde;", (8818, 0)), + ("propto", (0, 0)), + ("precsi", (0, 0)), + ("compf", (0, 0)), + ("lsq", (0, 0)), + ("Wo", (0, 0)), + ("ltlarr", (0, 0)), + ("andand", (0, 0)), + ("LongRight", (0, 0)), + ("cire", (0, 0)), + ("DownTee", (0, 0)), + ("Jukcy", (0, 0)), + ("simr", (0, 0)), + ("infinti", (0, 0)), + ("upuparrow", (0, 0)), + ("SquareSubset", (0, 0)), + ("expon", (0, 0)), + ("DiacriticalT", (0, 0)), + ("apac", (0, 0)), + ("Superset;", (8835, 0)), + ("Iogon", (0, 0)), + ("NoBrea", (0, 0)), + ("circledc", (0, 0)), + ("LeftArrowRi", (0, 0)), + ("LongLeftRight", (0, 0)), + ("LeftUpDownVec", (0, 0)), + ("FilledSmallS", (0, 0)), + ("Vvdash", (0, 0)), + ("fflli", (0, 0)), + ("thkap;", (8776, 0)), + ("frac16;", (8537, 0)), + ("RightAr", (0, 0)), + ("DoubleRightArro", (0, 0)), + ("ur", (0, 0)), + ("DownLeftRig", (0, 0)), + ("DoubleLeftAr", (0, 0)), + ("rsaquo", (0, 0)), + ("succ;", (8827, 0)), + ("NotHumpDownHu", (0, 0)), + ("rightrightarrow", (0, 0)), + ("lrha", (0, 0)), + ("gap;", (10886, 0)), + ("Xf", (0, 0)), + ("bul", (0, 0)), + ("RuleDelayed;", (10740, 0)), + ("eparsl;", (10723, 0)), + ("gimel", (0, 0)), + ("telrec;", (8981, 0)), + ("lowas", (0, 0)), + ("PlusMinus", (0, 0)), + ("nleqq;", (8806, 824)), + ("precapprox;", (10935, 0)), + ("vartriangleright;", (8883, 0)), + ("uu", (0, 0)), + ("NegativeVeryThin", (0, 0)), + ("frac78;", (8542, 0)), + ("Iopf", (0, 0)), + ("LowerRightA", (0, 0)), + ("NotExi", (0, 0)), + ("xot", (0, 0)), + ("CapitalDifferentialD;", (8517, 0)), + ("lacute;", (314, 0)), + ("Cap;", (8914, 0)), + ("zeetrf", (0, 0)), + ("NotRevers", (0, 0)), + ("Ao", (0, 0)), + ("ulc", (0, 0)), + ("blacktrianglelef", (0, 0)), + ("eum", (0, 0)), + ("ltquest", (0, 0)), + ("mida", (0, 0)), + ("uda", (0, 0)), + ("DiacriticalDoubl", (0, 0)), + ("ltrif", (0, 0)), + ("rightharpoonu", (0, 0)), + ("OpenCurlyQu", (0, 0)), + ("Pcy", (0, 0)), + ("sdote", (0, 0)), + ("SubsetE", (0, 0)), + ("mst", (0, 0)), + ("NestedGreaterGreate", (0, 0)), + ("Ntil", (0, 0)), + ("Amac", (0, 0)), + ("nbumpe", (0, 0)), + ("Equa", (0, 0)), + ("eqsim", (0, 0)), + ("Cent", (0, 0)), + ("Aum", (0, 0)), + ("gnsim;", (8935, 0)), + ("Because", (0, 0)), + ("xotim", (0, 0)), + ("supset;", (8835, 0)), + ("simn", (0, 0)), + ("sqsubs", (0, 0)), + ("Equili", (0, 0)), + ("LeftArrowBar", (0, 0)), + ("nless", (0, 0)), + ("NotGreaterGreater", (0, 0)), + ("gvnE;", (8809, 65024)), + ("varth", (0, 0)), + ("veeeq;", (8794, 0)), + ("Dagge", (0, 0)), + ("bigtriangl", (0, 0)), + ("SuchThat", (0, 0)), + ("OverParenthesi", (0, 0)), + ("DoubleUp", (0, 0)), + ("cups", (0, 0)), + ("DScy;", (1029, 0)), + ("dAr", (0, 0)), + ("emsp13;", (8196, 0)), + ("Yacute", (221, 0)), + ("lsimg", (0, 0)), + ("mfr;", (120106, 0)), + ("nvin", (0, 0)), + ("osl", (0, 0)), + ("vnsup", (0, 0)), + ("RightArrowLeftAr", (0, 0)), + ("weier", (0, 0)), + ("zop", (0, 0)), + ("lessgtr", (0, 0)), + ("leftleftarro", (0, 0)), + ("lessa", (0, 0)), + ("varpi;", (982, 0)), + ("Gopf;", (120126, 0)), + ("OverBracket;", (9140, 0)), + ("isins;", (8948, 0)), + ("wedgeq;", (8793, 0)), + ("simplus", (0, 0)), + ("ufisht", (0, 0)), + ("lurds", (0, 0)), + ("verbar;", (124, 0)), + ("urco", (0, 0)), + ("Uuml", (220, 0)), + ("Cacut", (0, 0)), + ("NotSucceedsSlant", (0, 0)), + ("ReverseUpEquili", (0, 0)), + ("NotDoubleVert", (0, 0)), + ("sst", (0, 0)), + ("pertenk;", (8241, 0)), + ("blacksq", (0, 0)), + ("hal", (0, 0)), + ("NotNested", (0, 0)), + ("DiacriticalGrav", (0, 0)), + ("rharul;", (10604, 0)), + ("Cca", (0, 0)), + ("yuml", (255, 0)), + ("incare;", (8453, 0)), + ("varsubse", (0, 0)), + ("ru", (0, 0)), + ("vDas", (0, 0)), + ("ifr;", (120102, 0)), + ("LeftDoubleBracke", (0, 0)), + ("ThinSpace", (0, 0)), + ("supsetne", (0, 0)), + ("sqsupset", (0, 0)), + ("Uarrocir", (0, 0)), + ("nacute;", (324, 0)), + ("xsq", (0, 0)), + ("succnapp", (0, 0)), + ("topfork", (0, 0)), + ("tritim", (0, 0)), + ("nrtr", (0, 0)), + ("quot", (34, 0)), + ("ep", (0, 0)), + ("mho", (0, 0)), + ("Proportiona", (0, 0)), + ("NestedGreaterGre", (0, 0)), + ("DoubleCon", (0, 0)), + ("cire;", (8791, 0)), + ("RightTeeArrow", (0, 0)), + ("nedot;", (8784, 824)), + ("OpenCurlyDouble", (0, 0)), + ("NotGr", (0, 0)), + ("sea", (0, 0)), + ("geqq;", (8807, 0)), + ("um", (0, 0)), + ("rlh", (0, 0)), + ("jf", (0, 0)), + ("lc", (0, 0)), + ("das", (0, 0)), + ("swArr;", (8665, 0)), + ("DownLeftVectorBa", (0, 0)), + ("ssetmn", (0, 0)), + ("Eleme", (0, 0)), + ("upa", (0, 0)), + ("angsph", (0, 0)), + ("com", (0, 0)), + ("cirE;", (10691, 0)), + ("loan", (0, 0)), + ("Yacute;", (221, 0)), + ("dollar;", (36, 0)), + ("Contour", (0, 0)), + ("gvert", (0, 0)), + ("rceil", (0, 0)), + ("cuepr;", (8926, 0)), + ("La", (0, 0)), + ("CircleMi", (0, 0)), + ("DoubleLongLeftRight", (0, 0)), + ("nm", (0, 0)), + ("ltimes;", (8905, 0)), + ("UpperRigh", (0, 0)), + ("rae", (0, 0)), + ("Ocirc", (212, 0)), + ("gesl", (0, 0)), + ("pointi", (0, 0)), + ("rsqb;", (93, 0)), + ("ko", (0, 0)), + ("nhpar", (0, 0)), + ("scy", (0, 0)), + ("urcorner;", (8989, 0)), + ("ImaginaryI;", (8520, 0)), + ("Equil", (0, 0)), + ("vert;", (124, 0)), + ("leftlef", (0, 0)), + ("boxVH;", (9580, 0)), + ("yscr", (0, 0)), + ("uacute", (250, 0)), + ("RightArrowLeftArrow;", (8644, 0)), + ("Negative", (0, 0)), + ("Diamond;", (8900, 0)), + ("punc", (0, 0)), + ("Aogon;", (260, 0)), + ("LeftCe", (0, 0)), + ("NegativeMed", (0, 0)), + ("iques", (0, 0)), + ("forall", (0, 0)), + ("Supse", (0, 0)), + ("boxVH", (0, 0)), + ("NotRightTriangleBar;", (10704, 824)), + ("NotNestedLessLess;", (10913, 824)), + ("Diamo", (0, 0)), + ("NotRever", (0, 0)), + ("profsur", (0, 0)), + ("LeftTeeArrow", (0, 0)), + ("rarrlp;", (8620, 0)), + ("filig;", (64257, 0)), + ("Ex", (0, 0)), + ("nearh", (0, 0)), + ("ssc", (0, 0)), + ("Qfr", (0, 0)), + ("ecolon", (0, 0)), + ("Product", (0, 0)), + ("triangleright", (0, 0)), + ("mapstod", (0, 0)), + ("igrave;", (236, 0)), + ("bigstar;", (9733, 0)), + ("Uni", (0, 0)), + ("rightthreetim", (0, 0)), + ("Poincarepl", (0, 0)), + ("Gammad", (0, 0)), + ("bigoplu", (0, 0)), + ("varnothi", (0, 0)), + ("DownLeftVectorBar", (0, 0)), + ("fscr", (0, 0)), + ("Jscr", (0, 0)), + ("nsup", (0, 0)), + ("smil", (0, 0)), + ("Updowna", (0, 0)), + ("NotDoubleVertica", (0, 0)), + ("ropf", (0, 0)), + ("uH", (0, 0)), + ("hks", (0, 0)), + ("sce;", (10928, 0)), + ("xmap", (0, 0)), + ("loopar", (0, 0)), + ("SquareSupersetEqual;", (8850, 0)), + ("iota", (0, 0)), + ("delta;", (948, 0)), + ("xopf;", (120169, 0)), + ("wp", (0, 0)), + ("amal", (0, 0)), + ("nlt;", (8814, 0)), + ("NoB", (0, 0)), + ("yuml;", (255, 0)), + ("neArr;", (8663, 0)), + ("Cf", (0, 0)), + ("Gbrev", (0, 0)), + ("doll", (0, 0)), + ("oc", (0, 0)), + ("ulcorn", (0, 0)), + ("UnderP", (0, 0)), + ("nabla", (0, 0)), + ("leftleftarrows", (0, 0)), + ("Coproduct;", (8720, 0)), + ("nsqsube", (0, 0)), + ("angmsdaa", (0, 0)), + ("Dst", (0, 0)), + ("CapitalDifferentialD", (0, 0)), + ("shortm", (0, 0)), + ("doteqdot;", (8785, 0)), + ("SHcy", (0, 0)), + ("SOFTc", (0, 0)), + ("Gbre", (0, 0)), + ("quate", (0, 0)), + ("subnE;", (10955, 0)), + ("LessTilde", (0, 0)), + ("supd", (0, 0)), + ("doublebarwedge;", (8966, 0)), + ("iff;", (8660, 0)), + ("awcon", (0, 0)), + ("lfl", (0, 0)), + ("FilledSmallSqua", (0, 0)), + ("VeryThinSpace;", (8202, 0)), + ("subrarr;", (10617, 0)), + ("alpha", (0, 0)), + ("Csc", (0, 0)), + ("ovbar", (0, 0)), + ("lra", (0, 0)), + ("ubreve;", (365, 0)), + ("NotLessSla", (0, 0)), + ("Rce", (0, 0)), + ("nLeftrighta", (0, 0)), + ("NegativeVeryT", (0, 0)), + ("lrtr", (0, 0)), + ("Yuml", (0, 0)), + ("CloseCurlyDou", (0, 0)), + ("fork", (0, 0)), + ("ruluhar;", (10600, 0)), + ("rBa", (0, 0)), + ("varr;", (8597, 0)), + ("smallsetminus;", (8726, 0)), + ("lsqb", (0, 0)), + ("yu", (0, 0)), + ("olcr", (0, 0)), + ("bigcap", (0, 0)), + ("NotSubsetEqua", (0, 0)), + ("NotSucceedsSlantEqua", (0, 0)), + ("DoubleLongRightA", (0, 0)), + ("interca", (0, 0)), + ("larrbfs;", (10527, 0)), + ("apa", (0, 0)), + ("NotSquareSuperset", (0, 0)), + ("nvdash", (0, 0)), + ("DownTee;", (8868, 0)), + ("xuplus;", (10756, 0)), + ("OverBrace;", (9182, 0)), + ("tridot", (0, 0)), + ("bigtr", (0, 0)), + ("Osl", (0, 0)), + ("lmo", (0, 0)), + ("Sscr", (0, 0)), + ("OverBrac", (0, 0)), + ("rightleftarr", (0, 0)), + ("nsime;", (8772, 0)), + ("sqcups;", (8852, 65024)), + ("NotTildeFullEq", (0, 0)), + ("nsc;", (8833, 0)), + ("notinvc", (0, 0)), + ("erD", (0, 0)), + ("lcar", (0, 0)), + ("CounterClockwiseContourInt", (0, 0)), + ("Fouriertrf;", (8497, 0)), + ("Rh", (0, 0)), + ("near", (0, 0)), + ("Mo", (0, 0)), + ("DotD", (0, 0)), + ("sof", (0, 0)), + ("ngt;", (8815, 0)), + ("ccups", (0, 0)), + ("appro", (0, 0)), + ("LeftDownVector;", (8643, 0)), + ("beca", (0, 0)), + ("trpez", (0, 0)), + ("blacktriangleri", (0, 0)), + ("congd", (0, 0)), + ("sacute", (0, 0)), + ("b", (0, 0)), + ("Sop", (0, 0)), + ("fllig", (0, 0)), + ("doteqdot", (0, 0)), + ("rpp", (0, 0)), + ("cente", (0, 0)), + ("bse", (0, 0)), + ("NotDoubleVerticalBar", (0, 0)), + ("brvbar", (166, 0)), + ("backprim", (0, 0)), + ("ReverseUpEquil", (0, 0)), + ("crarr", (0, 0)), + ("Zd", (0, 0)), + ("Afr", (0, 0)), + ("nvinfin;", (10718, 0)), + ("csub", (0, 0)), + ("lEg;", (10891, 0)), + ("eopf", (0, 0)), + ("scaro", (0, 0)), + ("rra", (0, 0)), + ("ncongd", (0, 0)), + ("abrev", (0, 0)), + ("Ther", (0, 0)), + ("DiacriticalDoubleAcute;", (733, 0)), + ("NotElement", (0, 0)), + ("updownarrow", (0, 0)), + ("ShortDownArro", (0, 0)), + ("ig", (0, 0)), + ("vangr", (0, 0)), + ("cuesc;", (8927, 0)), + ("Yac", (0, 0)), + ("ljcy", (0, 0)), + ("sqsubseteq", (0, 0)), + ("map;", (8614, 0)), + ("ljcy;", (1113, 0)), + ("Under", (0, 0)), + ("LeftTeeVector", (0, 0)), + ("TildeTil", (0, 0)), + ("quati", (0, 0)), + ("DoubleVerticalBa", (0, 0)), + ("longleftar", (0, 0)), + ("Auml;", (196, 0)), + ("tcaro", (0, 0)), + ("equal", (0, 0)), + ("NotGreaterFullEqual;", (8807, 824)), + ("nsupE", (0, 0)), + ("Proportio", (0, 0)), + ("epsilon", (0, 0)), + ("dbkar", (0, 0)), + ("upharpoonright", (0, 0)), + ("rata", (0, 0)), + ("NotNestedGreaterGreate", (0, 0)), + ("lrm;", (8206, 0)), + ("ael", (0, 0)), + ("frac23", (0, 0)), + ("Emac", (0, 0)), + ("Counter", (0, 0)), + ("capcup", (0, 0)), + ("Wfr", (0, 0)), + ("VerticalSe", (0, 0)), + ("rAta", (0, 0)), + ("NotSupersetEqu", (0, 0)), + ("angmsda", (0, 0)), + ("subm", (0, 0)), + ("LowerLeftArro", (0, 0)), + ("scnap;", (10938, 0)), + ("rotimes;", (10805, 0)), + ("Lacut", (0, 0)), + ("bigodot", (0, 0)), + ("veebar;", (8891, 0)), + ("leg;", (8922, 0)), + ("du", (0, 0)), + ("aopf", (0, 0)), + ("hbar;", (8463, 0)), + ("ouml;", (246, 0)), + ("tbrk;", (9140, 0)), + ("lnapprox", (0, 0)), + ("lharu;", (8636, 0)), + ("upsih", (0, 0)), + ("nsi", (0, 0)), + ("nwne", (0, 0)), + ("Nest", (0, 0)), + ("plusacir", (0, 0)), + ("LeftTriangleBar;", (10703, 0)), + ("bsolhsub;", (10184, 0)), + ("Egra", (0, 0)), + ("ccaron;", (269, 0)), + ("vcy", (0, 0)), + ("Proportional", (0, 0)), + ("ShortLeftArrow", (0, 0)), + ("SubsetEqua", (0, 0)), + ("hearts;", (9829, 0)), + ("because;", (8757, 0)), + ("mcy;", (1084, 0)), + ("shortpa", (0, 0)), + ("NotGreaterS", (0, 0)), + ("lAr", (0, 0)), + ("realp", (0, 0)), + ("Cayley", (0, 0)), + ("RightTriangleBar;", (10704, 0)), + ("aop", (0, 0)), + ("NotLess", (0, 0)), + ("RightA", (0, 0)), + ("looparro", (0, 0)), + ("NotVe", (0, 0)), + ("equivD", (0, 0)), + ("Circl", (0, 0)), + ("leftthreetim", (0, 0)), + ("popf;", (120161, 0)), + ("DoubleVer", (0, 0)), + ("raqu", (0, 0)), + ("nbum", (0, 0)), + ("Larr", (0, 0)), + ("NotReverseElement;", (8716, 0)), + ("NotPrecedesSl", (0, 0)), + ("downharpoonl", (0, 0)), + ("nVDash", (0, 0)), + ("loopa", (0, 0)), + ("plusci", (0, 0)), + ("Eopf;", (120124, 0)), + ("larrhk;", (8617, 0)), + ("orarr", (0, 0)), + ("subnE", (0, 0)), + ("leftthreet", (0, 0)), + ("prop;", (8733, 0)), + ("nlsim", (0, 0)), + ("care", (0, 0)), + ("Inter", (0, 0)), + ("cc", (0, 0)), + ("CounterClo", (0, 0)), + ("nrar", (0, 0)), + ("DoubleLeftRightArro", (0, 0)), + ("permil;", (8240, 0)), + ("ps", (0, 0)), + ("Back", (0, 0)), + ("hookle", (0, 0)), + ("cs", (0, 0)), + ("ddagger", (0, 0)), + ("Succeeds", (0, 0)), + ("eqslantl", (0, 0)), + ("rbr", (0, 0)), + ("LeftArrowBar;", (8676, 0)), + ("Amacr;", (256, 0)), + ("angmsdaf", (0, 0)), + ("ImaginaryI", (0, 0)), + ("Ed", (0, 0)), + ("becau", (0, 0)), + ("Backslash", (0, 0)), + ("NotPrec", (0, 0)), + ("Rs", (0, 0)), + ("Rcedil", (0, 0)), + ("succcur", (0, 0)), + ("NotHumpEqual;", (8783, 824)), + ("Ssc", (0, 0)), + ("nsubsete", (0, 0)), + ("con", (0, 0)), + ("cdo", (0, 0)), + ("Fopf", (0, 0)), + ("Rrightarrow", (0, 0)), + ("scp", (0, 0)), + ("NotTildeEqua", (0, 0)), + ("napi", (0, 0)), + ("ab", (0, 0)), + ("Cap", (0, 0)), + ("lrh", (0, 0)), + ("NotHu", (0, 0)), + ("osla", (0, 0)), + ("rightsquigarro", (0, 0)), + ("exist", (0, 0)), + ("veeeq", (0, 0)), + ("DoubleLongLeftArr", (0, 0)), + ("Leftar", (0, 0)), + ("twoheadri", (0, 0)), + ("for", (0, 0)), + ("NotGreaterFullEqual", (0, 0)), + ("RightTr", (0, 0)), + ("Mellintrf", (0, 0)), + ("YIc", (0, 0)), + ("it;", (8290, 0)), + ("Uac", (0, 0)), + ("herc", (0, 0)), + ("mlcp;", (10971, 0)), + ("sqsupset;", (8848, 0)), + ("mp", (0, 0)), + ("rightthreetimes;", (8908, 0)), + ("MediumS", (0, 0)), + ("dharl;", (8643, 0)), + ("leftrightharp", (0, 0)), + ("cular", (0, 0)), + ("Sho", (0, 0)), + ("iexcl", (161, 0)), + ("pitc", (0, 0)), + ("L", (0, 0)), + ("LeftRightArro", (0, 0)), + ("Uring;", (366, 0)), + ("pars", (0, 0)), + ("asymp;", (8776, 0)), + ("Ati", (0, 0)), + ("angmsdad", (0, 0)), + ("malt", (0, 0)), + ("realin", (0, 0)), + ("RightVectorBar;", (10579, 0)), + ("Sc;", (10940, 0)), + ("NotTildeFull", (0, 0)), + ("Oci", (0, 0)), + ("rightharpoondown;", (8641, 0)), + ("trido", (0, 0)), + ("submult", (0, 0)), + ("elinters;", (9191, 0)), + ("cedil", (184, 0)), + ("eq", (0, 0)), + ("varepsi", (0, 0)), + ("circleddash;", (8861, 0)), + ("hoarr;", (8703, 0)), + ("ucirc", (251, 0)), + ("measureda", (0, 0)), + ("ContourInt", (0, 0)), + ("LowerLe", (0, 0)), + ("dzigrar", (0, 0)), + ("boxtimes;", (8864, 0)), + ("percnt", (0, 0)), + ("ogt", (0, 0)), + ("Iukc", (0, 0)), + ("DownTeeArrow;", (8615, 0)), + ("Agrav", (0, 0)), + ("gtrles", (0, 0)), + ("erDot;", (8787, 0)), + ("Mellint", (0, 0)), + ("PrecedesE", (0, 0)), + ("as", (0, 0)), + ("NotEx", (0, 0)), + ("sqsube", (0, 0)), + ("precsim;", (8830, 0)), + ("fs", (0, 0)), + ("realpart", (0, 0)), + ("Ropf", (0, 0)), + ("barvee;", (8893, 0)), + ("leftthre", (0, 0)), + ("NotSucceedsE", (0, 0)), + ("frac25;", (8534, 0)), + ("backe", (0, 0)), + ("Colo", (0, 0)), + ("vd", (0, 0)), + ("OverBar;", (8254, 0)), + ("exist;", (8707, 0)), + ("Cup;", (8915, 0)), + ("paralle", (0, 0)), + ("OverB", (0, 0)), + ("LessSlantEqual;", (10877, 0)), + ("zscr;", (120015, 0)), + ("DownL", (0, 0)), + ("mDD", (0, 0)), + ("boxH", (0, 0)), + ("fjl", (0, 0)), + ("Bre", (0, 0)), + ("NotLessEq", (0, 0)), + ("bso", (0, 0)), + ("blacklozenge;", (10731, 0)), + ("Rig", (0, 0)), + ("rparg", (0, 0)), + ("EmptyVerySmallSquare", (0, 0)), + ("smid;", (8739, 0)), + ("nis;", (8956, 0)), + ("DZcy", (0, 0)), + ("bigtriang", (0, 0)), + ("khc", (0, 0)), + ("lltr", (0, 0)), + ("OpenCurlyDo", (0, 0)), + ("NotRightTr", (0, 0)), + ("DiacriticalDoubleAcu", (0, 0)), + ("backepsi", (0, 0)), + ("OpenCurlyQ", (0, 0)), + ("trianglerigh", (0, 0)), + ("supe", (0, 0)), + ("Equi", (0, 0)), + ("NotHumpEqu", (0, 0)), + ("Usc", (0, 0)), + ("Msc", (0, 0)), + ("upsilon;", (965, 0)), + ("sex", (0, 0)), + ("FilledVerySmallSqu", (0, 0)), + ("RightUpDownV", (0, 0)), + ("copysr", (0, 0)), + ("ShortLeft", (0, 0)), + ("ultri;", (9720, 0)), + ("lsaquo", (0, 0)), + ("LeftUpT", (0, 0)), + ("De", (0, 0)), + ("twoheadleftarrow", (0, 0)), + ("nesear;", (10536, 0)), + ("NonBreakingS", (0, 0)), + ("thicksim;", (8764, 0)), + ("alefs", (0, 0)), + ("cupcap", (0, 0)), + ("hcirc", (0, 0)), + ("Kcedi", (0, 0)), + ("angrtvbd;", (10653, 0)), + ("capbr", (0, 0)), + ("UnderParen", (0, 0)), + ("GreaterS", (0, 0)), + ("solbar;", (9023, 0)), + ("fn", (0, 0)), + ("cularr;", (8630, 0)), + ("zee", (0, 0)), + ("laquo;", (171, 0)), + ("poi", (0, 0)), + ("roang;", (10221, 0)), + ("rHar;", (10596, 0)), + ("natur;", (9838, 0)), + ("Fill", (0, 0)), + ("y", (0, 0)), + ("NotSquareSubsetEqu", (0, 0)), + ("deg", (176, 0)), + ("ecy", (0, 0)), + ("aogon;", (261, 0)), + ("raemp", (0, 0)), + ("xlA", (0, 0)), + ("cupbrc", (0, 0)), + ("Imp", (0, 0)), + ("nang;", (8736, 8402)), + ("gtq", (0, 0)), + ("leftha", (0, 0)), + ("KHcy", (0, 0)), + ("xotime;", (10754, 0)), + ("nce", (0, 0)), + ("SquareIntersectio", (0, 0)), + ("varepsilon;", (1013, 0)), + ("DownBreve;", (785, 0)), + ("ulcr", (0, 0)), + ("vrtr", (0, 0)), + ("Js", (0, 0)), + ("gtrs", (0, 0)), + ("gtrl", (0, 0)), + ("VerticalSepara", (0, 0)), + ("blacktriangle;", (9652, 0)), + ("circlearrowright", (0, 0)), + ("bneq", (0, 0)), + ("frac", (0, 0)), + ("NotLessEqual;", (8816, 0)), + ("nrarrw", (0, 0)), + ("dzigrarr", (0, 0)), + ("cr", (0, 0)), + ("Xscr;", (119987, 0)), + ("rbbr", (0, 0)), + ("gb", (0, 0)), + ("hell", (0, 0)), + ("ntriangleleft;", (8938, 0)), + ("OverParent", (0, 0)), + ("longleftrightarr", (0, 0)), + ("rightar", (0, 0)), + ("pointint;", (10773, 0)), + ("ther", (0, 0)), + ("angsp", (0, 0)), + ("gime", (0, 0)), + ("Us", (0, 0)), + ("ropf;", (120163, 0)), + ("Df", (0, 0)), + ("dempty", (0, 0)), + ("complexe", (0, 0)), + ("Star;", (8902, 0)), + ("Idot;", (304, 0)), + ("soft", (0, 0)), + ("ccedil", (231, 0)), + ("nwarr;", (8598, 0)), + ("dfisht", (0, 0)), + ("Vert", (0, 0)), + ("dbk", (0, 0)), + ("gne", (0, 0)), + ("neq", (0, 0)), + ("boxHd;", (9572, 0)), + ("rfl", (0, 0)), + ("bigwedge", (0, 0)), + ("operp;", (10681, 0)), + ("lnapprox;", (10889, 0)), + ("times;", (215, 0)), + ("NestedGreaterGr", (0, 0)), + ("Ms", (0, 0)), + ("Vscr;", (119985, 0)), + ("UpEquilibr", (0, 0)), + ("inc", (0, 0)), + ("downdow", (0, 0)), + ("ApplyFuncti", (0, 0)), + ("lbrack", (0, 0)), + ("rce", (0, 0)), + ("ldrush", (0, 0)), + ("backsim", (0, 0)), + ("ph", (0, 0)), + ("LeftVector;", (8636, 0)), + ("umac", (0, 0)), + ("hsc", (0, 0)), + ("kscr", (0, 0)), + ("lrhard", (0, 0)), + ("NotEqual", (0, 0)), + ("map", (0, 0)), + ("fjlig", (0, 0)), + ("lsquo;", (8216, 0)), + ("sect", (167, 0)), + ("lbrkslu", (0, 0)), + ("Isc", (0, 0)), + ("K", (0, 0)), + ("ddagg", (0, 0)), + ("ReverseEquilibr", (0, 0)), + ("leftharpoonup", (0, 0)), + ("seswar;", (10537, 0)), + ("complement", (0, 0)), + ("Lleftarr", (0, 0)), + ("iuml;", (239, 0)), + ("simg", (0, 0)), + ("boxbox", (0, 0)), + ("Gg", (0, 0)), + ("cwc", (0, 0)), + ("NotSquareSupersetEqual", (0, 0)), + ("weie", (0, 0)), + ("agrav", (0, 0)), + ("UpEquilibrium", (0, 0)), + ("RightCeil", (0, 0)), + ("op", (0, 0)), + ("boxvl", (0, 0)), + ("dtri;", (9663, 0)), + ("nhp", (0, 0)), + ("rbrac", (0, 0)), + ("Leftrightarro", (0, 0)), + ("ccedil;", (231, 0)), + ("UnderBar;", (95, 0)), + ("UpperLe", (0, 0)), + ("pre", (0, 0)), + ("middot;", (183, 0)), + ("Hst", (0, 0)), + ("Downarro", (0, 0)), + ("Four", (0, 0)), + ("nshortmid", (0, 0)), + ("lesdoto", (0, 0)), + ("rnmid;", (10990, 0)), + ("leftlefta", (0, 0)), + ("rightleft", (0, 0)), + ("Bernoulli", (0, 0)), + ("qint;", (10764, 0)), + ("quatint", (0, 0)), + ("nsubseteqq;", (10949, 824)), + ("rot", (0, 0)), + ("Mscr;", (8499, 0)), + ("quatern", (0, 0)), + ("boxD", (0, 0)), + ("supmult;", (10946, 0)), + ("NotLeftTriangle", (0, 0)), + ("Gcedil", (0, 0)), + ("LeftUpDownVector", (0, 0)), + ("NotRightTria", (0, 0)), + ("wedbar;", (10847, 0)), + ("horbar", (0, 0)), + ("RightDownTee", (0, 0)), + ("Eog", (0, 0)), + ("boxVr", (0, 0)), + ("lesseqqgt", (0, 0)), + ("OverP", (0, 0)), + ("Eopf", (0, 0)), + ("Ograv", (0, 0)), + ("nearrow;", (8599, 0)), + ("ima", (0, 0)), + ("ffll", (0, 0)), + ("DownRightVector;", (8641, 0)), + ("dscy;", (1109, 0)), + ("Expon", (0, 0)), + ("DownRightTeeV", (0, 0)), + ("Darr", (0, 0)), + ("Tstrok;", (358, 0)), + ("boxHu", (0, 0)), + ("nearro", (0, 0)), + ("thkap", (0, 0)), + ("vartrianglelef", (0, 0)), + ("downdownarrow", (0, 0)), + ("sz", (0, 0)), + ("hookleftarr", (0, 0)), + ("Ll", (0, 0)), + ("vn", (0, 0)), + ("quaternion", (0, 0)), + ("omac", (0, 0)), + ("SquareSupersetEqua", (0, 0)), + ("thins", (0, 0)), + ("Lstrok;", (321, 0)), + ("dscr", (0, 0)), + ("longleftarrow;", (10229, 0)), + ("DoubleContourIn", (0, 0)), + ("LongLeftRightArrow;", (10231, 0)), + ("LongLeftArrow;", (10229, 0)), + ("trianglerighteq", (0, 0)), + ("lfloor;", (8970, 0)), + ("subseteqq;", (10949, 0)), + ("laquo", (171, 0)), + ("RightTeeA", (0, 0)), + ("brv", (0, 0)), + ("ltdot;", (8918, 0)), + ("brvba", (0, 0)), + ("fpartin", (0, 0)), + ("Downarr", (0, 0)), + ("swarrow", (0, 0)), + ("Assign", (0, 0)), + ("UpperRightArro", (0, 0)), + ("alefsym;", (8501, 0)), + ("DoubleLongLe", (0, 0)), + ("Lefta", (0, 0)), + ("khcy", (0, 0)), + ("NotSucceedsEqual", (0, 0)), + ("nsubseteq", (0, 0)), + ("drb", (0, 0)), + ("NonBreakingSp", (0, 0)), + ("Ta", (0, 0)), + ("succ", (0, 0)), + ("utd", (0, 0)), + ("exponentiale", (0, 0)), + ("gt;", (62, 0)), + ("eDDot", (0, 0)), + ("rlm", (0, 0)), + ("PrecedesSlantEq", (0, 0)), + ("DownArrowUpArrow", (0, 0)), + ("DDo", (0, 0)), + ("solb;", (10692, 0)), + ("laemptyv;", (10676, 0)), + ("bigve", (0, 0)), + ("Fourier", (0, 0)), + ("Epsilon", (0, 0)), + ("subd", (0, 0)), + ("CapitalDiffer", (0, 0)), + ("SHc", (0, 0)), + ("Gg;", (8921, 0)), + ("boxtime", (0, 0)), + ("OpenCurlyD", (0, 0)), + ("simrarr", (0, 0)), + ("Ksc", (0, 0)), + ("angrtvb;", (8894, 0)), + ("sbquo", (0, 0)), + ("precapp", (0, 0)), + ("Ef", (0, 0)), + ("OverBr", (0, 0)), + ("gns", (0, 0)), + ("Tstrok", (0, 0)), + ("setmi", (0, 0)), + ("LeftCeil", (0, 0)), + ("RightVectorBar", (0, 0)), + ("boxul", (0, 0)), + ("Lmidot", (0, 0)), + ("smepar", (0, 0)), + ("Zet", (0, 0)), + ("rising", (0, 0)), + ("ncedil", (0, 0)), + ("Longleftar", (0, 0)), + ("lsquo", (0, 0)), + ("Hop", (0, 0)), + ("elsdot;", (10903, 0)), + ("sigmaf", (0, 0)), + ("varsu", (0, 0)), + ("Ks", (0, 0)), + ("twoheadle", (0, 0)), + ("tri", (0, 0)), + ("blacks", (0, 0)), + ("wfr", (0, 0)), + ("ZeroWidthS", (0, 0)), + ("ZHc", (0, 0)), + ("ddotseq", (0, 0)), + ("DoubleLeftArrow", (0, 0)), + ("ijlig", (0, 0)), + ("straightep", (0, 0)), + ("Uarro", (0, 0)), + ("lj", (0, 0)), + ("LeftDownT", (0, 0)), + ("zeta", (0, 0)), + ("ssta", (0, 0)), + ("Un", (0, 0)), + ("mf", (0, 0)), + ("harrcir;", (10568, 0)), + ("UnderBar", (0, 0)), + ("midd", (0, 0)), + ("bsol", (0, 0)), + ("lrcorn", (0, 0)), + ("hooklefta", (0, 0)), + ("bsemi;", (8271, 0)), + ("searrow;", (8600, 0)), + ("thickapprox", (0, 0)), + ("scnE;", (10934, 0)), + ("elsdo", (0, 0)), + ("ao", (0, 0)), + ("Min", (0, 0)), + ("nlE", (0, 0)), + ("bigs", (0, 0)), + ("disin;", (8946, 0)), + ("NotTildeTil", (0, 0)), + ("Zacut", (0, 0)), + ("nwarrow", (0, 0)), + ("NotExists", (0, 0)), + ("oS", (0, 0)), + ("Ocy;", (1054, 0)), + ("scedil", (0, 0)), + ("there", (0, 0)), + ("notinv", (0, 0)), + ("Nacu", (0, 0)), + ("Lca", (0, 0)), + ("lha", (0, 0)), + ("vAr", (0, 0)), + ("Ugrave;", (217, 0)), + ("ntriangleleft", (0, 0)), + ("mid", (0, 0)), + ("DoubleC", (0, 0)), + ("GreaterSlantEqual;", (10878, 0)), + ("sc;", (8827, 0)), + ("NotTildeTild", (0, 0)), + ("LessEqualGreater", (0, 0)), + ("swA", (0, 0)), + ("ordm;", (186, 0)), + ("ominus;", (8854, 0)), + ("DotDot;", (8412, 0)), + ("LowerL", (0, 0)), + ("lbbr", (0, 0)), + ("lcu", (0, 0)), + ("vsub", (0, 0)), + ("Util", (0, 0)), + ("iog", (0, 0)), + ("ex", (0, 0)), + ("DotEq", (0, 0)), + ("scnsi", (0, 0)), + ("rmo", (0, 0)), + ("Sopf", (0, 0)), + ("empty;", (8709, 0)), + ("nang", (0, 0)), + ("upsilon", (0, 0)), + ("rightharpo", (0, 0)), + ("ee;", (8519, 0)), + ("vltr", (0, 0)), + ("yacute;", (253, 0)), + ("pscr", (0, 0)), + ("supla", (0, 0)), + ("sopf", (0, 0)), + ("varnothing", (0, 0)), + ("supdot;", (10942, 0)), + ("RightDoubl", (0, 0)), + ("RBa", (0, 0)), + ("precnap", (0, 0)), + ("hookrighta", (0, 0)), + ("setmn;", (8726, 0)), + ("angmsdah", (0, 0)), + ("Imaginary", (0, 0)), + ("ccedi", (0, 0)), + ("Union", (0, 0)), + ("xuplu", (0, 0)), + ("sum;", (8721, 0)), + ("trisb", (0, 0)), + ("amp;", (38, 0)), + ("rightle", (0, 0)), + ("theta", (0, 0)), + ("nleqq", (0, 0)), + ("preccur", (0, 0)), + ("lob", (0, 0)), + ("erarr", (0, 0)), + ("Icir", (0, 0)), + ("bum", (0, 0)), + ("amp", (38, 0)), + ("EmptySmallSquar", (0, 0)), + ("sp", (0, 0)), + ("Longleftrightarrow", (0, 0)), + ("hybul", (0, 0)), + ("Tcedil", (0, 0)), + ("tosa", (0, 0)), + ("SucceedsSl", (0, 0)), + ("Berno", (0, 0)), + ("RightDownVectorBar", (0, 0)), + ("half", (0, 0)), + ("emptys", (0, 0)), + ("rhard;", (8641, 0)), + ("nsim;", (8769, 0)), + ("solb", (0, 0)), + ("between", (0, 0)), + ("nwar", (0, 0)), + ("larrsim;", (10611, 0)), + ("UpEqui", (0, 0)), + ("ngtr;", (8815, 0)), + ("FilledSmallSquare", (0, 0)), + ("uogon", (0, 0)), + ("mi", (0, 0)), + ("cwin", (0, 0)), + ("varsupsetneq", (0, 0)), + ("LeftUpVec", (0, 0)), + ("nprcu", (0, 0)), + ("nan", (0, 0)), + ("blacksquare;", (9642, 0)), + ("rcedil", (0, 0)), + ("ShortDownArrow;", (8595, 0)), + ("rarrsim;", (10612, 0)), + ("Xopf;", (120143, 0)), + ("cross", (0, 0)), + ("DownTeeArr", (0, 0)), + ("Otild", (0, 0)), + ("Jop", (0, 0)), + ("NotGreaterFullEqu", (0, 0)), + ("bbr", (0, 0)), + ("biguplu", (0, 0)), + ("uop", (0, 0)), + ("Thin", (0, 0)), + ("ov", (0, 0)), + ("boxuR;", (9560, 0)), + ("nRightarrow;", (8655, 0)), + ("Iacute", (205, 0)), + ("reali", (0, 0)), + ("cupcup", (0, 0)), + ("LongRightAr", (0, 0)), + ("nleftr", (0, 0)), + ("clubsui", (0, 0)), + ("andan", (0, 0)), + ("ycy;", (1099, 0)), + ("nvinfin", (0, 0)), + ("Ac", (0, 0)), + ("longmapsto;", (10236, 0)), + ("RightDoubleBracket;", (10215, 0)), + ("blacksqua", (0, 0)), + ("DoubleContour", (0, 0)), + ("isins", (0, 0)), + ("varsupsetne", (0, 0)), + ("LeftUpVect", (0, 0)), + ("nearr", (0, 0)), + ("Lle", (0, 0)), + ("Dscr;", (119967, 0)), + ("SucceedsSlan", (0, 0)), + ("Ass", (0, 0)), + ("sime", (0, 0)), + ("popf", (0, 0)), + ("LJcy;", (1033, 0)), + ("backeps", (0, 0)), + ("disin", (0, 0)), + ("ReverseEq", (0, 0)), + ("LeftAngleBr", (0, 0)), + ("UnderB", (0, 0)), + ("fallingdots", (0, 0)), + ("Verba", (0, 0)), + ("nrArr;", (8655, 0)), + ("Unio", (0, 0)), + ("Vc", (0, 0)), + ("female;", (9792, 0)), + ("topcir", (0, 0)), + ("NotSquareSubs", (0, 0)), + ("intl", (0, 0)), + ("her", (0, 0)), + ("prsi", (0, 0)), + ("downdownarr", (0, 0)), + ("Plus", (0, 0)), + ("elsd", (0, 0)), + ("lvertne", (0, 0)), + ("ccaron", (0, 0)), + ("lang", (0, 0)), + ("loar", (0, 0)), + ("LessS", (0, 0)), + ("LeftRigh", (0, 0)), + ("eqslantg", (0, 0)), + ("zwn", (0, 0)), + ("nsimeq", (0, 0)), + ("urcro", (0, 0)), + ("CHcy", (0, 0)), + ("Lapl", (0, 0)), + ("leqsl", (0, 0)), + ("LeftDownTeeVect", (0, 0)), + ("shortparalle", (0, 0)), + ("nvHar", (0, 0)), + ("Different", (0, 0)), + ("scE;", (10932, 0)), + ("Su", (0, 0)), + ("rcar", (0, 0)), + ("utri;", (9653, 0)), + ("UpTe", (0, 0)), + ("GreaterTilde;", (8819, 0)), + ("isin;", (8712, 0)), + ("eur", (0, 0)), + ("darr;", (8595, 0)), + ("longleftright", (0, 0)), + ("euro", (0, 0)), + ("NotDoubleVerticalBa", (0, 0)), + ("orslope", (0, 0)), + ("Icy;", (1048, 0)), + ("af;", (8289, 0)), + ("blacktriangleright;", (9656, 0)), + ("rsa", (0, 0)), + ("lE", (0, 0)), + ("Longleftrighta", (0, 0)), + ("esdot;", (8784, 0)), + ("lmi", (0, 0)), + ("backprime;", (8245, 0)), + ("NotSuperse", (0, 0)), + ("curlyeqsucc", (0, 0)), + ("dwangle;", (10662, 0)), + ("uacute;", (250, 0)), + ("Longleftr", (0, 0)), + ("DotDo", (0, 0)), + ("Hstrok", (0, 0)), + ("thick", (0, 0)), + ("Longright", (0, 0)), + ("NotHumpDown", (0, 0)), + ("TH", (0, 0)), + ("lbrkslu;", (10637, 0)), + ("gvn", (0, 0)), + ("imagl", (0, 0)), + ("Proporti", (0, 0)), + ("sup", (0, 0)), + ("EmptyVerySmal", (0, 0)), + ("npr;", (8832, 0)), + ("circeq;", (8791, 0)), + ("suphs", (0, 0)), + ("angle;", (8736, 0)), + ("rAtai", (0, 0)), + ("rop", (0, 0)), + ("NegativeM", (0, 0)), + ("Longle", (0, 0)), + ("Invisibl", (0, 0)), + ("angza", (0, 0)), + ("bigu", (0, 0)), + ("NotHumpEq", (0, 0)), + ("DoubleLongLeftRightArrow", (0, 0)), + ("VDash;", (8875, 0)), + ("nGg;", (8921, 824)), + ("Gre", (0, 0)), + ("cempty", (0, 0)), + ("NegativeThick", (0, 0)), + ("leftl", (0, 0)), + ("Ucirc", (219, 0)), + ("tr", (0, 0)), + ("easte", (0, 0)), + ("lo", (0, 0)), + ("COPY", (169, 0)), + ("Poi", (0, 0)), + ("Congruen", (0, 0)), + ("smepa", (0, 0)), + ("rfi", (0, 0)), + ("eplus;", (10865, 0)), + ("LeftArrowRightArro", (0, 0)), + ("CounterClockwiseCo", (0, 0)), + ("frac34;", (190, 0)), + ("bopf;", (120147, 0)), + ("rightleftha", (0, 0)), + ("blacktriangledow", (0, 0)), + ("xutri;", (9651, 0)), + ("eqvp", (0, 0)), + ("Rho", (0, 0)), + ("profa", (0, 0)), + ("circleda", (0, 0)), + ("frac58", (0, 0)), + ("prsim;", (8830, 0)), + ("scsim;", (8831, 0)), + ("leftarrowta", (0, 0)), + ("LeftUpDown", (0, 0)), + ("eqco", (0, 0)), + ("NestedGreaterGreater", (0, 0)), + ("nwarhk;", (10531, 0)), + ("epsilo", (0, 0)), + ("Eg", (0, 0)), + ("dtdo", (0, 0)), + ("es", (0, 0)), + ("uwangl", (0, 0)), + ("zwj;", (8205, 0)), + ("LeftVec", (0, 0)), + ("succnap", (0, 0)), + ("iec", (0, 0)), + ("softc", (0, 0)), + ("topfo", (0, 0)), + ("vf", (0, 0)), + ("Hilbert", (0, 0)), + ("pro", (0, 0)), + ("gs", (0, 0)), + ("ReverseEquili", (0, 0)), + ("Wscr;", (119986, 0)), + ("DownLeftRigh", (0, 0)), + ("LeftRightAr", (0, 0)), + ("rmoustac", (0, 0)), + ("nprec", (0, 0)), + ("Trip", (0, 0)), + ("circlearrowright;", (8635, 0)), + ("SucceedsS", (0, 0)), + ("NoBr", (0, 0)), + ("xod", (0, 0)), + ("DoubleDot", (0, 0)), + ("mapstou", (0, 0)), + ("ncap;", (10819, 0)), + ("Diacri", (0, 0)), + ("subset;", (8834, 0)), + ("YA", (0, 0)), + ("Sigm", (0, 0)), + ("gtrarr;", (10616, 0)), + ("DoubleLongRigh", (0, 0)), + ("Beta;", (914, 0)), + ("gtrarr", (0, 0)), + ("nsup;", (8837, 0)), + ("LeftTeeVect", (0, 0)), + ("plank", (0, 0)), + ("omid", (0, 0)), + ("DownRightVectorB", (0, 0)), + ("lmoustach", (0, 0)), + ("OpenCu", (0, 0)), + ("Lt", (0, 0)), + ("gtreqqless;", (10892, 0)), + ("twohea", (0, 0)), + ("ni", (0, 0)), + ("laemp", (0, 0)), + ("lhblk;", (9604, 0)), + ("Ud", (0, 0)), + ("PrecedesS", (0, 0)), + ("MediumSpace", (0, 0)), + ("varnot", (0, 0)), + ("divonx", (0, 0)), + ("bar", (0, 0)), + ("RightUpTeeV", (0, 0)), + ("bigst", (0, 0)), + ("ExponentialE", (0, 0)), + ("rightthre", (0, 0)), + ("prod", (0, 0)), + ("npa", (0, 0)), + ("ufr;", (120114, 0)), + ("preccurl", (0, 0)), + ("oi", (0, 0)), + ("sf", (0, 0)), + ("IOc", (0, 0)), + ("loplu", (0, 0)), + ("Uo", (0, 0)), + ("rharu;", (8640, 0)), + ("LessG", (0, 0)), + ("doteqd", (0, 0)), + ("chc", (0, 0)), + ("Ubreve;", (364, 0)), + ("ris", (0, 0)), + ("nGtv", (0, 0)), + ("boxdr", (0, 0)), + ("rarrp", (0, 0)), + ("eco", (0, 0)), + ("hamil", (0, 0)), + ("ord;", (10845, 0)), + ("wedb", (0, 0)), + ("nsucc;", (8833, 0)), + ("zcy;", (1079, 0)), + ("NotLef", (0, 0)), + ("Ocy", (0, 0)), + ("Intersection", (0, 0)), + ("Ntilde;", (209, 0)), + ("vartriangleri", (0, 0)), + ("uuar", (0, 0)), + ("suphsol;", (10185, 0)), + ("verbar", (0, 0)), + ("exponentia", (0, 0)), + ("eop", (0, 0)), + ("boxU", (0, 0)), + ("twoheadlef", (0, 0)), + ("dotmin", (0, 0)), + ("rho", (0, 0)), + ("Ubreve", (0, 0)), + ("Jfr;", (120077, 0)), + ("LessGreate", (0, 0)), + ("Rced", (0, 0)), + ("vBar;", (10984, 0)), + ("Longleftarro", (0, 0)), + ("wsc", (0, 0)), + ("yen", (165, 0)), + ("NotGreaterFul", (0, 0)), + ("gcirc", (0, 0)), + ("qpri", (0, 0)), + ("napo", (0, 0)), + ("Aacu", (0, 0)), + ("UpDow", (0, 0)), + ("Assign;", (8788, 0)), + ("Chi", (0, 0)), + ("blank;", (9251, 0)), + ("VerticalSep", (0, 0)), + ("vars", (0, 0)), + ("SuchTh", (0, 0)), + ("NotSucceedsS", (0, 0)), + ("Ced", (0, 0)), + ("NotSquareS", (0, 0)), + ("LowerR", (0, 0)), + ("DoubleRight", (0, 0)), + ("NotDoub", (0, 0)), + ("subrar", (0, 0)), + ("boxpl", (0, 0)), + ("ogon", (0, 0)), + ("lescc", (0, 0)), + ("capan", (0, 0)), + ("egrave", (232, 0)), + ("VerticalBa", (0, 0)), + ("ltr", (0, 0)), + ("Fourie", (0, 0)), + ("Precedes;", (8826, 0)), + ("rarr", (0, 0)), + ("cuv", (0, 0)), + ("ct", (0, 0)), + ("Longleftrig", (0, 0)), + ("VDash", (0, 0)), + ("nsimeq;", (8772, 0)), + ("natural", (0, 0)), + ("TildeFullEqua", (0, 0)), + ("Updo", (0, 0)), + ("hamilt", (0, 0)), + ("OpenCur", (0, 0)), + ("Ve", (0, 0)), + ("Cdot;", (266, 0)), + ("updow", (0, 0)), + ("nleftarrow", (0, 0)), + ("jsercy", (0, 0)), + ("upharpoonr", (0, 0)), + ("ang;", (8736, 0)), + ("blacktriangledown;", (9662, 0)), + ("Im;", (8465, 0)), + ("curlyeq", (0, 0)), + ("cularrp", (0, 0)), + ("lrcor", (0, 0)), + ("comp", (0, 0)), + ("sstarf;", (8902, 0)), + ("apid;", (8779, 0)), + ("curvearrowlef", (0, 0)), + ("GreaterFull", (0, 0)), + ("xr", (0, 0)), + ("SupersetEqual", (0, 0)), + ("Ph", (0, 0)), + ("rightsquigarrow", (0, 0)), + ("divideonti", (0, 0)), + ("euml", (235, 0)), + ("Kappa;", (922, 0)), + ("npre", (0, 0)), + ("njcy;", (1114, 0)), + ("xla", (0, 0)), + ("blacktriangl", (0, 0)), + ("RightDownT", (0, 0)), + ("ReverseEle", (0, 0)), + ("DoubleLongRi", (0, 0)), + ("wreath;", (8768, 0)), + ("race", (0, 0)), + ("NotSquareSu", (0, 0)), + ("nbsp", (160, 0)), + ("ZeroWidt", (0, 0)), + ("wedg", (0, 0)), + ("he", (0, 0)), + ("UpperRightAr", (0, 0)), + ("xcirc;", (9711, 0)), + ("ges;", (10878, 0)), + ("trian", (0, 0)), + ("nsucceq;", (10928, 824)), + ("j", (0, 0)), + ("Cayl", (0, 0)), + ("Xsc", (0, 0)), + ("circle", (0, 0)), + ("yo", (0, 0)), + ("rcedil;", (343, 0)), + ("notn", (0, 0)), + ("NotCup", (0, 0)), + ("cirmid", (0, 0)), + ("o", (0, 0)), + ("UpperR", (0, 0)), + ("smallsetmin", (0, 0)), + ("boxvh;", (9532, 0)), + ("boxhU;", (9576, 0)), + ("ForA", (0, 0)), + ("RightDoub", (0, 0)), + ("nvHarr;", (10500, 0)), + ("Kcedil;", (310, 0)), + ("mdash;", (8212, 0)), + ("LeftUpTee", (0, 0)), + ("prnsi", (0, 0)), + ("rarrbf", (0, 0)), + ("thickapp", (0, 0)), + ("simg;", (10910, 0)), + ("Low", (0, 0)), + ("oast", (0, 0)), + ("rppoli", (0, 0)), + ("CloseCurlyDoubleQuote", (0, 0)), + ("RE", (0, 0)), + ("rbrk", (0, 0)), + ("Gop", (0, 0)), + ("epsi", (0, 0)), + ("RightU", (0, 0)), + ("aring;", (229, 0)), + ("eps", (0, 0)), + ("amalg;", (10815, 0)), + ("SquareInterse", (0, 0)), + ("Omic", (0, 0)), + ("bigo", (0, 0)), + ("rightleftharpoons", (0, 0)), + ("uog", (0, 0)), + ("ShortUpAr", (0, 0)), + ("Ropf;", (8477, 0)), + ("UpperLeft", (0, 0)), + ("downarrow", (0, 0)), + ("succsi", (0, 0)), + ("otime", (0, 0)), + ("Til", (0, 0)), + ("suphsub;", (10967, 0)), + ("llhard", (0, 0)), + ("Lop", (0, 0)), + ("ShortLeftA", (0, 0)), + ("NotPrecede", (0, 0)), + ("Gscr", (0, 0)), + ("NotD", (0, 0)), + ("boxminus", (0, 0)), + ("qi", (0, 0)), + ("iiint;", (8749, 0)), + ("NotEqualTild", (0, 0)), + ("Phi;", (934, 0)), + ("Clockw", (0, 0)), + ("cudar", (0, 0)), + ("Inte", (0, 0)), + ("midcir;", (10992, 0)), + ("UpE", (0, 0)), + ("lbar", (0, 0)), + ("ZeroWidthSpa", (0, 0)), + ("Zdot", (0, 0)), + ("lbrk", (0, 0)), + ("ReverseUpEquilibri", (0, 0)), + ("Capital", (0, 0)), + ("nhpa", (0, 0)), + ("precns", (0, 0)), + ("NotSquareSubset;", (8847, 824)), + ("Hi", (0, 0)), + ("eacute;", (233, 0)), + ("smile", (0, 0)), + ("RightUpTeeVect", (0, 0)), + ("pfr;", (120109, 0)), + ("Ncy", (0, 0)), + ("opa", (0, 0)), + ("xo", (0, 0)), + ("ntriangler", (0, 0)), + ("lotim", (0, 0)), + ("Element;", (8712, 0)), + ("Mcy;", (1052, 0)), + ("vdash;", (8866, 0)), + ("ExponentialE;", (8519, 0)), + ("vA", (0, 0)), + ("precnappro", (0, 0)), + ("Cci", (0, 0)), + ("ome", (0, 0)), + ("blk12", (0, 0)), + ("yf", (0, 0)), + ("plust", (0, 0)), + ("LeftDoubleBr", (0, 0)), + ("angrtv", (0, 0)), + ("cupor", (0, 0)), + ("gvnE", (0, 0)), + ("LessSlan", (0, 0)), + ("triangle", (0, 0)), + ("Lsh;", (8624, 0)), + ("ecir;", (8790, 0)), + ("NotPrecedes;", (8832, 0)), + ("Y", (0, 0)), + ("edo", (0, 0)), + ("PlusMin", (0, 0)), + ("DoubleLongL", (0, 0)), + ("racu", (0, 0)), + ("SHCH", (0, 0)), + ("Rrightar", (0, 0)), + ("u", (0, 0)), + ("cur", (0, 0)), + ("Copr", (0, 0)), + ("llh", (0, 0)), + ("NotCupC", (0, 0)), + ("Vee", (0, 0)), + ("lsquor", (0, 0)), + ("sop", (0, 0)), + ("nese", (0, 0)), + ("shar", (0, 0)), + ("hc", (0, 0)), + ("har", (0, 0)), + ("RuleDe", (0, 0)), + ("RightVec", (0, 0)), + ("bbrktb", (0, 0)), + ("boxDR;", (9556, 0)), + ("Lfr", (0, 0)), + ("Zfr;", (8488, 0)), + ("it", (0, 0)), + ("expectation;", (8496, 0)), + ("Lstro", (0, 0)), + ("sol;", (47, 0)), + ("ShortLef", (0, 0)), + ("tel", (0, 0)), + ("mul", (0, 0)), + ("uac", (0, 0)), + ("dblac;", (733, 0)), + ("Esim", (0, 0)), + ("nappr", (0, 0)), + ("ulcorn;", (8988, 0)), + ("lotimes;", (10804, 0)), + ("SucceedsEq", (0, 0)), + ("nti", (0, 0)), + ("ffl", (0, 0)), + ("beth;", (8502, 0)), + ("circledas", (0, 0)), + ("nVda", (0, 0)), + ("udh", (0, 0)), + ("ET", (0, 0)), + ("luru", (0, 0)), + ("fp", (0, 0)), + ("simne", (0, 0)), + ("NotCongruent;", (8802, 0)), + ("less", (0, 0)), + ("thetav;", (977, 0)), + ("lopar;", (10629, 0)), + ("zeetrf;", (8488, 0)), + ("uwang", (0, 0)), + ("nearhk;", (10532, 0)), + ("rect", (0, 0)), + ("IJlig;", (306, 0)), + ("mscr", (0, 0)), + ("crarr;", (8629, 0)), + ("vartriangler", (0, 0)), + ("tcy", (0, 0)), + ("varpr", (0, 0)), + ("InvisibleTimes;", (8290, 0)), + ("urtri;", (9721, 0)), + ("Hci", (0, 0)), + ("UpEq", (0, 0)), + ("LeftVectorB", (0, 0)), + ("rmoustache;", (9137, 0)), + ("ngeqsla", (0, 0)), + ("NotEqual;", (8800, 0)), + ("imac", (0, 0)), + ("quater", (0, 0)), + ("Tf", (0, 0)), + ("nvge", (0, 0)), + ("LeftUpTeeV", (0, 0)), + ("fallingd", (0, 0)), + ("Zs", (0, 0)), + ("Fouriertr", (0, 0)), + ("lessdot", (0, 0)), + ("Ec", (0, 0)), + ("nsce;", (10928, 824)), + ("tcaron;", (357, 0)), + ("seAr", (0, 0)), + ("agra", (0, 0)), + ("GreaterGreater", (0, 0)), + ("ug", (0, 0)), + ("NotSucceedsTilde", (0, 0)), + ("UpAr", (0, 0)), + ("hopf;", (120153, 0)), + ("NotLessSl", (0, 0)), + ("iinfin;", (10716, 0)), + ("dlcro", (0, 0)), + ("bet", (0, 0)), + ("cir;", (9675, 0)), + ("iacute", (237, 0)), + ("gtl", (0, 0)), + ("olcross;", (10683, 0)), + ("Non", (0, 0)), + ("impe", (0, 0)), + ("Exponential", (0, 0)), + ("VeryThinSpace", (0, 0)), + ("CloseCurlyD", (0, 0)), + ("ef", (0, 0)), + ("Conin", (0, 0)), + ("za", (0, 0)), + ("DoubleLongLeftArrow;", (10232, 0)), + ("dsol", (0, 0)), + ("ra", (0, 0)), + ("hellip;", (8230, 0)), + ("loz;", (9674, 0)), + ("Cayleys", (0, 0)), + ("RightDownTeeVe", (0, 0)), + ("Si", (0, 0)), + ("ohbar;", (10677, 0)), + ("U", (0, 0)), + ("trit", (0, 0)), + ("pl", (0, 0)), + ("timesd", (0, 0)), + ("nless;", (8814, 0)), + ("sqsupseteq;", (8850, 0)), + ("Vda", (0, 0)), + ("SquareSupersetEqual", (0, 0)), + ("ShortDownArrow", (0, 0)), + ("Edo", (0, 0)), + ("DownRightTeeVector;", (10591, 0)), + ("CounterClockwiseContourInteg", (0, 0)), + ("lap;", (10885, 0)), + ("SquareSuperset", (0, 0)), + ("Lower", (0, 0)), + ("check", (0, 0)), + ("Ca", (0, 0)), + ("looparrowright;", (8620, 0)), + ("CapitalDif", (0, 0)), + ("ncongdot", (0, 0)), + ("ub", (0, 0)), + ("nwa", (0, 0)), + ("Mellintr", (0, 0)), + ("elinters", (0, 0)), + ("lessappr", (0, 0)), + ("perm", (0, 0)), + ("Succeed", (0, 0)), + ("odsold;", (10684, 0)), + ("Ep", (0, 0)), + ("DZc", (0, 0)), + ("wei", (0, 0)), + ("Cong", (0, 0)), + ("preccurlye", (0, 0)), + ("nparallel;", (8742, 0)), + ("NotLeftTriangleBar;", (10703, 824)), + ("Pfr;", (120083, 0)), + ("GreaterGreater;", (10914, 0)), + ("Odblac", (0, 0)), + ("xd", (0, 0)), + ("puncsp", (0, 0)), + ("ntrianglelef", (0, 0)), + ("gtcc;", (10919, 0)), + ("scnE", (0, 0)), + ("osc", (0, 0)), + ("rAarr", (0, 0)), + ("boxdr;", (9484, 0)), + ("rarrsi", (0, 0)), + ("Sacute", (0, 0)), + ("NegativeThinSpace", (0, 0)), + ("Nega", (0, 0)), + ("LeftArrowRightArrow;", (8646, 0)), + ("ecaron;", (283, 0)), + ("Les", (0, 0)), + ("sim;", (8764, 0)), + ("bot;", (8869, 0)), + ("ShortRightArr", (0, 0)), + ("blacktrianglerigh", (0, 0)), + ("zsc", (0, 0)), + ("expone", (0, 0)), + ("NotLessL", (0, 0)), + ("ors", (0, 0)), + ("bNot;", (10989, 0)), + ("Upper", (0, 0)), + ("Le", (0, 0)), + ("gtrapprox", (0, 0)), + ("tprime", (0, 0)), + ("veeb", (0, 0)), + ("nvinf", (0, 0)), + ("ffi", (0, 0)), + ("Dagger", (0, 0)), + ("Kscr", (0, 0)), + ("vartr", (0, 0)), + ("smeparsl", (0, 0)), + ("star", (0, 0)), + ("rightsqu", (0, 0)), + ("die;", (168, 0)), + ("Pop", (0, 0)), + ("divon", (0, 0)), + ("nle;", (8816, 0)), + ("larrsi", (0, 0)), + ("nequ", (0, 0)), + ("rightleftarrows", (0, 0)), + ("q", (0, 0)), + ("Abreve;", (258, 0)), + ("dop", (0, 0)), + ("longlefta", (0, 0)), + ("LeftRi", (0, 0)), + ("bulle", (0, 0)), + ("nvrtri", (0, 0)), + ("Mopf;", (120132, 0)), + ("hcirc;", (293, 0)), + ("incar", (0, 0)), + ("RightTrian", (0, 0)), + ("precne", (0, 0)), + ("target;", (8982, 0)), + ("Ocirc;", (212, 0)), + ("ama", (0, 0)), + ("prcue", (0, 0)), + ("uHar", (0, 0)), + ("IJ", (0, 0)), + ("lsimg;", (10895, 0)), + ("simeq;", (8771, 0)), + ("TS", (0, 0)), + ("solbar", (0, 0)), + ("rarrsim", (0, 0)), + ("asym", (0, 0)), + ("ggg;", (8921, 0)), + ("raempty", (0, 0)), + ("hookrightarr", (0, 0)), + ("bow", (0, 0)), + ("CircleMinu", (0, 0)), + ("nshortpara", (0, 0)), + ("nrightar", (0, 0)), + ("straigh", (0, 0)), + ("DoubleLeftRightArrow;", (8660, 0)), + ("gesdo", (0, 0)), + ("bbrkt", (0, 0)), + ("DoubleRightTee;", (8872, 0)), + ("rrar", (0, 0)), + ("SquareUnion;", (8852, 0)), + ("NotGreaterGre", (0, 0)), + ("sqcap;", (8851, 0)), + ("DotEqua", (0, 0)), + ("RightArr", (0, 0)), + ("Ju", (0, 0)), + ("sqsupseteq", (0, 0)), + ("ltrPa", (0, 0)), + ("NotSquareSuper", (0, 0)), + ("orv;", (10843, 0)), + ("varsigma", (0, 0)), + ("andslop", (0, 0)), + ("nwarrow;", (8598, 0)), + ("CloseCurl", (0, 0)), + ("copf", (0, 0)), + ("UpDown", (0, 0)), + ("bk", (0, 0)), + ("Pro", (0, 0)), + ("NegativeVeryThinSpace", (0, 0)), + ("tripl", (0, 0)), + ("frac14", (188, 0)), + ("Lambd", (0, 0)), + ("Jcirc;", (308, 0)), + ("npo", (0, 0)), + ("yfr", (0, 0)), + ("DoubleU", (0, 0)), + ("mstp", (0, 0)), + ("Rightarr", (0, 0)), + ("que", (0, 0)), + ("divide", (247, 0)), + ("Cced", (0, 0)), + ("bNo", (0, 0)), + ("swnwar", (0, 0)), + ("dlcor", (0, 0)), + ("time", (0, 0)), + ("thk", (0, 0)), + ("ltcir", (0, 0)), + ("sup3", (179, 0)), + ("Ncaron", (0, 0)), + ("Therefore;", (8756, 0)), + ("CloseCurlyQuo", (0, 0)), + ("NotSubset;", (8834, 8402)), + ("ruluhar", (0, 0)), + ("blk1", (0, 0)), + ("lcub", (0, 0)), + ("period;", (46, 0)), + ("vzigz", (0, 0)), + ("tos", (0, 0)), + ("nwn", (0, 0)), + ("Id", (0, 0)), + ("ddots", (0, 0)), + ("eqvpa", (0, 0)), + ("intprod", (0, 0)), + ("scna", (0, 0)), + ("Medium", (0, 0)), + ("ffr", (0, 0)), + ("ii;", (8520, 0)), + ("CounterClockwiseCont", (0, 0)), + ("boxur;", (9492, 0)), + ("colo", (0, 0)), + ("trianglerig", (0, 0)), + ("latai", (0, 0)), + ("IEc", (0, 0)), + ("awco", (0, 0)), + ("rightharpoondown", (0, 0)), + ("shortmid", (0, 0)), + ("LeftUpTeeVecto", (0, 0)), + ("Longleftrigh", (0, 0)), + ("Tcar", (0, 0)), + ("LeftUpDo", (0, 0)), + ("checkmark", (0, 0)), + ("Rarr;", (8608, 0)), + ("isindot;", (8949, 0)), + ("Rac", (0, 0)), + ("solba", (0, 0)), + ("dda", (0, 0)), + ("sc", (0, 0)), + ("infin;", (8734, 0)), + ("npr", (0, 0)), + ("prnE", (0, 0)), + ("NotRightT", (0, 0)), + ("NegativeMediumSpace;", (8203, 0)), + ("alpha;", (945, 0)), + ("Ccaro", (0, 0)), + ("NotTildeTilde;", (8777, 0)), + ("rca", (0, 0)), + ("geqslant;", (10878, 0)), + ("bsolh", (0, 0)), + ("mapstodo", (0, 0)), + ("NotLessGrea", (0, 0)), + ("RightAngleBr", (0, 0)), + ("middo", (0, 0)), + ("lcaron;", (318, 0)), + ("supedo", (0, 0)), + ("iogon", (0, 0)), + ("GreaterTilde", (0, 0)), + ("PrecedesSlant", (0, 0)), + ("HA", (0, 0)), + ("leftrighta", (0, 0)), + ("boxdl", (0, 0)), + ("NotN", (0, 0)), + ("LeftVectorBa", (0, 0)), + ("Cacute;", (262, 0)), + ("ae", (0, 0)), + ("suped", (0, 0)), + ("infi", (0, 0)), + ("Esi", (0, 0)), + ("gnapprox", (0, 0)), + ("uha", (0, 0)), + ("Br", (0, 0)), + ("divideontimes", (0, 0)), + ("heartsui", (0, 0)), + ("Dc", (0, 0)), + ("boxvr", (0, 0)), + ("EmptyS", (0, 0)), + ("cirscir;", (10690, 0)), + ("egsd", (0, 0)), + ("hookleft", (0, 0)), + ("nvr", (0, 0)), + ("lne", (0, 0)), + ("ati", (0, 0)), + ("NotTildeEqual", (0, 0)), + ("NotSucceeds", (0, 0)), + ("LeftDownVector", (0, 0)), + ("Ffr;", (120073, 0)), + ("Sfr;", (120086, 0)), + ("eng;", (331, 0)), + ("lurdshar;", (10570, 0)), + ("NotVer", (0, 0)), + ("frac78", (0, 0)), + ("LeftUpTeeVector", (0, 0)), + ("longleftrightarro", (0, 0)), + ("nleftarr", (0, 0)), + ("Thick", (0, 0)), + ("Llefta", (0, 0)), + ("VerticalSepa", (0, 0)), + ("Sq", (0, 0)), + ("TRADE;", (8482, 0)), + ("Diamon", (0, 0)), + ("ell;", (8467, 0)), + ("Cop", (0, 0)), + ("Zfr", (0, 0)), + ("succsim;", (8831, 0)), + ("NonBrea", (0, 0)), + ("Rcaron;", (344, 0)), + ("rth", (0, 0)), + ("nparalle", (0, 0)), + ("Wcirc;", (372, 0)), + ("jukcy", (0, 0)), + ("dwang", (0, 0)), + ("SuchTha", (0, 0)), + ("varsubset", (0, 0)), + ("Vfr;", (120089, 0)), + ("nsubse", (0, 0)), + ("hop", (0, 0)), + ("multimap", (0, 0)), + ("nvd", (0, 0)), + ("NotLeftTri", (0, 0)), + ("curvearrowl", (0, 0)), + ("tilde", (0, 0)), + ("zacu", (0, 0)), + ("zcy", (0, 0)), + ("PrecedesTilde", (0, 0)), + ("DoubleLeftR", (0, 0)), + ("Larr;", (8606, 0)), + ("Ss", (0, 0)), + ("zacut", (0, 0)), + ("Poincarepla", (0, 0)), + ("urcorn;", (8989, 0)), + ("boxUl", (0, 0)), + ("Rc", (0, 0)), + ("lbarr", (0, 0)), + ("vartriangleright", (0, 0)), + ("eqcolon", (0, 0)), + ("CapitalDiffe", (0, 0)), + ("subsetneqq;", (10955, 0)), + ("Dcaro", (0, 0)), + ("ldsh;", (8626, 0)), + ("ccup", (0, 0)), + ("CircleTimes;", (8855, 0)), + ("coprod;", (8720, 0)), + ("RightDownVec", (0, 0)), + ("SquareSup", (0, 0)), + ("nprc", (0, 0)), + ("sr", (0, 0)), + ("rea", (0, 0)), + ("LeftUpTeeVector;", (10592, 0)), + ("midci", (0, 0)), + ("upl", (0, 0)), + ("DoubleContourIntegral;", (8751, 0)), + ("RightDownVectorBa", (0, 0)), + ("Zcy", (0, 0)), + ("NotSquareSupersetE", (0, 0)), + ("UpA", (0, 0)), + ("circlearro", (0, 0)), + ("gescc;", (10921, 0)), + ("dtrif;", (9662, 0)), + ("Ig", (0, 0)), + ("NotGreaterSlantEqual;", (10878, 824)), + ("die", (0, 0)), + ("NotSupersetE", (0, 0)), + ("dollar", (0, 0)), + ("tritime;", (10811, 0)), + ("digamma", (0, 0)), + ("CapitalDifferen", (0, 0)), + ("ffili", (0, 0)), + ("scedil;", (351, 0)), + ("delt", (0, 0)), + ("sqsupe", (0, 0)), + ("nc", (0, 0)), + ("NotSucceedsEqu", (0, 0)), + ("NoBreak;", (8288, 0)), + ("NegativeVeryThinSp", (0, 0)), + ("ShortLeftArr", (0, 0)), + ("SOF", (0, 0)), + ("egr", (0, 0)), + ("CHc", (0, 0)), + ("NestedLessLess", (0, 0)), + ("leftr", (0, 0)), + ("SucceedsTilde", (0, 0)), + ("Square", (0, 0)), + ("Oo", (0, 0)), + ("d", (0, 0)), + ("varsupsetneqq", (0, 0)), + ("varsi", (0, 0)), + ("nlE;", (8806, 824)), + ("Lm", (0, 0)), + ("rtriltri;", (10702, 0)), + ("dfisht;", (10623, 0)), + ("DoubleRightTee", (0, 0)), + ("ltcc", (0, 0)), + ("triti", (0, 0)), + ("loa", (0, 0)), + ("Dscr", (0, 0)), + ("rtriltr", (0, 0)), + ("nRightarr", (0, 0)), + ("ngsi", (0, 0)), + ("curlyeqsucc;", (8927, 0)), + ("horbar;", (8213, 0)), + ("Kcy;", (1050, 0)), + ("LeftUpVectorBar", (0, 0)), + ("DoubleVerticalB", (0, 0)), + ("subdot", (0, 0)), + ("fro", (0, 0)), + ("ThinSpac", (0, 0)), + ("Ograve", (210, 0)), + ("lti", (0, 0)), + ("copy;", (169, 0)), + ("cro", (0, 0)), + ("DoubleVertic", (0, 0)), + ("prnsim;", (8936, 0)), + ("kj", (0, 0)), + ("lsqu", (0, 0)), + ("Igrave;", (204, 0)), + ("DoubleRightT", (0, 0)), + ("Alpha;", (913, 0)), + ("Lan", (0, 0)), + ("llcorner", (0, 0)), + ("risingdotseq", (0, 0)), + ("olcro", (0, 0)), + ("MinusPlu", (0, 0)), + ("gtdot", (0, 0)), + ("bsolhs", (0, 0)), + ("hb", (0, 0)), + ("hkswarow;", (10534, 0)), + ("dbkaro", (0, 0)), + ("SquareSubsetEqu", (0, 0)), + ("lmous", (0, 0)), + ("AM", (0, 0)), + ("tpri", (0, 0)), + ("ofr", (0, 0)), + ("ZHcy;", (1046, 0)), + ("equiv", (0, 0)), + ("EmptyVe", (0, 0)), + ("eqslantless;", (10901, 0)), + ("upharpoonrigh", (0, 0)), + ("eng", (0, 0)), + ("Lo", (0, 0)), + ("Invisi", (0, 0)), + ("larrhk", (0, 0)), + ("nbumpe;", (8783, 824)), + ("nshortparalle", (0, 0)), + ("lsaquo;", (8249, 0)), + ("nLeftrig", (0, 0)), + ("omi", (0, 0)), + ("lu", (0, 0)), + ("Cedi", (0, 0)), + ("bnot;", (8976, 0)), + ("Dca", (0, 0)), + ("xcap;", (8898, 0)), + ("ca", (0, 0)), + ("fpa", (0, 0)), + ("UpDownArro", (0, 0)), + ("NotTildeFullEqual;", (8775, 0)), + ("Pa", (0, 0)), + ("iiint", (0, 0)), + ("plankv", (0, 0)), + ("curr", (0, 0)), + ("shc", (0, 0)), + ("At", (0, 0)), + ("plusmn", (177, 0)), + ("lates", (0, 0)), + ("cent;", (162, 0)), + ("dbka", (0, 0)), + ("Sum", (0, 0)), + ("NotCo", (0, 0)), + ("lurdsh", (0, 0)), + ("nhAr", (0, 0)), + ("UnderBa", (0, 0)), + ("vsubn", (0, 0)), + ("rdsh;", (8627, 0)), + ("leftth", (0, 0)), + ("SubsetEqual", (0, 0)), + ("EqualTilde;", (8770, 0)), + ("lnE;", (8808, 0)), + ("dou", (0, 0)), + ("telre", (0, 0)), + ("DownArrowB", (0, 0)), + ("nsccu", (0, 0)), + ("Colon;", (8759, 0)), + ("bac", (0, 0)), + ("UpperRi", (0, 0)), + ("longleftrigh", (0, 0)), + ("Eta;", (919, 0)), + ("NotNestedGre", (0, 0)), + ("Nopf", (0, 0)), + ("Upar", (0, 0)), + ("circleddas", (0, 0)), + ("rcaron;", (345, 0)), + ("ApplyF", (0, 0)), + ("djcy;", (1106, 0)), + ("succnsi", (0, 0)), + ("xra", (0, 0)), + ("frac3", (0, 0)), + ("succneq", (0, 0)), + ("eqsla", (0, 0)), + ("NotNestedG", (0, 0)), + ("upsi;", (965, 0)), + ("CounterClockwiseContourIntegr", (0, 0)), + ("subdo", (0, 0)), + ("Leftright", (0, 0)), + ("GreaterEqua", (0, 0)), + ("Lsh", (0, 0)), + ("itilde", (0, 0)), + ("SmallCircle;", (8728, 0)), + ("diamond", (0, 0)), + ("ApplyFunction;", (8289, 0)), + ("iiota;", (8489, 0)), + ("upharpo", (0, 0)), + ("ContourIntegral", (0, 0)), + ("ffilig;", (64259, 0)), + ("NotEqualTi", (0, 0)), + ("gvertneq", (0, 0)), + ("NotPre", (0, 0)), + ("fflig", (0, 0)), + ("varsubsetneq;", (8842, 65024)), + ("NotSquareSup", (0, 0)), + ("models", (0, 0)), + ("nLefta", (0, 0)), + ("drbkarow", (0, 0)), + ("DoubleUpDownArr", (0, 0)), + ("xcirc", (0, 0)), + ("empty", (0, 0)), + ("CounterClockw", (0, 0)), + ("quatint;", (10774, 0)), + ("LeftDou", (0, 0)), + ("LeftTeeVecto", (0, 0)), + ("dotsquare;", (8865, 0)), + ("bernou", (0, 0)), + ("Omicro", (0, 0)), + ("colone", (0, 0)), + ("xh", (0, 0)), + ("varnothin", (0, 0)), + ("pound;", (163, 0)), + ("gtc", (0, 0)), + ("LowerLeftA", (0, 0)), + ("xoplu", (0, 0)), + ("geqsla", (0, 0)), + ("uogo", (0, 0)), + ("epar", (0, 0)), + ("cacut", (0, 0)), + ("apos", (0, 0)), + ("xdtri;", (9661, 0)), + ("CupCap", (0, 0)), + ("iti", (0, 0)), + ("Breve", (0, 0)), + ("utilde", (0, 0)), + ("Ycirc", (0, 0)), + ("Rcy;", (1056, 0)), + ("NotSubse", (0, 0)), + ("napE;", (10864, 824)), + ("lat", (0, 0)), + ("UpDownArrow;", (8597, 0)), + ("pluse", (0, 0)), + ("ShortDow", (0, 0)), + ("OverBracke", (0, 0)), + ("vprop", (0, 0)), + ("flt", (0, 0)), + ("Rf", (0, 0)), + ("lbr", (0, 0)), + ("DoubleRightTe", (0, 0)), + ("conint", (0, 0)), + ("SucceedsSlantEqual;", (8829, 0)), + ("DownArrow;", (8595, 0)), + ("LessGreat", (0, 0)), + ("Ru", (0, 0)), + ("exis", (0, 0)), + ("csub;", (10959, 0)), + ("lcaron", (0, 0)), + ("ntrianglel", (0, 0)), + ("ip", (0, 0)), + ("Aopf;", (120120, 0)), + ("Phi", (0, 0)), + ("TildeTild", (0, 0)), + ("rightright", (0, 0)), + ("ffr;", (120099, 0)), + ("ograve", (242, 0)), + ("cacute;", (263, 0)), + ("NotVert", (0, 0)), + ("scedi", (0, 0)), + ("succcurlyeq", (0, 0)), + ("Bs", (0, 0)), + ("weierp", (0, 0)), + ("lesss", (0, 0)), + ("backc", (0, 0)), + ("rpar;", (41, 0)), + ("LeftFloor", (0, 0)), + ("yic", (0, 0)), + ("Omacr;", (332, 0)), + ("nabla;", (8711, 0)), + ("gne;", (10888, 0)), + ("nvDas", (0, 0)), + ("reg;", (174, 0)), + ("CounterClockwiseContourI", (0, 0)), + ("geqsl", (0, 0)), + ("lobrk;", (10214, 0)), + ("oslas", (0, 0)), + ("Ds", (0, 0)), + ("Odbla", (0, 0)), + ("bigstar", (0, 0)), + ("olc", (0, 0)), + ("perte", (0, 0)), + ("dotp", (0, 0)), + ("DoubleUpArro", (0, 0)), + ("gtrdot;", (8919, 0)), + ("Jscr;", (119973, 0)), + ("tcedil", (0, 0)), + ("Mel", (0, 0)), + ("gtrapprox;", (10886, 0)), + ("dotmi", (0, 0)), + ("harrw", (0, 0)), + ("ntg", (0, 0)), + ("EmptySmall", (0, 0)), + ("CapitalD", (0, 0)), + ("cudarr", (0, 0)), + ("lvert", (0, 0)), + ("subdot;", (10941, 0)), + ("sup3;", (179, 0)), + ("minu", (0, 0)), + ("yicy", (0, 0)), + ("boxVr;", (9567, 0)), + ("Ncar", (0, 0)), + ("otild", (0, 0)), + ("RightTriangl", (0, 0)), + ("UpperRightArrow", (0, 0)), + ("subedo", (0, 0)), + ("dr", (0, 0)), + ("GreaterFullEqual;", (8807, 0)), + ("RightAngleBrack", (0, 0)), + ("we", (0, 0)), + ("DiacriticalGrave", (0, 0)), + ("Oscr;", (119978, 0)), + ("zigrarr;", (8669, 0)), + ("Eci", (0, 0)), + ("LeftTriangleBar", (0, 0)), + ("lozf", (0, 0)), + ("Ns", (0, 0)), + ("omeg", (0, 0)), + ("sime;", (8771, 0)), + ("gtrless;", (8823, 0)), + ("Cen", (0, 0)), + ("Ia", (0, 0)), + ("mnplu", (0, 0)), + ("lae", (0, 0)), + ("primes;", (8473, 0)), + ("acd", (0, 0)), + ("NotNeste", (0, 0)), + ("nhArr", (0, 0)), + ("ltcir;", (10873, 0)), + ("thinsp;", (8201, 0)), + ("lt", (60, 0)), + ("ApplyFunct", (0, 0)), + ("nsubseteq;", (8840, 0)), + ("lesssim;", (8818, 0)), + ("dstro", (0, 0)), + ("Tab", (0, 0)), + ("circlearrowle", (0, 0)), + ("LessLes", (0, 0)), + ("Squa", (0, 0)), + ("Topf", (0, 0)), + ("eqvpars", (0, 0)), + ("UnderBrac", (0, 0)), + ("quaterni", (0, 0)), + ("curlye", (0, 0)), + ("dagg", (0, 0)), + ("profalar;", (9006, 0)), + ("frac15;", (8533, 0)), + ("Longrightarrow", (0, 0)), + ("bigsqcup;", (10758, 0)), + ("Uppe", (0, 0)), + ("GreaterSlan", (0, 0)), + ("Lleftar", (0, 0)), + ("trpe", (0, 0)), + ("SucceedsEqual;", (10928, 0)), + ("NegativeMediumSpace", (0, 0)), + ("wedba", (0, 0)), + ("leftle", (0, 0)), + ("RightVector", (0, 0)), + ("bsol;", (92, 0)), + ("Acy", (0, 0)), + ("dzigrarr;", (10239, 0)), + ("double", (0, 0)), + ("SquareIn", (0, 0)), + ("emsp", (0, 0)), + ("thetasym;", (977, 0)), + ("Xop", (0, 0)), + ("cwi", (0, 0)), + ("Mcy", (0, 0)), + ("ltcc;", (10918, 0)), + ("vsubne;", (8842, 65024)), + ("cfr;", (120096, 0)), + ("thorn;", (254, 0)), + ("Lar", (0, 0)), + ("fllig;", (64258, 0)), + ("foral", (0, 0)), + ("boxvh", (0, 0)), + ("boxdl;", (9488, 0)), + ("DoubleContourInt", (0, 0)), + ("GJcy;", (1027, 0)), + ("shchcy", (0, 0)), + ("Uopf", (0, 0)), + ("ze", (0, 0)), + ("at", (0, 0)), + ("model", (0, 0)), + ("uharl", (0, 0)), + ("prec", (0, 0)), + ("UnderParenth", (0, 0)), + ("NotSucceedsSlantEqual", (0, 0)), + ("curve", (0, 0)), + ("rnmi", (0, 0)), + ("ClockwiseCon", (0, 0)), + ("Rar", (0, 0)), + ("nsubs", (0, 0)), + ("sccu", (0, 0)), + ("SucceedsSla", (0, 0)), + ("atild", (0, 0)), + ("ddotse", (0, 0)), + ("curarrm;", (10556, 0)), + ("LeftDoubleB", (0, 0)), + ("exponenti", (0, 0)), + ("apid", (0, 0)), + ("awconint;", (8755, 0)), + ("te", (0, 0)), + ("ult", (0, 0)), + ("LessT", (0, 0)), + ("uarr", (0, 0)), + ("Jfr", (0, 0)), + ("radic", (0, 0)), + ("NotLeftTriang", (0, 0)), + ("intprod;", (10812, 0)), + ("xf", (0, 0)), + ("GreaterSlantEq", (0, 0)), + ("ngeqq;", (8807, 824)), + ("prcue;", (8828, 0)), + ("bigwedg", (0, 0)), + ("dH", (0, 0)), + ("gesdotol;", (10884, 0)), + ("ShortDownA", (0, 0)), + ("div;", (247, 0)), + ("dfi", (0, 0)), + ("larrt", (0, 0)), + ("varrho", (0, 0)), + ("NotTildeFullE", (0, 0)), + ("intlarhk;", (10775, 0)), + ("upsi", (0, 0)), + ("dcaro", (0, 0)), + ("Gfr", (0, 0)), + ("nequiv", (0, 0)), + ("lobr", (0, 0)), + ("Euml;", (203, 0)), + ("NotCongrue", (0, 0)), + ("nG", (0, 0)), + ("vzi", (0, 0)), + ("NegativeMediumSpa", (0, 0)), + ("Plu", (0, 0)), + ("Ccaron", (0, 0)), + ("nj", (0, 0)), + ("roarr;", (8702, 0)), + ("rtril", (0, 0)), + ("nwnear", (0, 0)), + ("hksear", (0, 0)), + ("ssmile;", (8995, 0)), + ("numero", (0, 0)), + ("Kapp", (0, 0)), + ("parsim;", (10995, 0)), + ("ccupssm", (0, 0)), + ("AE", (0, 0)), + ("Nc", (0, 0)), + ("Supe", (0, 0)), + ("angrt", (0, 0)), + ("RightTriangleEq", (0, 0)), + ("DoubleLongLeftR", (0, 0)), + ("lcedi", (0, 0)), + ("in", (0, 0)), + ("rightri", (0, 0)), + ("RightFl", (0, 0)), + ("LessEqualGreater;", (8922, 0)), + ("upsih;", (978, 0)), + ("frac38", (0, 0)), + ("EmptyVeryS", (0, 0)), + ("hook", (0, 0)), + ("blk3", (0, 0)), + ("longrightarrow;", (10230, 0)), + ("NotLessGreat", (0, 0)), + ("RightArrow;", (8594, 0)), + ("EqualTilde", (0, 0)), + ("Par", (0, 0)), + ("rcaro", (0, 0)), + ("sqcups", (0, 0)), + ("comma", (0, 0)), + ("cirm", (0, 0)), + ("InvisibleCom", (0, 0)), + ("dblac", (0, 0)), + ("PrecedesSla", (0, 0)), + ("NotLe", (0, 0)), + ("xotime", (0, 0)), + ("Vdash;", (8873, 0)), + ("HumpDownHu", (0, 0)), + ("lf", (0, 0)), + ("sbq", (0, 0)), + ("succeq", (0, 0)), + ("DownLeftVector;", (8637, 0)), + ("gvertne", (0, 0)), + ("NegativeMedium", (0, 0)), + ("lesdot", (0, 0)), + ("expo", (0, 0)), + ("nldr;", (8229, 0)), + ("So", (0, 0)), + ("lobrk", (0, 0)), + ("chec", (0, 0)), + ("RightUpTe", (0, 0)), + ("xhA", (0, 0)), + ("ntrianglelefteq", (0, 0)), + ("GreaterFullE", (0, 0)), + ("SHC", (0, 0)), + ("Fouriert", (0, 0)), + ("str", (0, 0)), + ("IJli", (0, 0)), + ("imath;", (305, 0)), + ("lmoustache;", (9136, 0)), + ("minusd", (0, 0)), + ("uogon;", (371, 0)), + ("erarr;", (10609, 0)), + ("Cup", (0, 0)), + ("and", (0, 0)), + ("dbkarow;", (10511, 0)), + ("cularr", (0, 0)), + ("NJ", (0, 0)), + ("succcurlyeq;", (8829, 0)), + ("drcr", (0, 0)), + ("nlarr", (0, 0)), + ("PlusMinu", (0, 0)), + ("nacute", (0, 0)), + ("SHcy;", (1064, 0)), + ("SupersetEqual;", (8839, 0)), + ("Lleftarrow;", (8666, 0)), + ("DoubleL", (0, 0)), + ("Ecaro", (0, 0)), + ("uh", (0, 0)), + ("oast;", (8859, 0)), + ("IJl", (0, 0)), + ("sup2;", (178, 0)), + ("curvearrowleft", (0, 0)), + ("vscr;", (120011, 0)), + ("equest", (0, 0)), + ("RightVect", (0, 0)), + ("varsubsetneq", (0, 0)), + ("Yci", (0, 0)), + ("UnderPare", (0, 0)), + ("lot", (0, 0)), + ("triplu", (0, 0)), + ("Oslash;", (216, 0)), + ("Down", (0, 0)), + ("RightTeeVecto", (0, 0)), + ("dh", (0, 0)), + ("supl", (0, 0)), + ("nisd", (0, 0)), + ("nacu", (0, 0)), + ("xrArr", (0, 0)), + ("vart", (0, 0)), + ("ntri", (0, 0)), + ("frac1", (0, 0)), + ("bsi", (0, 0)), + ("ya", (0, 0)), + ("DoubleLongLeft", (0, 0)), + ("Icirc;", (206, 0)), + ("notindot;", (8949, 824)), + ("two", (0, 0)), + ("twohe", (0, 0)), + ("SupersetEqu", (0, 0)), + ("gacu", (0, 0)), + ("leftrightsquigarrow", (0, 0)), + ("ratail", (0, 0)), + ("UnionPl", (0, 0)), + ("bemp", (0, 0)), + ("notni;", (8716, 0)), + ("hellip", (0, 0)), + ("pun", (0, 0)), + ("DoubleLongLeftRightA", (0, 0)), + ("eqslantgtr", (0, 0)), + ("n", (0, 0)), + ("longmapsto", (0, 0)), + ("longrightarro", (0, 0)), + ("NotReve", (0, 0)), + ("brvbar;", (166, 0)), + ("Gt;", (8811, 0)), + ("tcedil;", (355, 0)), + ("RightFloo", (0, 0)), + ("Sup", (0, 0)), + ("Ugr", (0, 0)), + ("Esc", (0, 0)), + ("circledR;", (174, 0)), + ("hksw", (0, 0)), + ("Diacr", (0, 0)), + ("RightAngle", (0, 0)), + ("precap", (0, 0)), + ("topbot;", (9014, 0)), + ("oe", (0, 0)), + ("NotReverseEl", (0, 0)), + ("supset", (0, 0)), + ("lesg;", (8922, 65024)), + ("EmptySmallSquare", (0, 0)), + ("isc", (0, 0)), + ("tosa;", (10537, 0)), + ("EmptyV", (0, 0)), + ("yucy", (0, 0)), + ("NotRightTriangleEqual", (0, 0)), + ("InvisibleComma", (0, 0)), + ("OverParen", (0, 0)), + ("ltques", (0, 0)), + ("Otimes", (0, 0)), + ("inf", (0, 0)), + ("prime", (0, 0)), + ("dempt", (0, 0)), + ("Tau;", (932, 0)), + ("simrar", (0, 0)), + ("FilledSma", (0, 0)), + ("ia", (0, 0)), + ("qo", (0, 0)), + ("minus;", (8722, 0)), + ("NotSquareSuperse", (0, 0)), + ("gbreve", (0, 0)), + ("thickapprox;", (8776, 0)), + ("ultr", (0, 0)), + ("simeq", (0, 0)), + ("Exponen", (0, 0)), + ("nsp", (0, 0)), + ("Iopf;", (120128, 0)), + ("ocy;", (1086, 0)), + ("subed", (0, 0)), + ("drcrop;", (8972, 0)), + ("twoheadl", (0, 0)), + ("vo", (0, 0)), + ("LeftDownVe", (0, 0)), + ("Acy;", (1040, 0)), + ("Nested", (0, 0)), + ("Fc", (0, 0)), + ("Eac", (0, 0)), + ("nfr", (0, 0)), + ("subsetneq;", (8842, 0)), + ("nearr;", (8599, 0)), + ("DownLeftVecto", (0, 0)), + ("Gopf", (0, 0)), + ("thinsp", (0, 0)), + ("DownTeeA", (0, 0)), + ("Ofr;", (120082, 0)), + ("nvlt", (0, 0)), + ("circleddash", (0, 0)), + ("ldr", (0, 0)), + ("aleph", (0, 0)), + ("doub", (0, 0)), + ("nac", (0, 0)), + ("Zscr", (0, 0)), + ("LeftCei", (0, 0)), + ("LeftArrowR", (0, 0)), + ("NotGreaterGrea", (0, 0)), + ("rangl", (0, 0)), + ("NotReverseEleme", (0, 0)), + ("puncsp;", (8200, 0)), + ("lArr;", (8656, 0)), + ("hookrightarro", (0, 0)), + ("CenterDot", (0, 0)), + ("LowerLeftArrow;", (8601, 0)), + ("bsem", (0, 0)), + ("zigrarr", (0, 0)), + ("ecol", (0, 0)), + ("rA", (0, 0)), + ("xhar", (0, 0)), + ("PrecedesEq", (0, 0)), + ("Escr", (0, 0)), + ("uhblk", (0, 0)), + ("subsetn", (0, 0)), + ("ApplyFun", (0, 0)), + ("eacu", (0, 0)), + ("rightrightar", (0, 0)), + ("nda", (0, 0)), + ("GreaterTil", (0, 0)), + ("DownArrowBa", (0, 0)), + ("centerd", (0, 0)), + ("kc", (0, 0)), + ("lltri", (0, 0)), + ("DoubleUpArrow;", (8657, 0)), + ("Zcar", (0, 0)), + ("tau;", (964, 0)), + ("angmsdae", (0, 0)), + ("cupca", (0, 0)), + ("Invis", (0, 0)), + ("raquo", (187, 0)), + ("SucceedsTi", (0, 0)), + ("LessFullEqual;", (8806, 0)), + ("sqsu", (0, 0)), + ("equest;", (8799, 0)), + ("nleqsl", (0, 0)), + ("raem", (0, 0)), + ("Double", (0, 0)), + ("horba", (0, 0)), + ("NotCon", (0, 0)), + ("lE;", (8806, 0)), + ("Dcy", (0, 0)), + ("gra", (0, 0)), + ("simgE", (0, 0)), + ("semi", (0, 0)), + ("mic", (0, 0)), + ("CenterDot;", (183, 0)), + ("ha", (0, 0)), + ("setminus;", (8726, 0)), + ("dotplus", (0, 0)), + ("suc", (0, 0)), + ("varpro", (0, 0)), + ("gsime;", (10894, 0)), + ("Sum;", (8721, 0)), + ("iin", (0, 0)), + ("nbs", (0, 0)), + ("nvrArr;", (10499, 0)), + ("ldrdha", (0, 0)), + ("OpenCurlyDoubleQu", (0, 0)), + ("ncu", (0, 0)), + ("dHa", (0, 0)), + ("boxv", (0, 0)), + ("brev", (0, 0)), + ("Tcy;", (1058, 0)), + ("Oslas", (0, 0)), + ("PrecedesSlantEqua", (0, 0)), + ("DiacriticalTilde;", (732, 0)), + ("Zcaron", (0, 0)), + ("yucy;", (1102, 0)), + ("dd;", (8518, 0)), + ("harr;", (8596, 0)), + ("DoubleRigh", (0, 0)), + ("looparrowri", (0, 0)), + ("orslope;", (10839, 0)), + ("RuleDelayed", (0, 0)), + ("xrar", (0, 0)), + ("acy", (0, 0)), + ("FilledS", (0, 0)), + ("DoubleLeftRig", (0, 0)), + ("varepsil", (0, 0)), + ("RightDow", (0, 0)), + ("Updownarrow", (0, 0)), + ("nha", (0, 0)), + ("oslash;", (248, 0)), + ("Cayleys;", (8493, 0)), + ("iiii", (0, 0)), + ("subplus", (0, 0)), + ("cuwed;", (8911, 0)), + ("NotReverseElem", (0, 0)), + ("suphsu", (0, 0)), + ("vang", (0, 0)), + ("ClockwiseContourI", (0, 0)), + ("Vd", (0, 0)), + ("fe", (0, 0)), + ("Leftarrow;", (8656, 0)), + ("NotR", (0, 0)), + ("cra", (0, 0)), + ("NotNestedLessL", (0, 0)), + ("rsqb", (0, 0)), + ("TripleDo", (0, 0)), + ("gesd", (0, 0)), + ("Longri", (0, 0)), + ("block;", (9608, 0)), + ("NestedGreater", (0, 0)), + ("RightArrowBa", (0, 0)), + ("KJc", (0, 0)), + ("LeftTeeVector;", (10586, 0)), + ("NotVerticalBar;", (8740, 0)), + ("GreaterG", (0, 0)), + ("LeftDown", (0, 0)), + ("Eum", (0, 0)), + ("Wop", (0, 0)), + ("bpri", (0, 0)), + ("br", (0, 0)), + ("profsurf", (0, 0)), + ("rharu", (0, 0)), + ("SquareU", (0, 0)), + ("strns", (0, 0)), + ("boxdR;", (9554, 0)), + ("larrh", (0, 0)), + ("TripleDot", (0, 0)), + ("FilledVerySmallSq", (0, 0)), + ("scpoli", (0, 0)), + ("YUcy", (0, 0)), + ("xrAr", (0, 0)), + ("Qfr;", (120084, 0)), + ("NewLine;", (10, 0)), + ("angmsdac;", (10666, 0)), + ("nsucce", (0, 0)), + ("wcirc;", (373, 0)), + ("dem", (0, 0)), + ("van", (0, 0)), + ("NotSquareSupersetEqu", (0, 0)), + ("Bop", (0, 0)), + ("Exponent", (0, 0)), + ("mapstolef", (0, 0)), + ("prap", (0, 0)), + ("squf", (0, 0)), + ("DoubleRi", (0, 0)), + ("origo", (0, 0)), + ("plussi", (0, 0)), + ("Longrig", (0, 0)), + ("twoheadleftarro", (0, 0)), + ("Uar", (0, 0)), + ("Cce", (0, 0)), + ("Parti", (0, 0)), + ("drbkar", (0, 0)), + ("SH", (0, 0)), + ("nsubset", (0, 0)), + ("semi;", (59, 0)), + ("supsim", (0, 0)), + ("YU", (0, 0)), + ("igrave", (236, 0)), + ("Aogo", (0, 0)), + ("HumpDownH", (0, 0)), + ("DownRightVectorBar", (0, 0)), + ("ga", (0, 0)), + ("geq;", (8805, 0)), + ("Tau", (0, 0)), + ("ratio", (0, 0)), + ("DownRight", (0, 0)), + ("aci", (0, 0)), + ("NestedGreaterGreater;", (8811, 0)), + ("gv", (0, 0)), + ("Mi", (0, 0)), + ("Bcy;", (1041, 0)), + ("Tcaron", (0, 0)), + ("boxv;", (9474, 0)), + ("ua", (0, 0)), + ("LeftDownVecto", (0, 0)), + ("plusb", (0, 0)), + ("NotSucceedsT", (0, 0)), + ("LongLe", (0, 0)), + ("RightDou", (0, 0)), + ("bsolhsu", (0, 0)), + ("cong;", (8773, 0)), + ("rsqu", (0, 0)), + ("rfisht", (0, 0)), + ("app", (0, 0)), + ("ClockwiseContourIntegral", (0, 0)), + ("ale", (0, 0)), + ("eques", (0, 0)), + ("RightTeeVector", (0, 0)), + ("leftarro", (0, 0)), + ("ysc", (0, 0)), + ("ne", (0, 0)), + ("Backsla", (0, 0)), + ("hkswarow", (0, 0)), + ("excl;", (33, 0)), + ("nges", (0, 0)), + ("Dar", (0, 0)), + ("NotSucceedsSla", (0, 0)), + ("Ub", (0, 0)), + ("igra", (0, 0)), + ("VeryT", (0, 0)), + ("ntilde", (241, 0)), + ("copr", (0, 0)), + ("Lce", (0, 0)), + ("swnwar;", (10538, 0)), + ("ecaron", (0, 0)), + ("bumpeq;", (8783, 0)), + ("rightsqui", (0, 0)), + ("bnequiv", (0, 0)), + ("lhar", (0, 0)), + ("RightTee;", (8866, 0)), + ("FilledVer", (0, 0)), + ("ens", (0, 0)), + ("leftrightar", (0, 0)), + ("RightDownV", (0, 0)), + ("NotRe", (0, 0)), + ("bowti", (0, 0)), + ("falling", (0, 0)), + ("HilbertSp", (0, 0)), + ("LeftTri", (0, 0)), + ("gnsi", (0, 0)), + ("lgE;", (10897, 0)), + ("ThinS", (0, 0)), + ("gtdo", (0, 0)), + ("gacut", (0, 0)), + ("oro", (0, 0)), + ("Produc", (0, 0)), + ("emsp14;", (8197, 0)), + ("gcy", (0, 0)), + ("SuchThat;", (8715, 0)), + ("tstro", (0, 0)), + ("lesdotor", (0, 0)), + ("bbrktbrk", (0, 0)), + ("NotDoubleV", (0, 0)), + ("Kcedil", (0, 0)), + ("lessdot;", (8918, 0)), + ("cirE", (0, 0)), + ("DiacriticalGra", (0, 0)), + ("lAta", (0, 0)), + ("grave;", (96, 0)), + ("bigc", (0, 0)), + ("DoubleDownArro", (0, 0)), + ("elsdot", (0, 0)), + ("NotSub", (0, 0)), + ("DoubleVerti", (0, 0)), + ("VerticalBar", (0, 0)), + ("Sigma;", (931, 0)), + ("Ag", (0, 0)), + ("Fille", (0, 0)), + ("glE;", (10898, 0)), + ("lbrac", (0, 0)), + ("pitchfork", (0, 0)), + ("doublebarwed", (0, 0)), + ("num;", (35, 0)), + ("Uacute;", (218, 0)), + ("Zf", (0, 0)), + ("boxhu;", (9524, 0)), + ("ld", (0, 0)), + ("SuchT", (0, 0)), + ("LongRig", (0, 0)), + ("LowerLeft", (0, 0)), + ("veee", (0, 0)), + ("muma", (0, 0)), + ("thka", (0, 0)), + ("Ogra", (0, 0)), + ("SquareSu", (0, 0)), + ("compleme", (0, 0)), + ("Jukcy;", (1028, 0)), + ("Di", (0, 0)), + ("blk", (0, 0)), + ("zigra", (0, 0)), + ("lneq", (0, 0)), + ("gtquest;", (10876, 0)), + ("LeftArrowB", (0, 0)), + ("UpArro", (0, 0)), + ("succna", (0, 0)), + ("pluscir;", (10786, 0)), + ("sfr;", (120112, 0)), + ("vartriangle", (0, 0)), + ("Leftrightarrow", (0, 0)), + ("RightTria", (0, 0)), + ("upharpoonright;", (8638, 0)), + ("LeftUpVecto", (0, 0)), + ("TSc", (0, 0)), + ("colon;", (58, 0)), + ("DownLeftRightVe", (0, 0)), + ("Do", (0, 0)), + ("DoubleRightArrow;", (8658, 0)), + ("bump", (0, 0)), + ("cuvee;", (8910, 0)), + ("Ycirc;", (374, 0)), + ("lca", (0, 0)), + ("Revers", (0, 0)), + ("tdo", (0, 0)), + ("gtci", (0, 0)), + ("mDDot;", (8762, 0)), + ("nrightarrow;", (8603, 0)), + ("laqu", (0, 0)), + ("rpa", (0, 0)), + ("ned", (0, 0)), + ("NotCongr", (0, 0)), + ("Kap", (0, 0)), + ("eopf;", (120150, 0)), + ("num", (0, 0)), + ("plusdo;", (8724, 0)), + ("hookr", (0, 0)), + ("egs;", (10902, 0)), + ("varno", (0, 0)), + ("Downar", (0, 0)), + ("boxDr", (0, 0)), + ("lesseqqgtr;", (10891, 0)), + ("vl", (0, 0)), + ("uHa", (0, 0)), + ("osol;", (8856, 0)), + ("scaron", (0, 0)), + ("Ccedil", (199, 0)), + ("El", (0, 0)), + ("Coprod", (0, 0)), + ("divideontim", (0, 0)), + ("Nt", (0, 0)), + ("ss", (0, 0)), + ("lthree", (0, 0)), + ("utrif", (0, 0)), + ("RightTeeAr", (0, 0)), + ("SucceedsEqual", (0, 0)), + ("rotimes", (0, 0)), + ("gn", (0, 0)), + ("eogon", (0, 0)), + ("boxd", (0, 0)), + ("nLtv;", (8810, 824)), + ("nRigh", (0, 0)), + ("ShortRig", (0, 0)), + ("curlyeqs", (0, 0)), + ("Otime", (0, 0)), + ("UpD", (0, 0)), + ("theta;", (952, 0)), + ("Fouri", (0, 0)), + ("EmptySmallSquare;", (9723, 0)), + ("lpar;", (40, 0)), + ("lowb", (0, 0)), + ("SquareSuperse", (0, 0)), + ("Jf", (0, 0)), + ("gnappr", (0, 0)), + ("sear", (0, 0)), + ("NotLessEqua", (0, 0)), + ("DiacriticalDo", (0, 0)), + ("gtd", (0, 0)), + ("bowtie;", (8904, 0)), + ("precna", (0, 0)), + ("nprcue", (0, 0)), + ("Aring", (197, 0)), + ("Vb", (0, 0)), + ("ThickS", (0, 0)), + ("Lc", (0, 0)), + ("DiacriticalTild", (0, 0)), + ("TildeFullEqual", (0, 0)), + ("wc", (0, 0)), + ("Ff", (0, 0)), + ("dc", (0, 0)), + ("NotExists;", (8708, 0)), + ("atilde;", (227, 0)), + ("doteq;", (8784, 0)), + ("nvs", (0, 0)), + ("lbrack;", (91, 0)), + ("biguplus", (0, 0)), + ("hyphen", (0, 0)), + ("Scy", (0, 0)), + ("lsime", (0, 0)), + ("tb", (0, 0)), + ("intla", (0, 0)), + ("dst", (0, 0)), + ("back", (0, 0)), + ("DownBre", (0, 0)), + ("smile;", (8995, 0)), + ("ugra", (0, 0)), + ("Lced", (0, 0)), + ("H", (0, 0)), + ("urt", (0, 0)), + ("NotNest", (0, 0)), + ("precs", (0, 0)), + ("smallsetmi", (0, 0)), + ("DownRightTeeVec", (0, 0)), + ("Rrighta", (0, 0)), + ("Ycy;", (1067, 0)), + ("Oti", (0, 0)), + ("Xi;", (926, 0)), + ("leftarrow;", (8592, 0)), + ("ZH", (0, 0)), + ("permi", (0, 0)), + ("NotLessSlant", (0, 0)), + ("nopf", (0, 0)), + ("timesb", (0, 0)), + ("Zer", (0, 0)), + ("cupbrcap", (0, 0)), + ("LowerRi", (0, 0)), + ("late", (0, 0)), + ("InvisibleComma;", (8291, 0)), + ("eDD", (0, 0)), + ("softcy;", (1100, 0)), + ("nvrtrie;", (8885, 8402)), + ("xw", (0, 0)), + ("Tripl", (0, 0)), + ("rcub;", (125, 0)), + ("cudarrl", (0, 0)), + ("DoubleDownArrow;", (8659, 0)), + ("lag", (0, 0)), + ("ltlar", (0, 0)), + ("NoBre", (0, 0)), + ("Ecaron", (0, 0)), + ("lessapp", (0, 0)), + ("submu", (0, 0)), + ("wedbar", (0, 0)), + ("NestedGreaterG", (0, 0)), + ("RightDownVe", (0, 0)), + ("cu", (0, 0)), + ("hksearo", (0, 0)), + ("bigup", (0, 0)), + ("omic", (0, 0)), + ("aacut", (0, 0)), + ("notniva;", (8716, 0)), + ("dale", (0, 0)), + ("capbrcu", (0, 0)), + ("NotGreaterSlantEqu", (0, 0)), + ("atilde", (227, 0)), + ("wrea", (0, 0)), + ("imagp", (0, 0)), + ("Prec", (0, 0)), + ("otim", (0, 0)), + ("Nacute;", (323, 0)), + ("lesseqg", (0, 0)), + ("k", (0, 0)), + ("mod", (0, 0)), + ("Lleft", (0, 0)), + ("LessLess;", (10913, 0)), + ("pre;", (10927, 0)), + ("blk14;", (9617, 0)), + ("chcy;", (1095, 0)), + ("Integra", (0, 0)), + ("NotGreaterL", (0, 0)), + ("downa", (0, 0)), + ("gf", (0, 0)), + ("conint;", (8750, 0)), + ("thickap", (0, 0)), + ("vsubnE", (0, 0)), + ("boxuR", (0, 0)), + ("GreaterF", (0, 0)), + ("ETH", (208, 0)), + ("ced", (0, 0)), + ("gtcir", (0, 0)), + ("DoubleUpD", (0, 0)), + ("ulcorner", (0, 0)), + ("UpEqu", (0, 0)), + ("digamma;", (989, 0)), + ("rightsquigar", (0, 0)), + ("berno", (0, 0)), + ("divideo", (0, 0)), + ("digam", (0, 0)), + ("scir", (0, 0)), + ("exponent", (0, 0)), + ("apacir", (0, 0)), + ("i", (0, 0)), + ("LongLeftRightArrow", (0, 0)), + ("ngeqs", (0, 0)), + ("Cloc", (0, 0)), + ("pf", (0, 0)), + ("compfn", (0, 0)), + ("LeftTriangleEqual;", (8884, 0)), + ("wreath", (0, 0)), + ("boxVl", (0, 0)), + ("congdot", (0, 0)), + ("lstro", (0, 0)), + ("nopf;", (120159, 0)), + ("yacut", (0, 0)), + ("triplus", (0, 0)), + ("mapstol", (0, 0)), + ("Intersect", (0, 0)), + ("DiacriticalTi", (0, 0)), + ("utr", (0, 0)), + ("Omi", (0, 0)), + ("plussim;", (10790, 0)), + ("aopf;", (120146, 0)), + ("Oacute;", (211, 0)), + ("uplus", (0, 0)), + ("Tilde", (0, 0)), + ("ctd", (0, 0)), + ("div", (0, 0)), + ("gamm", (0, 0)), + ("NotHumpD", (0, 0)), + ("SquareS", (0, 0)), + ("ulcorner;", (8988, 0)), + ("succnapprox", (0, 0)), + ("shcy;", (1096, 0)), + ("MediumSpace;", (8287, 0)), + ("LeftTriangleEqual", (0, 0)), + ("iukcy", (0, 0)), + ("RightUpVector;", (8638, 0)), + ("bigodot;", (10752, 0)), + ("c", (0, 0)), + ("UpArrowDownArr", (0, 0)), + ("NotGreaterEqua", (0, 0)), + ("itild", (0, 0)), + ("Vopf;", (120141, 0)), + ("lvnE", (0, 0)), + ("lmoust;", (9136, 0)), + ("lotimes", (0, 0)), + ("numsp", (0, 0)), + ("sfr", (0, 0)), + ("subsetne", (0, 0)), + ("chi", (0, 0)), + ("boxVL;", (9571, 0)), + ("NotHump", (0, 0)), + ("ShortRightArro", (0, 0)), + ("xs", (0, 0)), + ("squa", (0, 0)), + ("Rarr", (0, 0)), + ("cirscir", (0, 0)), + ("intercal;", (8890, 0)), + ("UpTeeArr", (0, 0)), + ("Barwed", (0, 0)), + ("nsupset", (0, 0)), + ("Omeg", (0, 0)), + ("NewLine", (0, 0)), + ("LeftUpVector;", (8639, 0)), + ("Xfr;", (120091, 0)), + ("Tstr", (0, 0)), + ("nparallel", (0, 0)), + ("succapprox;", (10936, 0)), + ("subsub;", (10965, 0)), + ("lvertn", (0, 0)), + ("simgE;", (10912, 0)), + ("qsc", (0, 0)), + ("emacr;", (275, 0)), + ("LongL", (0, 0)), + ("longleftrightarrow", (0, 0)), + ("boxp", (0, 0)), + ("nesi", (0, 0)), + ("zf", (0, 0)), + ("Long", (0, 0)), + ("downharpoonlef", (0, 0)), + ("icy", (0, 0)), + ("LeftC", (0, 0)), + ("upupa", (0, 0)), + ("NotRigh", (0, 0)), + ("LeftFloor;", (8970, 0)), + ("Succe", (0, 0)), + ("box", (0, 0)), + ("cedi", (0, 0)), + ("PartialD;", (8706, 0)), + ("ora", (0, 0)), + ("UpArrowDownA", (0, 0)), + ("rmoustach", (0, 0)), + ("bNot", (0, 0)), + ("varp", (0, 0)), + ("lmido", (0, 0)), + ("Oacut", (0, 0)), + ("rig", (0, 0)), + ("vartri", (0, 0)), + ("odb", (0, 0)), + ("searr", (0, 0)), + ("xsqcu", (0, 0)), + ("SucceedsTild", (0, 0)), + ("sect;", (167, 0)), + ("tpr", (0, 0)), + ("gtreqq", (0, 0)), + ("Ab", (0, 0)), + ("isin", (0, 0)), + ("ntriang", (0, 0)), + ("leftharpoond", (0, 0)), + ("shy;", (173, 0)), + ("par", (0, 0)), + ("NotSubsetEqu", (0, 0)), + ("prcu", (0, 0)), + ("thet", (0, 0)), + ("UpTeeArro", (0, 0)), + ("kopf", (0, 0)), + ("LeftUpDow", (0, 0)), + ("cupbrcap;", (10824, 0)), + ("xlArr", (0, 0)), + ("Darr;", (8609, 0)), + ("DoubleVerticalBar;", (8741, 0)), + ("eqcir", (0, 0)), + ("qscr;", (120006, 0)), + ("looparrowleft", (0, 0)), + ("ltlarr;", (10614, 0)), + ("robr", (0, 0)), + ("cdot", (0, 0)), + ("integers", (0, 0)), + ("Iac", (0, 0)), + ("micr", (0, 0)), + ("LeftArrowRightAr", (0, 0)), + ("supn", (0, 0)), + ("RightDoubleBracket", (0, 0)), + ("olarr", (0, 0)), + ("larrs", (0, 0)), + ("utri", (0, 0)), + ("imped;", (437, 0)), + ("FilledVerySmal", (0, 0)), + ("leftrightharpoo", (0, 0)), + ("xrarr;", (10230, 0)), + ("olcros", (0, 0)), + ("sqcup", (0, 0)), + ("hercon;", (8889, 0)), + ("Em", (0, 0)), + ("prnsim", (0, 0)), + ("Nac", (0, 0)), + ("varrh", (0, 0)), + ("sfrown", (0, 0)), + ("dArr", (0, 0)), + ("longleftrightarrow;", (10231, 0)), + ("DownLeftTeeVector", (0, 0)), + ("NotSquareSub", (0, 0)), + ("NegativeVer", (0, 0)), + ("egsdot", (0, 0)), + ("rightrightarrows;", (8649, 0)), + ("sups", (0, 0)), + ("DownArrowBar;", (10515, 0)), + ("drc", (0, 0)), + ("nsube;", (8840, 0)), + ("fparti", (0, 0)), + ("mumap;", (8888, 0)), + ("Gdo", (0, 0)), + ("car", (0, 0)), + ("rotim", (0, 0)), + ("tilde;", (732, 0)), + ("sqc", (0, 0)), + ("yicy;", (1111, 0)), + ("nvHarr", (0, 0)), + ("Diam", (0, 0)), + ("ncar", (0, 0)), + ("lpar", (0, 0)), + ("Hc", (0, 0)), + ("Expo", (0, 0)), + ("Dagg", (0, 0)), + ("varsub", (0, 0)), + ("Sced", (0, 0)), + ("frac12", (189, 0)), + ("no", (0, 0)), + ("npart;", (8706, 824)), + ("lAar", (0, 0)), + ("bpr", (0, 0)), + ("oS;", (9416, 0)), + ("pru", (0, 0)), + ("harr", (0, 0)), + ("Gr", (0, 0)), + ("Cir", (0, 0)), + ("DJcy;", (1026, 0)), + ("zhcy;", (1078, 0)), + ("rightarrow", (0, 0)), + ("VerticalS", (0, 0)), + ("qop", (0, 0)), + ("ReverseEquilibrium", (0, 0)), + ("Vo", (0, 0)), + ("urcrop;", (8974, 0)), + ("TildeEqual;", (8771, 0)), + ("kcedil", (0, 0)), + ("Et", (0, 0)), + ("nLeftright", (0, 0)), + ("ReverseUpEquilib", (0, 0)), + ("tshcy", (0, 0)), + ("Uparr", (0, 0)), + ("angmsdae;", (10668, 0)), + ("Sqr", (0, 0)), + ("DownRi", (0, 0)), + ("Eta", (0, 0)), + ("succap", (0, 0)), + ("hyphe", (0, 0)), + ("Jsercy;", (1032, 0)), + ("GreaterEqualLess;", (8923, 0)), + ("ij", (0, 0)), + ("squarf;", (9642, 0)), + ("GreaterGre", (0, 0)), + ("OElig;", (338, 0)), + ("urcorne", (0, 0)), + ("LeftArr", (0, 0)), + ("Ecar", (0, 0)), + ("nles;", (10877, 824)), + ("pri", (0, 0)), + ("lessg", (0, 0)), + ("rbar", (0, 0)), + ("LessSl", (0, 0)), + ("md", (0, 0)), + ("DownBreve", (0, 0)), + ("succcurly", (0, 0)), + ("ncup", (0, 0)), + ("UnionP", (0, 0)), + ("HumpDownHump", (0, 0)), + ("sqcaps", (0, 0)), + ("NotNestedGreaterGre", (0, 0)), + ("triang", (0, 0)), + ("eqcol", (0, 0)), + ("oum", (0, 0)), + ("lbbrk;", (10098, 0)), + ("nsupsete", (0, 0)), + ("Icy", (0, 0)), + ("EN", (0, 0)), + ("nvltri", (0, 0)), + ("Uop", (0, 0)), + ("inte", (0, 0)), + ("darr", (0, 0)), + ("LeftArro", (0, 0)), + ("Diff", (0, 0)), + ("Empty", (0, 0)), + ("rangd;", (10642, 0)), + ("ln", (0, 0)), + ("Acir", (0, 0)), + ("Theta", (0, 0)), + ("Bscr;", (8492, 0)), + ("vfr;", (120115, 0)), + ("shortpara", (0, 0)), + ("curlywe", (0, 0)), + ("rarra", (0, 0)), + ("bigtriangledow", (0, 0)), + ("triminus;", (10810, 0)), + ("utdo", (0, 0)), + ("sme", (0, 0)), + ("LeftCeili", (0, 0)), + ("xcu", (0, 0)), + ("ge", (0, 0)), + ("smashp;", (10803, 0)), + ("dsc", (0, 0)), + ("twoheadleft", (0, 0)), + ("urtri", (0, 0)), + ("horb", (0, 0)), + ("upharpoonlef", (0, 0)), + ("lessdo", (0, 0)), + ("curvearrowrig", (0, 0)), + ("Ap", (0, 0)), + ("trad", (0, 0)), + ("LeftDownTeeVec", (0, 0)), + ("np", (0, 0)), + ("cirsci", (0, 0)), + ("prur", (0, 0)), + ("cirfnint", (0, 0)), + ("nbump;", (8782, 824)), + ("UpArrowD", (0, 0)), + ("GreaterFul", (0, 0)), + ("ntil", (0, 0)), + ("DoubleDow", (0, 0)), + ("Lst", (0, 0)), + ("GreaterEqual;", (8805, 0)), + ("mld", (0, 0)), + ("gtreql", (0, 0)), + ("thetas", (0, 0)), + ("Hopf", (0, 0)), + ("rrarr;", (8649, 0)), + ("napid", (0, 0)), + ("glj;", (10916, 0)), + ("nLeftarrow;", (8653, 0)), + ("emptyset;", (8709, 0)), + ("NotEqualTilde;", (8770, 824)), + ("angmsdad;", (10667, 0)), + ("njc", (0, 0)), + ("NotPrecedesSlantE", (0, 0)), + ("vrtri;", (8883, 0)), + ("Ws", (0, 0)), + ("prnap;", (10937, 0)), + ("nhArr;", (8654, 0)), + ("cuep", (0, 0)), + ("Cedill", (0, 0)), + ("Wopf;", (120142, 0)), + ("sigm", (0, 0)), + ("leftrightsq", (0, 0)), + ("nvlArr;", (10498, 0)), + ("jukcy;", (1108, 0)), + ("Gc", (0, 0)), + ("leftharpoondo", (0, 0)), + ("DoubleLeftA", (0, 0)), + ("Bum", (0, 0)), + ("Omicr", (0, 0)), + ("Uf", (0, 0)), + ("rdc", (0, 0)), + ("DownT", (0, 0)), + ("ropa", (0, 0)), + ("DoubleLong", (0, 0)), + ("Lmido", (0, 0)), + ("Bernoull", (0, 0)), + ("NotLeftTriangl", (0, 0)), + ("NotRightTriangleEqua", (0, 0)), + ("lparlt;", (10643, 0)), + ("HumpE", (0, 0)), + ("Becaus", (0, 0)), + ("female", (0, 0)), + ("Wed", (0, 0)), + ("LessGreater", (0, 0)), + ("LessE", (0, 0)), + ("phiv", (0, 0)), + ("LongLeftRightAr", (0, 0)), + ("", (0, 0)), + ("Gt", (0, 0)), + ("nsqsup", (0, 0)), + ("gr", (0, 0)), + ("ape", (0, 0)), + ("dagger", (0, 0)), + ("lrarr;", (8646, 0)), + ("Otimes;", (10807, 0)), + ("topbot", (0, 0)), + ("RightAngleB", (0, 0)), + ("precapprox", (0, 0)), + ("TSHcy;", (1035, 0)), + ("HorizontalLine", (0, 0)), + ("KJ", (0, 0)), + ("rightrightarr", (0, 0)), + ("rightrightarrows", (0, 0)), + ("bigcu", (0, 0)), + ("nVDa", (0, 0)), + ("RightVectorB", (0, 0)), + ("Rever", (0, 0)), + ("curvearrowle", (0, 0)), + ("vsubne", (0, 0)), + ("RightArro", (0, 0)), + ("gesle", (0, 0)), + ("Rcedi", (0, 0)), + ("gdot", (0, 0)), + ("GreaterL", (0, 0)), + ("Odblac;", (336, 0)), + ("NegativeVeryThinSpa", (0, 0)), + ("abre", (0, 0)), + ("backcong", (0, 0)), + ("Vbar", (0, 0)), + ("dotsq", (0, 0)), + ("mcomma", (0, 0)), + ("NotTil", (0, 0)), + ("NotVerticalBar", (0, 0)), + ("opar;", (10679, 0)), + ("rarrbfs", (0, 0)), + ("Lstrok", (0, 0)), + ("zfr;", (120119, 0)), + ("nrtrie;", (8941, 0)), + ("prof", (0, 0)), + ("odbl", (0, 0)), + ("UpArrowDo", (0, 0)), + ("UpEquili", (0, 0)), + ("uA", (0, 0)), + ("Mfr;", (120080, 0)), + ("lesseqq", (0, 0)), + ("Ur", (0, 0)), + ("supedot", (0, 0)), + ("mldr;", (8230, 0)), + ("succs", (0, 0)), + ("congdo", (0, 0)), + ("pr", (0, 0)), + ("LeftUpTeeVect", (0, 0)), + ("cularrp;", (10557, 0)), + ("lh", (0, 0)), + ("supplus;", (10944, 0)), + ("NotNestedGreater", (0, 0)), + ("leftrights", (0, 0)), + ("asc", (0, 0)), + ("Efr;", (120072, 0)), + ("utdot", (0, 0)), + ("omicron", (0, 0)), + ("YIcy;", (1031, 0)), + ("supsup;", (10966, 0)), + ("rfis", (0, 0)), + ("andd;", (10844, 0)), + ("nrAr", (0, 0)), + ("nwarro", (0, 0)), + ("eli", (0, 0)), + ("gacute;", (501, 0)), + ("NonBreakingSpace;", (160, 0)), + ("NotReverseEle", (0, 0)), + ("uf", (0, 0)), + ("nshortm", (0, 0)), + ("ltim", (0, 0)), + ("angr", (0, 0)), + ("uplus;", (8846, 0)), + ("part", (0, 0)), + ("RightArrowB", (0, 0)), + ("DoubleUpDownAr", (0, 0)), + ("LessL", (0, 0)), + ("Poincareplane;", (8460, 0)), + ("RightDoubleBrack", (0, 0)), + ("LeftA", (0, 0)), + ("ngeqslant;", (10878, 824)), + ("FilledSmallSq", (0, 0)), + ("uar", (0, 0)), + ("dharr", (0, 0)), + ("rf", (0, 0)), + ("MinusPlus;", (8723, 0)), + ("leftthree", (0, 0)), + ("NotGreaterSla", (0, 0)), + ("circlearrowrig", (0, 0)), + ("DoubleRig", (0, 0)), + ("cupcu", (0, 0)), + ("lparlt", (0, 0)), + ("bdq", (0, 0)), + ("Go", (0, 0)), + ("xi;", (958, 0)), + ("Lscr", (0, 0)), + ("ubreve", (0, 0)), + ("checkmar", (0, 0)), + ("LeftDoubleBra", (0, 0)), + ("NestedLes", (0, 0)), + ("rec", (0, 0)), + ("rlha", (0, 0)), + ("msc", (0, 0)), + ("CounterClockwiseCon", (0, 0)), + ("supsete", (0, 0)), + ("boxDl;", (9558, 0)), + ("hkswa", (0, 0)), + ("vDash;", (8872, 0)), + ("xca", (0, 0)), + ("DownLeftRi", (0, 0)), + ("seswa", (0, 0)), + ("mDDot", (0, 0)), + ("ubre", (0, 0)), + ("RightDownTeeVector", (0, 0)), + ("Gamma;", (915, 0)), + ("Wsc", (0, 0)), + ("Ofr", (0, 0)), + ("blacktriangledo", (0, 0)), + ("triangledo", (0, 0)), + ("lnapp", (0, 0)), + ("upuparrows;", (8648, 0)), + ("Kop", (0, 0)), + ("PrecedesTil", (0, 0)), + ("circledcirc", (0, 0)), + ("RightTriangle;", (8883, 0)), + ("copf;", (120148, 0)), + ("dar", (0, 0)), + ("sb", (0, 0)), + ("lvn", (0, 0)), + ("eqslantles", (0, 0)), + ("hkswaro", (0, 0)), + ("eDDo", (0, 0)), + ("CenterDo", (0, 0)), + ("LeftAngleB", (0, 0)), + ("in;", (8712, 0)), + ("LessEq", (0, 0)), + ("gnappro", (0, 0)), + ("LeftD", (0, 0)), + ("rad", (0, 0)), + ("Hscr;", (8459, 0)), + ("Circ", (0, 0)), + ("curlywedge", (0, 0)), + ("smalls", (0, 0)), + ("racut", (0, 0)), + ("loz", (0, 0)), + ("xhArr", (0, 0)), + ("DoubleUpDownArro", (0, 0)), + ("gtrless", (0, 0)), + ("DoubleLeftRightA", (0, 0)), + ("ZeroWi", (0, 0)), + ("Yfr;", (120092, 0)), + ("inodot", (0, 0)), + ("nshortparallel", (0, 0)), + ("curren", (164, 0)), + ("Uu", (0, 0)), + ("Lopf;", (120131, 0)), + ("Um", (0, 0)), + ("Del", (0, 0)), + ("langd;", (10641, 0)), + ("frac35;", (8535, 0)), + ("capdot", (0, 0)), + ("Dstro", (0, 0)), + ("smi", (0, 0)), + ("thetasym", (0, 0)), + ("szlig;", (223, 0)), + ("rtrif;", (9656, 0)), + ("NotLessSlan", (0, 0)), + ("ups", (0, 0)), + ("becaus", (0, 0)), + ("bbrktbrk;", (9142, 0)), + ("NegativeThickSpac", (0, 0)), + ("rarrh", (0, 0)), + ("Leftr", (0, 0)), + ("xoti", (0, 0)), + ("Union;", (8899, 0)), + ("ema", (0, 0)), + ("RightArrowBar", (0, 0)), + ("rced", (0, 0)), + ("hea", (0, 0)), + ("NotNestedLessLes", (0, 0)), + ("ltimes", (0, 0)), + ("itil", (0, 0)), + ("nsube", (0, 0)), + ("jsc", (0, 0)), + ("Cross", (0, 0)), + ("sdotb;", (8865, 0)), + ("NotDoubleVertical", (0, 0)), + ("NotVertic", (0, 0)), + ("drbkaro", (0, 0)), + ("sqsup", (0, 0)), + ("Zeta;", (918, 0)), + ("supsetneq", (0, 0)), + ("UpArrowDow", (0, 0)), + ("eqci", (0, 0)), + ("uti", (0, 0)), + ("UpTeeA", (0, 0)), + ("varpropto;", (8733, 0)), + ("NotTildeFullEqua", (0, 0)), + ("Dot", (0, 0)), + ("gver", (0, 0)), + ("cong", (0, 0)), + ("measuredangle;", (8737, 0)), + ("FilledSmal", (0, 0)), + ("zeet", (0, 0)), + ("rdquo", (0, 0)), + ("Proportion;", (8759, 0)), + ("ldquor", (0, 0)), + ("Lcaron;", (317, 0)), + ("ldsh", (0, 0)), + ("rarrfs", (0, 0)), + ("PlusMi", (0, 0)), + ("omicr", (0, 0)), + ("RoundImplies;", (10608, 0)), + ("UpDownAr", (0, 0)), + ("lrcorner", (0, 0)), + ("roplus", (0, 0)), + ("uma", (0, 0)), + ("bigod", (0, 0)), + ("gap", (0, 0)), + ("NotSup", (0, 0)), + ("LeftAn", (0, 0)), + ("Oc", (0, 0)), + ("sdotb", (0, 0)), + ("barwed", (0, 0)), + ("lnappr", (0, 0)), + ("fora", (0, 0)), + ("Kfr;", (120078, 0)), + ("rightharpoo", (0, 0)), + ("Therefor", (0, 0)), + ("au", (0, 0)), + ("daleth", (0, 0)), + ("leftrightsquigarr", (0, 0)), + ("subsetneq", (0, 0)), + ("iexcl;", (161, 0)), + ("NegativeVery", (0, 0)), + ("plusd", (0, 0)), + ("qprime;", (8279, 0)), + ("subra", (0, 0)), + ("hst", (0, 0)), + ("vr", (0, 0)), + ("parall", (0, 0)), + ("Eu", (0, 0)), + ("TSH", (0, 0)), + ("trip", (0, 0)), + ("ssmil", (0, 0)), + ("cue", (0, 0)), + ("tint", (0, 0)), + ("eqsim;", (8770, 0)), + ("Ucirc;", (219, 0)), + ("tdot", (0, 0)), + ("lnsim", (0, 0)), + ("Wopf", (0, 0)), + ("NotLeftTriangleB", (0, 0)), + ("Imagi", (0, 0)), + ("backpri", (0, 0)), + ("sube", (0, 0)), + ("bigcir", (0, 0)), + ("ngtr", (0, 0)), + ("mode", (0, 0)), + ("am", (0, 0)), + ("trisb;", (10701, 0)), + ("DoubleLongLeftAr", (0, 0)), + ("rationals", (0, 0)), + ("GreaterLe", (0, 0)), + ("capbrcup;", (10825, 0)), + ("NotLessSlantEq", (0, 0)), + ("Emp", (0, 0)), + ("InvisibleTime", (0, 0)), + ("ast;", (42, 0)), + ("therefore", (0, 0)), + ("Bac", (0, 0)), + ("LessGreater;", (8822, 0)), + ("Propor", (0, 0)), + ("Fopf;", (120125, 0)), + ("Eacute", (201, 0)), + ("rbrkslu", (0, 0)), + ("lowba", (0, 0)), + ("gg;", (8811, 0)), + ("Hac", (0, 0)), + ("ohb", (0, 0)), + ("lg", (0, 0)), + ("Longrigh", (0, 0)), + ("angmsdag", (0, 0)), + ("backsimeq", (0, 0)), + ("elinte", (0, 0)), + ("rdldhar", (0, 0)), + ("thicksim", (0, 0)), + ("udbla", (0, 0)), + ("malte", (0, 0)), + ("gbr", (0, 0)), + ("supp", (0, 0)), + ("Downa", (0, 0)), + ("NotTi", (0, 0)), + ("mo", (0, 0)), + ("ngeqslan", (0, 0)), + ("nshortparall", (0, 0)), + ("swArr", (0, 0)), + ("Ups", (0, 0)), + ("triangler", (0, 0)), + ("nRightarro", (0, 0)), + ("nu;", (957, 0)), + ("LessSla", (0, 0)), + ("cced", (0, 0)), + ("SucceedsTilde;", (8831, 0)), + ("gesdoto", (0, 0)), + ("Longlef", (0, 0)), + ("Egrave", (200, 0)), + ("ShortUpArro", (0, 0)), + ("duh", (0, 0)), + ("Therefore", (0, 0)), + ("blacktriangledown", (0, 0)), + ("nhar", (0, 0)), + ("Gsc", (0, 0)), + ("nleftrighta", (0, 0)), + ("csupe;", (10962, 0)), + ("nRig", (0, 0)), + ("ofc", (0, 0)), + ("gscr", (0, 0)), + ("set", (0, 0)), + ("RightUpVec", (0, 0)), + ("Vdashl", (0, 0)), + ("prod;", (8719, 0)), + ("Fil", (0, 0)), + ("jfr;", (120103, 0)), + ("sdote;", (10854, 0)), + ("nshortmi", (0, 0)), + ("naturals;", (8469, 0)), + ("Zo", (0, 0)), + ("rightarrowt", (0, 0)), + ("lozen", (0, 0)), + ("parsi", (0, 0)), + ("emptyv;", (8709, 0)), + ("Count", (0, 0)), + ("NotLessGreater", (0, 0)), + ("NotSquareSupersetEqua", (0, 0)), + ("angrt;", (8735, 0)), + ("epsil", (0, 0)), + ("crar", (0, 0)), + ("LeftCeilin", (0, 0)), + ("LeftArrowRight", (0, 0)), + ("Vdashl;", (10982, 0)), + ("iiota", (0, 0)), + ("LeftArrow", (0, 0)), + ("LowerRightArr", (0, 0)), + ("scirc", (0, 0)), + ("Hil", (0, 0)), + ("duar", (0, 0)), + ("Rightarrow;", (8658, 0)), + ("Mc", (0, 0)), + ("SucceedsSlantE", (0, 0)), + ("Af", (0, 0)), + ("ran", (0, 0)), + ("circlearrowr", (0, 0)), + ("natural;", (9838, 0)), + ("VerticalTilde", (0, 0)), + ("NotLessT", (0, 0)), + ("esim", (0, 0)), + ("td", (0, 0)), + ("boxminus;", (8863, 0)), + ("rightthreeti", (0, 0)), + ("tridot;", (9708, 0)), + ("gtreqle", (0, 0)), + ("LeftUpVector", (0, 0)), + ("boxvR", (0, 0)), + ("twoheadrigh", (0, 0)), + ("OverParenth", (0, 0)), + ("roarr", (0, 0)), + ("epsiv", (0, 0)), + ("There", (0, 0)), + ("rcy", (0, 0)), + ("tca", (0, 0)), + ("DoubleLongRight", (0, 0)), + ("Yacut", (0, 0)), + ("CirclePl", (0, 0)), + ("nLeftrigh", (0, 0)), + ("dscy", (0, 0)), + ("laempt", (0, 0)), + ("mnp", (0, 0)), + ("upup", (0, 0)), + ("isi", (0, 0)), + ("bbrktbr", (0, 0)), + ("NotPreced", (0, 0)), + ("NegativeThickS", (0, 0)), + ("supsetneqq", (0, 0)), + ("Lacute;", (313, 0)), + ("Euml", (203, 0)), + ("Egrave;", (200, 0)), + ("zwj", (0, 0)), + ("gnE;", (8809, 0)), + ("fcy", (0, 0)), + ("ape;", (8778, 0)), + ("demp", (0, 0)), + ("DownLeft", (0, 0)), + ("nbsp;", (160, 0)), + ("angs", (0, 0)), + ("ltri;", (9667, 0)), + ("natur", (0, 0)), + ("lessappro", (0, 0)), + ("frac5", (0, 0)), + ("FilledVerySmallSquare", (0, 0)), + ("qprime", (0, 0)), + ("aogon", (0, 0)), + ("wo", (0, 0)), + ("vArr;", (8661, 0)), + ("omicro", (0, 0)), + ("HilbertSpa", (0, 0)), + ("rightarrowtai", (0, 0)), + ("ifr", (0, 0)), + ("infintie", (0, 0)), + ("ti", (0, 0)), + ("Cscr", (0, 0)), + ("ot", (0, 0)), + ("dt", (0, 0)), + ("ecirc;", (234, 0)), + ("marker;", (9646, 0)), + ("NotPrecedesSlantEqua", (0, 0)), + ("oop", (0, 0)), + ("Or;", (10836, 0)), + ("le;", (8804, 0)), + ("puncs", (0, 0)), + ("timesbar;", (10801, 0)), + ("Cont", (0, 0)), + ("Ome", (0, 0)), + ("lvnE;", (8808, 65024)), + ("w", (0, 0)), + ("sigmav", (0, 0)), + ("colon", (0, 0)), + ("Zca", (0, 0)), + ("leftharpoondown;", (8637, 0)), + ("ic;", (8291, 0)), + ("Eca", (0, 0)), + ("Egrav", (0, 0)), + ("larrb;", (8676, 0)), + ("boxul;", (9496, 0)), + ("upuparro", (0, 0)), + ("Sopf;", (120138, 0)), + ("VerticalTil", (0, 0)), + ("eqs", (0, 0)), + ("DoubleDownArr", (0, 0)), + ("NotP", (0, 0)), + ("Fcy;", (1060, 0)), + ("bkaro", (0, 0)), + ("UnderBr", (0, 0)), + ("lt;", (60, 0)), + ("Nu;", (925, 0)), + ("ReverseElement", (0, 0)), + ("micro", (181, 0)), + ("Atild", (0, 0)), + ("exponen", (0, 0)), + ("egra", (0, 0)), + ("pluscir", (0, 0)), + ("perten", (0, 0)), + ("ShortLeftArro", (0, 0)), + ("LeftUpD", (0, 0)), + ("NotPrece", (0, 0)), + ("NotCongruent", (0, 0)), + ("NotLessTild", (0, 0)), + ("trianglelefteq", (0, 0)), + ("RightArrowLeftArrow", (0, 0)), + ("notinvb", (0, 0)), + ("DotEqu", (0, 0)), + ("NotRightTriangleEqual;", (8941, 0)), + ("Lf", (0, 0)), + ("Because;", (8757, 0)), + ("RightTeeArrow;", (8614, 0)), + ("NotLessTil", (0, 0)), + ("bumpe;", (8783, 0)), + ("ijlig;", (307, 0)), + ("Ysc", (0, 0)), + ("theref", (0, 0)), + ("supnE;", (10956, 0)), + ("DScy", (0, 0)), + ("Nop", (0, 0)), + ("Uogo", (0, 0)), + ("eqsi", (0, 0)), + ("CapitalDifferentia", (0, 0)), + ("laempty", (0, 0)), + ("Bernou", (0, 0)), + ("e", (0, 0)), + ("prE", (0, 0)), + ("zs", (0, 0)), + ("csupe", (0, 0)), + ("Ope", (0, 0)), + ("block", (0, 0)), + ("NotLeftTriangle;", (8938, 0)), + ("xopf", (0, 0)), + ("NotLessTilde;", (8820, 0)), + ("ls", (0, 0)), + ("intlarh", (0, 0)), + ("ulcrop", (0, 0)), + ("OverParenthes", (0, 0)), + ("triangled", (0, 0)), + ("Tscr", (0, 0)), + ("rightlef", (0, 0)), + ("SmallCir", (0, 0)), + ("LeftArrowRigh", (0, 0)), + ("sqca", (0, 0)), + ("cirsc", (0, 0)), + ("NotNes", (0, 0)), + ("odblac", (0, 0)), + ("the", (0, 0)), + ("boxbox;", (10697, 0)), + ("LeftAngleBracke", (0, 0)), + ("Col", (0, 0)), + ("Yscr;", (119988, 0)), + ("Ra", (0, 0)), + ("dzi", (0, 0)), + ("Bfr", (0, 0)), + ("nltri;", (8938, 0)), + ("Igr", (0, 0)), + ("TildeF", (0, 0)), + ("Squar", (0, 0)), + ("Sacut", (0, 0)), + ("divi", (0, 0)), + ("Capita", (0, 0)), + ("wscr;", (120012, 0)), + ("Wf", (0, 0)), + ("NotLessSlantEqua", (0, 0)), + ("dbl", (0, 0)), + ("rcei", (0, 0)), + ("rightleftarrow", (0, 0)), + ("gtrdot", (0, 0)), + ("gtquest", (0, 0)), + ("lstr", (0, 0)), + ("VerticalT", (0, 0)), + ("rhard", (0, 0)), + ("NotLessLess;", (8810, 824)), + ("cac", (0, 0)), + ("nfr;", (120107, 0)), + ("caron;", (711, 0)), + ("maltes", (0, 0)), + ("NewLi", (0, 0)), + ("rlhar;", (8652, 0)), + ("uparrow;", (8593, 0)), + ("CounterClockwiseContourIntegral", (0, 0)), + ("Apply", (0, 0)), + ("ncong;", (8775, 0)), + ("topbo", (0, 0)), + ("V", (0, 0)), + ("dtri", (0, 0)), + ("ubrev", (0, 0)), + ("ff", (0, 0)), + ("LeftDow", (0, 0)), + ("lfisht", (0, 0)), + ("emptyv", (0, 0)), + ("DiacriticalAcut", (0, 0)), + ("nrightarr", (0, 0)), + ("upharp", (0, 0)), + ("Ci", (0, 0)), + ("uc", (0, 0)), + ("awint;", (10769, 0)), + ("ci", (0, 0)), + ("scap;", (10936, 0)), + ("ope", (0, 0)), + ("oplu", (0, 0)), + ("Neg", (0, 0)), + ("LowerRightArro", (0, 0)), + ("SupersetE", (0, 0)), + ("Yopf;", (120144, 0)), + ("multi", (0, 0)), + ("Equilibrium", (0, 0)), + ("Less", (0, 0)), + ("NegativeThickSpa", (0, 0)), + ("sl", (0, 0)), + ("nshortmid;", (8740, 0)), + ("OverBar", (0, 0)), + ("NestedGreate", (0, 0)), + ("Ka", (0, 0)), + ("Oacute", (211, 0)), + ("prE;", (10931, 0)), + ("ReverseUpEquilibrium;", (10607, 0)), + ("Updownar", (0, 0)), + ("simplus;", (10788, 0)), + ("boxti", (0, 0)), + ("vsupn", (0, 0)), + ("FilledVerySmall", (0, 0)), + ("ol", (0, 0)), + ("marker", (0, 0)), + ("df", (0, 0)), + ("aelig;", (230, 0)), + ("longrightar", (0, 0)), + ("upsil", (0, 0)), + ("squarf", (0, 0)), + ("nVdash;", (8878, 0)), + ("do", (0, 0)), + ("Up", (0, 0)), + ("daleth;", (8504, 0)), + ("capd", (0, 0)), + ("isinv;", (8712, 0)), + ("NotNestedGreaterGreater;", (10914, 824)), + ("Tri", (0, 0)), + ("E", (0, 0)), + ("nLeftrightar", (0, 0)), + ("Medi", (0, 0)), + ("LessEqualGre", (0, 0)), + ("Rightarro", (0, 0)), + ("boxV;", (9553, 0)), + ("gvertneqq", (0, 0)), + ("ast", (0, 0)), + ("NotRight", (0, 0)), + ("asy", (0, 0)), + ("profal", (0, 0)), + ("go", (0, 0)), + ("Copf;", (8450, 0)), + ("nrighta", (0, 0)), + ("RightUpDo", (0, 0)), + ("notnivc;", (8957, 0)), + ("thic", (0, 0)), + ("Not", (0, 0)), + ("wedgeq", (0, 0)), + ("orderof", (0, 0)), + ("scnsim", (0, 0)), + ("Laplacetrf;", (8466, 0)), + ("subne;", (8842, 0)), + ("ffli", (0, 0)), + ("SquareInter", (0, 0)), + ("Vvd", (0, 0)), + ("lds", (0, 0)), + ("rarrc", (0, 0)), + ("NotLeftTriangleBa", (0, 0)), + ("Ber", (0, 0)), + ("Op", (0, 0)), + ("KH", (0, 0)), + ("lAt", (0, 0)), + ("therefor", (0, 0)), + ("eci", (0, 0)), + ("llhar", (0, 0)), + ("phm", (0, 0)), + ("gesdot;", (10880, 0)), + ("xni", (0, 0)), + ("nrigh", (0, 0)), + ("varsup", (0, 0)), + ("LessFullEqua", (0, 0)), + ("ReverseUpEquilibriu", (0, 0)), + ("boxhD", (0, 0)), + ("plus;", (43, 0)), + ("lowbar", (0, 0)), + ("Omega;", (937, 0)), + ("notindot", (0, 0)), + ("lat;", (10923, 0)), + ("leftrightsquigarro", (0, 0)), + ("Mopf", (0, 0)), + ("odso", (0, 0)), + ("srarr", (0, 0)), + ("ssmile", (0, 0)), + ("lrarr", (0, 0)), + ("emsp1", (0, 0)), + ("rr", (0, 0)), + ("measured", (0, 0)), + ("hoo", (0, 0)), + ("GreaterSlantEqual", (0, 0)), + ("ngeqslant", (0, 0)), + ("ndash;", (8211, 0)), + ("lns", (0, 0)), + ("shy", (173, 0)), + ("triminu", (0, 0)), + ("Oum", (0, 0)), + ("updownarr", (0, 0)), + ("lrt", (0, 0)), + ("ocir;", (8858, 0)), + ("DoubleVe", (0, 0)), + ("Gcedil;", (290, 0)), + ("nleft", (0, 0)), + ("gesc", (0, 0)), + ("bigwe", (0, 0)), + ("twoheadr", (0, 0)), + ("drbka", (0, 0)), + ("GreaterLess;", (8823, 0)), + ("NotDou", (0, 0)), + ("comp;", (8705, 0)), + ("Tcy", (0, 0)), + ("geq", (0, 0)), + ("Cconi", (0, 0)), + ("nsupse", (0, 0)), + ("LeftDownVectorBar", (0, 0)), + ("RightUpV", (0, 0)), + ("Eogon", (0, 0)), + ("suplarr", (0, 0)), + ("LeftRightArrow;", (8596, 0)), + ("topf;", (120165, 0)), + ("Zero", (0, 0)), + ("uharr;", (8638, 0)), + ("rar", (0, 0)), + ("longleftarr", (0, 0)), + ("OpenCurlyDoubleQuot", (0, 0)), + ("lmou", (0, 0)), + ("nleqslant;", (10877, 824)), + ("Vertical", (0, 0)), + ("boxdL", (0, 0)), + ("yopf", (0, 0)), + ("Congru", (0, 0)), + ("gesdot", (0, 0)), + ("boxDr;", (9555, 0)), + ("NotSqu", (0, 0)), + ("ntrianglerig", (0, 0)), + ("CloseCurlyDoubleQ", (0, 0)), + ("RightArrow", (0, 0)), + ("xut", (0, 0)), + ("ltla", (0, 0)), + ("Jc", (0, 0)), + ("zo", (0, 0)), + ("Racut", (0, 0)), + ("Jcy", (0, 0)), + ("EmptySm", (0, 0)), + ("eDot;", (8785, 0)), + ("trpezium;", (9186, 0)), + ("rdld", (0, 0)), + ("VerticalSeparato", (0, 0)), + ("ka", (0, 0)), + ("Sigma", (0, 0)), + ("RightTeeVector;", (10587, 0)), + ("xwed", (0, 0)), + ("DoubleUpDownArrow", (0, 0)), + ("CirclePlus;", (8853, 0)), + ("xopl", (0, 0)), + ("RightAng", (0, 0)), + ("bumpe", (0, 0)), + ("Chi;", (935, 0)), + ("rfish", (0, 0)), + ("nwarhk", (0, 0)), + ("fjli", (0, 0)), + ("rarrw;", (8605, 0)), + ("supseteqq", (0, 0)), + ("bsemi", (0, 0)), + ("DoubleRightArrow", (0, 0)), + ("robrk;", (10215, 0)), + ("cscr;", (119992, 0)), + ("boxvH", (0, 0)), + ("egrav", (0, 0)), + ("Yacu", (0, 0)), + ("roar", (0, 0)), + ("OpenCurlyQuote;", (8216, 0)), + ("Yop", (0, 0)), + ("subE", (0, 0)), + ("LeftRightVe", (0, 0)), + ("loo", (0, 0)), + ("rarrc;", (10547, 0)), + ("cupd", (0, 0)), + ("upu", (0, 0)), + ("xupl", (0, 0)), + ("rightthreetimes", (0, 0)), + ("KJcy;", (1036, 0)), + ("GreaterEqu", (0, 0)), + ("Med", (0, 0)), + ("NotSucc", (0, 0)), + ("bka", (0, 0)), + ("nrtri", (0, 0)), + ("qp", (0, 0)), + ("HilbertSpac", (0, 0)), + ("vp", (0, 0)), + ("cupo", (0, 0)), + ("Ufr;", (120088, 0)), + ("sub", (0, 0)), + ("rdldhar;", (10601, 0)), + ("otilde;", (245, 0)), + ("maltese", (0, 0)), + ("Scaron", (0, 0)), + ("Zacu", (0, 0)), + ("rbarr", (0, 0)), + ("bprim", (0, 0)), + ("loplus;", (10797, 0)), + ("tbrk", (0, 0)), + ("epsilon;", (949, 0)), + ("uml;", (168, 0)), + ("nparsl;", (11005, 8421)), + ("Nce", (0, 0)), + ("UpEquilibri", (0, 0)), + ("CounterCloc", (0, 0)), + ("leqq;", (8806, 0)), + ("SucceedsSlantEqu", (0, 0)), + ("sced", (0, 0)), + ("dotplus;", (8724, 0)), + ("REG", (174, 0)), + ("Omacr", (0, 0)), + ("trpeziu", (0, 0)), + ("LeftTee;", (8867, 0)), + ("UnderParent", (0, 0)), + ("UpperLeftArrow;", (8598, 0)), + ("DownArrowUpArrow;", (8693, 0)), + ("eD", (0, 0)), + ("lagra", (0, 0)), + ("spa", (0, 0)), + ("sscr;", (120008, 0)), + ("ETH;", (208, 0)), + ("rbarr;", (10509, 0)), + ("phiv;", (981, 0)), + ("Cedilla", (0, 0)), + ("andslope;", (10840, 0)), + ("slarr", (0, 0)), + ("angzarr;", (9084, 0)), + ("varthe", (0, 0)), + ("preccurly", (0, 0)), + ("triangledown", (0, 0)), + ("Sta", (0, 0)), + ("leftrightarrow", (0, 0)), + ("therefo", (0, 0)), + ("imagline", (0, 0)), + ("Udblac;", (368, 0)), + ("elint", (0, 0)), + ("uhb", (0, 0)), + ("NotSucceedsSlan", (0, 0)), + ("larrfs;", (10525, 0)), + ("Ze", (0, 0)), + ("varprop", (0, 0)), + ("varphi", (0, 0)), + ("lcaro", (0, 0)), + ("bre", (0, 0)), + ("dharr;", (8642, 0)), + ("Inters", (0, 0)), + ("ffllig;", (64260, 0)), + ("int", (0, 0)), + ("Implies", (0, 0)), + ("iecy", (0, 0)), + ("NotNestedGreaterGreater", (0, 0)), + ("csube;", (10961, 0)), + ("DDotrah", (0, 0)), + ("blacktriangleright", (0, 0)), + ("rsquo", (0, 0)), + ("Qscr;", (119980, 0)), + ("RightFloor;", (8971, 0)), + ("NotCupCap", (0, 0)), + ("bs", (0, 0)), + ("FilledVe", (0, 0)), + ("straig", (0, 0)), + ("ecaro", (0, 0)), + ("NotT", (0, 0)), + ("langle", (0, 0)), + ("Ga", (0, 0)), + ("kf", (0, 0)), + ("Wcirc", (0, 0)), + ("boxvL;", (9569, 0)), + ("qin", (0, 0)), + ("hercon", (0, 0)), + ("NotLessGre", (0, 0)), + ("LeftR", (0, 0)), + ("VerticalSepar", (0, 0)), + ("NegativeThinSp", (0, 0)), + ("Greate", (0, 0)), + ("jcirc;", (309, 0)), + ("ldquo", (0, 0)), + ("uphar", (0, 0)), + ("lambda", (0, 0)), + ("neArr", (0, 0)), + ("lbarr;", (10508, 0)), + ("downharpoonright", (0, 0)), + ("Lcaro", (0, 0)), + ("SquareUn", (0, 0)), + ("lp", (0, 0)), + ("varsupset", (0, 0)), + ("fr", (0, 0)), + ("ncong", (0, 0)), + ("Dcy;", (1044, 0)), + ("DownA", (0, 0)), + ("DiacriticalTilde", (0, 0)), + ("ReverseEquil", (0, 0)), + ("NotSucceedsSlantEqual;", (8929, 0)), + ("eqcolo", (0, 0)), + ("DoubleContourIntegr", (0, 0)), + ("HumpD", (0, 0)), + ("questeq", (0, 0)), + ("cem", (0, 0)), + ("Dashv", (0, 0)), + ("parallel", (0, 0)), + ("rightleftharpoon", (0, 0)), + ("ClockwiseConto", (0, 0)), + ("NotPrecedesEqu", (0, 0)), + ("DownLeftTee", (0, 0)), + ("OverBrack", (0, 0)), + ("NotEleme", (0, 0)), + ("nf", (0, 0)), + ("Hu", (0, 0)), + ("intc", (0, 0)), + ("Jser", (0, 0)), + ("circledS;", (9416, 0)), + ("Gamm", (0, 0)), + ("iqu", (0, 0)), + ("Oacu", (0, 0)), + ("divonx;", (8903, 0)), + ("lessapprox;", (10885, 0)), + ("orar", (0, 0)), + ("TildeFull", (0, 0)), + ("ShortLeftArrow;", (8592, 0)), + ("ie", (0, 0)), + ("NotRig", (0, 0)), + ("Pscr;", (119979, 0)), + ("oso", (0, 0)), + ("alef", (0, 0)), + ("pou", (0, 0)), + ("NotRightTriangle;", (8939, 0)), + ("prnap", (0, 0)), + ("da", (0, 0)), + ("RightArrowLeftA", (0, 0)), + ("utild", (0, 0)), + ("ReverseEl", (0, 0)), + ("scE", (0, 0)), + ("duhar", (0, 0)), + ("Ycir", (0, 0)), + ("NotSquareSubsetEqua", (0, 0)), + ("LongLeftRightArr", (0, 0)), + ("ShortD", (0, 0)), + ("male;", (9794, 0)), + ("sta", (0, 0)), + ("lharul;", (10602, 0)), + ("dscr;", (119993, 0)), + ("VerticalLine;", (124, 0)), + ("RightDouble", (0, 0)), + ("NotRightTriangleE", (0, 0)), + ("Close", (0, 0)), + ("perio", (0, 0)), + ("subsub", (0, 0)), + ("iu", (0, 0)), + ("gtreqqles", (0, 0)), + ("Leftrighta", (0, 0)), + ("caret;", (8257, 0)), + ("smallsetm", (0, 0)), + ("coprod", (0, 0)), + ("ipr", (0, 0)), + ("ta", (0, 0)), + ("Hcirc;", (292, 0)), + ("rfr", (0, 0)), + ("downharpoo", (0, 0)), + ("Uc", (0, 0)), + ("NotSupers", (0, 0)), + ("xfr", (0, 0)), + ("xfr;", (120117, 0)), + ("downharpoonrig", (0, 0)), + ("tced", (0, 0)), + ("barwed;", (8965, 0)), + ("lfis", (0, 0)), + ("comple", (0, 0)), + ("CounterClockwiseContourIn", (0, 0)), + ("gsiml", (0, 0)), + ("scpolint", (0, 0)), + ("NotGreaterSlantEqua", (0, 0)), + ("OpenCurlyDou", (0, 0)), + ("Nti", (0, 0)), + ("lstrok", (0, 0)), + ("NotTildeEqual;", (8772, 0)), + ("rightleftarro", (0, 0)), + ("plussim", (0, 0)), + ("subsi", (0, 0)), + ("SupersetEq", (0, 0)), + ("egrave;", (232, 0)), + ("risingdots", (0, 0)), + ("DifferentialD;", (8518, 0)), + ("omin", (0, 0)), + ("righ", (0, 0)), + ("succne", (0, 0)), + ("DoubleR", (0, 0)), + ("ratio;", (8758, 0)), + ("sca", (0, 0)), + ("NotLessEqu", (0, 0)), + ("NestedLessLes", (0, 0)), + ("LeftRightVector;", (10574, 0)), + ("ldq", (0, 0)), + ("gsime", (0, 0)), + ("f", (0, 0)), + ("zca", (0, 0)), + ("downdown", (0, 0)), + ("DownLeftV", (0, 0)), + ("supne", (0, 0)), + ("ni;", (8715, 0)), + ("Jukc", (0, 0)), + ("Acirc;", (194, 0)), + ("bnequ", (0, 0)), + ("LeftTriangleEqua", (0, 0)), + ("LongR", (0, 0)), + ("Racute", (0, 0)), + ("triplus;", (10809, 0)), + ("NonBreakingSpa", (0, 0)), + ("sq", (0, 0)), + ("triangleri", (0, 0)), + ("nis", (0, 0)), + ("Doubl", (0, 0)), + ("nsqsub", (0, 0)), + ("longle", (0, 0)), + ("nlsim;", (8820, 0)), + ("cfr", (0, 0)), + ("AElig;", (198, 0)), + ("LeftVectorBar;", (10578, 0)), + ("tprime;", (8244, 0)), + ("nmid", (0, 0)), + ("LeftFl", (0, 0)), + ("NotGreaterEqual", (0, 0)), + ("DownTe", (0, 0)), + ("Ubr", (0, 0)), + ("ascr", (0, 0)), + ("esdot", (0, 0)), + ("ropar;", (10630, 0)), + ("LowerRightArrow;", (8600, 0)), + ("sube;", (8838, 0)), + ("mumap", (0, 0)), + ("nca", (0, 0)), + ("ShortUpA", (0, 0)), + ("RightUpTeeVecto", (0, 0)), + ("dow", (0, 0)), + ("vartria", (0, 0)), + ("NotDoubleVerticalB", (0, 0)), + ("LeftDo", (0, 0)), + ("xn", (0, 0)), + ("ws", (0, 0)), + ("yi", (0, 0)), + ("luruh", (0, 0)), + ("heartsuit;", (9829, 0)), + ("olt", (0, 0)), + ("NestedLessL", (0, 0)), + ("NotReverseE", (0, 0)), + ("REG;", (174, 0)), + ("sqs", (0, 0)), + ("geqslan", (0, 0)), + ("precnapp", (0, 0)), + ("FilledVery", (0, 0)), + ("bigot", (0, 0)), + ("rAt", (0, 0)), + ("leftrighthar", (0, 0)), + ("gesdoto;", (10882, 0)), + ("LeftUpVectorB", (0, 0)), + ("Pscr", (0, 0)), + ("umacr", (0, 0)), + ("rati", (0, 0)), + ("Pfr", (0, 0)), + ("capand;", (10820, 0)), + ("thicks", (0, 0)), + ("varka", (0, 0)), + ("Mf", (0, 0)), + ("subplu", (0, 0)), + ("gtreqql", (0, 0)), + ("dd", (0, 0)), + ("complexes", (0, 0)), + ("ubr", (0, 0)), + ("xrarr", (0, 0)), + ("phmmat;", (8499, 0)), + ("UpArrowBar", (0, 0)), + ("subsetneqq", (0, 0)), + ("nparsl", (0, 0)), + ("raquo;", (187, 0)), + ("Uarr;", (8607, 0)), + ("homth", (0, 0)), + ("uuarr", (0, 0)), + ("Supset", (0, 0)), + ("triangleq;", (8796, 0)), + ("tscr", (0, 0)), + ("DownBr", (0, 0)), + ("LessGre", (0, 0)), + ("NotDo", (0, 0)), + ("OpenCurlyDoubleQuo", (0, 0)), + ("Fcy", (0, 0)), + ("eparsl", (0, 0)), + ("Escr;", (8496, 0)), + ("bottom;", (8869, 0)), + ("Fsc", (0, 0)), + ("curlyw", (0, 0)), + ("ShortU", (0, 0)), + ("NestedL", (0, 0)), + ("hookrigh", (0, 0)), + ("sdot;", (8901, 0)), + ("gtrdo", (0, 0)), + ("DoubleLeftTe", (0, 0)), + ("iacute;", (237, 0)), + ("leftright", (0, 0)), + ("NotPrecedesSlan", (0, 0)), + ("Omega", (0, 0)), + ("ovba", (0, 0)), + ("sstar", (0, 0)), + ("ohm;", (937, 0)), + ("Lambda", (0, 0)), + ("nleq", (0, 0)), + ("ges", (0, 0)), + ("LeftAngleBrack", (0, 0)), + ("gsim", (0, 0)), + ("NotTilde", (0, 0)), + ("nvDash;", (8877, 0)), + ("CounterClockwiseC", (0, 0)), + ("lne;", (10887, 0)), + ("NotCongruen", (0, 0)), + ("twoheadrightarro", (0, 0)), + ("re", (0, 0)), + ("curv", (0, 0)), + ("reals", (0, 0)), + ("epsi;", (949, 0)), + ("Dopf", (0, 0)), + ("mu", (0, 0)), + ("NotSquareSubse", (0, 0)), + ("boxmin", (0, 0)), + ("succeq;", (10928, 0)), + ("rcaron", (0, 0)), + ("longright", (0, 0)), + ("tdot;", (8411, 0)), + ("be", (0, 0)), + ("cupcup;", (10826, 0)), + ("pitch", (0, 0)), + ("jse", (0, 0)), + ("backep", (0, 0)), + ("yacu", (0, 0)), + ("gjcy", (0, 0)), + ("sqsubset;", (8847, 0)), + ("risingdot", (0, 0)), + ("NestedGrea", (0, 0)), + ("mnpl", (0, 0)), + ("LeftUpTeeVe", (0, 0)), + ("ands", (0, 0)), + ("topci", (0, 0)), + ("nrarrc", (0, 0)), + ("propto;", (8733, 0)), + ("curlyeqprec", (0, 0)), + ("ll;", (8810, 0)), + ("xodot", (0, 0)), + ("maltese;", (10016, 0)), + ("diamond;", (8900, 0)), + ("nRightar", (0, 0)), + ("C", (0, 0)), + ("xm", (0, 0)), + ("uuml", (252, 0)), + ("risi", (0, 0)), + ("Da", (0, 0)), + ("gnapp", (0, 0)), + ("npar", (0, 0)), + ("NotElement;", (8713, 0)), + ("IEcy;", (1045, 0)), + ("curvearr", (0, 0)), + ("FilledVeryS", (0, 0)), + ("hard", (0, 0)), + ("diam", (0, 0)), + ("Yum", (0, 0)), + ("Tcaron;", (356, 0)), + ("Igrav", (0, 0)), + ("nexis", (0, 0)), + ("NegativeMediu", (0, 0)), + ("otimes", (0, 0)), + ("wop", (0, 0)), + ("trianglel", (0, 0)), + ("bscr;", (119991, 0)), + ("oline;", (8254, 0)), + ("Coprodu", (0, 0)), + ("plusaci", (0, 0)), + ("lrar", (0, 0)), + ("Center", (0, 0)), + ("fno", (0, 0)), + ("nsh", (0, 0)), + ("Ouml;", (214, 0)), + ("nced", (0, 0)), + ("NotSuper", (0, 0)), + ("cd", (0, 0)), + ("longrightarr", (0, 0)), + ("supdsu", (0, 0)), + ("nvlt;", (60, 8402)), + ("Eacu", (0, 0)), + ("expect", (0, 0)), + ("Am", (0, 0)), + ("InvisibleTim", (0, 0)), + ("midcir", (0, 0)), + ("setminu", (0, 0)), + ("larrpl", (0, 0)), + ("larrpl;", (10553, 0)), + ("roang", (0, 0)), + ("App", (0, 0)), + ("NotGreaterTil", (0, 0)), + ("rbrks", (0, 0)), + ("VeryThinSpa", (0, 0)), + ("lthre", (0, 0)), + ("rla", (0, 0)), + ("lsaqu", (0, 0)), + ("NotGreaterSl", (0, 0)), + ("angmsdaa;", (10664, 0)), + ("NotSquar", (0, 0)), + ("LeftAr", (0, 0)), + ("us", (0, 0)), + ("ecar", (0, 0)), + ("Diffe", (0, 0)), + ("gneq;", (10888, 0)), + ("esd", (0, 0)), + ("DoubleUpDow", (0, 0)), + ("varphi;", (981, 0)), + ("ntgl", (0, 0)), + ("Imac", (0, 0)), + ("til", (0, 0)), + ("frasl;", (8260, 0)), + ("caps;", (8745, 65024)), + ("Uacu", (0, 0)), + ("models;", (8871, 0)), + ("RoundIm", (0, 0)), + ("Otil", (0, 0)), + ("Barv;", (10983, 0)), + ("lBarr;", (10510, 0)), + ("Rightar", (0, 0)), + ("clubsuit;", (9827, 0)), + ("minusd;", (8760, 0)), + ("rmousta", (0, 0)), + ("bsime;", (8909, 0)), + ("TildeTilde;", (8776, 0)), + ("acut", (0, 0)), + ("NotGreaterEqual;", (8817, 0)), + ("gcir", (0, 0)), + ("subedot;", (10947, 0)), + ("Epsi", (0, 0)), + ("rightarrowtail;", (8611, 0)), + ("quatin", (0, 0)), + ("boxDl", (0, 0)), + ("hookri", (0, 0)), + ("circledci", (0, 0)), + ("HumpDownHum", (0, 0)), + ("nvle;", (8804, 8402)), + ("longleftrighta", (0, 0)), + ("measuredangl", (0, 0)), + ("dA", (0, 0)), + ("circledS", (0, 0)), + ("iecy;", (1077, 0)), + ("qint", (0, 0)), + ("SmallCi", (0, 0)), + ("rcy;", (1088, 0)), + ("period", (0, 0)), + ("Ug", (0, 0)), + ("measur", (0, 0)), + ("umacr;", (363, 0)), + ("is", (0, 0)), + ("backsi", (0, 0)), + ("SmallC", (0, 0)), + ("auml", (228, 0)), + ("bigoplus;", (10753, 0)), + ("drcorn", (0, 0)), + ("ShortUpArrow;", (8593, 0)), + ("rppolin", (0, 0)), + ("Counte", (0, 0)), + ("DownRightTe", (0, 0)), + ("eplu", (0, 0)), + ("boxVh", (0, 0)), + ("vBar", (0, 0)), + ("perp;", (8869, 0)), + ("Lcedil", (0, 0)), + ("downharpoonri", (0, 0)), + ("rdqu", (0, 0)), + ("ContourInteg", (0, 0)), + ("ecirc", (234, 0)), + ("dotsqu", (0, 0)), + ("mstpos", (0, 0)), + ("CloseCurlyDouble", (0, 0)), + ("Delta", (0, 0)), + ("llc", (0, 0)), + ("NotSquareSubsetEqual", (0, 0)), + ("Umacr", (0, 0)), + ("LeftDownVectorB", (0, 0)), + ("Ncedil", (0, 0)), + ("trimi", (0, 0)), + ("andsl", (0, 0)), + ("rAarr;", (8667, 0)), + ("seA", (0, 0)), + ("Small", (0, 0)), + ("Vcy", (0, 0)), + ("coloneq;", (8788, 0)), + ("Verbar", (0, 0)), + ("rdca", (0, 0)), + ("SmallCircle", (0, 0)), + ("ye", (0, 0)), + ("bl", (0, 0)), + ("pho", (0, 0)), + ("amacr;", (257, 0)), + ("MinusPlus", (0, 0)), + ("lbrace", (0, 0)), + ("Sub;", (8912, 0)), + ("nlArr", (0, 0)), + ("zigr", (0, 0)), + ("Lap", (0, 0)), + ("Poinc", (0, 0)), + ("longr", (0, 0)), + ("DiacriticalDou", (0, 0)), + ("Bf", (0, 0)), + ("ltrif;", (9666, 0)), + ("varthet", (0, 0)), + ("thin", (0, 0)), + ("NotLeftTriangleBar", (0, 0)), + ("ogr", (0, 0)), + ("LessGr", (0, 0)), + ("complex", (0, 0)), + ("VerticalTilde;", (8768, 0)), + ("half;", (189, 0)), + ("NotSubsetEqual", (0, 0)), + ("frac58;", (8541, 0)), + ("napid;", (8779, 824)), + ("Gb", (0, 0)), + ("rbrksld;", (10638, 0)), + ("nL", (0, 0)), + ("rrarr", (0, 0)), + ("vBa", (0, 0)), + ("NotGreaterFu", (0, 0)), + ("DownLeftRightVect", (0, 0)), + ("circl", (0, 0)), + ("xsqc", (0, 0)), + ("harrw;", (8621, 0)), + ("PrecedesSlantEqu", (0, 0)), + ("ar", (0, 0)), + ("TildeFu", (0, 0)), + ("triangleleft;", (9667, 0)), + ("Superse", (0, 0)), + ("ltri", (0, 0)), + ("Ugrav", (0, 0)), + ("mopf;", (120158, 0)), + ("fallingdo", (0, 0)), + ("Gcir", (0, 0)), + ("zscr", (0, 0)), + ("iopf;", (120154, 0)), + ("ltrPar", (0, 0)), + ("bigtriangleup;", (9651, 0)), + ("setminus", (0, 0)), + ("yum", (0, 0)), + ("ration", (0, 0)), + ("rhar", (0, 0)), + ("Partial", (0, 0)), + ("updowna", (0, 0)), + ("UnderBracket;", (9141, 0)), + ("topb", (0, 0)), + ("Iukcy;", (1030, 0)), + ("asympe", (0, 0)), + ("notin;", (8713, 0)), + ("scsi", (0, 0)), + ("UnderParenthesis", (0, 0)), + ("cudarrr;", (10549, 0)), + ("bo", (0, 0)), + ("tc", (0, 0)), + ("urcr", (0, 0)), + ("gfr", (0, 0)), + ("NotNestedLess", (0, 0)), + ("xrA", (0, 0)), + ("wr", (0, 0)), + ("nequiv;", (8802, 0)), + ("NonBreakingSpac", (0, 0)), + ("bempty", (0, 0)), + ("ogo", (0, 0)), + ("Assig", (0, 0)), + ("Sce", (0, 0)), + ("plustw", (0, 0)), + ("lrco", (0, 0)), + ("NotLeftTr", (0, 0)), + ("tfr;", (120113, 0)), + ("subsup", (0, 0)), + ("kop", (0, 0)), + ("phon", (0, 0)), + ("doublebar", (0, 0)), + ("oror;", (10838, 0)), + ("veeba", (0, 0)), + ("Itilde", (0, 0)), + ("xlAr", (0, 0)), + ("kced", (0, 0)), + ("ShortDown", (0, 0)), + ("rd", (0, 0)), + ("NoBreak", (0, 0)), + ("NotTildeEqu", (0, 0)), + ("caron", (0, 0)), + ("expectatio", (0, 0)), + ("UnderParenthes", (0, 0)), + ("Backslas", (0, 0)), + ("Ccon", (0, 0)), + ("varepsilon", (0, 0)), + ("YUcy;", (1070, 0)), + ("urcor", (0, 0)), + ("MinusPl", (0, 0)), + ("CircleTime", (0, 0)), + ("SquareSub", (0, 0)), + ("Ucy;", (1059, 0)), + ("hopf", (0, 0)), + ("NotDouble", (0, 0)), + ("Dagger;", (8225, 0)), + ("leqq", (0, 0)), + ("Fo", (0, 0)), + ("srarr;", (8594, 0)), + ("NegativeVe", (0, 0)), + ("operp", (0, 0)), + ("RightTriangleE", (0, 0)), + ("ccaro", (0, 0)), + ("NotVerticalBa", (0, 0)), + ("profs", (0, 0)), + ("PrecedesSlantE", (0, 0)), + ("UnderParenthe", (0, 0)), + ("tstr", (0, 0)), + ("NotRightTriangleBa", (0, 0)), + ("ccupssm;", (10832, 0)), + ("vartriangleleft;", (8882, 0)), + ("eqslant", (0, 0)), + ("flat", (0, 0)), + ("eqslantless", (0, 0)), + ("nvrtrie", (0, 0)), + ("mea", (0, 0)), + ("DoubleCo", (0, 0)), + ("twoheadleftar", (0, 0)), + ("uw", (0, 0)), + ("RightDoubleBracke", (0, 0)), + ("ShortUpArrow", (0, 0)), + ("rbrack", (0, 0)), + ("lrm", (0, 0)), + ("LeftTeeV", (0, 0)), + ("GreaterGreat", (0, 0)), + ("nvi", (0, 0)), + ("RightUpVecto", (0, 0)), + ("ntrianglerighte", (0, 0)), + ("Osla", (0, 0)), + ("Rang;", (10219, 0)), + ("thicksi", (0, 0)), + ("Squ", (0, 0)), + ("nwnea", (0, 0)), + ("Sqrt;", (8730, 0)), + ("nvDash", (0, 0)), + ("Differen", (0, 0)), + ("harrci", (0, 0)), + ("oa", (0, 0)), + ("aacute;", (225, 0)), + ("rdl", (0, 0)), + ("qfr;", (120110, 0)), + ("tint;", (8749, 0)), + ("NotRightTriangleB", (0, 0)), + ("bN", (0, 0)), + ("napos;", (329, 0)), + ("lfr", (0, 0)), + ("Zcy;", (1047, 0)), + ("smallsetminus", (0, 0)), + ("supm", (0, 0)), + ("plusm", (0, 0)), + ("downharp", (0, 0)), + ("LeftDownVect", (0, 0)), + ("nap;", (8777, 0)), + ("Diacritical", (0, 0)), + ("leftrightharpoon", (0, 0)), + ("Coproduct", (0, 0)), + ("duha", (0, 0)), + ("Hump", (0, 0)), + ("isinsv;", (8947, 0)), + ("hardcy;", (1098, 0)), + ("oacut", (0, 0)), + ("blackloze", (0, 0)), + ("xwe", (0, 0)), + ("sup1;", (185, 0)), + ("DiacriticalAc", (0, 0)), + ("left", (0, 0)), + ("Oa", (0, 0)), + ("udha", (0, 0)), + ("nge", (0, 0)), + ("Coproduc", (0, 0)), + ("hyphen;", (8208, 0)), + ("RightTriangleBa", (0, 0)), + ("intlar", (0, 0)), + ("Zdot;", (379, 0)), + ("DiacriticalDoubleAcut", (0, 0)), + ("ShortR", (0, 0)), + ("bkarow", (0, 0)), + ("th", (0, 0)), + ("lar", (0, 0)), + ("cud", (0, 0)), + ("ne;", (8800, 0)), + ("RightAn", (0, 0)), + ("vD", (0, 0)), + ("downharpoonleft", (0, 0)), + ("pitchfo", (0, 0)), + ("lozenge", (0, 0)), + ("mn", (0, 0)), + ("Z", (0, 0)), + ("expectat", (0, 0)), + ("Horizon", (0, 0)), + ("Tcedil;", (354, 0)), + ("trid", (0, 0)), + ("NotLessLe", (0, 0)), + ("prim", (0, 0)), + ("ReverseEqu", (0, 0)), + ("Utilde;", (360, 0)), + ("omacr", (0, 0)), + ("mapstodow", (0, 0)), + ("cemptyv", (0, 0)), + ("UpArrow", (0, 0)), + ("qf", (0, 0)), + ("J", (0, 0)), + ("diamon", (0, 0)), + ("HorizontalLi", (0, 0)), + ("Sqrt", (0, 0)), + ("kap", (0, 0)), + ("CloseCurlyQ", (0, 0)), + ("EqualTil", (0, 0)), + ("fallingdotse", (0, 0)), + ("gE", (0, 0)), + ("sqsubset", (0, 0)), + ("FilledVerySmallSqua", (0, 0)), + ("UpperRightA", (0, 0)), + ("NotVerti", (0, 0)), + ("ntlg", (0, 0)), + ("pm", (0, 0)), + ("DiacriticalDouble", (0, 0)), + ("NotTildeFu", (0, 0)), + ("xharr;", (10231, 0)), + ("leqslant", (0, 0)), + ("DZ", (0, 0)), + ("twoheadleftarrow;", (8606, 0)), + ("Ic", (0, 0)), + ("DownR", (0, 0)), + ("realpar", (0, 0)), + ("Neste", (0, 0)), + ("nvltrie;", (8884, 8402)), + ("lcedil;", (316, 0)), + ("lur", (0, 0)), + ("NotSucceedsEqua", (0, 0)), + ("gtrle", (0, 0)), + ("qu", (0, 0)), + ("RightTriangleEqu", (0, 0)), + ("ReverseEqui", (0, 0)), + ("Gcedi", (0, 0)), + ("chi;", (967, 0)), + ("thorn", (254, 0)), + ("iinfi", (0, 0)), + ("midc", (0, 0)), + ("HilbertSpace", (0, 0)), + ("lnappro", (0, 0)), + ("cy", (0, 0)), + ("marke", (0, 0)), + ("lrtri;", (8895, 0)), + ("smashp", (0, 0)), + ("RightUpVectorBar", (0, 0)), + ("ngt", (0, 0)), + ("jcirc", (0, 0)), + ("Epsilo", (0, 0)), + ("GreaterTi", (0, 0)), + ("oacute;", (243, 0)), + ("tritime", (0, 0)), + ("iogo", (0, 0)), + ("looparrowr", (0, 0)), + ("Lac", (0, 0)), + ("vsupnE", (0, 0)), + ("cura", (0, 0)), + ("circ;", (710, 0)), + ("dzcy", (0, 0)), + ("napprox;", (8777, 0)), + ("ncongdot;", (10861, 824)), + ("DoubleLeftRightAr", (0, 0)), + ("Vertic", (0, 0)), + ("npart", (0, 0)), + ("triminus", (0, 0)), + ("egsdot;", (10904, 0)), + ("hfr", (0, 0)), + ("longleftri", (0, 0)), + ("rsquor", (0, 0)), + ("DownLeftTeeVec", (0, 0)), + ("zdot", (0, 0)), + ("SHCHcy", (0, 0)), + ("Intersec", (0, 0)), + ("An", (0, 0)), + ("ccirc;", (265, 0)), + ("swarro", (0, 0)), + ("quest", (0, 0)), + ("frac35", (0, 0)), + ("PrecedesSlantEqual", (0, 0)), + ("sbquo;", (8218, 0)), + ("imacr;", (299, 0)), + ("twoheadleftarr", (0, 0)), + ("leftthreetimes", (0, 0)), + ("sigma;", (963, 0)), + ("boxh", (0, 0)), + ("SquareSuperset;", (8848, 0)), + ("eqsl", (0, 0)), + ("circeq", (0, 0)), + ("lesseqgt", (0, 0)), + ("ufis", (0, 0)), + ("nsubseteqq", (0, 0)), + ("veebar", (0, 0)), + ("bigotimes;", (10754, 0)), + ("brvb", (0, 0)), + ("LeftTeeArrow;", (8612, 0)), + ("barw", (0, 0)), + ("rAtail", (0, 0)), + ("DownBrev", (0, 0)), + ("fo", (0, 0)), + ("Exists;", (8707, 0)), + ("equals;", (61, 0)), + ("upha", (0, 0)), + ("Proport", (0, 0)), + ("vel", (0, 0)), + ("subp", (0, 0)), + ("Gf", (0, 0)), + ("hoarr", (0, 0)), + ("thksim", (0, 0)), + ("atil", (0, 0)), + ("nleqslant", (0, 0)), + ("mscr;", (120002, 0)), + ("lsime;", (10893, 0)), + ("Hstr", (0, 0)), + ("yfr;", (120118, 0)), + ("UpArrowBa", (0, 0)), + ("filig", (0, 0)), + ("DoubleLeftRight", (0, 0)), + ("gci", (0, 0)), + ("dbkarow", (0, 0)), + ("lEg", (0, 0)), + ("bprime", (0, 0)), + ("nearrow", (0, 0)), + ("HumpEq", (0, 0)), + ("forkv;", (10969, 0)), + ("Igra", (0, 0)), + ("Bet", (0, 0)), + ("RightArrowLeft", (0, 0)), + ("RightDownTeeVector;", (10589, 0)), + ("CO", (0, 0)), + ("rarrtl", (0, 0)), + ("CapitalDi", (0, 0)), + ("TripleD", (0, 0)), + ("xcup;", (8899, 0)), + ("sci", (0, 0)), + ("Short", (0, 0)), + ("bdquo", (0, 0)), + ("zcar", (0, 0)), + ("RightCeiling;", (8969, 0)), + ("lcei", (0, 0)), + ("ijl", (0, 0)), + ("dlcorn;", (8990, 0)), + ("circlea", (0, 0)), + ("risingd", (0, 0)), + ("Cd", (0, 0)), + ("Rsc", (0, 0)), + ("NotPrecedesSlantEqu", (0, 0)), + ("thi", (0, 0)), + ("efD", (0, 0)), + ("LessEqualGr", (0, 0)), + ("Dstrok;", (272, 0)), + ("Iogo", (0, 0)), + ("Hacek", (0, 0)), + ("blacktri", (0, 0)), + ("Integral;", (8747, 0)), + ("lessgtr;", (8822, 0)), + ("notinE;", (8953, 824)), + ("xci", (0, 0)), + ("LeftT", (0, 0)), + ("esdo", (0, 0)), + ("GreaterSlant", (0, 0)), + ("NotGreaterTild", (0, 0)), + ("DoubleLeftRightArrow", (0, 0)), + ("nLeftarrow", (0, 0)), + ("supsub", (0, 0)), + ("Uti", (0, 0)), + ("Longleftarr", (0, 0)), + ("hear", (0, 0)), + ("bigw", (0, 0)), + ("Sm", (0, 0)), + ("Hscr", (0, 0)), + ("iexc", (0, 0)), + ("Tfr;", (120087, 0)), + ("rac", (0, 0)), + ("supsi", (0, 0)), + ("cirfnint;", (10768, 0)), + ("lefta", (0, 0)), + ("lla", (0, 0)), + ("qopf;", (120162, 0)), + ("les;", (10877, 0)), + ("EmptyVerySmallSqua", (0, 0)), + ("NotDoubleVerticalBar;", (8742, 0)), + ("barvee", (0, 0)), + ("ccups;", (10828, 0)), + ("PartialD", (0, 0)), + ("telrec", (0, 0)), + ("boxVh;", (9579, 0)), + ("VeryTh", (0, 0)), + ("NotVertical", (0, 0)), + ("ShortDownAr", (0, 0)), + ("supsub;", (10964, 0)), + ("blacklozeng", (0, 0)), + ("nRightarrow", (0, 0)), + ("Osc", (0, 0)), + ("rbbrk", (0, 0)), + ("iii", (0, 0)), + ("Uscr;", (119984, 0)), + ("RightVector;", (8640, 0)), + ("geqs", (0, 0)), + ("Agra", (0, 0)), + ("FilledSm", (0, 0)), + ("rArr", (0, 0)), + ("Equal;", (10869, 0)), + ("NotSupersetEq", (0, 0)), + ("capcap", (0, 0)), + ("ntild", (0, 0)), + ("rtim", (0, 0)), + ("nvda", (0, 0)), + ("NestedLess", (0, 0)), + ("lnsim;", (8934, 0)), + ("ulcro", (0, 0)), + ("oscr;", (8500, 0)), + ("tcaron", (0, 0)), + ("CloseCurlyDoubl", (0, 0)), + ("sqcu", (0, 0)), + ("olcir;", (10686, 0)), + ("And", (0, 0)), + ("or;", (8744, 0)), + ("Scir", (0, 0)), + ("Leftrightarr", (0, 0)), + ("NotLessSlantEqu", (0, 0)), + ("Ecy;", (1069, 0)), + ("rti", (0, 0)), + ("gt", (62, 0)), + ("boxHu;", (9575, 0)), + ("napp", (0, 0)), + ("ocy", (0, 0)), + ("DDot", (0, 0)), + ("ques", (0, 0)), + ("ltdot", (0, 0)), + ("EqualTild", (0, 0)), + ("nleftrightarrow", (0, 0)), + ("twohead", (0, 0)), + ("Scirc;", (348, 0)), + ("fpar", (0, 0)), + ("UpArrowDownArrow;", (8645, 0)), + ("Aog", (0, 0)), + ("point", (0, 0)), + ("leftar", (0, 0)), + ("lbbrk", (0, 0)), + ("DoubleRightArr", (0, 0)), + ("CounterClockwiseContour", (0, 0)), + ("ldrdh", (0, 0)), + ("NotEqualTil", (0, 0)), + ("Sf", (0, 0)), + ("uci", (0, 0)), + ("rsc", (0, 0)), + ("Popf", (0, 0)), + ("NotSubsetEqual;", (8840, 0)), + ("swnwa", (0, 0)), + ("fop", (0, 0)), + ("ThickSpa", (0, 0)), + ("luruhar;", (10598, 0)), + ("nsim", (0, 0)), + ("po", (0, 0)), + ("Bumpeq;", (8782, 0)), + ("vare", (0, 0)), + ("gtre", (0, 0)), + ("downhar", (0, 0)), + ("Oopf", (0, 0)), + ("blacktriangled", (0, 0)), + ("UpTeeArrow", (0, 0)), + ("cuwe", (0, 0)), + ("oror", (0, 0)), + ("Exponentia", (0, 0)), + ("zacute", (0, 0)), + ("RightDo", (0, 0)), + ("gtreqless", (0, 0)), + ("Dif", (0, 0)), + ("Qo", (0, 0)), + ("vc", (0, 0)), + ("trp", (0, 0)), + ("nsqsube;", (8930, 0)), + ("downdownarrows;", (8650, 0)), + ("rt", (0, 0)), + ("CircleMin", (0, 0)), + ("Invi", (0, 0)), + ("so", (0, 0)), + ("rightl", (0, 0)), + ("boxHD", (0, 0)), + ("Upsilon;", (933, 0)), + ("omega", (0, 0)), + ("beth", (0, 0)), + ("mcomma;", (10793, 0)), + ("lac", (0, 0)), + ("rArr;", (8658, 0)), + ("alph", (0, 0)), + ("cupdot", (0, 0)), + ("bloc", (0, 0)), + ("mc", (0, 0)), + ("Lsc", (0, 0)), + ("ce", (0, 0)), + ("LessEqualGreate", (0, 0)), + ("imagpa", (0, 0)), + ("dotminus", (0, 0)), + ("tria", (0, 0)), + ("LeftCeiling;", (8968, 0)), + ("ccu", (0, 0)), + ("shortmid;", (8739, 0)), + ("mark", (0, 0)), + ("trianglelefte", (0, 0)), + ("qs", (0, 0)), + ("trianglelef", (0, 0)), + ("mal", (0, 0)), + ("Righta", (0, 0)), + ("checkmark;", (10003, 0)), + ("xsc", (0, 0)), + ("ksc", (0, 0)), + ("leftharp", (0, 0)), + ("ReverseEleme", (0, 0)), + ("fil", (0, 0)), + ("incare", (0, 0)), + ("angst;", (197, 0)), + ("NotGreaterGreate", (0, 0)), + ("varph", (0, 0)), + ("GreaterFullEq", (0, 0)), + ("NotSubsetE", (0, 0)), + ("tild", (0, 0)), + ("ClockwiseContourInte", (0, 0)), + ("LowerRigh", (0, 0)), + ("Greater", (0, 0)), + ("dfr", (0, 0)), + ("subE;", (10949, 0)), + ("rx", (0, 0)), + ("RightDoubleB", (0, 0)), + ("Alpha", (0, 0)), + ("blk12;", (9618, 0)), + ("DotEqual;", (8784, 0)), + ("LeftUp", (0, 0)), + ("NotPrecedesEqua", (0, 0)), + ("Nu", (0, 0)), + ("UnderPa", (0, 0)), + ("vzigza", (0, 0)), + ("nexists;", (8708, 0)), + ("leftarr", (0, 0)), + ("lesg", (0, 0)), + ("DoubleD", (0, 0)), + ("beta", (0, 0)), + ("LeftDownVectorBar;", (10585, 0)), + ("va", (0, 0)), + ("Longrightar", (0, 0)), + ("cuve", (0, 0)), + ("bot", (0, 0)), + ("bottom", (0, 0)), + ("Fou", (0, 0)), + ("blacksquare", (0, 0)), + ("SucceedsT", (0, 0)), + ("Nced", (0, 0)), + ("uscr;", (120010, 0)), + ("ddarr;", (8650, 0)), + ("gtreqless;", (8923, 0)), + ("congdot;", (10861, 0)), + ("deg;", (176, 0)), + ("ffil", (0, 0)), + ("gcy;", (1075, 0)), + ("xl", (0, 0)), + ("lan", (0, 0)), + ("le", (0, 0)), + ("NotTildeEq", (0, 0)), + ("ium", (0, 0)), + ("utrif;", (9652, 0)), + ("gj", (0, 0)), + ("CenterD", (0, 0)), + ("precneqq;", (10933, 0)), + ("Imagin", (0, 0)), + ("mult", (0, 0)), + ("rightth", (0, 0)), + ("NotPrecedes", (0, 0)), + ("boxur", (0, 0)), + ("Uparrow", (0, 0)), + ("pfr", (0, 0)), + ("ubrc", (0, 0)), + ("ang", (0, 0)), + ("NotEqua", (0, 0)), + ("UpDownArr", (0, 0)), + ("TildeFullEq", (0, 0)), + ("Hcirc", (0, 0)), + ("CloseCurlyDoubleQuote;", (8221, 0)), + ("Poincar", (0, 0)), + ("smallse", (0, 0)), + ("simp", (0, 0)), + ("leqsla", (0, 0)), + ("Rrig", (0, 0)), + ("uo", (0, 0)), + ("east", (0, 0)), + ("IOcy;", (1025, 0)), + ("LeftTeeAr", (0, 0)), + ("rarrhk", (0, 0)), + ("UpperLef", (0, 0)), + ("mum", (0, 0)), + ("gtque", (0, 0)), + ("DownLeftTeeVecto", (0, 0)), + ("Supset;", (8913, 0)), + ("NotHumpEqua", (0, 0)), + ("rightrighta", (0, 0)), + ("abreve", (0, 0)), + ("Lapla", (0, 0)), + ("bigsta", (0, 0)), + ("ell", (0, 0)), + ("RightCeilin", (0, 0)), + ("Longleftrightarr", (0, 0)), + ("rightsquigarr", (0, 0)), + ("iquest", (191, 0)), + ("UpT", (0, 0)), + ("supsup", (0, 0)), + ("ZeroW", (0, 0)), + ("shcy", (0, 0)), + ("mda", (0, 0)), + ("SucceedsSlantEqua", (0, 0)), + ("ncy;", (1085, 0)), + ("scs", (0, 0)), + ("SquareInters", (0, 0)), + ("rharul", (0, 0)), + ("Verti", (0, 0)), + ("updown", (0, 0)), + ("lstrok;", (322, 0)), + ("vartheta", (0, 0)), + ("nls", (0, 0)), + ("setmn", (0, 0)), + ("supE", (0, 0)), + ("bigop", (0, 0)), + ("DoubleLongLeftRightArrow;", (10234, 0)), + ("Vdash", (0, 0)), + ("dtrif", (0, 0)), + ("lozf;", (10731, 0)), + ("odash;", (8861, 0)), + ("larrtl;", (8610, 0)), + ("ClockwiseCont", (0, 0)), + ("Assi", (0, 0)), + ("udbl", (0, 0)), + ("Imagina", (0, 0)), + ("nleftrig", (0, 0)), + ("acE;", (8766, 819)), + ("gneqq;", (8809, 0)), + ("and;", (8743, 0)), + ("downharpoonright;", (8642, 0)), + ("diamondsuit", (0, 0)), + ("bigoplus", (0, 0)), + ("oint;", (8750, 0)), + ("cirfn", (0, 0)), + ("nleftrightarro", (0, 0)), + ("vellip;", (8942, 0)), + ("LessFullEq", (0, 0)), + ("blacktriangler", (0, 0)), + ("DiacriticalA", (0, 0)), + ("VDa", (0, 0)), + ("leftharpoonup;", (8636, 0)), + ("Na", (0, 0)), + ("VerticalLin", (0, 0)), + ("iscr;", (119998, 0)), + ("ndas", (0, 0)), + ("lnsi", (0, 0)), + ("langl", (0, 0)), + ("sext;", (10038, 0)), + ("DownRightVectorBar;", (10583, 0)), + ("ldrd", (0, 0)), + ("Zcaro", (0, 0)), + ("Cedilla;", (184, 0)), + ("NotGreaterE", (0, 0)), + ("Zacute", (0, 0)), + ("telr", (0, 0)), + ("xhAr", (0, 0)), + ("NotTildeFul", (0, 0)), + ("ContourI", (0, 0)), + ("varkappa", (0, 0)), + ("uArr;", (8657, 0)), + ("OpenCurlyDoubleQ", (0, 0)), + ("triangledown;", (9663, 0)), + ("ucy;", (1091, 0)), + ("scy;", (1089, 0)), + ("NotLessLess", (0, 0)), + ("tst", (0, 0)), + ("eDo", (0, 0)), + ("Ov", (0, 0)), + ("twixt", (0, 0)), + ("Poincareplane", (0, 0)), + ("frac7", (0, 0)), + ("xutri", (0, 0)), + ("boxh;", (9472, 0)), + ("lessapprox", (0, 0)), + ("eqslantgtr;", (10902, 0)), + ("ovb", (0, 0)), + ("intp", (0, 0)), + ("fc", (0, 0)), + ("topfork;", (10970, 0)), + ("nLeftrightarrow", (0, 0)), + ("hfr;", (120101, 0)), + ("lfloo", (0, 0)), + ("nsq", (0, 0)), + ("arin", (0, 0)), + ("plusc", (0, 0)), + ("nvH", (0, 0)), + ("preca", (0, 0)), + ("wedge", (0, 0)), + ("LeftDownTeeVector", (0, 0)), + ("GreaterGreate", (0, 0)), + ("quaternions", (0, 0)), + ("multim", (0, 0)), + ("lesse", (0, 0)), + ("r", (0, 0)), + ("thicka", (0, 0)), + ("LongLeftR", (0, 0)), + ("NotH", (0, 0)), + ("qscr", (0, 0)), + ("NotNestedL", (0, 0)), + ("Vv", (0, 0)), + ("dwangle", (0, 0)), + ("supmu", (0, 0)), + ("NotNestedLes", (0, 0)), + ("Ubrcy", (0, 0)), + ("percn", (0, 0)), + ("Uopf;", (120140, 0)), + ("cuwed", (0, 0)), + ("submult;", (10945, 0)), + ("nleftrightarr", (0, 0)), + ("vsubnE;", (10955, 65024)), + ("nlt", (0, 0)), + ("NegativeThinSpace;", (8203, 0)), + ("hk", (0, 0)), + ("DoubleDownA", (0, 0)), + ("Gd", (0, 0)), + ("blac", (0, 0)), + ("ng", (0, 0)), + ("LeftRightVecto", (0, 0)), + ("gamma;", (947, 0)), + ("bern", (0, 0)), + ("zcaron", (0, 0)), + ("gtrsi", (0, 0)), + ("Differ", (0, 0)), + ("swnw", (0, 0)), + ("divideon", (0, 0)), + ("SucceedsSlantEq", (0, 0)), + ("leftarrowt", (0, 0)), + ("Ver", (0, 0)), + ("Vee;", (8897, 0)), + ("Edot", (0, 0)), + ("ioc", (0, 0)), + ("nvgt", (0, 0)), + ("small", (0, 0)), + ("Melli", (0, 0)), + ("timesbar", (0, 0)), + ("curvearro", (0, 0)), + ("OpenCurlyQuote", (0, 0)), + ("jscr;", (119999, 0)), + ("equivDD;", (10872, 0)), + ("sbqu", (0, 0)), + ("longleftrightar", (0, 0)), + ("vark", (0, 0)), + ("vnsu", (0, 0)), + ("tprim", (0, 0)), + ("LessTi", (0, 0)), + ("Vfr", (0, 0)), + ("lrcorner;", (8991, 0)), + ("Scedil", (0, 0)), + ("hookrightar", (0, 0)), + ("circledcirc;", (8858, 0)), + ("hstrok", (0, 0)), + ("gtcc", (0, 0)), + ("blacksqu", (0, 0)), + ("FilledSmallSqu", (0, 0)), + ("pertenk", (0, 0)), + ("nsmi", (0, 0)), + ("omega;", (969, 0)), + ("Product;", (8719, 0)), + ("Omac", (0, 0)), + ("LeftDownTe", (0, 0)), + ("EqualTi", (0, 0)), + ("ohm", (0, 0)), + ("midast", (0, 0)), + ("curlywedge;", (8911, 0)), + ("complement;", (8705, 0)), + ("rtimes", (0, 0)), + ("Lcy", (0, 0)), + ("nldr", (0, 0)), + ("bigtriangledown;", (9661, 0)), + ("RightTriangleEqual", (0, 0)), + ("nedo", (0, 0)), + ("otimesas", (0, 0)), + ("Gfr;", (120074, 0)), + ("db", (0, 0)), + ("Odb", (0, 0)), + ("Copro", (0, 0)), + ("Cfr", (0, 0)), + ("leftrightsqui", (0, 0)), + ("ys", (0, 0)), + ("betw", (0, 0)), + ("DiacriticalGrave;", (96, 0)), + ("LeftRightVect", (0, 0)), + ("St", (0, 0)), + ("TildeFullEqu", (0, 0)), + ("rightharpoonup", (0, 0)), + ("Ifr", (0, 0)), + ("zhcy", (0, 0)), + ("rangle", (0, 0)), + ("Zsc", (0, 0)), + ("pluse;", (10866, 0)), + ("Subs", (0, 0)), + ("LeftUpDownVecto", (0, 0)), + ("CircleDot", (0, 0)), + ("Yc", (0, 0)), + ("backepsilon", (0, 0)), + ("vz", (0, 0)), + ("ReverseEquilib", (0, 0)), + ("CapitalDiff", (0, 0)), + ("varrho;", (1009, 0)), + ("lurdsha", (0, 0)), + ("gnap;", (10890, 0)), + ("if", (0, 0)), + ("rarrlp", (0, 0)), + ("gac", (0, 0)), + ("xodo", (0, 0)), + ("righth", (0, 0)), + ("NotSquareSupersetEqual;", (8931, 0)), + ("RightDownTeeVecto", (0, 0)), + ("Ove", (0, 0)), + ("dHar", (0, 0)), + ("New", (0, 0)), + ("Open", (0, 0)), + ("precnsim;", (8936, 0)), + ("CounterClockwiseContourIntegra", (0, 0)), + ("rightleftharpoo", (0, 0)), + ("Odbl", (0, 0)), + ("gtlPa", (0, 0)), + ("backcon", (0, 0)), + ("sqsup;", (8848, 0)), + ("mopf", (0, 0)), + ("kscr;", (120000, 0)), + ("nharr;", (8622, 0)), + ("Ima", (0, 0)), + ("TildeTilde", (0, 0)), + ("Conint", (0, 0)), + ("DownArrowUpArro", (0, 0)), + ("circlear", (0, 0)), + ("UpDownArrow", (0, 0)), + ("because", (0, 0)), + ("udarr;", (8645, 0)), + ("tcy;", (1090, 0)), + ("Fs", (0, 0)), + ("boxuL;", (9563, 0)), + ("Ls", (0, 0)), + ("af", (0, 0)), + ("Ko", (0, 0)), + ("jscr", (0, 0)), + ("Dopf;", (120123, 0)), + ("cscr", (0, 0)), + ("ldca", (0, 0)), + ("Poincareplan", (0, 0)), + ("igrav", (0, 0)), + ("nrightarro", (0, 0)), + ("sho", (0, 0)), + ("kappa", (0, 0)), + ("bemptyv;", (10672, 0)), + ("sigmaf;", (962, 0)), + ("era", (0, 0)), + ("pitchfor", (0, 0)), + ("Ubrcy;", (1038, 0)), + ("expectation", (0, 0)), + ("Arin", (0, 0)), + ("mac", (0, 0)), + ("Longleftright", (0, 0)), + ("lurdshar", (0, 0)), + ("cedil;", (184, 0)), + ("lsh;", (8624, 0)), + ("nrArr", (0, 0)), + ("rightlefth", (0, 0)), + ("supdot", (0, 0)), + ("NotGreaterLess;", (8825, 0)), + ("NegativeMedi", (0, 0)), + ("LeftAngleBrac", (0, 0)), + ("Ncedi", (0, 0)), + ("amac", (0, 0)), + ("diamondsui", (0, 0)), + ("Emacr;", (274, 0)), + ("NegativeThic", (0, 0)), + ("ggg", (0, 0)), + ("imacr", (0, 0)), + ("lesges", (0, 0)), + ("Agrave", (192, 0)), + ("Vop", (0, 0)), + ("forkv", (0, 0)), + ("uharl;", (8639, 0)), + ("rightarrowtail", (0, 0)), + ("hamilt;", (8459, 0)), + ("rmou", (0, 0)), + ("leqslan", (0, 0)), + ("rds", (0, 0)), + ("ccir", (0, 0)), + ("cwint", (0, 0)), + ("shortp", (0, 0)), + ("sung", (0, 0)), + ("TRAD", (0, 0)), + ("NotSqua", (0, 0)), + ("DownLef", (0, 0)), + ("aog", (0, 0)), + ("VeryThinSp", (0, 0)), + ("ShortLeftAr", (0, 0)), + ("divid", (0, 0)), + ("integ", (0, 0)), + ("UpperLeftArro", (0, 0)), + ("frac45;", (8536, 0)), + ("UpperRightArrow;", (8599, 0)), + ("hksea", (0, 0)), + ("notinva", (0, 0)), + ("NotEqu", (0, 0)), + ("fnof;", (402, 0)), + ("blk34;", (9619, 0)), + ("infint", (0, 0)), + ("nltri", (0, 0)), + ("RightAngleBra", (0, 0)), + ("HilbertSpace;", (8459, 0)), + ("Upsi", (0, 0)), + ("rightharpoon", (0, 0)), + ("curl", (0, 0)), + ("DownTeeArro", (0, 0)), + ("rho;", (961, 0)), + ("suphsol", (0, 0)), + ("alp", (0, 0)), + ("nleqslan", (0, 0)), + ("ring", (0, 0)), + ("bumpeq", (0, 0)), + ("Vs", (0, 0)), + ("LeftTrian", (0, 0)), + ("curren;", (164, 0)), + ("rarrpl", (0, 0)), + ("longma", (0, 0)), + ("DJcy", (0, 0)), + ("Ncaron;", (327, 0)), + ("Zopf", (0, 0)), + ("UnderBrace;", (9183, 0)), + ("Poincare", (0, 0)), + ("gsim;", (8819, 0)), + ("ENG", (0, 0)), + ("uuml;", (252, 0)), + ("NotHumpDo", (0, 0)), + ("NotLeftTriangleEqual;", (8940, 0)), + ("phone;", (9742, 0)), + ("Breve;", (728, 0)), + ("leqslant;", (10877, 0)), + ("LeftTriang", (0, 0)), + ("leftrigh", (0, 0)), + ("Rou", (0, 0)), + ("el", (0, 0)), + ("NotLeftTriangleEqual", (0, 0)), + ("et", (0, 0)), + ("Leftrigh", (0, 0)), + ("igr", (0, 0)), + ("eqslantgt", (0, 0)), + ("bigoti", (0, 0)), + ("tcedi", (0, 0)), + ("ReverseEquilibrium;", (8651, 0)), + ("minus", (0, 0)), + ("profalar", (0, 0)), + ("F", (0, 0)), + ("rsaq", (0, 0)), + ("ngeq;", (8817, 0)), + ("nwAr", (0, 0)), + ("nsmid;", (8740, 0)), + ("esc", (0, 0)), + ("angmsdag;", (10670, 0)), + ("s", (0, 0)), + ("ds", (0, 0)), + ("rmoustache", (0, 0)), + ("LongLeftAr", (0, 0)), + ("zopf;", (120171, 0)), + ("RightDoubleBrac", (0, 0)), + ("ddot", (0, 0)), + ("cupbr", (0, 0)), + ("DoubleLongLeftRig", (0, 0)), + ("NotGreaterEqu", (0, 0)), + ("ms", (0, 0)), + ("NotSupe", (0, 0)), + ("ForAll;", (8704, 0)), + ("Gci", (0, 0)), + ("Filled", (0, 0)), + ("fili", (0, 0)), + ("ofcir", (0, 0)), + ("DownArrowBar", (0, 0)), + ("ShortUp", (0, 0)), + ("Lleftarrow", (0, 0)), + ("lHar;", (10594, 0)), + ("upuparrows", (0, 0)), + ("LeftRig", (0, 0)), + ("conin", (0, 0)), + ("nume", (0, 0)), + ("rsquo;", (8217, 0)), + ("ucirc;", (251, 0)), + ("urcorn", (0, 0)), + ("Ran", (0, 0)), + ("nequi", (0, 0)), + ("radic;", (8730, 0)), + ("DiacriticalGr", (0, 0)), + ("tshcy;", (1115, 0)), + ("ber", (0, 0)), + ("Xopf", (0, 0)), + ("Horizont", (0, 0)), + ("coni", (0, 0)), + ("smte;", (10924, 0)), + ("DiacriticalDot;", (729, 0)), + ("rarrtl;", (8611, 0)), + ("scaron;", (353, 0)), + ("pit", (0, 0)), + ("DifferentialD", (0, 0)), + ("RightFlo", (0, 0)), + ("In", (0, 0)), + ("GreaterT", (0, 0)), + ("vrtri", (0, 0)), + ("swarrow;", (8601, 0)), + ("subplus;", (10943, 0)), + ("rotime", (0, 0)), + ("downdownarro", (0, 0)), + ("dcy", (0, 0)), + ("plusac", (0, 0)), + ("UpArrowDownArro", (0, 0)), + ("propt", (0, 0)), + ("kappa;", (954, 0)), + ("shor", (0, 0)), + ("NotTildeTilde", (0, 0)), + ("kgre", (0, 0)), + ("lbrks", (0, 0)), + ("LeftDoubleBracket;", (10214, 0)), + ("dlc", (0, 0)), + ("boxvl;", (9508, 0)), + ("starf;", (9733, 0)), + ("Tab;", (9, 0)), + ("efDo", (0, 0)), + ("nmid;", (8740, 0)), + ("cacu", (0, 0)), + ("CloseCurlyDo", (0, 0)), + ("ltque", (0, 0)), + ("Cs", (0, 0)), + ("NotEq", (0, 0)), + ("Epsil", (0, 0)), + ("nsqs", (0, 0)), + ("Abreve", (0, 0)), + ("ldrusha", (0, 0)), + ("oline", (0, 0)), + ("SquareSubsetEq", (0, 0)), + ("apos;", (39, 0)), + ("longm", (0, 0)), + ("notinvc;", (8950, 0)), + ("NotRightTriangleEq", (0, 0)), + ("vartriangleleft", (0, 0)), + ("leqs", (0, 0)), + ("Upp", (0, 0)), + ("tim", (0, 0)), + ("prns", (0, 0)), + ("NestedGreat", (0, 0)), + ("Lmi", (0, 0)), + ("OpenCurl", (0, 0)), + ("UnderParenthesi", (0, 0)), + ("bi", (0, 0)), + ("gtrapp", (0, 0)), + ("Cdot", (0, 0)), + ("gEl;", (10892, 0)), + ("Upa", (0, 0)), + ("dash", (0, 0)), + ("DoubleLongLeftArrow", (0, 0)), + ("rppolint;", (10770, 0)), + ("blacktr", (0, 0)), + ("bcon", (0, 0)), + ("sun", (0, 0)), + ("RightUpTee", (0, 0)), + ("KJcy", (0, 0)), + ("hybull;", (8259, 0)), + ("simdo", (0, 0)), + ("bigsqcup", (0, 0)), + ("leftharpoondown", (0, 0)), + ("NotSq", (0, 0)), + ("longleftarrow", (0, 0)), + ("supseteqq;", (10950, 0)), + ("NotNestedGreat", (0, 0)), + ("nsub;", (8836, 0)), + ("dstrok;", (273, 0)), + ("mh", (0, 0)), + ("eDot", (0, 0)), + ("Jopf", (0, 0)), + ("jci", (0, 0)), + ("nspar", (0, 0)), + ("notnivb", (0, 0)), + ("subrarr", (0, 0)), + ("lsaq", (0, 0)), + ("rfloor", (0, 0)), + ("ntria", (0, 0)), + ("Cdo", (0, 0)), + ("not", (172, 0)), + ("Omicron", (0, 0)), + ("Ugrave", (217, 0)), + ("NotSquareSupers", (0, 0)), + ("top;", (8868, 0)), + ("Rrigh", (0, 0)), + ("DoubleConto", (0, 0)), + ("lcy", (0, 0)), + ("SquareSubsetE", (0, 0)), + ("scirc;", (349, 0)), + ("Differenti", (0, 0)), + ("beta;", (946, 0)), + ("NotHumpDow", (0, 0)), + ("yopf;", (120170, 0)), + ("RightUp", (0, 0)), + ("urcrop", (0, 0)), + ("lozenge;", (9674, 0)), + ("interc", (0, 0)), + ("fflig;", (64256, 0)), + ("trie;", (8796, 0)), + ("lhard;", (8637, 0)), + ("imped", (0, 0)), + ("prime;", (8242, 0)), + ("Uacut", (0, 0)), + ("NotE", (0, 0)), + ("Hum", (0, 0)), + ("NegativeT", (0, 0)), + ("boxUr;", (9561, 0)), + ("Impl", (0, 0)), + ("gd", (0, 0)), + ("nappro", (0, 0)), + ("Nsc", (0, 0)), + ("Subset;", (8912, 0)), + ("nleftarro", (0, 0)), + ("leftleftar", (0, 0)), + ("Ccar", (0, 0)), + ("Laplace", (0, 0)), + ("DoubleUpAr", (0, 0)), + ("lmid", (0, 0)), + ("Barv", (0, 0)), + ("THORN", (222, 0)), + ("infintie;", (10717, 0)), + ("mlc", (0, 0)), + ("Abr", (0, 0)), + ("Lef", (0, 0)), + ("downharpoonrigh", (0, 0)), + ("bigvee", (0, 0)), + ("fjlig;", (102, 106)), + ("Iscr", (0, 0)), + ("NotLeft", (0, 0)), + ("GreaterFullEqual", (0, 0)), + ("YI", (0, 0)), + ("NotPrecedesSlantEqual", (0, 0)), + ("seswar", (0, 0)), + ("Eps", (0, 0)), + ("FilledV", (0, 0)), + ("Integr", (0, 0)), + ("zeetr", (0, 0)), + ("subsim", (0, 0)), + ("ntriangleright", (0, 0)), + ("doteqdo", (0, 0)), + ("RightVectorBa", (0, 0)), + ("jmath", (0, 0)), + ("an", (0, 0)), + ("NotSquareSubset", (0, 0)), + ("nhpar;", (10994, 0)), + ("nLeftarr", (0, 0)), + ("vareps", (0, 0)), + ("frasl", (0, 0)), + ("CircleP", (0, 0)), + ("Empt", (0, 0)), + ("LeftAngleBracket", (0, 0)), + ("ec", (0, 0)), + ("perc", (0, 0)), + ("cent", (162, 0)), + ("rbrksld", (0, 0)), + ("Uarr", (0, 0)), + ("Integ", (0, 0)), + ("Ffr", (0, 0)), + ("Dow", (0, 0)), + ("Ncy;", (1053, 0)), + ("oac", (0, 0)), + ("Jci", (0, 0)), + ("z", (0, 0)), + ("intlarhk", (0, 0)), + ("psc", (0, 0)), + ("Sca", (0, 0)), + ("THOR", (0, 0)), + ("ogon;", (731, 0)), + ("EmptySma", (0, 0)), + ("ratail;", (10522, 0)), + ("roplu", (0, 0)), + ("loplus", (0, 0)), + ("subseteq;", (8838, 0)), + ("bsolb", (0, 0)), + ("subsete", (0, 0)), + ("notnivb;", (8958, 0)), + ("lopl", (0, 0)), + ("Inv", (0, 0)), + ("gop", (0, 0)), + ("NotC", (0, 0)), + ("Es", (0, 0)), + ("Over", (0, 0)), + ("Downarrow;", (8659, 0)), + ("bigtriangle", (0, 0)), + ("varpropto", (0, 0)), + ("nltrie;", (8940, 0)), + ("vellip", (0, 0)), + ("supsetneq;", (8843, 0)), + ("LJcy", (0, 0)), + ("homtht;", (8763, 0)), + ("Equilibr", (0, 0)), + ("NotNestedGreaterGrea", (0, 0)), + ("en", (0, 0)), + ("LeftFloo", (0, 0)), + ("cross;", (10007, 0)), + ("Vertica", (0, 0)), + ("biguplus;", (10756, 0)), + ("plu", (0, 0)), + ("RightUpTeeVe", (0, 0)), + ("rbb", (0, 0)), + ("nLeftr", (0, 0)), + ("Ele", (0, 0)), + ("gtreqqle", (0, 0)), + ("straightphi", (0, 0)), + ("longleftarro", (0, 0)), + ("lrcorne", (0, 0)), + ("ropar", (0, 0)), + ("kcedi", (0, 0)), + ("Wedg", (0, 0)), + ("hardcy", (0, 0)), + ("Rright", (0, 0)), + ("maps", (0, 0)), + ("nLl", (0, 0)), + ("realine;", (8475, 0)), + ("dcar", (0, 0)), + ("ddagger;", (8225, 0)), + ("lhblk", (0, 0)), + ("LeftTeeVec", (0, 0)), + ("Qopf", (0, 0)), + ("Mell", (0, 0)), + ("lr", (0, 0)), + ("twixt;", (8812, 0)), + ("lbrace;", (123, 0)), + ("csube", (0, 0)), + ("oacu", (0, 0)), + ("rarrpl;", (10565, 0)), + ("Aop", (0, 0)), + ("frow", (0, 0)), + ("simlE", (0, 0)), + ("DownRightVe", (0, 0)), + ("ClockwiseContourIntegr", (0, 0)), + ("LeftArrowRightA", (0, 0)), + ("supsim;", (10952, 0)), + ("boxHD;", (9574, 0)), + ("DownLeftTeeV", (0, 0)), + ("Proportional;", (8733, 0)), + ("CloseCurlyQuot", (0, 0)), + ("iuk", (0, 0)), + ("isindo", (0, 0)), + ("boxplus;", (8862, 0)), + ("Dou", (0, 0)), + ("diams;", (9830, 0)), + ("swa", (0, 0)), + ("compfn;", (8728, 0)), + ("eogo", (0, 0)), + ("LessEqu", (0, 0)), + ("UpArrowDown", (0, 0)), + ("rm", (0, 0)), + ("lnap;", (10889, 0)), + ("SOFTcy", (0, 0)), + ("curvearrowright", (0, 0)), + ("nld", (0, 0)), + ("dhar", (0, 0)), + ("GreaterFullEqua", (0, 0)), + ("long", (0, 0)), + ("integer", (0, 0)), + ("succneqq", (0, 0)), + ("SOFTcy;", (1068, 0)), + ("fallingdot", (0, 0)), + ("Such", (0, 0)), + ("eca", (0, 0)), + ("Produ", (0, 0)), + ("wr;", (8768, 0)), + ("SHCHcy;", (1065, 0)), + ("subsim;", (10951, 0)), + ("tris", (0, 0)), + ("UpTee", (0, 0)), + ("DownRightTeeVect", (0, 0)), + ("No", (0, 0)), + ("compl", (0, 0)), + ("NotDoubleVertic", (0, 0)), + ("nvge;", (8805, 8402)), + ("psi;", (968, 0)), + ("cci", (0, 0)), + ("x", (0, 0)), + ("rtrie", (0, 0)), + ("Udb", (0, 0)), + ("ZeroWidthSpace;", (8203, 0)), + ("nRight", (0, 0)), + ("hookrig", (0, 0)), + ("esim;", (8770, 0)), + ("Ugra", (0, 0)), + ("target", (0, 0)), + ("Gs", (0, 0)), + ("emsp;", (8195, 0)), + ("llarr;", (8647, 0)), + ("che", (0, 0)), + ("Implie", (0, 0)), + ("NotLessLes", (0, 0)), + ("RightUpDownVecto", (0, 0)), + ("nwarh", (0, 0)), + ("vs", (0, 0)), + ("lap", (0, 0)), + ("awint", (0, 0)), + ("omacr;", (333, 0)), + ("si", (0, 0)), + ("jfr", (0, 0)), + ("leftrightsquigarrow;", (8621, 0)), + ("RightDownTeeVec", (0, 0)), + ("sung;", (9834, 0)), + ("mstpo", (0, 0)), + ("dlcr", (0, 0)), + ("LowerRightAr", (0, 0)), + ("bb", (0, 0)), + ("ham", (0, 0)), + ("smas", (0, 0)), + ("nwA", (0, 0)), + ("cemp", (0, 0)), + ("LongLeftArrow", (0, 0)), + ("lesseqgtr", (0, 0)), + ("imof", (0, 0)), + ("between;", (8812, 0)), + ("NotPrecedesEq", (0, 0)), + ("nrA", (0, 0)), + ("UpperRig", (0, 0)), + ("CircleMinus", (0, 0)), + ("boxUl;", (9564, 0)), + ("mapst", (0, 0)), + ("KHc", (0, 0)), + ("SquareSupersetEqu", (0, 0)), + ("precnapprox", (0, 0)), + ("Eacute;", (201, 0)), + ("zacute;", (378, 0)), + ("Longrighta", (0, 0)), + ("nsccue;", (8929, 0)), + ("caro", (0, 0)), + ("NotGreaterTilde", (0, 0)), + ("jser", (0, 0)), + ("beps", (0, 0)), + ("Negati", (0, 0)), + ("ShortRightArrow;", (8594, 0)), + ("nLeftar", (0, 0)), + ("GreaterE", (0, 0)), + ("leftrig", (0, 0)), + ("LessSlantEq", (0, 0)), + ("ldrus", (0, 0)), + ("chcy", (0, 0)), + ("xdt", (0, 0)), + ("Gdot", (0, 0)), + ("blackloz", (0, 0)), + ("DoubleLeftRi", (0, 0)), + ("Sup;", (8913, 0)), + ("NotSu", (0, 0)), + ("Zeta", (0, 0)), + ("dcaron;", (271, 0)), + ("udb", (0, 0)), + ("leftleftarrow", (0, 0)), + ("Copf", (0, 0)), + ("NotSucceed", (0, 0)), + ("DotDot", (0, 0)), + ("NotVerticalB", (0, 0)), + ("Vvdash;", (8874, 0)), + ("trianglerighteq;", (8885, 0)), + ("szli", (0, 0)), + ("ntriangleright;", (8939, 0)), + ("short", (0, 0)), + ("mop", (0, 0)), + ("leftrightarrows;", (8646, 0)), + ("ufi", (0, 0)), + ("ReverseUpEquilibr", (0, 0)), + ("Gamma", (0, 0)), + ("NotLeftT", (0, 0)), + ("flat;", (9837, 0)), + ("Pre", (0, 0)), + ("looparrowright", (0, 0)), + ("glj", (0, 0)), + ("boxdL;", (9557, 0)), + ("ThickSp", (0, 0)), + ("shortparallel;", (8741, 0)), + ("dtdot", (0, 0)), + ("sfrow", (0, 0)), + ("UpperRightArr", (0, 0)), + ("suphsub", (0, 0)), + ("Gcy", (0, 0)), + ("otilde", (245, 0)), + ("ldrushar;", (10571, 0)), + ("nsmid", (0, 0)), + ("HumpEqual;", (8783, 0)), + ("THO", (0, 0)), + ("ReverseUpEquilibrium", (0, 0)), + ("nVD", (0, 0)), + ("CircleT", (0, 0)), + ("Tcaro", (0, 0)), + ("VerticalBar;", (8739, 0)), + ("LeftTriangle;", (8882, 0)), + ("divideont", (0, 0)), + ("Updown", (0, 0)), + ("Rcar", (0, 0)), + ("Dop", (0, 0)), + ("cues", (0, 0)), + ("odas", (0, 0)), + ("Rul", (0, 0)), + ("UnderParenthesis;", (9181, 0)), + ("checkm", (0, 0)), + ("OpenCurlyQuo", (0, 0)), + ("RoundImpl", (0, 0)), + ("Bar", (0, 0)), + ("OpenCurlyDoubleQuote", (0, 0)), + ("Cscr;", (119966, 0)), + ("sqsub;", (8847, 0)), + ("hsla", (0, 0)), + ("orderof;", (8500, 0)), + ("mfr", (0, 0)), + ("ldca;", (10550, 0)), + ("Jcir", (0, 0)), + ("yop", (0, 0)), + ("DoubleContourI", (0, 0)), + ("Uacute", (218, 0)), + ("ll", (0, 0)), + ("DoubleV", (0, 0)), + ("diams", (0, 0)), + ("vsu", (0, 0)), + ("csc", (0, 0)), + ("backco", (0, 0)), + ("orarr;", (8635, 0)), + ("dig", (0, 0)), + ("hksearow;", (10533, 0)), + ("nvlArr", (0, 0)), + ("NotNestedGreate", (0, 0)), + ("demptyv", (0, 0)), + ("Vvdas", (0, 0)), + ("boxUr", (0, 0)), + ("Th", (0, 0)), + ("circlearrowrigh", (0, 0)), + ("Hor", (0, 0)), + ("CirclePlu", (0, 0)), + ("jopf", (0, 0)), + ("DDotr", (0, 0)), + ("rAa", (0, 0)), + ("circled", (0, 0)), + ("pointin", (0, 0)), + ("varsubsetn", (0, 0)), + ("lfish", (0, 0)), + ("DownRightV", (0, 0)), + ("varsupsetneqq;", (10956, 65024)), + ("drcorn;", (8991, 0)), + ("integers;", (8484, 0)), + ("NotSquareSubsetE", (0, 0)), + ("UpArrow;", (8593, 0)), + ("lver", (0, 0)), + ("iiin", (0, 0)), + ("NotGreaterGr", (0, 0)), + ("gnap", (0, 0)), + ("measuredang", (0, 0)), + ("bott", (0, 0)), + ("aacu", (0, 0)), + ("xnis;", (8955, 0)), + ("planck", (0, 0)), + ("Uogon", (0, 0)), + ("Xi", (0, 0)), + ("dlco", (0, 0)), + ("Longleftrightar", (0, 0)), + ("Equilibri", (0, 0)), + ("Iog", (0, 0)), + ("cce", (0, 0)), + ("smt", (0, 0)), + ("DownRightTeeVector", (0, 0)), + ("zwnj", (0, 0)), + ("iacut", (0, 0)), + ("Longr", (0, 0)), + ("DownLeftRightVecto", (0, 0)), + ("Bcy", (0, 0)), + ("wedge;", (8743, 0)), + ("wci", (0, 0)), + ("dzig", (0, 0)), + ("xvee", (0, 0)), + ("UnderBra", (0, 0)), + ("ccirc", (0, 0)), + ("Elemen", (0, 0)), + ("ltd", (0, 0)), + ("lesssi", (0, 0)), + ("ngE;", (8807, 824)), + ("lbrksl", (0, 0)), + ("CounterClockwis", (0, 0)), + ("dotm", (0, 0)), + ("NegativeThickSpace;", (8203, 0)), + ("Bernoullis", (0, 0)), + ("CounterClock", (0, 0)), + ("CounterCl", (0, 0)), + ("Und", (0, 0)), + ("eu", (0, 0)), + ("wed", (0, 0)), + ("bsc", (0, 0)), + ("Uarroc", (0, 0)), + ("dwan", (0, 0)), + ("hooklef", (0, 0)), + ("InvisibleTi", (0, 0)), + ("kcy;", (1082, 0)), + ("Star", (0, 0)), + ("kappav", (0, 0)), + ("eth;", (240, 0)), + ("DiacriticalAcute;", (180, 0)), + ("acirc", (226, 0)), + ("HARDcy", (0, 0)), + ("NotPrecedesE", (0, 0)), + ("bowt", (0, 0)), + ("abr", (0, 0)), + ("loop", (0, 0)), + ("upharpoonle", (0, 0)), + ("bigsqcu", (0, 0)), + ("pi", (0, 0)), + ("rn", (0, 0)), + ("boxvr;", (9500, 0)), + ("angms", (0, 0)), + ("blacktria", (0, 0)), + ("LongRi", (0, 0)), + ("LeftF", (0, 0)), + ("Ch", (0, 0)), + ("UpDo", (0, 0)), + ("Aacute", (193, 0)), + ("eqslantle", (0, 0)), + ("dlcrop", (0, 0)), + ("emptyse", (0, 0)), + ("al", (0, 0)), + ("EmptyVerySmall", (0, 0)), + ("DownLeftRightV", (0, 0)), + ("sa", (0, 0)), + ("ver", (0, 0)), + ("preccurlyeq;", (8828, 0)), + ("Congrue", (0, 0)), + ("Hat;", (94, 0)), + ("nesim;", (8770, 824)), + ("coloneq", (0, 0)), + ("Alp", (0, 0)), + ("boxuL", (0, 0)), + ("smep", (0, 0)), + ("LowerLeftArr", (0, 0)), + ("nges;", (10878, 824)), + ("primes", (0, 0)), + ("hookleftar", (0, 0)), + ("ClockwiseContourIntegral;", (8754, 0)), + ("roplus;", (10798, 0)), + ("ntriangle", (0, 0)), + ("xwedge", (0, 0)), + ("rights", (0, 0)), + ("lmousta", (0, 0)), + ("Auml", (196, 0)), + ("RightDoubleBr", (0, 0)), + ("circledda", (0, 0)), + ("Cacu", (0, 0)), + ("uacu", (0, 0)), + ("precappro", (0, 0)), + ("targ", (0, 0)), + ("sqcup;", (8852, 0)), + ("Aacut", (0, 0)), + ("vzigzag", (0, 0)), + ("strai", (0, 0)), + ("LeftTriangleB", (0, 0)), + ("NotLessGreate", (0, 0)), + ("Po", (0, 0)), + ("cirfnin", (0, 0)), + ("nshor", (0, 0)), + ("bp", (0, 0)), + ("ograve;", (242, 0)), + ("ugrav", (0, 0)), + ("hkswar", (0, 0)), + ("tf", (0, 0)), + ("dstrok", (0, 0)), + ("rarrf", (0, 0)), + ("oelig", (0, 0)), + ("Dstrok", (0, 0)), + ("gam", (0, 0)), + ("sqsubse", (0, 0)), + ("Jsc", (0, 0)), + ("Supers", (0, 0)), + ("kappav;", (1008, 0)), + ("curar", (0, 0)), + ("ino", (0, 0)), + ("angrtvb", (0, 0)), + ("os", (0, 0)), + ("lbb", (0, 0)), + ("frac16", (0, 0)), + ("gtdot;", (8919, 0)), + ("Kopf;", (120130, 0)), + ("prurel;", (8880, 0)), + ("THORN;", (222, 0)), + ("TildeTi", (0, 0)), + ("lBar", (0, 0)), + ("blacktriangleleft", (0, 0)), + ("dlcrop;", (8973, 0)), + ("CounterClockwise", (0, 0)), + ("isinv", (0, 0)), + ("Proportion", (0, 0)), + ("DownRightVectorBa", (0, 0)), + ("mp;", (8723, 0)), + ("varn", (0, 0)), + ("LessSlantEqua", (0, 0)), + ("mco", (0, 0)), + ("Jse", (0, 0)), + ("rthre", (0, 0)), + ("Udbla", (0, 0)), + ("NegativeThickSp", (0, 0)), + ("LongLeftRigh", (0, 0)), + ("Theta;", (920, 0)), + ("wscr", (0, 0)), + ("SquareSuper", (0, 0)), + ("nap", (0, 0)), + ("gtqu", (0, 0)), + ("doublebarwe", (0, 0)), + ("ssetm", (0, 0)), + ("longrighta", (0, 0)), + ("PrecedesT", (0, 0)), + ("lop", (0, 0)), + ("Itilde;", (296, 0)), + ("sup2", (178, 0)), + ("RuleD", (0, 0)), + ("Fouriertrf", (0, 0)), + ("flli", (0, 0)), + ("multima", (0, 0)), + ("Delta;", (916, 0)), + ("DoubleLon", (0, 0)), + ("rBarr", (0, 0)), + ("smal", (0, 0)), + ("DownLeftVect", (0, 0)), + ("Rfr;", (8476, 0)), + ("LeftU", (0, 0)), + ("helli", (0, 0)), + ("Gammad;", (988, 0)), + ("righthar", (0, 0)), + ("nsce", (0, 0)), + ("spar", (0, 0)), + ("nGt;", (8811, 8402)), + ("ud", (0, 0)), + ("varpi", (0, 0)), + ("Og", (0, 0)), + ("Leftarr", (0, 0)), + ("Mediu", (0, 0)), + ("plusmn;", (177, 0)), + ("RightTriangle", (0, 0)), + ("ncon", (0, 0)), + ("Nca", (0, 0)), + ("napE", (0, 0)), + ("succneqq;", (10934, 0)), + ("Ubrc", (0, 0)), + ("divide;", (247, 0)), + ("kg", (0, 0)), + ("topcir;", (10993, 0)), + ("LeftDownTee", (0, 0)), + ("NegativeVeryTh", (0, 0)), + ("fema", (0, 0)), + ("frac15", (0, 0)), + ("scn", (0, 0)), + ("RightTeeVe", (0, 0)), + ("blackl", (0, 0)), + ("Shor", (0, 0)), + ("DoubleLeftArrow;", (8656, 0)), + ("Rr", (0, 0)), + ("ngeqq", (0, 0)), + ("Uarrocir;", (10569, 0)), + ("NotRev", (0, 0)), + ("NotDoubleVerti", (0, 0)), + ("Lcar", (0, 0)), + ("LeftTeeArr", (0, 0)), + ("supsu", (0, 0)), + ("PrecedesTi", (0, 0)), + ("oci", (0, 0)), + ("angm", (0, 0)), + ("fsc", (0, 0)), + ("complem", (0, 0)), + ("straightphi;", (981, 0)), + ("sqsupe;", (8850, 0)), + ("LongRightArrow;", (10230, 0)), + ("dbla", (0, 0)), + ("Psi;", (936, 0)), + ("drbk", (0, 0)), + ("ring;", (730, 0)), + ("leftleftarrows;", (8647, 0)), + ("ntrianglerighteq;", (8941, 0)), + ("updownarro", (0, 0)), + ("hsl", (0, 0)), + ("ClockwiseCo", (0, 0)), + ("imath", (0, 0)), + ("LeftTeeA", (0, 0)), + ("hstro", (0, 0)), + ("NotHum", (0, 0)), + ("Re;", (8476, 0)), + ("ycir", (0, 0)), + ("subsu", (0, 0)), + ("wre", (0, 0)), + ("cwconint", (0, 0)), + ("NotSucceedsTild", (0, 0)), + ("ntrian", (0, 0)), + ("lHar", (0, 0)), + ("Prime", (0, 0)), + ("SmallCircl", (0, 0)), + ("Backsl", (0, 0)), + ("euml;", (235, 0)), + ("ntl", (0, 0)), + ("Fop", (0, 0)), + ("lcy;", (1083, 0)), + ("doublebarw", (0, 0)), + ("Oac", (0, 0)), + ("zdot;", (380, 0)), + ("ReverseUpEqu", (0, 0)), + ("ucir", (0, 0)), + ("Interse", (0, 0)), + ("Otilde;", (213, 0)), + ("rflo", (0, 0)), + ("LeftVectorBar", (0, 0)), + ("gtrsim", (0, 0)), + ("subn", (0, 0)), + ("spar;", (8741, 0)), + ("Tc", (0, 0)), + ("UpArr", (0, 0)), + ("Ccir", (0, 0)), + ("RightAngleBracket", (0, 0)), + ("udarr", (0, 0)), + ("uwan", (0, 0)), + ("club", (0, 0)), + ("lopf;", (120157, 0)), + ("xharr", (0, 0)), + ("xma", (0, 0)), + ("ltci", (0, 0)), + ("nw", (0, 0)), + ("FilledVerySm", (0, 0)), + ("hs", (0, 0)), + ("UpperLeftArrow", (0, 0)), + ("NotSuperset", (0, 0)), + ("SHCHc", (0, 0)), + ("Rscr", (0, 0)), + ("FilledVerySma", (0, 0)), + ("trimin", (0, 0)), + ("uring;", (367, 0)), + ("lAtai", (0, 0)), + ("Equilib", (0, 0)), + ("varpropt", (0, 0)), + ("inod", (0, 0)), + ("Longrightarrow;", (10233, 0)), + ("Yf", (0, 0)), + ("Bo", (0, 0)), + ("Round", (0, 0)), + ("capb", (0, 0)), + ("ecir", (0, 0)), + ("NotHumpDownHump", (0, 0)), + ("curarrm", (0, 0)), + ("Aac", (0, 0)), + ("lthree;", (8907, 0)), + ("olcir", (0, 0)), + ("Intersection;", (8898, 0)), + ], +}; diff --git a/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/output b/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/output new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/root-output b/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/root-output new file mode 100644 index 0000000..bb6b326 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/stderr b/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build-script-build b/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build-script-build new file mode 100755 index 0000000..812da81 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build_script_build-99d4bcae2b8ea42d b/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build_script_build-99d4bcae2b8ea42d new file mode 100755 index 0000000..812da81 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build_script_build-99d4bcae2b8ea42d differ diff --git a/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build_script_build-99d4bcae2b8ea42d.d b/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build_script_build-99d4bcae2b8ea42d.d new file mode 100644 index 0000000..bad4c5f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build_script_build-99d4bcae2b8ea42d.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build_script_build-99d4bcae2b8ea42d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/build.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/entities.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-99d4bcae2b8ea42d/build_script_build-99d4bcae2b8ea42d.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/build.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/entities.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/build.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/entities.rs: diff --git a/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/output b/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/output new file mode 100644 index 0000000..e4a87f2 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/output @@ -0,0 +1,2 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(tsan_enabled) diff --git a/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/root-output b/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/root-output new file mode 100644 index 0000000..6bb9416 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/stderr b/src-tauri/html_scraper/target/debug/build/parking_lot_core-43faca14b949a384/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build-script-build b/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build-script-build new file mode 100755 index 0000000..6cadd93 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build_script_build-8e29ae85abe15a1f b/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build_script_build-8e29ae85abe15a1f new file mode 100755 index 0000000..6cadd93 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build_script_build-8e29ae85abe15a1f differ diff --git a/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build_script_build-8e29ae85abe15a1f.d b/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build_script_build-8e29ae85abe15a1f.d new file mode 100644 index 0000000..4ff3cee --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build_script_build-8e29ae85abe15a1f.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build_script_build-8e29ae85abe15a1f: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/parking_lot_core-8e29ae85abe15a1f/build_script_build-8e29ae85abe15a1f.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/output b/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/output new file mode 100644 index 0000000..a4e2ef0 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/output @@ -0,0 +1,19 @@ +cargo:rustc-check-cfg=cfg(fuzzing) +cargo:rustc-check-cfg=cfg(no_is_available) +cargo:rustc-check-cfg=cfg(no_literal_byte_character) +cargo:rustc-check-cfg=cfg(no_literal_c_string) +cargo:rustc-check-cfg=cfg(no_source_text) +cargo:rustc-check-cfg=cfg(proc_macro_span) +cargo:rustc-check-cfg=cfg(proc_macro_span_file) +cargo:rustc-check-cfg=cfg(proc_macro_span_location) +cargo:rustc-check-cfg=cfg(procmacro2_backtrace) +cargo:rustc-check-cfg=cfg(procmacro2_build_probe) +cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) +cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) +cargo:rustc-check-cfg=cfg(randomize_layout) +cargo:rustc-check-cfg=cfg(span_locations) +cargo:rustc-check-cfg=cfg(super_unstable) +cargo:rustc-check-cfg=cfg(wrap_proc_macro) +cargo:rerun-if-changed=src/probe/proc_macro_span.rs +cargo:rustc-cfg=wrap_proc_macro +cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP diff --git a/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/root-output b/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/root-output new file mode 100644 index 0000000..ffc399d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/stderr b/src-tauri/html_scraper/target/debug/build/proc-macro2-58daf346076c4d4b/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build-script-build b/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build-script-build new file mode 100755 index 0000000..03d16b1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build_script_build-d0815d6bff85897b b/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build_script_build-d0815d6bff85897b new file mode 100755 index 0000000..03d16b1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build_script_build-d0815d6bff85897b differ diff --git a/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build_script_build-d0815d6bff85897b.d b/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build_script_build-d0815d6bff85897b.d new file mode 100644 index 0000000..fbcb477 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build_script_build-d0815d6bff85897b.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build_script_build-d0815d6bff85897b: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/proc-macro2-d0815d6bff85897b/build_script_build-d0815d6bff85897b.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build-script-build b/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build-script-build new file mode 100755 index 0000000..ee49deb Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build_script_build-1826a9a489ea310c b/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build_script_build-1826a9a489ea310c new file mode 100755 index 0000000..ee49deb Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build_script_build-1826a9a489ea310c differ diff --git a/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build_script_build-1826a9a489ea310c.d b/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build_script_build-1826a9a489ea310c.d new file mode 100644 index 0000000..ee1a47b --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build_script_build-1826a9a489ea310c.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build_script_build-1826a9a489ea310c: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/selectors-1826a9a489ea310c/build_script_build-1826a9a489ea310c.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/out/ascii_case_insensitive_html_attributes.rs b/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/out/ascii_case_insensitive_html_attributes.rs new file mode 100644 index 0000000..0fa77f2 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/out/ascii_case_insensitive_html_attributes.rs @@ -0,0 +1,63 @@ +{ static SET: ::phf::Set<&'static str> = ::phf::Set { map: ::phf::Map { + key: 10121458955350035957, + disps: &[ + (0, 2), + (8, 17), + (1, 5), + (0, 0), + (0, 20), + (0, 3), + (15, 2), + (17, 19), + (8, 9), + (0, 15), + ], + entries: &[ + ("dir", ()), + ("http-equiv", ()), + ("rel", ()), + ("enctype", ()), + ("align", ()), + ("accept", ()), + ("nohref", ()), + ("lang", ()), + ("bgcolor", ()), + ("direction", ()), + ("valign", ()), + ("checked", ()), + ("frame", ()), + ("link", ()), + ("accept-charset", ()), + ("hreflang", ()), + ("text", ()), + ("valuetype", ()), + ("language", ()), + ("nowrap", ()), + ("vlink", ()), + ("disabled", ()), + ("noshade", ()), + ("codetype", ()), + ("defer", ()), + ("noresize", ()), + ("target", ()), + ("scrolling", ()), + ("rules", ()), + ("scope", ()), + ("rev", ()), + ("media", ()), + ("method", ()), + ("charset", ()), + ("alink", ()), + ("selected", ()), + ("multiple", ()), + ("color", ()), + ("shape", ()), + ("type", ()), + ("clear", ()), + ("compact", ()), + ("face", ()), + ("declare", ()), + ("axis", ()), + ("readonly", ()), + ], +} }; &SET } \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/output b/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/output new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/root-output b/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/root-output new file mode 100644 index 0000000..226b12a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/stderr b/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/out/private.rs b/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/out/private.rs new file mode 100644 index 0000000..9843df3 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/out/private.rs @@ -0,0 +1,6 @@ +#[doc(hidden)] +pub mod __private227 { + #[doc(hidden)] + pub use crate::private::*; +} +use serde_core::__private227 as serde_core_private; diff --git a/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/output b/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/output new file mode 100644 index 0000000..3303337 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/output @@ -0,0 +1,12 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(feature, values("result")) +cargo:rustc-check-cfg=cfg(no_core_cstr) +cargo:rustc-check-cfg=cfg(no_core_error) +cargo:rustc-check-cfg=cfg(no_core_net) +cargo:rustc-check-cfg=cfg(no_core_num_saturating) +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) +cargo:rustc-check-cfg=cfg(no_serde_core) +cargo:rustc-check-cfg=cfg(no_serde_derive) +cargo:rustc-check-cfg=cfg(no_std_atomic) +cargo:rustc-check-cfg=cfg(no_std_atomic64) +cargo:rustc-check-cfg=cfg(no_target_has_atomic) diff --git a/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/root-output b/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/root-output new file mode 100644 index 0000000..403bbcd --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/stderr b/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build-script-build b/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build-script-build new file mode 100755 index 0000000..64856ad Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build_script_build-63215c02dca3dcb6 b/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build_script_build-63215c02dca3dcb6 new file mode 100755 index 0000000..64856ad Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build_script_build-63215c02dca3dcb6 differ diff --git a/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build_script_build-63215c02dca3dcb6.d b/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build_script_build-63215c02dca3dcb6.d new file mode 100644 index 0000000..d626d92 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build_script_build-63215c02dca3dcb6.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build_script_build-63215c02dca3dcb6: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde-63215c02dca3dcb6/build_script_build-63215c02dca3dcb6.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build-script-build b/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build-script-build new file mode 100755 index 0000000..a74ff60 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build_script_build-0bd7de0b6f72a0a0 b/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build_script_build-0bd7de0b6f72a0a0 new file mode 100755 index 0000000..a74ff60 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build_script_build-0bd7de0b6f72a0a0 differ diff --git a/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build_script_build-0bd7de0b6f72a0a0.d b/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build_script_build-0bd7de0b6f72a0a0.d new file mode 100644 index 0000000..c499f7f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build_script_build-0bd7de0b6f72a0a0.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build_script_build-0bd7de0b6f72a0a0: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde_core-0bd7de0b6f72a0a0/build_script_build-0bd7de0b6f72a0a0.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/out/private.rs b/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/out/private.rs new file mode 100644 index 0000000..a6eeed7 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/out/private.rs @@ -0,0 +1,5 @@ +#[doc(hidden)] +pub mod __private227 { + #[doc(hidden)] + pub use crate::private::*; +} diff --git a/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/output b/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/output new file mode 100644 index 0000000..328aabf --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/output @@ -0,0 +1,11 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(no_core_cstr) +cargo:rustc-check-cfg=cfg(no_core_error) +cargo:rustc-check-cfg=cfg(no_core_net) +cargo:rustc-check-cfg=cfg(no_core_num_saturating) +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) +cargo:rustc-check-cfg=cfg(no_serde_core) +cargo:rustc-check-cfg=cfg(no_serde_derive) +cargo:rustc-check-cfg=cfg(no_std_atomic) +cargo:rustc-check-cfg=cfg(no_std_atomic64) +cargo:rustc-check-cfg=cfg(no_target_has_atomic) diff --git a/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/root-output b/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/root-output new file mode 100644 index 0000000..a58cbfd --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/stderr b/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build-script-build b/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build-script-build new file mode 100755 index 0000000..f34f28d Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build_script_build-7069354ea445a65d b/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build_script_build-7069354ea445a65d new file mode 100755 index 0000000..f34f28d Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build_script_build-7069354ea445a65d differ diff --git a/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build_script_build-7069354ea445a65d.d b/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build_script_build-7069354ea445a65d.d new file mode 100644 index 0000000..5b516cb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build_script_build-7069354ea445a65d.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build_script_build-7069354ea445a65d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/thiserror-7069354ea445a65d/build_script_build-7069354ea445a65d.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/build.rs: diff --git a/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/output b/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/output new file mode 100644 index 0000000..3b23df4 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/output @@ -0,0 +1,4 @@ +cargo:rerun-if-changed=build/probe.rs +cargo:rustc-check-cfg=cfg(error_generic_member_access) +cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) +cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP diff --git a/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/root-output b/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/root-output new file mode 100644 index 0000000..e8b5ef6 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/stderr b/src-tauri/html_scraper/target/debug/build/thiserror-b456ae825abaa28d/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/invoked.timestamp b/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/output b/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/output new file mode 100644 index 0000000..bcc05c8 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/output @@ -0,0 +1,24 @@ +cargo:rerun-if-changed=build.rs +cargo:rerun-if-changed=Cargo.toml +cargo:rustc-check-cfg=cfg(zerocopy_core_error_1_81_0) +cargo:rustc-check-cfg=cfg(rust, values("1.81.0")) +cargo:rustc-check-cfg=cfg(zerocopy_diagnostic_on_unimplemented_1_78_0) +cargo:rustc-check-cfg=cfg(rust, values("1.78.0")) +cargo:rustc-check-cfg=cfg(zerocopy_generic_bounds_in_const_fn_1_61_0) +cargo:rustc-check-cfg=cfg(rust, values("1.61.0")) +cargo:rustc-check-cfg=cfg(zerocopy_target_has_atomics_1_60_0) +cargo:rustc-check-cfg=cfg(rust, values("1.60.0")) +cargo:rustc-check-cfg=cfg(zerocopy_aarch64_simd_1_59_0) +cargo:rustc-check-cfg=cfg(rust, values("1.59.0")) +cargo:rustc-check-cfg=cfg(zerocopy_panic_in_const_and_vec_try_reserve_1_57_0) +cargo:rustc-check-cfg=cfg(rust, values("1.57.0")) +cargo:rustc-check-cfg=cfg(doc_cfg) +cargo:rustc-check-cfg=cfg(kani) +cargo:rustc-check-cfg=cfg(__ZEROCOPY_INTERNAL_USE_ONLY_NIGHTLY_FEATURES_IN_TESTS) +cargo:rustc-check-cfg=cfg(coverage_nightly) +cargo:rustc-cfg=zerocopy_core_error_1_81_0 +cargo:rustc-cfg=zerocopy_diagnostic_on_unimplemented_1_78_0 +cargo:rustc-cfg=zerocopy_generic_bounds_in_const_fn_1_61_0 +cargo:rustc-cfg=zerocopy_target_has_atomics_1_60_0 +cargo:rustc-cfg=zerocopy_aarch64_simd_1_59_0 +cargo:rustc-cfg=zerocopy_panic_in_const_and_vec_try_reserve_1_57_0 diff --git a/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/root-output b/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/root-output new file mode 100644 index 0000000..f749393 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/stderr b/src-tauri/html_scraper/target/debug/build/zerocopy-561cdbb4b9a26819/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build-script-build b/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build-script-build new file mode 100755 index 0000000..caf1b6f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build-script-build differ diff --git a/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build_script_build-c56ca7bb2ddd51f6 b/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build_script_build-c56ca7bb2ddd51f6 new file mode 100755 index 0000000..caf1b6f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build_script_build-c56ca7bb2ddd51f6 differ diff --git a/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build_script_build-c56ca7bb2ddd51f6.d b/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build_script_build-c56ca7bb2ddd51f6.d new file mode 100644 index 0000000..6ecf44b --- /dev/null +++ b/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build_script_build-c56ca7bb2ddd51f6.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build_script_build-c56ca7bb2ddd51f6: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/zerocopy-c56ca7bb2ddd51f6/build_script_build-c56ca7bb2ddd51f6.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/build.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/build.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/ahash-ffd687c1479c7fc2.ahash.a622eb46365454f6-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/ahash-ffd687c1479c7fc2.ahash.a622eb46365454f6-cgu.0.rcgu.o new file mode 100644 index 0000000..691cfa6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/ahash-ffd687c1479c7fc2.ahash.a622eb46365454f6-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/ahash-ffd687c1479c7fc2.d b/src-tauri/html_scraper/target/debug/deps/ahash-ffd687c1479c7fc2.d new file mode 100644 index 0000000..6e84d35 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/ahash-ffd687c1479c7fc2.d @@ -0,0 +1,14 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libahash-ffd687c1479c7fc2.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/convert.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/fallback_hash.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/operations.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/random_state.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/specialize.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/hash_map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/hash_set.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libahash-ffd687c1479c7fc2.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/convert.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/fallback_hash.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/operations.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/random_state.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/specialize.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/hash_map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/hash_set.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/ahash-ffd687c1479c7fc2.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/convert.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/fallback_hash.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/operations.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/random_state.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/specialize.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/hash_map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/hash_set.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/convert.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/fallback_hash.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/operations.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/random_state.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/specialize.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/hash_map.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ahash-0.8.12/src/hash_set.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.00.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.00.rcgu.o new file mode 100644 index 0000000..af30ca8 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.00.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.01.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.01.rcgu.o new file mode 100644 index 0000000..e6985b1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.01.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.02.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.02.rcgu.o new file mode 100644 index 0000000..803a5fa Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.02.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.03.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.03.rcgu.o new file mode 100644 index 0000000..7d2b839 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.03.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.04.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.04.rcgu.o new file mode 100644 index 0000000..6107415 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.04.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.05.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.05.rcgu.o new file mode 100644 index 0000000..3c04e21 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.05.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.06.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.06.rcgu.o new file mode 100644 index 0000000..3edc560 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.06.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.07.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.07.rcgu.o new file mode 100644 index 0000000..42e6c41 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.07.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.08.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.08.rcgu.o new file mode 100644 index 0000000..384eb4e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.08.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.09.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.09.rcgu.o new file mode 100644 index 0000000..7884db3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.09.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.10.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.10.rcgu.o new file mode 100644 index 0000000..2cf375b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.10.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.11.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.11.rcgu.o new file mode 100644 index 0000000..6573e01 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.11.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.12.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.12.rcgu.o new file mode 100644 index 0000000..e525db4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.12.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.13.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.13.rcgu.o new file mode 100644 index 0000000..0aa1b66 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.13.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.14.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.14.rcgu.o new file mode 100644 index 0000000..141adc6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.14.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.15.rcgu.o b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.15.rcgu.o new file mode 100644 index 0000000..4829253 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.aho_corasick.e4dc907eb4689e7c-cgu.15.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.d b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.d new file mode 100644 index 0000000..7e27928 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.d @@ -0,0 +1,35 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libaho_corasick-0c0a44cb2b404ece.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/ahocorasick.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/automaton.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/dfa.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/contiguous.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/noncontiguous.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/api.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/pattern.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/rabinkarp.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/generic.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/vector.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/alphabet.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/buffer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/byte_frequencies.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/debug.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/int.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/prefilter.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/remapper.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/search.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/special.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libaho_corasick-0c0a44cb2b404ece.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/ahocorasick.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/automaton.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/dfa.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/contiguous.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/noncontiguous.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/api.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/pattern.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/rabinkarp.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/generic.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/vector.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/alphabet.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/buffer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/byte_frequencies.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/debug.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/int.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/prefilter.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/remapper.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/search.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/special.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/aho_corasick-0c0a44cb2b404ece.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/ahocorasick.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/automaton.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/dfa.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/contiguous.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/noncontiguous.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/api.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/pattern.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/rabinkarp.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/generic.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/vector.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/alphabet.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/buffer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/byte_frequencies.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/debug.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/int.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/prefilter.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/remapper.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/search.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/special.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/ahocorasick.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/automaton.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/dfa.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/contiguous.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/nfa/noncontiguous.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/api.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/ext.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/pattern.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/rabinkarp.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/builder.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/teddy/generic.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/packed/vector.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/alphabet.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/buffer.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/byte_frequencies.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/debug.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/int.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/prefilter.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/primitives.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/remapper.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/search.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/aho-corasick-1.1.3/src/util/special.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/autocfg-98a6c7819a03ebc1.d b/src-tauri/html_scraper/target/debug/deps/autocfg-98a6c7819a03ebc1.d new file mode 100644 index 0000000..0c82458 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/autocfg-98a6c7819a03ebc1.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libautocfg-98a6c7819a03ebc1.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/rustc.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/version.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libautocfg-98a6c7819a03ebc1.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/rustc.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/version.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/autocfg-98a6c7819a03ebc1.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/rustc.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/version.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/rustc.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/autocfg-1.5.0/src/version.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/bitflags-6436427193246fd0.bitflags.3b609935b49466ea-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/bitflags-6436427193246fd0.bitflags.3b609935b49466ea-cgu.0.rcgu.o new file mode 100644 index 0000000..bd6ab0c Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/bitflags-6436427193246fd0.bitflags.3b609935b49466ea-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/bitflags-6436427193246fd0.d b/src-tauri/html_scraper/target/debug/deps/bitflags-6436427193246fd0.d new file mode 100644 index 0000000..618caeb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/bitflags-6436427193246fd0.d @@ -0,0 +1,13 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libbitflags-6436427193246fd0.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/iter.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/traits.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/public.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/internal.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/external.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libbitflags-6436427193246fd0.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/iter.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/traits.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/public.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/internal.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/external.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/bitflags-6436427193246fd0.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/iter.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/traits.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/public.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/internal.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/external.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/iter.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/parser.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/traits.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/public.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/internal.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/bitflags-2.9.4/src/external.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/byteorder-ea67fe27d5fb2a4b.byteorder.443fd7c268c051fb-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/byteorder-ea67fe27d5fb2a4b.byteorder.443fd7c268c051fb-cgu.0.rcgu.o new file mode 100644 index 0000000..c124486 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/byteorder-ea67fe27d5fb2a4b.byteorder.443fd7c268c051fb-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/byteorder-ea67fe27d5fb2a4b.d b/src-tauri/html_scraper/target/debug/deps/byteorder-ea67fe27d5fb2a4b.d new file mode 100644 index 0000000..bb3745d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/byteorder-ea67fe27d5fb2a4b.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libbyteorder-ea67fe27d5fb2a4b.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/byteorder-1.5.0/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/byteorder-1.5.0/src/io.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libbyteorder-ea67fe27d5fb2a4b.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/byteorder-1.5.0/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/byteorder-1.5.0/src/io.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/byteorder-ea67fe27d5fb2a4b.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/byteorder-1.5.0/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/byteorder-1.5.0/src/io.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/byteorder-1.5.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/byteorder-1.5.0/src/io.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/cfg_if-9de2544adff585b5.cfg_if.8dbb0e1ae7ab0909-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/cfg_if-9de2544adff585b5.cfg_if.8dbb0e1ae7ab0909-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/cfg_if-9de2544adff585b5.cfg_if.8dbb0e1ae7ab0909-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/cfg_if-9de2544adff585b5.d b/src-tauri/html_scraper/target/debug/deps/cfg_if-9de2544adff585b5.d new file mode 100644 index 0000000..47e659d --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/cfg_if-9de2544adff585b5.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libcfg_if-9de2544adff585b5.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cfg-if-1.0.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libcfg_if-9de2544adff585b5.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cfg-if-1.0.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/cfg_if-9de2544adff585b5.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cfg-if-1.0.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cfg-if-1.0.3/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.0.rcgu.o new file mode 100644 index 0000000..bafbfae Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.1.rcgu.o b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.1.rcgu.o new file mode 100644 index 0000000..1dabc46 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.1.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.2.rcgu.o b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.2.rcgu.o new file mode 100644 index 0000000..5197a91 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.2.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.3.rcgu.o b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.3.rcgu.o new file mode 100644 index 0000000..eed370e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.3.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.4.rcgu.o b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.4.rcgu.o new file mode 100644 index 0000000..68fa6f8 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.cssparser.56cdc9cc6301d418-cgu.4.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.d b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.d new file mode 100644 index 0000000..e3040df --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.d @@ -0,0 +1,17 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libcssparser-0a8e275ecee5c971.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/rules_and_declarations.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/tokenizer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/color.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/cow_rc_str.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/from_bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/nth.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/serializer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/unicode_range.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libcssparser-0a8e275ecee5c971.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/rules_and_declarations.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/tokenizer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/color.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/cow_rc_str.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/from_bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/nth.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/serializer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/unicode_range.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/cssparser-0a8e275ecee5c971.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/rules_and_declarations.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/tokenizer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/color.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/cow_rc_str.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/from_bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/nth.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/serializer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/unicode_range.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/rules_and_declarations.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/tokenizer.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/color.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/cow_rc_str.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/from_bytes.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/nth.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/parser.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/serializer.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-0.31.2/src/unicode_range.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/cssparser_macros-309442e57d19e9f2.d b/src-tauri/html_scraper/target/debug/deps/cssparser_macros-309442e57d19e9f2.d new file mode 100644 index 0000000..5ce97b5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/cssparser_macros-309442e57d19e9f2.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libcssparser_macros-309442e57d19e9f2.dylib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-macros-0.6.1/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/cssparser_macros-309442e57d19e9f2.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-macros-0.6.1/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/cssparser-macros-0.6.1/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/debug_unreachable-e1098322c060b823.d b/src-tauri/html_scraper/target/debug/deps/debug_unreachable-e1098322c060b823.d new file mode 100644 index 0000000..27ab8a0 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/debug_unreachable-e1098322c060b823.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libdebug_unreachable-e1098322c060b823.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/new_debug_unreachable-1.0.6/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libdebug_unreachable-e1098322c060b823.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/new_debug_unreachable-1.0.6/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/debug_unreachable-e1098322c060b823.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/new_debug_unreachable-1.0.6/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/new_debug_unreachable-1.0.6/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/debug_unreachable-e1098322c060b823.debug_unreachable.f6a221ab3b093fc4-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/debug_unreachable-e1098322c060b823.debug_unreachable.f6a221ab3b093fc4-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/debug_unreachable-e1098322c060b823.debug_unreachable.f6a221ab3b093fc4-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/derive_more-4900dcbe6b0f93e2.d b/src-tauri/html_scraper/target/debug/deps/derive_more-4900dcbe6b0f93e2.d new file mode 100644 index 0000000..4228aa3 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/derive_more-4900dcbe6b0f93e2.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libderive_more-4900dcbe6b0f93e2.dylib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/syn_compat.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/utils.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/add_assign_like.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/add_helpers.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/add_like.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/derive_more-4900dcbe6b0f93e2.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/syn_compat.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/utils.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/add_assign_like.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/add_helpers.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/add_like.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/syn_compat.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/utils.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/add_assign_like.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/add_helpers.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/derive_more-0.99.20/src/add_like.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/dtoa-49a075b5dce0e654.d b/src-tauri/html_scraper/target/debug/deps/dtoa-49a075b5dce0e654.d new file mode 100644 index 0000000..b4ee216 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/dtoa-49a075b5dce0e654.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libdtoa-49a075b5dce0e654.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/diyfp.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/dtoa.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libdtoa-49a075b5dce0e654.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/diyfp.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/dtoa.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/dtoa-49a075b5dce0e654.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/diyfp.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/dtoa.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/diyfp.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-1.0.10/src/dtoa.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/dtoa-49a075b5dce0e654.dtoa.e89bdeb55a03d729-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/dtoa-49a075b5dce0e654.dtoa.e89bdeb55a03d729-cgu.0.rcgu.o new file mode 100644 index 0000000..d2ef7f1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/dtoa-49a075b5dce0e654.dtoa.e89bdeb55a03d729-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/dtoa_short-29e165cd81f10ade.d b/src-tauri/html_scraper/target/debug/deps/dtoa_short-29e165cd81f10ade.d new file mode 100644 index 0000000..6dc8e84 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/dtoa_short-29e165cd81f10ade.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libdtoa_short-29e165cd81f10ade.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-short-0.3.5/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libdtoa_short-29e165cd81f10ade.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-short-0.3.5/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/dtoa_short-29e165cd81f10ade.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-short-0.3.5/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/dtoa-short-0.3.5/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/dtoa_short-29e165cd81f10ade.dtoa_short.6a4908e62f78fba9-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/dtoa_short-29e165cd81f10ade.dtoa_short.6a4908e62f78fba9-cgu.0.rcgu.o new file mode 100644 index 0000000..dd08bf6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/dtoa_short-29e165cd81f10ade.dtoa_short.6a4908e62f78fba9-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/ego_tree-ce169384d68da859.d b/src-tauri/html_scraper/target/debug/deps/ego_tree-ce169384d68da859.d new file mode 100644 index 0000000..be80efb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/ego_tree-ce169384d68da859.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libego_tree-ce169384d68da859.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ego-tree-0.6.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ego-tree-0.6.3/src/iter.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libego_tree-ce169384d68da859.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ego-tree-0.6.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ego-tree-0.6.3/src/iter.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/ego_tree-ce169384d68da859.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ego-tree-0.6.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ego-tree-0.6.3/src/iter.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ego-tree-0.6.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ego-tree-0.6.3/src/iter.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/ego_tree-ce169384d68da859.ego_tree.64d46a3d8b59774f-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/ego_tree-ce169384d68da859.ego_tree.64d46a3d8b59774f-cgu.0.rcgu.o new file mode 100644 index 0000000..9425d33 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/ego_tree-ce169384d68da859.ego_tree.64d46a3d8b59774f-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/futf-7c3e714c118e04be.d b/src-tauri/html_scraper/target/debug/deps/futf-7c3e714c118e04be.d new file mode 100644 index 0000000..17e553a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/futf-7c3e714c118e04be.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libfutf-7c3e714c118e04be.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/futf-0.1.5/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libfutf-7c3e714c118e04be.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/futf-0.1.5/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/futf-7c3e714c118e04be.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/futf-0.1.5/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/futf-0.1.5/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/futf-7c3e714c118e04be.futf.ffa191e414c6c955-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/futf-7c3e714c118e04be.futf.ffa191e414c6c955-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/futf-7c3e714c118e04be.futf.ffa191e414c6c955-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/fxhash-213b1db37a640cd5.d b/src-tauri/html_scraper/target/debug/deps/fxhash-213b1db37a640cd5.d new file mode 100644 index 0000000..005ffda --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/fxhash-213b1db37a640cd5.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libfxhash-213b1db37a640cd5.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/fxhash-0.2.1/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libfxhash-213b1db37a640cd5.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/fxhash-0.2.1/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/fxhash-213b1db37a640cd5.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/fxhash-0.2.1/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/fxhash-0.2.1/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/fxhash-213b1db37a640cd5.fxhash.ebb04e844a81fe44-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/fxhash-213b1db37a640cd5.fxhash.ebb04e844a81fe44-cgu.0.rcgu.o new file mode 100644 index 0000000..f489239 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/fxhash-213b1db37a640cd5.fxhash.ebb04e844a81fe44-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.d b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.d new file mode 100644 index 0000000..2b13223 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libgetopts-65d6380d9a0b33ed.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getopts-0.2.24/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libgetopts-65d6380d9a0b33ed.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getopts-0.2.24/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getopts-0.2.24/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getopts-0.2.24/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.0.rcgu.o new file mode 100644 index 0000000..855cf26 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.1.rcgu.o b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.1.rcgu.o new file mode 100644 index 0000000..fe74807 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.1.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.2.rcgu.o b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.2.rcgu.o new file mode 100644 index 0000000..a5fcfad Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.2.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.3.rcgu.o b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.3.rcgu.o new file mode 100644 index 0000000..559b80f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.3.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.4.rcgu.o b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.4.rcgu.o new file mode 100644 index 0000000..e3560a3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/getopts-65d6380d9a0b33ed.getopts.e908b8190e67a0f8-cgu.4.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/getrandom-009f56382c9c07b5.d b/src-tauri/html_scraper/target/debug/deps/getrandom-009f56382c9c07b5.d new file mode 100644 index 0000000..fe4fe53 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/getrandom-009f56382c9c07b5.d @@ -0,0 +1,12 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libgetrandom-009f56382c9c07b5.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/error_impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/util_libc.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/getentropy.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libgetrandom-009f56382c9c07b5.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/error_impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/util_libc.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/getentropy.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/getrandom-009f56382c9c07b5.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/error_impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/util_libc.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/getentropy.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/util.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/error_impls.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/util_libc.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.2.16/src/getentropy.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/getrandom-328bde64f6e6b3d3.d b/src-tauri/html_scraper/target/debug/deps/getrandom-328bde64f6e6b3d3.d new file mode 100644 index 0000000..c120605 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/getrandom-328bde64f6e6b3d3.d @@ -0,0 +1,13 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libgetrandom-328bde64f6e6b3d3.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/../README.md /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends/getentropy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends/../util_libc.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libgetrandom-328bde64f6e6b3d3.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/../README.md /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends/getentropy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends/../util_libc.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/getrandom-328bde64f6e6b3d3.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/../README.md /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends/getentropy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends/../util_libc.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/util.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/../README.md: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends/getentropy.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/getrandom-0.3.3/src/backends/../util_libc.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/getrandom-328bde64f6e6b3d3.getrandom.23514f9a2e17d5ce-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/getrandom-328bde64f6e6b3d3.getrandom.23514f9a2e17d5ce-cgu.0.rcgu.o new file mode 100644 index 0000000..f3fa174 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/getrandom-328bde64f6e6b3d3.getrandom.23514f9a2e17d5ce-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html5ever-05679ef9eb9d27e8.d b/src-tauri/html_scraper/target/debug/deps/html5ever-05679ef9eb9d27e8.d new file mode 100644 index 0000000..df6f1ea --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/html5ever-05679ef9eb9d27e8.d @@ -0,0 +1,22 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libhtml5ever-05679ef9eb9d27e8.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/util/str.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/driver.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/serialize/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/char_ref/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/interface.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/states.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/tag_sets.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/data.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/types.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/out/rules.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libhtml5ever-05679ef9eb9d27e8.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/util/str.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/driver.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/serialize/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/char_ref/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/interface.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/states.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/tag_sets.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/data.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/types.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/out/rules.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/html5ever-05679ef9eb9d27e8.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/util/str.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/driver.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/serialize/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/char_ref/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/interface.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/states.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/tag_sets.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/data.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/types.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/out/rules.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/util/str.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/driver.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/serialize/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/char_ref/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/interface.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tokenizer/states.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/tag_sets.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/data.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/html5ever-0.27.0/src/tree_builder/types.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/out/rules.rs: + +# env-dep:OUT_DIR=/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/html5ever-599159e7782b5aea/out diff --git a/src-tauri/html_scraper/target/debug/deps/html5ever-05679ef9eb9d27e8.html5ever.d8cf0f1d02136dd2-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html5ever-05679ef9eb9d27e8.html5ever.d8cf0f1d02136dd2-cgu.0.rcgu.o new file mode 100644 index 0000000..310c66d Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html5ever-05679ef9eb9d27e8.html5ever.d8cf0f1d02136dd2-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html5ever-05679ef9eb9d27e8.html5ever.d8cf0f1d02136dd2-cgu.1.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html5ever-05679ef9eb9d27e8.html5ever.d8cf0f1d02136dd2-cgu.1.rcgu.o new file mode 100644 index 0000000..7718ca4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html5ever-05679ef9eb9d27e8.html5ever.d8cf0f1d02136dd2-cgu.1.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4 b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4 new file mode 100755 index 0000000..e845f06 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4 differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0fcsk5p6640nhux62do561e5m.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0fcsk5p6640nhux62do561e5m.rcgu.o new file mode 100644 index 0000000..73237af Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0fcsk5p6640nhux62do561e5m.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0lv1mmoupz9d2b3tsknm8hutu.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0lv1mmoupz9d2b3tsknm8hutu.rcgu.o new file mode 100644 index 0000000..0a43811 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0lv1mmoupz9d2b3tsknm8hutu.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0rc2l8pajzz4gn7cbc7dqx9jk.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0rc2l8pajzz4gn7cbc7dqx9jk.rcgu.o new file mode 100644 index 0000000..e5707d2 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0rc2l8pajzz4gn7cbc7dqx9jk.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0yspoa633qln51fo83mxqf1n4.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0yspoa633qln51fo83mxqf1n4.rcgu.o new file mode 100644 index 0000000..2b7a222 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.0yspoa633qln51fo83mxqf1n4.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.17irvcia3duzq2q2yty2ykg4r.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.17irvcia3duzq2q2yty2ykg4r.rcgu.o new file mode 100644 index 0000000..926b7cc Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.17irvcia3duzq2q2yty2ykg4r.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.1jfw1o0xa71tt5aq2hwesyntw.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.1jfw1o0xa71tt5aq2hwesyntw.rcgu.o new file mode 100644 index 0000000..2923fc9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.1jfw1o0xa71tt5aq2hwesyntw.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.1qjnh3krkjn4vhomsnc78lrsb.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.1qjnh3krkjn4vhomsnc78lrsb.rcgu.o new file mode 100644 index 0000000..d90d152 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.1qjnh3krkjn4vhomsnc78lrsb.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.233dygu5oemottzw6otgw9n8u.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.233dygu5oemottzw6otgw9n8u.rcgu.o new file mode 100644 index 0000000..ef81c9e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.233dygu5oemottzw6otgw9n8u.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.26sb7rgkr7wddh9b0t5gdjp6m.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.26sb7rgkr7wddh9b0t5gdjp6m.rcgu.o new file mode 100644 index 0000000..9495466 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.26sb7rgkr7wddh9b0t5gdjp6m.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.26vljy91qcv7539nvfgh5xd99.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.26vljy91qcv7539nvfgh5xd99.rcgu.o new file mode 100644 index 0000000..4f9d3b6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.26vljy91qcv7539nvfgh5xd99.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.35x00blx5saj5o1842c4tptbc.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.35x00blx5saj5o1842c4tptbc.rcgu.o new file mode 100644 index 0000000..b6f8e9d Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.35x00blx5saj5o1842c4tptbc.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.38ad93pjtjpnvx08yejfcu8w3.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.38ad93pjtjpnvx08yejfcu8w3.rcgu.o new file mode 100644 index 0000000..2456fa9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.38ad93pjtjpnvx08yejfcu8w3.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.3f2zivfsult6pdsh53l8cujpl.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.3f2zivfsult6pdsh53l8cujpl.rcgu.o new file mode 100644 index 0000000..3b11151 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.3f2zivfsult6pdsh53l8cujpl.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.3n4f594le6oudtkcwz57j5o86.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.3n4f594le6oudtkcwz57j5o86.rcgu.o new file mode 100644 index 0000000..3dd0cb4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.3n4f594le6oudtkcwz57j5o86.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.3pp2h5b4ctd7pdyw2l38lyslh.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.3pp2h5b4ctd7pdyw2l38lyslh.rcgu.o new file mode 100644 index 0000000..0e69e5f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.3pp2h5b4ctd7pdyw2l38lyslh.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.490hh0cdvmtz0ui41hfslqzg4.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.490hh0cdvmtz0ui41hfslqzg4.rcgu.o new file mode 100644 index 0000000..8023410 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.490hh0cdvmtz0ui41hfslqzg4.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.4odrr8frdyp89dnhj8f1vjoir.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.4odrr8frdyp89dnhj8f1vjoir.rcgu.o new file mode 100644 index 0000000..16ca3f1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.4odrr8frdyp89dnhj8f1vjoir.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.5ndejy401jrgeyx0cgghjw105.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.5ndejy401jrgeyx0cgghjw105.rcgu.o new file mode 100644 index 0000000..0ce0e32 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.5ndejy401jrgeyx0cgghjw105.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.6qamp1awtw2pt9zsjj4ydtv8t.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.6qamp1awtw2pt9zsjj4ydtv8t.rcgu.o new file mode 100644 index 0000000..541a332 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.6qamp1awtw2pt9zsjj4ydtv8t.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.70omcky5x2tj76lsdy8b3o2l6.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.70omcky5x2tj76lsdy8b3o2l6.rcgu.o new file mode 100644 index 0000000..d51bcaa Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.70omcky5x2tj76lsdy8b3o2l6.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.726sor76cik6i9d5nfxa3fgj8.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.726sor76cik6i9d5nfxa3fgj8.rcgu.o new file mode 100644 index 0000000..e6c994b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.726sor76cik6i9d5nfxa3fgj8.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.76hqp2u3747liovxqib89kwks.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.76hqp2u3747liovxqib89kwks.rcgu.o new file mode 100644 index 0000000..c79fc36 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.76hqp2u3747liovxqib89kwks.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.77q5twacv6b41mehd4zfes6vd.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.77q5twacv6b41mehd4zfes6vd.rcgu.o new file mode 100644 index 0000000..f6e9612 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.77q5twacv6b41mehd4zfes6vd.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.7s4qd3pxcyrfo9b9vroupubq5.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.7s4qd3pxcyrfo9b9vroupubq5.rcgu.o new file mode 100644 index 0000000..ceee5ab Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.7s4qd3pxcyrfo9b9vroupubq5.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.7zhjmr777hvu459ex8pmwlgvi.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.7zhjmr777hvu459ex8pmwlgvi.rcgu.o new file mode 100644 index 0000000..ae70ae0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.7zhjmr777hvu459ex8pmwlgvi.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.88o5p7bc6b00in5g8diw4skk3.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.88o5p7bc6b00in5g8diw4skk3.rcgu.o new file mode 100644 index 0000000..d617ac8 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.88o5p7bc6b00in5g8diw4skk3.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.89ltyufelia3ztv9eg7cngsiz.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.89ltyufelia3ztv9eg7cngsiz.rcgu.o new file mode 100644 index 0000000..5954e92 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.89ltyufelia3ztv9eg7cngsiz.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.8mpkm3obli6gu0cjt15zvy71m.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.8mpkm3obli6gu0cjt15zvy71m.rcgu.o new file mode 100644 index 0000000..600c441 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.8mpkm3obli6gu0cjt15zvy71m.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.8rxju4hhiq6wux82l6yiizkgd.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.8rxju4hhiq6wux82l6yiizkgd.rcgu.o new file mode 100644 index 0000000..86075c6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.8rxju4hhiq6wux82l6yiizkgd.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.8tza4jqu1gm9jh0ur7c8u4tzi.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.8tza4jqu1gm9jh0ur7c8u4tzi.rcgu.o new file mode 100644 index 0000000..ec017e1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.8tza4jqu1gm9jh0ur7c8u4tzi.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.962gt8otmgg19vybis8vnqowe.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.962gt8otmgg19vybis8vnqowe.rcgu.o new file mode 100644 index 0000000..9adca25 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.962gt8otmgg19vybis8vnqowe.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.a5pftzzs9gp08dycqcefqtez3.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.a5pftzzs9gp08dycqcefqtez3.rcgu.o new file mode 100644 index 0000000..c392175 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.a5pftzzs9gp08dycqcefqtez3.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.atm1ikwm5ete2bpwsg0zzwzub.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.atm1ikwm5ete2bpwsg0zzwzub.rcgu.o new file mode 100644 index 0000000..66c86b4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.atm1ikwm5ete2bpwsg0zzwzub.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.b12r6v1udsr6tk3v1gmt7g6h3.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.b12r6v1udsr6tk3v1gmt7g6h3.rcgu.o new file mode 100644 index 0000000..340c47b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.b12r6v1udsr6tk3v1gmt7g6h3.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.b59ofr9ymqm4k9j0mgk91aj3a.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.b59ofr9ymqm4k9j0mgk91aj3a.rcgu.o new file mode 100644 index 0000000..2f8c02f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.b59ofr9ymqm4k9j0mgk91aj3a.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.bckj4pq8r3y675k238szfito9.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.bckj4pq8r3y675k238szfito9.rcgu.o new file mode 100644 index 0000000..36078df Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.bckj4pq8r3y675k238szfito9.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.c3rmrr85ht2zojihk5adrhhlm.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.c3rmrr85ht2zojihk5adrhhlm.rcgu.o new file mode 100644 index 0000000..02d81ba Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.c3rmrr85ht2zojihk5adrhhlm.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.cgufaxjv7gcvm0rfr63u6iu8a.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.cgufaxjv7gcvm0rfr63u6iu8a.rcgu.o new file mode 100644 index 0000000..30502c0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.cgufaxjv7gcvm0rfr63u6iu8a.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.cqz2n9ptrsu52ia9zlrgxvm8f.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.cqz2n9ptrsu52ia9zlrgxvm8f.rcgu.o new file mode 100644 index 0000000..43682d5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.cqz2n9ptrsu52ia9zlrgxvm8f.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.cwxjdol3rqcaeuy9f9veuiikc.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.cwxjdol3rqcaeuy9f9veuiikc.rcgu.o new file mode 100644 index 0000000..886d1b6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.cwxjdol3rqcaeuy9f9veuiikc.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.d b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.d new file mode 100644 index 0000000..a4acd11 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4: src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.d: src/lib.rs + +src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.d2ishb7f5q91fc4yvgnkim9ba.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.d2ishb7f5q91fc4yvgnkim9ba.rcgu.o new file mode 100644 index 0000000..a79adc6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.d2ishb7f5q91fc4yvgnkim9ba.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.dlcz24gcirwy97wt2bgol3ggj.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.dlcz24gcirwy97wt2bgol3ggj.rcgu.o new file mode 100644 index 0000000..7c51d8c Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.dlcz24gcirwy97wt2bgol3ggj.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.dvqjbjk7knm8idwr6dekzfdqm.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.dvqjbjk7knm8idwr6dekzfdqm.rcgu.o new file mode 100644 index 0000000..63484f9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.dvqjbjk7knm8idwr6dekzfdqm.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.dy8l49glza8fngu15t3426uka.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.dy8l49glza8fngu15t3426uka.rcgu.o new file mode 100644 index 0000000..d8655dc Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.dy8l49glza8fngu15t3426uka.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.egzmj45w6ie3mmtfmtk69befw.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.egzmj45w6ie3mmtfmtk69befw.rcgu.o new file mode 100644 index 0000000..6a5ac10 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.egzmj45w6ie3mmtfmtk69befw.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.ela3k6e9d7iwlu6pryv95glg9.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.ela3k6e9d7iwlu6pryv95glg9.rcgu.o new file mode 100644 index 0000000..9efd492 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.ela3k6e9d7iwlu6pryv95glg9.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.en6fxehcklkge1kilqu1ld4b1.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.en6fxehcklkge1kilqu1ld4b1.rcgu.o new file mode 100644 index 0000000..e83e4a9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.en6fxehcklkge1kilqu1ld4b1.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.f2hq9dlrbzf6msnd4nv213mp9.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.f2hq9dlrbzf6msnd4nv213mp9.rcgu.o new file mode 100644 index 0000000..9744542 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-7342f3637c7ad7f4.f2hq9dlrbzf6msnd4nv213mp9.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.05a6ledm442jo1gucysw1iy2z.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.05a6ledm442jo1gucysw1iy2z.rcgu.o new file mode 100644 index 0000000..6b3bf74 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.05a6ledm442jo1gucysw1iy2z.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.05chzh1mrghd3iwcetxqdf9bw.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.05chzh1mrghd3iwcetxqdf9bw.rcgu.o new file mode 100644 index 0000000..cd80156 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.05chzh1mrghd3iwcetxqdf9bw.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.16x6yclox1660fea03vwrbdzd.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.16x6yclox1660fea03vwrbdzd.rcgu.o new file mode 100644 index 0000000..7296bd3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.16x6yclox1660fea03vwrbdzd.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.1stwb7jdagsfck60n0ggk68n5.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.1stwb7jdagsfck60n0ggk68n5.rcgu.o new file mode 100644 index 0000000..dc2a437 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.1stwb7jdagsfck60n0ggk68n5.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.1u5v5rxzv4wnoop5ia95w49pj.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.1u5v5rxzv4wnoop5ia95w49pj.rcgu.o new file mode 100644 index 0000000..80109f2 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.1u5v5rxzv4wnoop5ia95w49pj.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.1xxmhia9kqr2fen0aqth4lgi2.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.1xxmhia9kqr2fen0aqth4lgi2.rcgu.o new file mode 100644 index 0000000..f33e827 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.1xxmhia9kqr2fen0aqth4lgi2.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.243zektbon76lz4jau4xt9iqm.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.243zektbon76lz4jau4xt9iqm.rcgu.o new file mode 100644 index 0000000..5fd01ec Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.243zektbon76lz4jau4xt9iqm.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.2lvyx338e47biinqax6gmkrko.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.2lvyx338e47biinqax6gmkrko.rcgu.o new file mode 100644 index 0000000..a33494e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.2lvyx338e47biinqax6gmkrko.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.2mn8jkuf32lyu5ug7ekt3vvmd.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.2mn8jkuf32lyu5ug7ekt3vvmd.rcgu.o new file mode 100644 index 0000000..bc7a82b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.2mn8jkuf32lyu5ug7ekt3vvmd.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.2s48w3375yopeg099qp6t5i4z.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.2s48w3375yopeg099qp6t5i4z.rcgu.o new file mode 100644 index 0000000..0dbbda5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.2s48w3375yopeg099qp6t5i4z.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.34a5zqftso1nwi6bs3s4sk3ke.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.34a5zqftso1nwi6bs3s4sk3ke.rcgu.o new file mode 100644 index 0000000..74362a0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.34a5zqftso1nwi6bs3s4sk3ke.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.4nj10wf1h4hzsfuynqbvv0fr4.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.4nj10wf1h4hzsfuynqbvv0fr4.rcgu.o new file mode 100644 index 0000000..8158d63 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.4nj10wf1h4hzsfuynqbvv0fr4.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.4sgt24yjv7uia1rpgx9f877ee.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.4sgt24yjv7uia1rpgx9f877ee.rcgu.o new file mode 100644 index 0000000..8adcf55 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.4sgt24yjv7uia1rpgx9f877ee.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.5ag3o1w3blfhe071d46d9h8fy.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.5ag3o1w3blfhe071d46d9h8fy.rcgu.o new file mode 100644 index 0000000..eb520a9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.5ag3o1w3blfhe071d46d9h8fy.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.5e07khggczo8grt88x9i7erto.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.5e07khggczo8grt88x9i7erto.rcgu.o new file mode 100644 index 0000000..886c135 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.5e07khggczo8grt88x9i7erto.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.5w6s4xyqkj1xm1qxyvymvwdbc.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.5w6s4xyqkj1xm1qxyvymvwdbc.rcgu.o new file mode 100644 index 0000000..627e690 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.5w6s4xyqkj1xm1qxyvymvwdbc.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.6817i3jciu74vc3dhj8y17aa2.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.6817i3jciu74vc3dhj8y17aa2.rcgu.o new file mode 100644 index 0000000..ea23a18 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.6817i3jciu74vc3dhj8y17aa2.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.6az7uphpl02i4avsk3a9hg97v.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.6az7uphpl02i4avsk3a9hg97v.rcgu.o new file mode 100644 index 0000000..f099dc5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.6az7uphpl02i4avsk3a9hg97v.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.70vofehzcthuhi40tmkvs96im.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.70vofehzcthuhi40tmkvs96im.rcgu.o new file mode 100644 index 0000000..e77b020 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.70vofehzcthuhi40tmkvs96im.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.78d3jzr1zep8upbt038or67le.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.78d3jzr1zep8upbt038or67le.rcgu.o new file mode 100644 index 0000000..147a7ea Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.78d3jzr1zep8upbt038or67le.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.79f2qavqcxsebur5gz2rry5zk.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.79f2qavqcxsebur5gz2rry5zk.rcgu.o new file mode 100644 index 0000000..c66e719 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.79f2qavqcxsebur5gz2rry5zk.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.7qrcnk7rog5oepgx6pegt2wzo.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.7qrcnk7rog5oepgx6pegt2wzo.rcgu.o new file mode 100644 index 0000000..9341d89 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.7qrcnk7rog5oepgx6pegt2wzo.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.7yc1jl711aez0bjkzo1o01waw.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.7yc1jl711aez0bjkzo1o01waw.rcgu.o new file mode 100644 index 0000000..19d38c5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.7yc1jl711aez0bjkzo1o01waw.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.80uysws5vhhcfiyq9nic4fdwo.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.80uysws5vhhcfiyq9nic4fdwo.rcgu.o new file mode 100644 index 0000000..b1c869b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.80uysws5vhhcfiyq9nic4fdwo.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.82fxdn2ehecz9n39f82b6b4fb.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.82fxdn2ehecz9n39f82b6b4fb.rcgu.o new file mode 100644 index 0000000..d6a8d20 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.82fxdn2ehecz9n39f82b6b4fb.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.8ucb4g9vn0csrqdg2g7dgdax5.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.8ucb4g9vn0csrqdg2g7dgdax5.rcgu.o new file mode 100644 index 0000000..d68d523 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.8ucb4g9vn0csrqdg2g7dgdax5.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.91edmc95ooazz02973f88yj7b.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.91edmc95ooazz02973f88yj7b.rcgu.o new file mode 100644 index 0000000..39c6929 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.91edmc95ooazz02973f88yj7b.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.91ef7hs2am60yu9o03fd1ekx8.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.91ef7hs2am60yu9o03fd1ekx8.rcgu.o new file mode 100644 index 0000000..21b7d61 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.91ef7hs2am60yu9o03fd1ekx8.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.99jlkld7682hdghzkvam2tq8c.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.99jlkld7682hdghzkvam2tq8c.rcgu.o new file mode 100644 index 0000000..a80689f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.99jlkld7682hdghzkvam2tq8c.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.abh9r7pecmjzp0toy267fug24.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.abh9r7pecmjzp0toy267fug24.rcgu.o new file mode 100644 index 0000000..550955f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.abh9r7pecmjzp0toy267fug24.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.avfz260hoshohzg4acd3kbw10.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.avfz260hoshohzg4acd3kbw10.rcgu.o new file mode 100644 index 0000000..e063fdf Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.avfz260hoshohzg4acd3kbw10.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.awoydahoh83qpnn5fyieht4cd.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.awoydahoh83qpnn5fyieht4cd.rcgu.o new file mode 100644 index 0000000..ee0d9d8 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.awoydahoh83qpnn5fyieht4cd.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.bddc41bnkoos7s44jc3kvdc5x.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.bddc41bnkoos7s44jc3kvdc5x.rcgu.o new file mode 100644 index 0000000..ca2aa66 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.bddc41bnkoos7s44jc3kvdc5x.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.c0g2ui1n1zvke9c4alvr9n0o9.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.c0g2ui1n1zvke9c4alvr9n0o9.rcgu.o new file mode 100644 index 0000000..2ceb711 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.c0g2ui1n1zvke9c4alvr9n0o9.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.c3gpklby2ah3x08d1l1i0fflu.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.c3gpklby2ah3x08d1l1i0fflu.rcgu.o new file mode 100644 index 0000000..5bae350 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.c3gpklby2ah3x08d1l1i0fflu.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.c5bfqnj2m0qterp3rel36ng05.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.c5bfqnj2m0qterp3rel36ng05.rcgu.o new file mode 100644 index 0000000..919e1ea Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.c5bfqnj2m0qterp3rel36ng05.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.clyosjzsb1xhzciq3qvvwfsh8.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.clyosjzsb1xhzciq3qvvwfsh8.rcgu.o new file mode 100644 index 0000000..0fed0dd Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.clyosjzsb1xhzciq3qvvwfsh8.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.crhqry4ewjrecgeyoadxytteg.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.crhqry4ewjrecgeyoadxytteg.rcgu.o new file mode 100644 index 0000000..27fbb3b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.crhqry4ewjrecgeyoadxytteg.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.d b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.d new file mode 100644 index 0000000..5c20157 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libhtml_scraper-94aa862c9da7400c.rmeta: src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libhtml_scraper-94aa862c9da7400c.rlib: src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.d: src/lib.rs + +src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.d82211zvty1oq5m1q1twcdhjd.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.d82211zvty1oq5m1q1twcdhjd.rcgu.o new file mode 100644 index 0000000..40e236e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.d82211zvty1oq5m1q1twcdhjd.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.dj6fx2sc6j85j0b1pa1src98c.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.dj6fx2sc6j85j0b1pa1src98c.rcgu.o new file mode 100644 index 0000000..1a19428 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.dj6fx2sc6j85j0b1pa1src98c.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.dk872qge7yvm5fqqxrjo69r9w.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.dk872qge7yvm5fqqxrjo69r9w.rcgu.o new file mode 100644 index 0000000..6087aa3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.dk872qge7yvm5fqqxrjo69r9w.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.doep033if0jpgqu1ordr2l9m8.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.doep033if0jpgqu1ordr2l9m8.rcgu.o new file mode 100644 index 0000000..f2eac40 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.doep033if0jpgqu1ordr2l9m8.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.dv47t7wnxe8bkj61x2dae1g44.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.dv47t7wnxe8bkj61x2dae1g44.rcgu.o new file mode 100644 index 0000000..cd1dacd Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.dv47t7wnxe8bkj61x2dae1g44.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.engrpahpcqd41cxw5158s884n.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.engrpahpcqd41cxw5158s884n.rcgu.o new file mode 100644 index 0000000..ea194f4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.engrpahpcqd41cxw5158s884n.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.f01v3auyr8xc6l8jhxxo44iwg.rcgu.o b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.f01v3auyr8xc6l8jhxxo44iwg.rcgu.o new file mode 100644 index 0000000..06bd16a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/html_scraper-94aa862c9da7400c.f01v3auyr8xc6l8jhxxo44iwg.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/itoa-01bc225805719977.d b/src-tauri/html_scraper/target/debug/deps/itoa-01bc225805719977.d new file mode 100644 index 0000000..ec4bfac --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/itoa-01bc225805719977.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libitoa-01bc225805719977.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/itoa-1.0.15/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/itoa-1.0.15/src/udiv128.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libitoa-01bc225805719977.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/itoa-1.0.15/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/itoa-1.0.15/src/udiv128.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/itoa-01bc225805719977.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/itoa-1.0.15/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/itoa-1.0.15/src/udiv128.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/itoa-1.0.15/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/itoa-1.0.15/src/udiv128.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/itoa-01bc225805719977.itoa.4d428fd2eb19912f-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/itoa-01bc225805719977.itoa.4d428fd2eb19912f-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/itoa-01bc225805719977.itoa.4d428fd2eb19912f-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/libahash-ffd687c1479c7fc2.rlib b/src-tauri/html_scraper/target/debug/deps/libahash-ffd687c1479c7fc2.rlib new file mode 100644 index 0000000..3eaa056 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libahash-ffd687c1479c7fc2.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libahash-ffd687c1479c7fc2.rmeta b/src-tauri/html_scraper/target/debug/deps/libahash-ffd687c1479c7fc2.rmeta new file mode 100644 index 0000000..cc057b9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libahash-ffd687c1479c7fc2.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libaho_corasick-0c0a44cb2b404ece.rlib b/src-tauri/html_scraper/target/debug/deps/libaho_corasick-0c0a44cb2b404ece.rlib new file mode 100644 index 0000000..6f907a5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libaho_corasick-0c0a44cb2b404ece.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libaho_corasick-0c0a44cb2b404ece.rmeta b/src-tauri/html_scraper/target/debug/deps/libaho_corasick-0c0a44cb2b404ece.rmeta new file mode 100644 index 0000000..73ed008 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libaho_corasick-0c0a44cb2b404ece.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libautocfg-98a6c7819a03ebc1.rlib b/src-tauri/html_scraper/target/debug/deps/libautocfg-98a6c7819a03ebc1.rlib new file mode 100644 index 0000000..26502e1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libautocfg-98a6c7819a03ebc1.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libautocfg-98a6c7819a03ebc1.rmeta b/src-tauri/html_scraper/target/debug/deps/libautocfg-98a6c7819a03ebc1.rmeta new file mode 100644 index 0000000..828b6ad Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libautocfg-98a6c7819a03ebc1.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libbitflags-6436427193246fd0.rlib b/src-tauri/html_scraper/target/debug/deps/libbitflags-6436427193246fd0.rlib new file mode 100644 index 0000000..de73576 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libbitflags-6436427193246fd0.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libbitflags-6436427193246fd0.rmeta b/src-tauri/html_scraper/target/debug/deps/libbitflags-6436427193246fd0.rmeta new file mode 100644 index 0000000..21ad469 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libbitflags-6436427193246fd0.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libbyteorder-ea67fe27d5fb2a4b.rlib b/src-tauri/html_scraper/target/debug/deps/libbyteorder-ea67fe27d5fb2a4b.rlib new file mode 100644 index 0000000..e7ff273 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libbyteorder-ea67fe27d5fb2a4b.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libbyteorder-ea67fe27d5fb2a4b.rmeta b/src-tauri/html_scraper/target/debug/deps/libbyteorder-ea67fe27d5fb2a4b.rmeta new file mode 100644 index 0000000..71214d3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libbyteorder-ea67fe27d5fb2a4b.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libc-01916927d843a511.d b/src-tauri/html_scraper/target/debug/deps/libc-01916927d843a511.d new file mode 100644 index 0000000..507b868 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/libc-01916927d843a511.d @@ -0,0 +1,16 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/liblibc-01916927d843a511.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/new/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/types.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/liblibc-01916927d843a511.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/new/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/types.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libc-01916927d843a511.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/new/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/types.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/new/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/primitives.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/types.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/libc-56734dad6cfe82f6.d b/src-tauri/html_scraper/target/debug/deps/libc-56734dad6cfe82f6.d new file mode 100644 index 0000000..7d53b54 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/libc-56734dad6cfe82f6.d @@ -0,0 +1,16 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/liblibc-56734dad6cfe82f6.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/new/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/types.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/liblibc-56734dad6cfe82f6.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/new/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/types.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libc-56734dad6cfe82f6.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/new/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/types.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/new/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/primitives.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/libc-0.2.176/src/types.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/libc-56734dad6cfe82f6.libc.52c187f5e3b2f141-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/libc-56734dad6cfe82f6.libc.52c187f5e3b2f141-cgu.0.rcgu.o new file mode 100644 index 0000000..746c734 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libc-56734dad6cfe82f6.libc.52c187f5e3b2f141-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/libcfg_if-9de2544adff585b5.rlib b/src-tauri/html_scraper/target/debug/deps/libcfg_if-9de2544adff585b5.rlib new file mode 100644 index 0000000..3a8c9d2 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libcfg_if-9de2544adff585b5.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libcfg_if-9de2544adff585b5.rmeta b/src-tauri/html_scraper/target/debug/deps/libcfg_if-9de2544adff585b5.rmeta new file mode 100644 index 0000000..3ed2397 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libcfg_if-9de2544adff585b5.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libcssparser-0a8e275ecee5c971.rlib b/src-tauri/html_scraper/target/debug/deps/libcssparser-0a8e275ecee5c971.rlib new file mode 100644 index 0000000..92573dd Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libcssparser-0a8e275ecee5c971.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libcssparser-0a8e275ecee5c971.rmeta b/src-tauri/html_scraper/target/debug/deps/libcssparser-0a8e275ecee5c971.rmeta new file mode 100644 index 0000000..bcf788a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libcssparser-0a8e275ecee5c971.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libcssparser_macros-309442e57d19e9f2.dylib b/src-tauri/html_scraper/target/debug/deps/libcssparser_macros-309442e57d19e9f2.dylib new file mode 100755 index 0000000..3bddb60 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libcssparser_macros-309442e57d19e9f2.dylib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libdebug_unreachable-e1098322c060b823.rlib b/src-tauri/html_scraper/target/debug/deps/libdebug_unreachable-e1098322c060b823.rlib new file mode 100644 index 0000000..92e5bfd Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libdebug_unreachable-e1098322c060b823.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libdebug_unreachable-e1098322c060b823.rmeta b/src-tauri/html_scraper/target/debug/deps/libdebug_unreachable-e1098322c060b823.rmeta new file mode 100644 index 0000000..369f43e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libdebug_unreachable-e1098322c060b823.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libderive_more-4900dcbe6b0f93e2.dylib b/src-tauri/html_scraper/target/debug/deps/libderive_more-4900dcbe6b0f93e2.dylib new file mode 100755 index 0000000..06724c7 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libderive_more-4900dcbe6b0f93e2.dylib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libdtoa-49a075b5dce0e654.rlib b/src-tauri/html_scraper/target/debug/deps/libdtoa-49a075b5dce0e654.rlib new file mode 100644 index 0000000..8220006 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libdtoa-49a075b5dce0e654.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libdtoa-49a075b5dce0e654.rmeta b/src-tauri/html_scraper/target/debug/deps/libdtoa-49a075b5dce0e654.rmeta new file mode 100644 index 0000000..b7f53ba Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libdtoa-49a075b5dce0e654.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libdtoa_short-29e165cd81f10ade.rlib b/src-tauri/html_scraper/target/debug/deps/libdtoa_short-29e165cd81f10ade.rlib new file mode 100644 index 0000000..f727658 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libdtoa_short-29e165cd81f10ade.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libdtoa_short-29e165cd81f10ade.rmeta b/src-tauri/html_scraper/target/debug/deps/libdtoa_short-29e165cd81f10ade.rmeta new file mode 100644 index 0000000..4fd73e3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libdtoa_short-29e165cd81f10ade.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libego_tree-ce169384d68da859.rlib b/src-tauri/html_scraper/target/debug/deps/libego_tree-ce169384d68da859.rlib new file mode 100644 index 0000000..82f1fb2 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libego_tree-ce169384d68da859.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libego_tree-ce169384d68da859.rmeta b/src-tauri/html_scraper/target/debug/deps/libego_tree-ce169384d68da859.rmeta new file mode 100644 index 0000000..9b2b933 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libego_tree-ce169384d68da859.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libfutf-7c3e714c118e04be.rlib b/src-tauri/html_scraper/target/debug/deps/libfutf-7c3e714c118e04be.rlib new file mode 100644 index 0000000..e852977 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libfutf-7c3e714c118e04be.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libfutf-7c3e714c118e04be.rmeta b/src-tauri/html_scraper/target/debug/deps/libfutf-7c3e714c118e04be.rmeta new file mode 100644 index 0000000..b42f20e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libfutf-7c3e714c118e04be.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libfxhash-213b1db37a640cd5.rlib b/src-tauri/html_scraper/target/debug/deps/libfxhash-213b1db37a640cd5.rlib new file mode 100644 index 0000000..56d6b36 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libfxhash-213b1db37a640cd5.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libfxhash-213b1db37a640cd5.rmeta b/src-tauri/html_scraper/target/debug/deps/libfxhash-213b1db37a640cd5.rmeta new file mode 100644 index 0000000..93829d3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libfxhash-213b1db37a640cd5.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libgetopts-65d6380d9a0b33ed.rlib b/src-tauri/html_scraper/target/debug/deps/libgetopts-65d6380d9a0b33ed.rlib new file mode 100644 index 0000000..8f2f5e3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libgetopts-65d6380d9a0b33ed.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libgetopts-65d6380d9a0b33ed.rmeta b/src-tauri/html_scraper/target/debug/deps/libgetopts-65d6380d9a0b33ed.rmeta new file mode 100644 index 0000000..a404d7f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libgetopts-65d6380d9a0b33ed.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libgetrandom-009f56382c9c07b5.rlib b/src-tauri/html_scraper/target/debug/deps/libgetrandom-009f56382c9c07b5.rlib new file mode 100644 index 0000000..3d84f40 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libgetrandom-009f56382c9c07b5.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libgetrandom-009f56382c9c07b5.rmeta b/src-tauri/html_scraper/target/debug/deps/libgetrandom-009f56382c9c07b5.rmeta new file mode 100644 index 0000000..97561fe Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libgetrandom-009f56382c9c07b5.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libgetrandom-328bde64f6e6b3d3.rlib b/src-tauri/html_scraper/target/debug/deps/libgetrandom-328bde64f6e6b3d3.rlib new file mode 100644 index 0000000..17e5d94 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libgetrandom-328bde64f6e6b3d3.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libgetrandom-328bde64f6e6b3d3.rmeta b/src-tauri/html_scraper/target/debug/deps/libgetrandom-328bde64f6e6b3d3.rmeta new file mode 100644 index 0000000..a47ab97 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libgetrandom-328bde64f6e6b3d3.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libhtml5ever-05679ef9eb9d27e8.rlib b/src-tauri/html_scraper/target/debug/deps/libhtml5ever-05679ef9eb9d27e8.rlib new file mode 100644 index 0000000..e266c7f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libhtml5ever-05679ef9eb9d27e8.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libhtml5ever-05679ef9eb9d27e8.rmeta b/src-tauri/html_scraper/target/debug/deps/libhtml5ever-05679ef9eb9d27e8.rmeta new file mode 100644 index 0000000..866a796 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libhtml5ever-05679ef9eb9d27e8.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libhtml_scraper-94aa862c9da7400c.rlib b/src-tauri/html_scraper/target/debug/deps/libhtml_scraper-94aa862c9da7400c.rlib new file mode 100644 index 0000000..84731b8 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libhtml_scraper-94aa862c9da7400c.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libhtml_scraper-94aa862c9da7400c.rmeta b/src-tauri/html_scraper/target/debug/deps/libhtml_scraper-94aa862c9da7400c.rmeta new file mode 100644 index 0000000..e6ffb24 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libhtml_scraper-94aa862c9da7400c.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libitoa-01bc225805719977.rlib b/src-tauri/html_scraper/target/debug/deps/libitoa-01bc225805719977.rlib new file mode 100644 index 0000000..0d3a861 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libitoa-01bc225805719977.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libitoa-01bc225805719977.rmeta b/src-tauri/html_scraper/target/debug/deps/libitoa-01bc225805719977.rmeta new file mode 100644 index 0000000..fbc35fd Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libitoa-01bc225805719977.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/liblibc-01916927d843a511.rlib b/src-tauri/html_scraper/target/debug/deps/liblibc-01916927d843a511.rlib new file mode 100644 index 0000000..b3ff092 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/liblibc-01916927d843a511.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/liblibc-01916927d843a511.rmeta b/src-tauri/html_scraper/target/debug/deps/liblibc-01916927d843a511.rmeta new file mode 100644 index 0000000..e48575e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/liblibc-01916927d843a511.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/liblibc-56734dad6cfe82f6.rlib b/src-tauri/html_scraper/target/debug/deps/liblibc-56734dad6cfe82f6.rlib new file mode 100644 index 0000000..cc4ee83 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/liblibc-56734dad6cfe82f6.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/liblibc-56734dad6cfe82f6.rmeta b/src-tauri/html_scraper/target/debug/deps/liblibc-56734dad6cfe82f6.rmeta new file mode 100644 index 0000000..4c627cf Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/liblibc-56734dad6cfe82f6.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/liblock_api-df5a62b3f930f9a1.rlib b/src-tauri/html_scraper/target/debug/deps/liblock_api-df5a62b3f930f9a1.rlib new file mode 100644 index 0000000..77ece32 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/liblock_api-df5a62b3f930f9a1.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/liblock_api-df5a62b3f930f9a1.rmeta b/src-tauri/html_scraper/target/debug/deps/liblock_api-df5a62b3f930f9a1.rmeta new file mode 100644 index 0000000..708d6ec Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/liblock_api-df5a62b3f930f9a1.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/liblog-831cad5f0554718c.rlib b/src-tauri/html_scraper/target/debug/deps/liblog-831cad5f0554718c.rlib new file mode 100644 index 0000000..77b7af0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/liblog-831cad5f0554718c.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/liblog-831cad5f0554718c.rmeta b/src-tauri/html_scraper/target/debug/deps/liblog-831cad5f0554718c.rmeta new file mode 100644 index 0000000..c41d616 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/liblog-831cad5f0554718c.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libmac-8f81a8e61d0760e0.rlib b/src-tauri/html_scraper/target/debug/deps/libmac-8f81a8e61d0760e0.rlib new file mode 100644 index 0000000..c98a0e1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libmac-8f81a8e61d0760e0.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libmac-8f81a8e61d0760e0.rmeta b/src-tauri/html_scraper/target/debug/deps/libmac-8f81a8e61d0760e0.rmeta new file mode 100644 index 0000000..746d919 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libmac-8f81a8e61d0760e0.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libmarkup5ever-5426e6f802571ad0.rlib b/src-tauri/html_scraper/target/debug/deps/libmarkup5ever-5426e6f802571ad0.rlib new file mode 100644 index 0000000..8bb2996 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libmarkup5ever-5426e6f802571ad0.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libmarkup5ever-5426e6f802571ad0.rmeta b/src-tauri/html_scraper/target/debug/deps/libmarkup5ever-5426e6f802571ad0.rmeta new file mode 100644 index 0000000..a625b9b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libmarkup5ever-5426e6f802571ad0.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libmemchr-dbc4553685834328.rlib b/src-tauri/html_scraper/target/debug/deps/libmemchr-dbc4553685834328.rlib new file mode 100644 index 0000000..3b8f4be Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libmemchr-dbc4553685834328.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libmemchr-dbc4553685834328.rmeta b/src-tauri/html_scraper/target/debug/deps/libmemchr-dbc4553685834328.rmeta new file mode 100644 index 0000000..062a9a5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libmemchr-dbc4553685834328.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libonce_cell-4e0f2ba645c30aa8.rlib b/src-tauri/html_scraper/target/debug/deps/libonce_cell-4e0f2ba645c30aa8.rlib new file mode 100644 index 0000000..429c24c Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libonce_cell-4e0f2ba645c30aa8.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libonce_cell-4e0f2ba645c30aa8.rmeta b/src-tauri/html_scraper/target/debug/deps/libonce_cell-4e0f2ba645c30aa8.rmeta new file mode 100644 index 0000000..8279b9a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libonce_cell-4e0f2ba645c30aa8.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libparking_lot-1f7e92deaf854a26.rlib b/src-tauri/html_scraper/target/debug/deps/libparking_lot-1f7e92deaf854a26.rlib new file mode 100644 index 0000000..fee335f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libparking_lot-1f7e92deaf854a26.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libparking_lot-1f7e92deaf854a26.rmeta b/src-tauri/html_scraper/target/debug/deps/libparking_lot-1f7e92deaf854a26.rmeta new file mode 100644 index 0000000..1eecb82 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libparking_lot-1f7e92deaf854a26.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libparking_lot_core-579cff111ec2767a.rlib b/src-tauri/html_scraper/target/debug/deps/libparking_lot_core-579cff111ec2767a.rlib new file mode 100644 index 0000000..ef51b46 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libparking_lot_core-579cff111ec2767a.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libparking_lot_core-579cff111ec2767a.rmeta b/src-tauri/html_scraper/target/debug/deps/libparking_lot_core-579cff111ec2767a.rmeta new file mode 100644 index 0000000..baf6a82 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libparking_lot_core-579cff111ec2767a.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf-a9770d3c675845ba.rlib b/src-tauri/html_scraper/target/debug/deps/libphf-a9770d3c675845ba.rlib new file mode 100644 index 0000000..756c691 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf-a9770d3c675845ba.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf-a9770d3c675845ba.rmeta b/src-tauri/html_scraper/target/debug/deps/libphf-a9770d3c675845ba.rmeta new file mode 100644 index 0000000..a46d056 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf-a9770d3c675845ba.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf-a9b745f20af9c57e.rlib b/src-tauri/html_scraper/target/debug/deps/libphf-a9b745f20af9c57e.rlib new file mode 100644 index 0000000..d9bcfdb Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf-a9b745f20af9c57e.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf-a9b745f20af9c57e.rmeta b/src-tauri/html_scraper/target/debug/deps/libphf-a9b745f20af9c57e.rmeta new file mode 100644 index 0000000..04bba9f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf-a9b745f20af9c57e.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_codegen-5ac0e57e503f39ec.rlib b/src-tauri/html_scraper/target/debug/deps/libphf_codegen-5ac0e57e503f39ec.rlib new file mode 100644 index 0000000..a23808a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_codegen-5ac0e57e503f39ec.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_codegen-5ac0e57e503f39ec.rmeta b/src-tauri/html_scraper/target/debug/deps/libphf_codegen-5ac0e57e503f39ec.rmeta new file mode 100644 index 0000000..16a8226 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_codegen-5ac0e57e503f39ec.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_codegen-7910a3fb545bdda5.rlib b/src-tauri/html_scraper/target/debug/deps/libphf_codegen-7910a3fb545bdda5.rlib new file mode 100644 index 0000000..7c6190e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_codegen-7910a3fb545bdda5.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_codegen-7910a3fb545bdda5.rmeta b/src-tauri/html_scraper/target/debug/deps/libphf_codegen-7910a3fb545bdda5.rmeta new file mode 100644 index 0000000..1d0efb7 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_codegen-7910a3fb545bdda5.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_generator-07face5c6d99eafc.rlib b/src-tauri/html_scraper/target/debug/deps/libphf_generator-07face5c6d99eafc.rlib new file mode 100644 index 0000000..cba8e22 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_generator-07face5c6d99eafc.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_generator-07face5c6d99eafc.rmeta b/src-tauri/html_scraper/target/debug/deps/libphf_generator-07face5c6d99eafc.rmeta new file mode 100644 index 0000000..cd1e2b0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_generator-07face5c6d99eafc.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_generator-0f5544fb7fb4274a.rlib b/src-tauri/html_scraper/target/debug/deps/libphf_generator-0f5544fb7fb4274a.rlib new file mode 100644 index 0000000..b1272db Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_generator-0f5544fb7fb4274a.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_generator-0f5544fb7fb4274a.rmeta b/src-tauri/html_scraper/target/debug/deps/libphf_generator-0f5544fb7fb4274a.rmeta new file mode 100644 index 0000000..03fd501 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_generator-0f5544fb7fb4274a.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_macros-36bc32c64923e436.dylib b/src-tauri/html_scraper/target/debug/deps/libphf_macros-36bc32c64923e436.dylib new file mode 100755 index 0000000..e038201 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_macros-36bc32c64923e436.dylib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_shared-4c15ddf12e8e6b17.rlib b/src-tauri/html_scraper/target/debug/deps/libphf_shared-4c15ddf12e8e6b17.rlib new file mode 100644 index 0000000..c454ac8 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_shared-4c15ddf12e8e6b17.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_shared-4c15ddf12e8e6b17.rmeta b/src-tauri/html_scraper/target/debug/deps/libphf_shared-4c15ddf12e8e6b17.rmeta new file mode 100644 index 0000000..a8c4d8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_shared-4c15ddf12e8e6b17.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_shared-5281e2ba57b04ed7.rlib b/src-tauri/html_scraper/target/debug/deps/libphf_shared-5281e2ba57b04ed7.rlib new file mode 100644 index 0000000..dbd9661 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_shared-5281e2ba57b04ed7.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_shared-5281e2ba57b04ed7.rmeta b/src-tauri/html_scraper/target/debug/deps/libphf_shared-5281e2ba57b04ed7.rmeta new file mode 100644 index 0000000..0b8b7ff Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_shared-5281e2ba57b04ed7.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_shared-aa6dcd72b6931224.rlib b/src-tauri/html_scraper/target/debug/deps/libphf_shared-aa6dcd72b6931224.rlib new file mode 100644 index 0000000..ca312a2 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_shared-aa6dcd72b6931224.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libphf_shared-aa6dcd72b6931224.rmeta b/src-tauri/html_scraper/target/debug/deps/libphf_shared-aa6dcd72b6931224.rmeta new file mode 100644 index 0000000..133fd6a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libphf_shared-aa6dcd72b6931224.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libppv_lite86-7bfc9380fa4080a1.rlib b/src-tauri/html_scraper/target/debug/deps/libppv_lite86-7bfc9380fa4080a1.rlib new file mode 100644 index 0000000..fb2f14f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libppv_lite86-7bfc9380fa4080a1.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libppv_lite86-7bfc9380fa4080a1.rmeta b/src-tauri/html_scraper/target/debug/deps/libppv_lite86-7bfc9380fa4080a1.rmeta new file mode 100644 index 0000000..ae50d1e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libppv_lite86-7bfc9380fa4080a1.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libprecomputed_hash-636ba2c840c4bb37.rlib b/src-tauri/html_scraper/target/debug/deps/libprecomputed_hash-636ba2c840c4bb37.rlib new file mode 100644 index 0000000..c13b5e9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libprecomputed_hash-636ba2c840c4bb37.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libprecomputed_hash-636ba2c840c4bb37.rmeta b/src-tauri/html_scraper/target/debug/deps/libprecomputed_hash-636ba2c840c4bb37.rmeta new file mode 100644 index 0000000..7177f9f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libprecomputed_hash-636ba2c840c4bb37.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libproc_macro2-d7a701b428e81ccd.rlib b/src-tauri/html_scraper/target/debug/deps/libproc_macro2-d7a701b428e81ccd.rlib new file mode 100644 index 0000000..e29c1d9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libproc_macro2-d7a701b428e81ccd.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libproc_macro2-d7a701b428e81ccd.rmeta b/src-tauri/html_scraper/target/debug/deps/libproc_macro2-d7a701b428e81ccd.rmeta new file mode 100644 index 0000000..714be5a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libproc_macro2-d7a701b428e81ccd.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libquote-18bba557c7524ff3.rlib b/src-tauri/html_scraper/target/debug/deps/libquote-18bba557c7524ff3.rlib new file mode 100644 index 0000000..01e7e98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libquote-18bba557c7524ff3.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libquote-18bba557c7524ff3.rmeta b/src-tauri/html_scraper/target/debug/deps/libquote-18bba557c7524ff3.rmeta new file mode 100644 index 0000000..27ac3ec Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libquote-18bba557c7524ff3.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/librand-26f83a8e5bd6b340.rlib b/src-tauri/html_scraper/target/debug/deps/librand-26f83a8e5bd6b340.rlib new file mode 100644 index 0000000..a342d01 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/librand-26f83a8e5bd6b340.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/librand-26f83a8e5bd6b340.rmeta b/src-tauri/html_scraper/target/debug/deps/librand-26f83a8e5bd6b340.rmeta new file mode 100644 index 0000000..bc644d2 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/librand-26f83a8e5bd6b340.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/librand_chacha-88c08f61188566b9.rlib b/src-tauri/html_scraper/target/debug/deps/librand_chacha-88c08f61188566b9.rlib new file mode 100644 index 0000000..0277ede Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/librand_chacha-88c08f61188566b9.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/librand_chacha-88c08f61188566b9.rmeta b/src-tauri/html_scraper/target/debug/deps/librand_chacha-88c08f61188566b9.rmeta new file mode 100644 index 0000000..7d25ef0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/librand_chacha-88c08f61188566b9.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/librand_core-40abbc76b58e3e8b.rlib b/src-tauri/html_scraper/target/debug/deps/librand_core-40abbc76b58e3e8b.rlib new file mode 100644 index 0000000..231053b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/librand_core-40abbc76b58e3e8b.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/librand_core-40abbc76b58e3e8b.rmeta b/src-tauri/html_scraper/target/debug/deps/librand_core-40abbc76b58e3e8b.rmeta new file mode 100644 index 0000000..f7013ef Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/librand_core-40abbc76b58e3e8b.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libregex-3dafb990d7ac7a42.rlib b/src-tauri/html_scraper/target/debug/deps/libregex-3dafb990d7ac7a42.rlib new file mode 100644 index 0000000..63dfe40 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libregex-3dafb990d7ac7a42.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libregex-3dafb990d7ac7a42.rmeta b/src-tauri/html_scraper/target/debug/deps/libregex-3dafb990d7ac7a42.rmeta new file mode 100644 index 0000000..b575c5f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libregex-3dafb990d7ac7a42.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libregex_automata-e1200410093b7b02.rlib b/src-tauri/html_scraper/target/debug/deps/libregex_automata-e1200410093b7b02.rlib new file mode 100644 index 0000000..e880c5c Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libregex_automata-e1200410093b7b02.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libregex_automata-e1200410093b7b02.rmeta b/src-tauri/html_scraper/target/debug/deps/libregex_automata-e1200410093b7b02.rmeta new file mode 100644 index 0000000..a32c631 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libregex_automata-e1200410093b7b02.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libregex_syntax-12e7fb1c33422c8d.rlib b/src-tauri/html_scraper/target/debug/deps/libregex_syntax-12e7fb1c33422c8d.rlib new file mode 100644 index 0000000..581fb3d Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libregex_syntax-12e7fb1c33422c8d.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libregex_syntax-12e7fb1c33422c8d.rmeta b/src-tauri/html_scraper/target/debug/deps/libregex_syntax-12e7fb1c33422c8d.rmeta new file mode 100644 index 0000000..62ccc2f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libregex_syntax-12e7fb1c33422c8d.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libscopeguard-d2663eb5fcef9402.rlib b/src-tauri/html_scraper/target/debug/deps/libscopeguard-d2663eb5fcef9402.rlib new file mode 100644 index 0000000..075b179 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libscopeguard-d2663eb5fcef9402.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libscopeguard-d2663eb5fcef9402.rmeta b/src-tauri/html_scraper/target/debug/deps/libscopeguard-d2663eb5fcef9402.rmeta new file mode 100644 index 0000000..e3f2928 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libscopeguard-d2663eb5fcef9402.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libscraper-719afe7608b3dfad.rlib b/src-tauri/html_scraper/target/debug/deps/libscraper-719afe7608b3dfad.rlib new file mode 100644 index 0000000..d07e61e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libscraper-719afe7608b3dfad.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libscraper-719afe7608b3dfad.rmeta b/src-tauri/html_scraper/target/debug/deps/libscraper-719afe7608b3dfad.rmeta new file mode 100644 index 0000000..b1c78a4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libscraper-719afe7608b3dfad.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libselectors-d01401445b4ae298.rlib b/src-tauri/html_scraper/target/debug/deps/libselectors-d01401445b4ae298.rlib new file mode 100644 index 0000000..0bf6984 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libselectors-d01401445b4ae298.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libselectors-d01401445b4ae298.rmeta b/src-tauri/html_scraper/target/debug/deps/libselectors-d01401445b4ae298.rmeta new file mode 100644 index 0000000..2e7c193 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libselectors-d01401445b4ae298.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libserde-3a5c3b1b0f654256.rlib b/src-tauri/html_scraper/target/debug/deps/libserde-3a5c3b1b0f654256.rlib new file mode 100644 index 0000000..ada8708 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libserde-3a5c3b1b0f654256.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libserde-3a5c3b1b0f654256.rmeta b/src-tauri/html_scraper/target/debug/deps/libserde-3a5c3b1b0f654256.rmeta new file mode 100644 index 0000000..c3eddba Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libserde-3a5c3b1b0f654256.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libserde_core-16cfd65e06a37e7a.rlib b/src-tauri/html_scraper/target/debug/deps/libserde_core-16cfd65e06a37e7a.rlib new file mode 100644 index 0000000..84182ed Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libserde_core-16cfd65e06a37e7a.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libserde_core-16cfd65e06a37e7a.rmeta b/src-tauri/html_scraper/target/debug/deps/libserde_core-16cfd65e06a37e7a.rmeta new file mode 100644 index 0000000..b41e3e7 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libserde_core-16cfd65e06a37e7a.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libservo_arc-a635e1107c03b5e4.rlib b/src-tauri/html_scraper/target/debug/deps/libservo_arc-a635e1107c03b5e4.rlib new file mode 100644 index 0000000..48e800e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libservo_arc-a635e1107c03b5e4.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libservo_arc-a635e1107c03b5e4.rmeta b/src-tauri/html_scraper/target/debug/deps/libservo_arc-a635e1107c03b5e4.rmeta new file mode 100644 index 0000000..97ea68b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libservo_arc-a635e1107c03b5e4.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libsiphasher-771f4d4daf8f4dea.rlib b/src-tauri/html_scraper/target/debug/deps/libsiphasher-771f4d4daf8f4dea.rlib new file mode 100644 index 0000000..5ced3cd Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libsiphasher-771f4d4daf8f4dea.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libsiphasher-771f4d4daf8f4dea.rmeta b/src-tauri/html_scraper/target/debug/deps/libsiphasher-771f4d4daf8f4dea.rmeta new file mode 100644 index 0000000..da7611e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libsiphasher-771f4d4daf8f4dea.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libsiphasher-834de04fecf33a0a.rlib b/src-tauri/html_scraper/target/debug/deps/libsiphasher-834de04fecf33a0a.rlib new file mode 100644 index 0000000..5c031f6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libsiphasher-834de04fecf33a0a.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libsiphasher-834de04fecf33a0a.rmeta b/src-tauri/html_scraper/target/debug/deps/libsiphasher-834de04fecf33a0a.rmeta new file mode 100644 index 0000000..1c1a112 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libsiphasher-834de04fecf33a0a.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libsmallvec-6bb0dfc0967f3f53.rlib b/src-tauri/html_scraper/target/debug/deps/libsmallvec-6bb0dfc0967f3f53.rlib new file mode 100644 index 0000000..a40aecf Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libsmallvec-6bb0dfc0967f3f53.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libsmallvec-6bb0dfc0967f3f53.rmeta b/src-tauri/html_scraper/target/debug/deps/libsmallvec-6bb0dfc0967f3f53.rmeta new file mode 100644 index 0000000..d9e78cc Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libsmallvec-6bb0dfc0967f3f53.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libstable_deref_trait-c602f96252fb9a6a.rlib b/src-tauri/html_scraper/target/debug/deps/libstable_deref_trait-c602f96252fb9a6a.rlib new file mode 100644 index 0000000..f100d96 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libstable_deref_trait-c602f96252fb9a6a.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libstable_deref_trait-c602f96252fb9a6a.rmeta b/src-tauri/html_scraper/target/debug/deps/libstable_deref_trait-c602f96252fb9a6a.rmeta new file mode 100644 index 0000000..c75f2c0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libstable_deref_trait-c602f96252fb9a6a.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libstring_cache-e873790d99344744.rlib b/src-tauri/html_scraper/target/debug/deps/libstring_cache-e873790d99344744.rlib new file mode 100644 index 0000000..6fe135a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libstring_cache-e873790d99344744.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libstring_cache-e873790d99344744.rmeta b/src-tauri/html_scraper/target/debug/deps/libstring_cache-e873790d99344744.rmeta new file mode 100644 index 0000000..545ffee Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libstring_cache-e873790d99344744.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libstring_cache_codegen-cd0dc4a88bbb3be6.rlib b/src-tauri/html_scraper/target/debug/deps/libstring_cache_codegen-cd0dc4a88bbb3be6.rlib new file mode 100644 index 0000000..d111ac5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libstring_cache_codegen-cd0dc4a88bbb3be6.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libstring_cache_codegen-cd0dc4a88bbb3be6.rmeta b/src-tauri/html_scraper/target/debug/deps/libstring_cache_codegen-cd0dc4a88bbb3be6.rmeta new file mode 100644 index 0000000..08f11f4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libstring_cache_codegen-cd0dc4a88bbb3be6.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libsyn-2aa77fc1e3a70b43.rlib b/src-tauri/html_scraper/target/debug/deps/libsyn-2aa77fc1e3a70b43.rlib new file mode 100644 index 0000000..29adb90 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libsyn-2aa77fc1e3a70b43.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libsyn-2aa77fc1e3a70b43.rmeta b/src-tauri/html_scraper/target/debug/deps/libsyn-2aa77fc1e3a70b43.rmeta new file mode 100644 index 0000000..09fdc64 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libsyn-2aa77fc1e3a70b43.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libtendril-571b6474f862ecf6.rlib b/src-tauri/html_scraper/target/debug/deps/libtendril-571b6474f862ecf6.rlib new file mode 100644 index 0000000..95faced Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libtendril-571b6474f862ecf6.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libtendril-571b6474f862ecf6.rmeta b/src-tauri/html_scraper/target/debug/deps/libtendril-571b6474f862ecf6.rmeta new file mode 100644 index 0000000..047377e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libtendril-571b6474f862ecf6.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libthiserror-5603079bf135f2fd.rlib b/src-tauri/html_scraper/target/debug/deps/libthiserror-5603079bf135f2fd.rlib new file mode 100644 index 0000000..7ff3d1e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libthiserror-5603079bf135f2fd.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libthiserror-5603079bf135f2fd.rmeta b/src-tauri/html_scraper/target/debug/deps/libthiserror-5603079bf135f2fd.rmeta new file mode 100644 index 0000000..60885d5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libthiserror-5603079bf135f2fd.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libthiserror_impl-7462c846dc67d23c.dylib b/src-tauri/html_scraper/target/debug/deps/libthiserror_impl-7462c846dc67d23c.dylib new file mode 100755 index 0000000..c769b3f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libthiserror_impl-7462c846dc67d23c.dylib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libunicode_ident-1017dd60fc08fd88.rlib b/src-tauri/html_scraper/target/debug/deps/libunicode_ident-1017dd60fc08fd88.rlib new file mode 100644 index 0000000..f7b5799 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libunicode_ident-1017dd60fc08fd88.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libunicode_ident-1017dd60fc08fd88.rmeta b/src-tauri/html_scraper/target/debug/deps/libunicode_ident-1017dd60fc08fd88.rmeta new file mode 100644 index 0000000..f3f85f7 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libunicode_ident-1017dd60fc08fd88.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libunicode_width-3846e86ff5e2928c.rlib b/src-tauri/html_scraper/target/debug/deps/libunicode_width-3846e86ff5e2928c.rlib new file mode 100644 index 0000000..c08bdc0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libunicode_width-3846e86ff5e2928c.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libunicode_width-3846e86ff5e2928c.rmeta b/src-tauri/html_scraper/target/debug/deps/libunicode_width-3846e86ff5e2928c.rmeta new file mode 100644 index 0000000..781e50d Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libunicode_width-3846e86ff5e2928c.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libutf8-fde59839729e6c84.rlib b/src-tauri/html_scraper/target/debug/deps/libutf8-fde59839729e6c84.rlib new file mode 100644 index 0000000..9f8837a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libutf8-fde59839729e6c84.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libutf8-fde59839729e6c84.rmeta b/src-tauri/html_scraper/target/debug/deps/libutf8-fde59839729e6c84.rmeta new file mode 100644 index 0000000..dd8a883 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libutf8-fde59839729e6c84.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libversion_check-924408caddcfebba.rlib b/src-tauri/html_scraper/target/debug/deps/libversion_check-924408caddcfebba.rlib new file mode 100644 index 0000000..187ca8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libversion_check-924408caddcfebba.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libversion_check-924408caddcfebba.rmeta b/src-tauri/html_scraper/target/debug/deps/libversion_check-924408caddcfebba.rmeta new file mode 100644 index 0000000..1219eb0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libversion_check-924408caddcfebba.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/libzerocopy-97ddaa70c3afd57d.rlib b/src-tauri/html_scraper/target/debug/deps/libzerocopy-97ddaa70c3afd57d.rlib new file mode 100644 index 0000000..906f81f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libzerocopy-97ddaa70c3afd57d.rlib differ diff --git a/src-tauri/html_scraper/target/debug/deps/libzerocopy-97ddaa70c3afd57d.rmeta b/src-tauri/html_scraper/target/debug/deps/libzerocopy-97ddaa70c3afd57d.rmeta new file mode 100644 index 0000000..c83ad64 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/libzerocopy-97ddaa70c3afd57d.rmeta differ diff --git a/src-tauri/html_scraper/target/debug/deps/lock_api-df5a62b3f930f9a1.d b/src-tauri/html_scraper/target/debug/deps/lock_api-df5a62b3f930f9a1.d new file mode 100644 index 0000000..5973b04 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/lock_api-df5a62b3f930f9a1.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/liblock_api-df5a62b3f930f9a1.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/remutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/rwlock.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/liblock_api-df5a62b3f930f9a1.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/remutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/rwlock.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/lock_api-df5a62b3f930f9a1.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/remutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/rwlock.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/mutex.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/remutex.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/lock_api-0.4.13/src/rwlock.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/lock_api-df5a62b3f930f9a1.lock_api.a0eddf272e46b4f3-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/lock_api-df5a62b3f930f9a1.lock_api.a0eddf272e46b4f3-cgu.0.rcgu.o new file mode 100644 index 0000000..c72730b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/lock_api-df5a62b3f930f9a1.lock_api.a0eddf272e46b4f3-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/log-831cad5f0554718c.d b/src-tauri/html_scraper/target/debug/deps/log-831cad5f0554718c.d new file mode 100644 index 0000000..0cdf732 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/log-831cad5f0554718c.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/liblog-831cad5f0554718c.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/serde.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/__private_api.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/liblog-831cad5f0554718c.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/serde.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/__private_api.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/log-831cad5f0554718c.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/serde.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/__private_api.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/serde.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/log-0.4.28/src/__private_api.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/log-831cad5f0554718c.log.1dc01c71d0fd18b3-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/log-831cad5f0554718c.log.1dc01c71d0fd18b3-cgu.0.rcgu.o new file mode 100644 index 0000000..f654dc3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/log-831cad5f0554718c.log.1dc01c71d0fd18b3-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/mac-8f81a8e61d0760e0.d b/src-tauri/html_scraper/target/debug/deps/mac-8f81a8e61d0760e0.d new file mode 100644 index 0000000..d27b19a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/mac-8f81a8e61d0760e0.d @@ -0,0 +1,14 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libmac-8f81a8e61d0760e0.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/test.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/mem.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/format.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/syntax_ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/matches.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/inspect.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/cfg.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libmac-8f81a8e61d0760e0.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/test.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/mem.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/format.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/syntax_ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/matches.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/inspect.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/cfg.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/mac-8f81a8e61d0760e0.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/test.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/mem.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/format.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/syntax_ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/matches.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/inspect.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/cfg.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/test.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/mem.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/format.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/syntax_ext.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/matches.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/inspect.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/mac-0.1.1/src/cfg.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/mac-8f81a8e61d0760e0.mac.19e58a4a71914c7e-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/mac-8f81a8e61d0760e0.mac.19e58a4a71914c7e-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/mac-8f81a8e61d0760e0.mac.19e58a4a71914c7e-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/markup5ever-5426e6f802571ad0.d b/src-tauri/html_scraper/target/debug/deps/markup5ever-5426e6f802571ad0.d new file mode 100644 index 0000000..8376a75 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/markup5ever-5426e6f802571ad0.d @@ -0,0 +1,17 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libmarkup5ever-5426e6f802571ad0.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/data/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/interface/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/interface/tree_builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/serialize.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/util/buffer_queue.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/util/smallcharset.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/generated.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/named_entities.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libmarkup5ever-5426e6f802571ad0.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/data/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/interface/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/interface/tree_builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/serialize.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/util/buffer_queue.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/util/smallcharset.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/generated.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/named_entities.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/markup5ever-5426e6f802571ad0.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/data/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/interface/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/interface/tree_builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/serialize.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/util/buffer_queue.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/util/smallcharset.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/generated.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/named_entities.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/data/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/interface/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/interface/tree_builder.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/serialize.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/util/buffer_queue.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/markup5ever-0.12.1/util/smallcharset.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/generated.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out/named_entities.rs: + +# env-dep:OUT_DIR=/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/markup5ever-6c5b1b70cfb0b1d8/out diff --git a/src-tauri/html_scraper/target/debug/deps/markup5ever-5426e6f802571ad0.markup5ever.cc2f085d2b94e7a6-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/markup5ever-5426e6f802571ad0.markup5ever.cc2f085d2b94e7a6-cgu.0.rcgu.o new file mode 100644 index 0000000..beb8310 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/markup5ever-5426e6f802571ad0.markup5ever.cc2f085d2b94e7a6-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/memchr-dbc4553685834328.d b/src-tauri/html_scraper/target/debug/deps/memchr-dbc4553685834328.d new file mode 100644 index 0000000..63dd505 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/memchr-dbc4553685834328.d @@ -0,0 +1,30 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libmemchr-dbc4553685834328.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/packedpair/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/packedpair/default_rank.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/rabinkarp.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/shiftor.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/twoway.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/packedpair.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/packedpair.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/cow.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memmem/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memmem/searcher.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/vector.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libmemchr-dbc4553685834328.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/packedpair/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/packedpair/default_rank.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/rabinkarp.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/shiftor.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/twoway.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/packedpair.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/packedpair.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/cow.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memmem/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memmem/searcher.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/vector.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/memchr-dbc4553685834328.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/packedpair/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/packedpair/default_rank.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/rabinkarp.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/shiftor.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/twoway.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/packedpair.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/packedpair.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/cow.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memmem/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memmem/searcher.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/vector.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/memchr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/packedpair/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/packedpair/default_rank.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/rabinkarp.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/shiftor.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/all/twoway.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/memchr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/generic/packedpair.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/memchr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/neon/packedpair.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/arch/aarch64/memchr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/cow.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/ext.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memchr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memmem/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/memmem/searcher.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/memchr-2.7.6/src/vector.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/memchr-dbc4553685834328.memchr.fb606b7f001ba48a-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/memchr-dbc4553685834328.memchr.fb606b7f001ba48a-cgu.0.rcgu.o new file mode 100644 index 0000000..13a3fef Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/memchr-dbc4553685834328.memchr.fb606b7f001ba48a-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/once_cell-4e0f2ba645c30aa8.d b/src-tauri/html_scraper/target/debug/deps/once_cell-4e0f2ba645c30aa8.d new file mode 100644 index 0000000..1b30765 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/once_cell-4e0f2ba645c30aa8.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libonce_cell-4e0f2ba645c30aa8.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/imp_std.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/race.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libonce_cell-4e0f2ba645c30aa8.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/imp_std.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/race.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/once_cell-4e0f2ba645c30aa8.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/imp_std.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/race.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/imp_std.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/once_cell-1.21.3/src/race.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/once_cell-4e0f2ba645c30aa8.once_cell.fb3e9783ff3da451-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/once_cell-4e0f2ba645c30aa8.once_cell.fb3e9783ff3da451-cgu.0.rcgu.o new file mode 100644 index 0000000..efd10ea Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/once_cell-4e0f2ba645c30aa8.once_cell.fb3e9783ff3da451-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.d b/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.d new file mode 100644 index 0000000..5b3018b --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.d @@ -0,0 +1,19 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libparking_lot-1f7e92deaf854a26.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/condvar.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/elision.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/fair_mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/once.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_fair_mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_rwlock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/remutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/rwlock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/deadlock.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libparking_lot-1f7e92deaf854a26.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/condvar.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/elision.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/fair_mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/once.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_fair_mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_rwlock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/remutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/rwlock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/deadlock.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/condvar.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/elision.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/fair_mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/once.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_fair_mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_mutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_rwlock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/remutex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/rwlock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/deadlock.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/condvar.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/elision.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/fair_mutex.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/mutex.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/once.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_fair_mutex.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_mutex.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/raw_rwlock.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/remutex.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/rwlock.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/util.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot-0.12.4/src/deadlock.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.parking_lot.c9ccee3b05075d53-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.parking_lot.c9ccee3b05075d53-cgu.0.rcgu.o new file mode 100644 index 0000000..7be9eaa Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.parking_lot.c9ccee3b05075d53-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.parking_lot.c9ccee3b05075d53-cgu.1.rcgu.o b/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.parking_lot.c9ccee3b05075d53-cgu.1.rcgu.o new file mode 100644 index 0000000..2bb8062 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.parking_lot.c9ccee3b05075d53-cgu.1.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.parking_lot.c9ccee3b05075d53-cgu.2.rcgu.o b/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.parking_lot.c9ccee3b05075d53-cgu.2.rcgu.o new file mode 100644 index 0000000..be9006a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/parking_lot-1f7e92deaf854a26.parking_lot.c9ccee3b05075d53-cgu.2.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/parking_lot_core-579cff111ec2767a.d b/src-tauri/html_scraper/target/debug/deps/parking_lot_core-579cff111ec2767a.d new file mode 100644 index 0000000..9c7ff62 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/parking_lot_core-579cff111ec2767a.d @@ -0,0 +1,13 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libparking_lot_core-579cff111ec2767a.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/parking_lot.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/spinwait.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/thread_parker/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/word_lock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/thread_parker/unix.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libparking_lot_core-579cff111ec2767a.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/parking_lot.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/spinwait.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/thread_parker/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/word_lock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/thread_parker/unix.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/parking_lot_core-579cff111ec2767a.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/parking_lot.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/spinwait.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/thread_parker/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/word_lock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/thread_parker/unix.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/parking_lot.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/spinwait.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/thread_parker/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/util.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/word_lock.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/parking_lot_core-0.9.11/src/thread_parker/unix.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/parking_lot_core-579cff111ec2767a.parking_lot_core.cec8c76f5c089794-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/parking_lot_core-579cff111ec2767a.parking_lot_core.cec8c76f5c089794-cgu.0.rcgu.o new file mode 100644 index 0000000..dcd3a90 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/parking_lot_core-579cff111ec2767a.parking_lot_core.cec8c76f5c089794-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/parking_lot_core-579cff111ec2767a.parking_lot_core.cec8c76f5c089794-cgu.1.rcgu.o b/src-tauri/html_scraper/target/debug/deps/parking_lot_core-579cff111ec2767a.parking_lot_core.cec8c76f5c089794-cgu.1.rcgu.o new file mode 100644 index 0000000..20e3dc2 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/parking_lot_core-579cff111ec2767a.parking_lot_core.cec8c76f5c089794-cgu.1.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/phf-a9770d3c675845ba.d b/src-tauri/html_scraper/target/debug/deps/phf-a9770d3c675845ba.d new file mode 100644 index 0000000..4441aa0 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/phf-a9770d3c675845ba.d @@ -0,0 +1,11 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf-a9770d3c675845ba.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/ordered_map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/ordered_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/set.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf-a9770d3c675845ba.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/ordered_map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/ordered_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/set.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/phf-a9770d3c675845ba.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/ordered_map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/ordered_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/set.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/map.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/ordered_map.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/ordered_set.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.10.1/src/set.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/phf-a9770d3c675845ba.phf.d5c939bb1c9ade6-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/phf-a9770d3c675845ba.phf.d5c939bb1c9ade6-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/phf-a9770d3c675845ba.phf.d5c939bb1c9ade6-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/phf-a9b745f20af9c57e.d b/src-tauri/html_scraper/target/debug/deps/phf-a9b745f20af9c57e.d new file mode 100644 index 0000000..b8c398c --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/phf-a9b745f20af9c57e.d @@ -0,0 +1,11 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf-a9b745f20af9c57e.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/ordered_map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/ordered_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/set.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf-a9b745f20af9c57e.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/ordered_map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/ordered_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/set.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/phf-a9b745f20af9c57e.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/ordered_map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/ordered_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/set.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/map.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/ordered_map.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/ordered_set.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf-0.11.3/src/set.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/phf-a9b745f20af9c57e.phf.2ad363b7848cb1a7-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/phf-a9b745f20af9c57e.phf.2ad363b7848cb1a7-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/phf-a9b745f20af9c57e.phf.2ad363b7848cb1a7-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/phf_codegen-5ac0e57e503f39ec.d b/src-tauri/html_scraper/target/debug/deps/phf_codegen-5ac0e57e503f39ec.d new file mode 100644 index 0000000..9bff3fa --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/phf_codegen-5ac0e57e503f39ec.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_codegen-5ac0e57e503f39ec.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_codegen-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_codegen-5ac0e57e503f39ec.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_codegen-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/phf_codegen-5ac0e57e503f39ec.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_codegen-0.10.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_codegen-0.10.0/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/phf_codegen-7910a3fb545bdda5.d b/src-tauri/html_scraper/target/debug/deps/phf_codegen-7910a3fb545bdda5.d new file mode 100644 index 0000000..338218a --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/phf_codegen-7910a3fb545bdda5.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_codegen-7910a3fb545bdda5.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_codegen-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_codegen-7910a3fb545bdda5.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_codegen-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/phf_codegen-7910a3fb545bdda5.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_codegen-0.11.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_codegen-0.11.3/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/phf_generator-07face5c6d99eafc.d b/src-tauri/html_scraper/target/debug/deps/phf_generator-07face5c6d99eafc.d new file mode 100644 index 0000000..6fa96f5 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/phf_generator-07face5c6d99eafc.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_generator-07face5c6d99eafc.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_generator-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_generator-07face5c6d99eafc.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_generator-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/phf_generator-07face5c6d99eafc.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_generator-0.10.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_generator-0.10.0/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/phf_generator-0f5544fb7fb4274a.d b/src-tauri/html_scraper/target/debug/deps/phf_generator-0f5544fb7fb4274a.d new file mode 100644 index 0000000..896f587 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/phf_generator-0f5544fb7fb4274a.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_generator-0f5544fb7fb4274a.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_generator-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_generator-0f5544fb7fb4274a.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_generator-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/phf_generator-0f5544fb7fb4274a.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_generator-0.11.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_generator-0.11.3/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/phf_macros-36bc32c64923e436.d b/src-tauri/html_scraper/target/debug/deps/phf_macros-36bc32c64923e436.d new file mode 100644 index 0000000..4890305 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/phf_macros-36bc32c64923e436.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_macros-36bc32c64923e436.dylib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_macros-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/phf_macros-36bc32c64923e436.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_macros-0.11.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_macros-0.11.3/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/phf_shared-4c15ddf12e8e6b17.d b/src-tauri/html_scraper/target/debug/deps/phf_shared-4c15ddf12e8e6b17.d new file mode 100644 index 0000000..18aa227 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/phf_shared-4c15ddf12e8e6b17.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_shared-4c15ddf12e8e6b17.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_shared-4c15ddf12e8e6b17.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/phf_shared-4c15ddf12e8e6b17.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.10.0/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/phf_shared-5281e2ba57b04ed7.d b/src-tauri/html_scraper/target/debug/deps/phf_shared-5281e2ba57b04ed7.d new file mode 100644 index 0000000..c318431 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/phf_shared-5281e2ba57b04ed7.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_shared-5281e2ba57b04ed7.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_shared-5281e2ba57b04ed7.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/phf_shared-5281e2ba57b04ed7.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.11.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.11.3/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/phf_shared-5281e2ba57b04ed7.phf_shared.36fc865ee9f5d069-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/phf_shared-5281e2ba57b04ed7.phf_shared.36fc865ee9f5d069-cgu.0.rcgu.o new file mode 100644 index 0000000..e7c9693 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/phf_shared-5281e2ba57b04ed7.phf_shared.36fc865ee9f5d069-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/phf_shared-aa6dcd72b6931224.d b/src-tauri/html_scraper/target/debug/deps/phf_shared-aa6dcd72b6931224.d new file mode 100644 index 0000000..399291e --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/phf_shared-aa6dcd72b6931224.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_shared-aa6dcd72b6931224.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libphf_shared-aa6dcd72b6931224.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/phf_shared-aa6dcd72b6931224.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/phf_shared-0.10.0/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/phf_shared-aa6dcd72b6931224.phf_shared.a6e6aa63e256f82-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/phf_shared-aa6dcd72b6931224.phf_shared.a6e6aa63e256f82-cgu.0.rcgu.o new file mode 100644 index 0000000..51fffbe Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/phf_shared-aa6dcd72b6931224.phf_shared.a6e6aa63e256f82-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/ppv_lite86-7bfc9380fa4080a1.d b/src-tauri/html_scraper/target/debug/deps/ppv_lite86-7bfc9380fa4080a1.d new file mode 100644 index 0000000..019396c --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/ppv_lite86-7bfc9380fa4080a1.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libppv_lite86-7bfc9380fa4080a1.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/soft.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/types.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/generic.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libppv_lite86-7bfc9380fa4080a1.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/soft.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/types.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/generic.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/ppv_lite86-7bfc9380fa4080a1.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/soft.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/types.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/generic.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/soft.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/types.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/ppv-lite86-0.2.21/src/generic.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/precomputed_hash-636ba2c840c4bb37.d b/src-tauri/html_scraper/target/debug/deps/precomputed_hash-636ba2c840c4bb37.d new file mode 100644 index 0000000..0d27646 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/precomputed_hash-636ba2c840c4bb37.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libprecomputed_hash-636ba2c840c4bb37.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/precomputed-hash-0.1.1/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libprecomputed_hash-636ba2c840c4bb37.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/precomputed-hash-0.1.1/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/precomputed_hash-636ba2c840c4bb37.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/precomputed-hash-0.1.1/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/precomputed-hash-0.1.1/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/precomputed_hash-636ba2c840c4bb37.precomputed_hash.8eb35ea0ee158c6d-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/precomputed_hash-636ba2c840c4bb37.precomputed_hash.8eb35ea0ee158c6d-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/precomputed_hash-636ba2c840c4bb37.precomputed_hash.8eb35ea0ee158c6d-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/proc_macro2-d7a701b428e81ccd.d b/src-tauri/html_scraper/target/debug/deps/proc_macro2-d7a701b428e81ccd.d new file mode 100644 index 0000000..5ae48ea --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/proc_macro2-d7a701b428e81ccd.d @@ -0,0 +1,15 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libproc_macro2-d7a701b428e81ccd.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/marker.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/parse.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/probe.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/rcvec.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/detection.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/fallback.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/extra.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/wrapper.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libproc_macro2-d7a701b428e81ccd.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/marker.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/parse.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/probe.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/rcvec.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/detection.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/fallback.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/extra.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/wrapper.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/proc_macro2-d7a701b428e81ccd.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/marker.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/parse.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/probe.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/rcvec.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/detection.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/fallback.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/extra.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/wrapper.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/marker.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/parse.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/probe.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/rcvec.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/detection.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/fallback.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/extra.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/proc-macro2-1.0.101/src/wrapper.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/quote-18bba557c7524ff3.d b/src-tauri/html_scraper/target/debug/deps/quote-18bba557c7524ff3.d new file mode 100644 index 0000000..1a44299 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/quote-18bba557c7524ff3.d @@ -0,0 +1,13 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libquote-18bba557c7524ff3.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/format.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/ident_fragment.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/to_tokens.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/runtime.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/spanned.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libquote-18bba557c7524ff3.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/format.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/ident_fragment.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/to_tokens.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/runtime.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/spanned.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/quote-18bba557c7524ff3.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/format.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/ident_fragment.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/to_tokens.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/runtime.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/spanned.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/ext.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/format.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/ident_fragment.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/to_tokens.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/runtime.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/quote-1.0.40/src/spanned.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/rand-26f83a8e5bd6b340.d b/src-tauri/html_scraper/target/debug/deps/rand-26f83a8e5bd6b340.d new file mode 100644 index 0000000..165f04c --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/rand-26f83a8e5bd6b340.d @@ -0,0 +1,31 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/librand-26f83a8e5bd6b340.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/bernoulli.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/distribution.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/float.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/integer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/other.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/slice.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/utils.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/weighted_index.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/uniform.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/weighted.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/prelude.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rng.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/read.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/reseeding.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/mock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/xoshiro256plusplus.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/small.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/std.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/thread.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/seq/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/seq/index.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/librand-26f83a8e5bd6b340.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/bernoulli.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/distribution.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/float.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/integer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/other.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/slice.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/utils.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/weighted_index.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/uniform.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/weighted.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/prelude.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rng.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/read.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/reseeding.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/mock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/xoshiro256plusplus.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/small.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/std.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/thread.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/seq/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/seq/index.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/rand-26f83a8e5bd6b340.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/bernoulli.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/distribution.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/float.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/integer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/other.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/slice.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/utils.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/weighted_index.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/uniform.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/weighted.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/prelude.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rng.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/read.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/reseeding.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/mock.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/xoshiro256plusplus.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/small.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/std.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/thread.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/seq/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/seq/index.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/bernoulli.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/distribution.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/float.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/integer.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/other.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/slice.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/utils.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/weighted_index.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/uniform.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/distributions/weighted.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/prelude.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rng.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/read.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/adapter/reseeding.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/mock.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/xoshiro256plusplus.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/small.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/std.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/rngs/thread.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/seq/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand-0.8.5/src/seq/index.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/rand_chacha-88c08f61188566b9.d b/src-tauri/html_scraper/target/debug/deps/rand_chacha-88c08f61188566b9.d new file mode 100644 index 0000000..30cb487 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/rand_chacha-88c08f61188566b9.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/librand_chacha-88c08f61188566b9.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/chacha.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/guts.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/librand_chacha-88c08f61188566b9.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/chacha.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/guts.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/rand_chacha-88c08f61188566b9.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/chacha.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/guts.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/chacha.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_chacha-0.3.1/src/guts.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/rand_core-40abbc76b58e3e8b.d b/src-tauri/html_scraper/target/debug/deps/rand_core-40abbc76b58e3e8b.d new file mode 100644 index 0000000..e772032 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/rand_core-40abbc76b58e3e8b.d @@ -0,0 +1,12 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/librand_core-40abbc76b58e3e8b.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/block.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/le.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/os.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/librand_core-40abbc76b58e3e8b.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/block.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/le.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/os.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/rand_core-40abbc76b58e3e8b.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/block.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/le.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/os.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/block.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/impls.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/le.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/rand_core-0.6.4/src/os.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/regex-3dafb990d7ac7a42.d b/src-tauri/html_scraper/target/debug/deps/regex-3dafb990d7ac7a42.d new file mode 100644 index 0000000..72b1875 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/regex-3dafb990d7ac7a42.d @@ -0,0 +1,17 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libregex-3dafb990d7ac7a42.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/builders.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/find_byte.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/string.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/string.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libregex-3dafb990d7ac7a42.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/builders.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/find_byte.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/string.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/string.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/regex-3dafb990d7ac7a42.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/builders.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/find_byte.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/string.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/bytes.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/string.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/builders.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/bytes.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/find_byte.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/bytes.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regex/string.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/bytes.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-1.11.3/src/regexset/string.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/regex-3dafb990d7ac7a42.regex.242a6383e32b9ad1-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex-3dafb990d7ac7a42.regex.242a6383e32b9ad1-cgu.0.rcgu.o new file mode 100644 index 0000000..0dfbb3e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex-3dafb990d7ac7a42.regex.242a6383e32b9ad1-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex-3dafb990d7ac7a42.regex.242a6383e32b9ad1-cgu.1.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex-3dafb990d7ac7a42.regex.242a6383e32b9ad1-cgu.1.rcgu.o new file mode 100644 index 0000000..a3635eb Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex-3dafb990d7ac7a42.regex.242a6383e32b9ad1-cgu.1.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.d b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.d new file mode 100644 index 0000000..35e3d73 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.d @@ -0,0 +1,65 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libregex_automata-e1200410093b7b02.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/onepass.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/remapper.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/dfa.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/id.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/regex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/search.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/limited.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/literal.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/regex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/reverse_inner.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/stopat.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/strategy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/wrappers.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/backtrack.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/compiler.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/literal_trie.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/nfa.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/pikevm.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/range_trie.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/alphabet.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/captures.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/escape.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/interpolate.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/iter.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/lazy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/look.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/pool.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/aho_corasick.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/byteset.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/memmem.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/teddy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/start.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/syntax.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/wire.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/determinize/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/determinize/state.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/empty.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/int.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/search.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/sparse_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/unicode_data/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/utf8.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libregex_automata-e1200410093b7b02.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/onepass.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/remapper.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/dfa.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/id.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/regex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/search.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/limited.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/literal.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/regex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/reverse_inner.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/stopat.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/strategy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/wrappers.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/backtrack.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/compiler.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/literal_trie.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/nfa.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/pikevm.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/range_trie.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/alphabet.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/captures.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/escape.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/interpolate.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/iter.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/lazy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/look.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/pool.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/aho_corasick.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/byteset.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/memmem.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/teddy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/start.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/syntax.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/wire.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/determinize/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/determinize/state.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/empty.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/int.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/search.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/sparse_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/unicode_data/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/utf8.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/onepass.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/remapper.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/dfa.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/id.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/regex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/search.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/limited.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/literal.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/regex.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/reverse_inner.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/stopat.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/strategy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/wrappers.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/backtrack.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/compiler.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/literal_trie.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/map.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/nfa.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/pikevm.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/range_trie.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/alphabet.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/captures.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/escape.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/interpolate.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/iter.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/lazy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/look.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/pool.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/aho_corasick.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/byteset.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/memmem.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/teddy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/primitives.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/start.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/syntax.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/wire.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/determinize/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/determinize/state.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/empty.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/int.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/memchr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/search.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/sparse_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/unicode_data/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/utf8.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/onepass.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/dfa/remapper.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/dfa.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/id.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/regex.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/hybrid/search.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/limited.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/literal.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/regex.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/reverse_inner.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/stopat.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/strategy.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/meta/wrappers.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/backtrack.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/builder.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/compiler.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/literal_trie.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/map.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/nfa.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/pikevm.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/nfa/thompson/range_trie.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/alphabet.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/captures.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/escape.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/interpolate.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/iter.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/lazy.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/look.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/pool.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/aho_corasick.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/byteset.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/memchr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/memmem.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/prefilter/teddy.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/primitives.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/start.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/syntax.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/wire.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/determinize/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/determinize/state.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/empty.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/int.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/memchr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/search.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/sparse_set.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/unicode_data/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-automata-0.4.11/src/util/utf8.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.00.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.00.rcgu.o new file mode 100644 index 0000000..9679b8b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.00.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.01.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.01.rcgu.o new file mode 100644 index 0000000..a2380f0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.01.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.02.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.02.rcgu.o new file mode 100644 index 0000000..5e69bec Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.02.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.03.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.03.rcgu.o new file mode 100644 index 0000000..04fc5ba Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.03.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.04.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.04.rcgu.o new file mode 100644 index 0000000..9c523ee Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.04.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.05.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.05.rcgu.o new file mode 100644 index 0000000..43e3fd1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.05.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.06.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.06.rcgu.o new file mode 100644 index 0000000..6d62002 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.06.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.07.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.07.rcgu.o new file mode 100644 index 0000000..f153fc7 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.07.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.08.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.08.rcgu.o new file mode 100644 index 0000000..728e342 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.08.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.09.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.09.rcgu.o new file mode 100644 index 0000000..3a10e98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.09.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.10.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.10.rcgu.o new file mode 100644 index 0000000..e1bf088 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.10.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.11.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.11.rcgu.o new file mode 100644 index 0000000..0ea84b0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.11.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.12.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.12.rcgu.o new file mode 100644 index 0000000..0f98007 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.12.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.13.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.13.rcgu.o new file mode 100644 index 0000000..9746579 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.13.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.14.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.14.rcgu.o new file mode 100644 index 0000000..86922d0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.14.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.15.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.15.rcgu.o new file mode 100644 index 0000000..9845529 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_automata-e1200410093b7b02.regex_automata.c03c5828e24bd25-cgu.15.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.d b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.d new file mode 100644 index 0000000..4dd486e --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.d @@ -0,0 +1,37 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libregex_syntax-12e7fb1c33422c8d.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/parse.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/print.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/visitor.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/debug.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/either.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/interval.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/literal.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/print.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/translate.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/visitor.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/rank.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/age.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/case_folding_simple.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/general_category.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/grapheme_cluster_break.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/perl_word.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_bool.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_names.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_values.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/script.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/script_extension.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/sentence_break.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/word_break.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/utf8.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libregex_syntax-12e7fb1c33422c8d.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/parse.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/print.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/visitor.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/debug.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/either.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/interval.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/literal.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/print.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/translate.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/visitor.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/rank.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/age.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/case_folding_simple.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/general_category.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/grapheme_cluster_break.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/perl_word.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_bool.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_names.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_values.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/script.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/script_extension.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/sentence_break.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/word_break.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/utf8.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/parse.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/print.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/visitor.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/debug.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/either.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/interval.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/literal.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/print.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/translate.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/visitor.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/rank.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/age.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/case_folding_simple.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/general_category.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/grapheme_cluster_break.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/perl_word.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_bool.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_names.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_values.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/script.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/script_extension.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/sentence_break.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/word_break.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/utf8.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/parse.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/print.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/ast/visitor.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/debug.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/either.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/interval.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/literal.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/print.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/translate.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/hir/visitor.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/parser.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/rank.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/age.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/case_folding_simple.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/general_category.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/grapheme_cluster_break.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/perl_word.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_bool.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_names.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/property_values.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/script.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/script_extension.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/sentence_break.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/unicode_tables/word_break.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/regex-syntax-0.8.6/src/utf8.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.00.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.00.rcgu.o new file mode 100644 index 0000000..04a6171 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.00.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.01.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.01.rcgu.o new file mode 100644 index 0000000..20d27ac Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.01.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.02.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.02.rcgu.o new file mode 100644 index 0000000..be08453 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.02.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.03.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.03.rcgu.o new file mode 100644 index 0000000..d51f7c8 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.03.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.04.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.04.rcgu.o new file mode 100644 index 0000000..26483af Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.04.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.05.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.05.rcgu.o new file mode 100644 index 0000000..0c3f923 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.05.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.06.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.06.rcgu.o new file mode 100644 index 0000000..24c56f7 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.06.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.07.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.07.rcgu.o new file mode 100644 index 0000000..63585c4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.07.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.08.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.08.rcgu.o new file mode 100644 index 0000000..7190613 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.08.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.09.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.09.rcgu.o new file mode 100644 index 0000000..395d037 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.09.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.10.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.10.rcgu.o new file mode 100644 index 0000000..e77b352 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.10.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.11.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.11.rcgu.o new file mode 100644 index 0000000..0e6835c Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.11.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.12.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.12.rcgu.o new file mode 100644 index 0000000..567c659 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.12.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.13.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.13.rcgu.o new file mode 100644 index 0000000..63e9a48 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.13.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.14.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.14.rcgu.o new file mode 100644 index 0000000..8a2d4be Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.14.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.15.rcgu.o b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.15.rcgu.o new file mode 100644 index 0000000..62a4b39 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/regex_syntax-12e7fb1c33422c8d.regex_syntax.85bdec8ac08ac0dc-cgu.15.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scopeguard-d2663eb5fcef9402.d b/src-tauri/html_scraper/target/debug/deps/scopeguard-d2663eb5fcef9402.d new file mode 100644 index 0000000..926dbed --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/scopeguard-d2663eb5fcef9402.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libscopeguard-d2663eb5fcef9402.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scopeguard-1.2.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libscopeguard-d2663eb5fcef9402.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scopeguard-1.2.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/scopeguard-d2663eb5fcef9402.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scopeguard-1.2.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scopeguard-1.2.0/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/scopeguard-d2663eb5fcef9402.scopeguard.76aa88803bc034cb-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scopeguard-d2663eb5fcef9402.scopeguard.76aa88803bc034cb-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scopeguard-d2663eb5fcef9402.scopeguard.76aa88803bc034cb-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.d b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.d new file mode 100644 index 0000000..6fa803e --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.d @@ -0,0 +1,19 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libscraper-719afe7608b3dfad.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/element.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/serializable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/error/utils.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/serializable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/tree_sink.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/node.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/node/serializable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/selectable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/selector.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libscraper-719afe7608b3dfad.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/element.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/serializable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/error/utils.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/serializable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/tree_sink.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/node.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/node/serializable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/selectable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/selector.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/element.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/serializable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/error/utils.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/serializable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/tree_sink.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/node.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/node/serializable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/selectable.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/selector.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/element.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/element_ref/serializable.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/error/utils.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/serializable.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/html/tree_sink.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/node.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/node/serializable.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/selectable.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/scraper-0.19.1/src/selector.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.00.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.00.rcgu.o new file mode 100644 index 0000000..fecfadb Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.00.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.01.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.01.rcgu.o new file mode 100644 index 0000000..93b2d06 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.01.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.02.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.02.rcgu.o new file mode 100644 index 0000000..4994f6f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.02.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.03.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.03.rcgu.o new file mode 100644 index 0000000..d821508 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.03.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.04.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.04.rcgu.o new file mode 100644 index 0000000..82628c1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.04.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.05.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.05.rcgu.o new file mode 100644 index 0000000..f017e32 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.05.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.06.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.06.rcgu.o new file mode 100644 index 0000000..214f019 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.06.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.07.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.07.rcgu.o new file mode 100644 index 0000000..15c065f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.07.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.08.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.08.rcgu.o new file mode 100644 index 0000000..567a531 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.08.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.09.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.09.rcgu.o new file mode 100644 index 0000000..9434898 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.09.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.10.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.10.rcgu.o new file mode 100644 index 0000000..a9b0646 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.10.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.11.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.11.rcgu.o new file mode 100644 index 0000000..611068a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.11.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.12.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.12.rcgu.o new file mode 100644 index 0000000..a674e85 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.12.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.13.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.13.rcgu.o new file mode 100644 index 0000000..78fdc0b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.13.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.14.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.14.rcgu.o new file mode 100644 index 0000000..abb69a7 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.14.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.15.rcgu.o b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.15.rcgu.o new file mode 100644 index 0000000..db75d56 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/scraper-719afe7608b3dfad.scraper.fa423b7c690f23a9-cgu.15.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.d b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.d new file mode 100644 index 0000000..8fe6402 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.d @@ -0,0 +1,20 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libselectors-d01401445b4ae298.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/attr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/bloom.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/context.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/matching.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/nth_index_cache.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/sink.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/tree.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/visitor.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/out/ascii_case_insensitive_html_attributes.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libselectors-d01401445b4ae298.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/attr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/bloom.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/context.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/matching.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/nth_index_cache.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/sink.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/tree.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/visitor.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/out/ascii_case_insensitive_html_attributes.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/attr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/bloom.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/builder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/context.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/matching.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/nth_index_cache.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/parser.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/sink.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/tree.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/visitor.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/out/ascii_case_insensitive_html_attributes.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/attr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/bloom.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/builder.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/context.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/matching.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/nth_index_cache.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/parser.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/sink.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/tree.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/selectors-0.25.0/visitor.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/out/ascii_case_insensitive_html_attributes.rs: + +# env-dep:OUT_DIR=/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/selectors-29f623d075f868e9/out diff --git a/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.0.rcgu.o new file mode 100644 index 0000000..2a96af3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.1.rcgu.o b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.1.rcgu.o new file mode 100644 index 0000000..df1274c Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.1.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.2.rcgu.o b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.2.rcgu.o new file mode 100644 index 0000000..7ecb0e0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.2.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.3.rcgu.o b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.3.rcgu.o new file mode 100644 index 0000000..bee3e21 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.3.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.4.rcgu.o b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.4.rcgu.o new file mode 100644 index 0000000..4a756c7 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/selectors-d01401445b4ae298.selectors.ef1e311782e174b-cgu.4.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/serde-3a5c3b1b0f654256.d b/src-tauri/html_scraper/target/debug/deps/serde-3a5c3b1b0f654256.d new file mode 100644 index 0000000..3ddc8a3 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/serde-3a5c3b1b0f654256.d @@ -0,0 +1,14 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libserde-3a5c3b1b0f654256.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/integer128.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/de.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/ser.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/out/private.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libserde-3a5c3b1b0f654256.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/integer128.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/de.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/ser.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/out/private.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/serde-3a5c3b1b0f654256.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/integer128.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/de.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/ser.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/out/private.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/integer128.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/de.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde-1.0.227/src/private/ser.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/out/private.rs: + +# env-dep:OUT_DIR=/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde-00b2cf4d37e16c0d/out diff --git a/src-tauri/html_scraper/target/debug/deps/serde-3a5c3b1b0f654256.serde.486a608c3e6c66a8-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/serde-3a5c3b1b0f654256.serde.486a608c3e6c66a8-cgu.0.rcgu.o new file mode 100644 index 0000000..b552f44 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/serde-3a5c3b1b0f654256.serde.486a608c3e6c66a8-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/serde_core-16cfd65e06a37e7a.d b/src-tauri/html_scraper/target/debug/deps/serde_core-16cfd65e06a37e7a.d new file mode 100644 index 0000000..3bdca0f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/serde_core-16cfd65e06a37e7a.d @@ -0,0 +1,27 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libserde_core-16cfd65e06a37e7a.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/crate_root.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/value.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/ignored_any.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/fmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/impossible.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/format.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/content.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/seed.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/doc.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/size_hint.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/string.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/out/private.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libserde_core-16cfd65e06a37e7a.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/crate_root.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/value.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/ignored_any.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/fmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/impossible.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/format.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/content.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/seed.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/doc.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/size_hint.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/string.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/out/private.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/serde_core-16cfd65e06a37e7a.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/crate_root.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/value.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/ignored_any.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/fmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/impossible.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/format.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/content.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/seed.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/doc.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/size_hint.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/string.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/out/private.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/crate_root.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/value.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/ignored_any.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/de/impls.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/fmt.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/impls.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/ser/impossible.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/format.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/content.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/seed.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/doc.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/size_hint.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/serde_core-1.0.227/src/private/string.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/out/private.rs: + +# env-dep:OUT_DIR=/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/build/serde_core-13d332fbbf401748/out diff --git a/src-tauri/html_scraper/target/debug/deps/serde_core-16cfd65e06a37e7a.serde_core.40bc510fee60ef4d-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/serde_core-16cfd65e06a37e7a.serde_core.40bc510fee60ef4d-cgu.0.rcgu.o new file mode 100644 index 0000000..c4984d5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/serde_core-16cfd65e06a37e7a.serde_core.40bc510fee60ef4d-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/servo_arc-a635e1107c03b5e4.d b/src-tauri/html_scraper/target/debug/deps/servo_arc-a635e1107c03b5e4.d new file mode 100644 index 0000000..81c9560 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/servo_arc-a635e1107c03b5e4.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libservo_arc-a635e1107c03b5e4.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/servo_arc-0.3.0/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libservo_arc-a635e1107c03b5e4.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/servo_arc-0.3.0/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/servo_arc-a635e1107c03b5e4.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/servo_arc-0.3.0/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/servo_arc-0.3.0/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/servo_arc-a635e1107c03b5e4.servo_arc.dd743db395c1ab18-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/servo_arc-a635e1107c03b5e4.servo_arc.dd743db395c1ab18-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/servo_arc-a635e1107c03b5e4.servo_arc.dd743db395c1ab18-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/siphasher-771f4d4daf8f4dea.d b/src-tauri/html_scraper/target/debug/deps/siphasher-771f4d4daf8f4dea.d new file mode 100644 index 0000000..ad03eeb --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/siphasher-771f4d4daf8f4dea.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libsiphasher-771f4d4daf8f4dea.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/sip.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/sip128.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libsiphasher-771f4d4daf8f4dea.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/sip.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/sip128.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/siphasher-771f4d4daf8f4dea.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/sip.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/sip128.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/sip.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-0.3.11/src/sip128.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/siphasher-771f4d4daf8f4dea.siphasher.afd4c4f24aa57ad2-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/siphasher-771f4d4daf8f4dea.siphasher.afd4c4f24aa57ad2-cgu.0.rcgu.o new file mode 100644 index 0000000..f9041d5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/siphasher-771f4d4daf8f4dea.siphasher.afd4c4f24aa57ad2-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/siphasher-834de04fecf33a0a.d b/src-tauri/html_scraper/target/debug/deps/siphasher-834de04fecf33a0a.d new file mode 100644 index 0000000..cbff759 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/siphasher-834de04fecf33a0a.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libsiphasher-834de04fecf33a0a.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/sip.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/sip128.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/../README.md + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libsiphasher-834de04fecf33a0a.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/sip.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/sip128.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/../README.md + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/siphasher-834de04fecf33a0a.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/sip.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/sip128.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/../README.md + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/sip.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/sip128.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/siphasher-1.0.1/src/../README.md: diff --git a/src-tauri/html_scraper/target/debug/deps/siphasher-834de04fecf33a0a.siphasher.d463fc31b7587c94-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/siphasher-834de04fecf33a0a.siphasher.d463fc31b7587c94-cgu.0.rcgu.o new file mode 100644 index 0000000..aed3a95 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/siphasher-834de04fecf33a0a.siphasher.d463fc31b7587c94-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/smallvec-6bb0dfc0967f3f53.d b/src-tauri/html_scraper/target/debug/deps/smallvec-6bb0dfc0967f3f53.d new file mode 100644 index 0000000..1c325c2 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/smallvec-6bb0dfc0967f3f53.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libsmallvec-6bb0dfc0967f3f53.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/smallvec-1.15.1/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libsmallvec-6bb0dfc0967f3f53.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/smallvec-1.15.1/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/smallvec-6bb0dfc0967f3f53.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/smallvec-1.15.1/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/smallvec-1.15.1/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/smallvec-6bb0dfc0967f3f53.smallvec.2ea9cff6eb76fdde-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/smallvec-6bb0dfc0967f3f53.smallvec.2ea9cff6eb76fdde-cgu.0.rcgu.o new file mode 100644 index 0000000..4276ced Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/smallvec-6bb0dfc0967f3f53.smallvec.2ea9cff6eb76fdde-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/stable_deref_trait-c602f96252fb9a6a.d b/src-tauri/html_scraper/target/debug/deps/stable_deref_trait-c602f96252fb9a6a.d new file mode 100644 index 0000000..4325f27 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/stable_deref_trait-c602f96252fb9a6a.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libstable_deref_trait-c602f96252fb9a6a.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/stable_deref_trait-1.2.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libstable_deref_trait-c602f96252fb9a6a.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/stable_deref_trait-1.2.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/stable_deref_trait-c602f96252fb9a6a.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/stable_deref_trait-1.2.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/stable_deref_trait-1.2.0/src/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/stable_deref_trait-c602f96252fb9a6a.stable_deref_trait.f0d3702e9e4bbdd9-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/stable_deref_trait-c602f96252fb9a6a.stable_deref_trait.f0d3702e9e4bbdd9-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/stable_deref_trait-c602f96252fb9a6a.stable_deref_trait.f0d3702e9e4bbdd9-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/string_cache-e873790d99344744.d b/src-tauri/html_scraper/target/debug/deps/string_cache-e873790d99344744.d new file mode 100644 index 0000000..0907471 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/string_cache-e873790d99344744.d @@ -0,0 +1,11 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libstring_cache-e873790d99344744.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/atom.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/dynamic_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/static_sets.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/trivial_impls.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libstring_cache-e873790d99344744.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/atom.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/dynamic_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/static_sets.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/trivial_impls.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/string_cache-e873790d99344744.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/atom.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/dynamic_set.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/static_sets.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/trivial_impls.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/atom.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/dynamic_set.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/static_sets.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache-0.8.9/src/trivial_impls.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/string_cache-e873790d99344744.string_cache.ee163e5e5d6e0be9-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/string_cache-e873790d99344744.string_cache.ee163e5e5d6e0be9-cgu.0.rcgu.o new file mode 100644 index 0000000..22c6e71 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/string_cache-e873790d99344744.string_cache.ee163e5e5d6e0be9-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/string_cache_codegen-cd0dc4a88bbb3be6.d b/src-tauri/html_scraper/target/debug/deps/string_cache_codegen-cd0dc4a88bbb3be6.d new file mode 100644 index 0000000..4fd2a01 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/string_cache_codegen-cd0dc4a88bbb3be6.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libstring_cache_codegen-cd0dc4a88bbb3be6.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache_codegen-0.5.4/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libstring_cache_codegen-cd0dc4a88bbb3be6.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache_codegen-0.5.4/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/string_cache_codegen-cd0dc4a88bbb3be6.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache_codegen-0.5.4/lib.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/string_cache_codegen-0.5.4/lib.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/syn-2aa77fc1e3a70b43.d b/src-tauri/html_scraper/target/debug/deps/syn-2aa77fc1e3a70b43.d new file mode 100644 index 0000000..94a6174 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/syn-2aa77fc1e3a70b43.d @@ -0,0 +1,58 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libsyn-2aa77fc1e3a70b43.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/group.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/token.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/attr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/bigint.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/buffer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/classify.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/custom_keyword.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/custom_punctuation.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/data.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/derive.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/drops.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/expr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/file.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/fixup.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/generics.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ident.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/item.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lifetime.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lit.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lookahead.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/mac.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/meta.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/op.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/discouraged.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse_macro_input.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse_quote.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/pat.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/path.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/precedence.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/print.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/punctuated.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/restriction.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/sealed.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/span.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/spanned.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/stmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/thread.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/tt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ty.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/verbatim.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/whitespace.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/export.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/fold.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/clone.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/debug.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/eq.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/hash.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libsyn-2aa77fc1e3a70b43.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/group.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/token.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/attr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/bigint.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/buffer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/classify.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/custom_keyword.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/custom_punctuation.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/data.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/derive.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/drops.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/expr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/file.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/fixup.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/generics.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ident.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/item.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lifetime.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lit.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lookahead.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/mac.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/meta.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/op.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/discouraged.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse_macro_input.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse_quote.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/pat.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/path.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/precedence.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/print.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/punctuated.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/restriction.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/sealed.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/span.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/spanned.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/stmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/thread.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/tt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ty.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/verbatim.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/whitespace.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/export.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/fold.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/clone.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/debug.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/eq.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/hash.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/syn-2aa77fc1e3a70b43.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/group.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/token.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/attr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/bigint.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/buffer.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/classify.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/custom_keyword.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/custom_punctuation.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/data.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/derive.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/drops.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/expr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ext.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/file.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/fixup.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/generics.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ident.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/item.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lifetime.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lit.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lookahead.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/mac.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/meta.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/op.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/discouraged.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse_macro_input.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse_quote.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/pat.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/path.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/precedence.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/print.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/punctuated.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/restriction.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/sealed.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/span.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/spanned.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/stmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/thread.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/tt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ty.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/verbatim.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/whitespace.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/export.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/fold.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/clone.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/debug.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/eq.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/hash.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/group.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/token.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/attr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/bigint.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/buffer.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/classify.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/custom_keyword.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/custom_punctuation.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/data.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/derive.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/drops.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/expr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ext.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/file.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/fixup.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/generics.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ident.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/item.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lifetime.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lit.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/lookahead.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/mac.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/meta.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/op.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/discouraged.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse_macro_input.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/parse_quote.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/pat.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/path.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/precedence.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/print.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/punctuated.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/restriction.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/sealed.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/span.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/spanned.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/stmt.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/thread.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/tt.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/ty.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/verbatim.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/whitespace.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/export.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/fold.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/clone.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/debug.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/eq.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/syn-2.0.106/src/gen/hash.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/tendril-571b6474f862ecf6.d b/src-tauri/html_scraper/target/debug/deps/tendril-571b6474f862ecf6.d new file mode 100644 index 0000000..21f9590 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/tendril-571b6474f862ecf6.d @@ -0,0 +1,13 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libtendril-571b6474f862ecf6.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/fmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/stream.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/buf32.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/tendril.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/utf8_decode.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/util.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libtendril-571b6474f862ecf6.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/fmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/stream.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/buf32.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/tendril.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/utf8_decode.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/util.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/tendril-571b6474f862ecf6.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/fmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/stream.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/buf32.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/tendril.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/utf8_decode.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/util.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/fmt.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/stream.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/buf32.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/tendril.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/utf8_decode.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/tendril-0.4.3/src/util.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/tendril-571b6474f862ecf6.tendril.df029e6305171a48-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/tendril-571b6474f862ecf6.tendril.df029e6305171a48-cgu.0.rcgu.o new file mode 100644 index 0000000..f001870 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/tendril-571b6474f862ecf6.tendril.df029e6305171a48-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/thiserror-5603079bf135f2fd.d b/src-tauri/html_scraper/target/debug/deps/thiserror-5603079bf135f2fd.d new file mode 100644 index 0000000..2bffb1b --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/thiserror-5603079bf135f2fd.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libthiserror-5603079bf135f2fd.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/aserror.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/display.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libthiserror-5603079bf135f2fd.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/aserror.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/display.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/thiserror-5603079bf135f2fd.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/aserror.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/display.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/aserror.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-1.0.69/src/display.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/thiserror-5603079bf135f2fd.thiserror.1f5046b1747482aa-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/thiserror-5603079bf135f2fd.thiserror.1f5046b1747482aa-cgu.0.rcgu.o new file mode 100644 index 0000000..44add98 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/thiserror-5603079bf135f2fd.thiserror.1f5046b1747482aa-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/thiserror_impl-7462c846dc67d23c.d b/src-tauri/html_scraper/target/debug/deps/thiserror_impl-7462c846dc67d23c.d new file mode 100644 index 0000000..1efd3a0 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/thiserror_impl-7462c846dc67d23c.d @@ -0,0 +1,14 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libthiserror_impl-7462c846dc67d23c.dylib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/ast.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/attr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/expand.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/fmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/generics.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/prop.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/scan_expr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/span.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/valid.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/thiserror_impl-7462c846dc67d23c.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/ast.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/attr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/expand.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/fmt.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/generics.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/prop.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/scan_expr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/span.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/valid.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/ast.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/attr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/expand.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/fmt.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/generics.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/prop.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/scan_expr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/span.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/thiserror-impl-1.0.69/src/valid.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/unicode_ident-1017dd60fc08fd88.d b/src-tauri/html_scraper/target/debug/deps/unicode_ident-1017dd60fc08fd88.d new file mode 100644 index 0000000..e8083ff --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/unicode_ident-1017dd60fc08fd88.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libunicode_ident-1017dd60fc08fd88.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-ident-1.0.19/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-ident-1.0.19/src/tables.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libunicode_ident-1017dd60fc08fd88.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-ident-1.0.19/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-ident-1.0.19/src/tables.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/unicode_ident-1017dd60fc08fd88.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-ident-1.0.19/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-ident-1.0.19/src/tables.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-ident-1.0.19/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-ident-1.0.19/src/tables.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/unicode_width-3846e86ff5e2928c.d b/src-tauri/html_scraper/target/debug/deps/unicode_width-3846e86ff5e2928c.d new file mode 100644 index 0000000..51b9cee --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/unicode_width-3846e86ff5e2928c.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libunicode_width-3846e86ff5e2928c.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-width-0.2.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-width-0.2.1/src/tables.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libunicode_width-3846e86ff5e2928c.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-width-0.2.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-width-0.2.1/src/tables.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/unicode_width-3846e86ff5e2928c.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-width-0.2.1/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-width-0.2.1/src/tables.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-width-0.2.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/unicode-width-0.2.1/src/tables.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/unicode_width-3846e86ff5e2928c.unicode_width.38bb9f55821a505c-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/unicode_width-3846e86ff5e2928c.unicode_width.38bb9f55821a505c-cgu.0.rcgu.o new file mode 100644 index 0000000..b1bb20c Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/unicode_width-3846e86ff5e2928c.unicode_width.38bb9f55821a505c-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/utf8-fde59839729e6c84.d b/src-tauri/html_scraper/target/debug/deps/utf8-fde59839729e6c84.d new file mode 100644 index 0000000..98cfc18 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/utf8-fde59839729e6c84.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libutf8-fde59839729e6c84.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/lossy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/read.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libutf8-fde59839729e6c84.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/lossy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/read.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/utf8-fde59839729e6c84.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/lossy.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/read.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/lossy.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/utf-8-0.7.6/src/read.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/utf8-fde59839729e6c84.utf8.99cdeef47289a7ee-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/utf8-fde59839729e6c84.utf8.99cdeef47289a7ee-cgu.0.rcgu.o new file mode 100644 index 0000000..cd921f3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/utf8-fde59839729e6c84.utf8.99cdeef47289a7ee-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/deps/version_check-924408caddcfebba.d b/src-tauri/html_scraper/target/debug/deps/version_check-924408caddcfebba.d new file mode 100644 index 0000000..684242f --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/version_check-924408caddcfebba.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libversion_check-924408caddcfebba.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/version.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/channel.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/date.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libversion_check-924408caddcfebba.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/version.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/channel.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/date.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/version_check-924408caddcfebba.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/version.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/channel.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/date.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/version.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/channel.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/version_check-0.9.5/src/date.rs: diff --git a/src-tauri/html_scraper/target/debug/deps/zerocopy-97ddaa70c3afd57d.d b/src-tauri/html_scraper/target/debug/deps/zerocopy-97ddaa70c3afd57d.d new file mode 100644 index 0000000..367e289 --- /dev/null +++ b/src-tauri/html_scraper/target/debug/deps/zerocopy-97ddaa70c3afd57d.d @@ -0,0 +1,28 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libzerocopy-97ddaa70c3afd57d.rmeta: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/macro_util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/byte_slice.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/byteorder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/deprecated.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/doctests.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/layout.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/inner.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/invariant.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/ptr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/transmute.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/ref.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/split_at.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/wrappers.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/libzerocopy-97ddaa70c3afd57d.rlib: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/macro_util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/byte_slice.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/byteorder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/deprecated.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/doctests.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/layout.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/inner.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/invariant.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/ptr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/transmute.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/ref.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/split_at.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/wrappers.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/debug/deps/zerocopy-97ddaa70c3afd57d.d: /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/lib.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/macro_util.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/byte_slice.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/byteorder.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/deprecated.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/doctests.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/error.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/impls.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/layout.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/macros.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/mod.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/inner.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/invariant.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/ptr.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/transmute.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/ref.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/split_at.rs /Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/wrappers.rs + +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/lib.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/util/macro_util.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/byte_slice.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/byteorder.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/deprecated.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/doctests.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/error.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/impls.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/layout.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/macros.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/mod.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/inner.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/invariant.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/ptr.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/pointer/transmute.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/ref.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/split_at.rs: +/Users/hokori/.cargo/registry/src/rsproxy.cn-e3de039b2554c837/zerocopy-0.8.27/src/wrappers.rs: + +# env-dep:CARGO_PKG_VERSION=0.8.27 diff --git a/src-tauri/html_scraper/target/debug/deps/zerocopy-97ddaa70c3afd57d.zerocopy.cbc842af99811a07-cgu.0.rcgu.o b/src-tauri/html_scraper/target/debug/deps/zerocopy-97ddaa70c3afd57d.zerocopy.cbc842af99811a07-cgu.0.rcgu.o new file mode 100644 index 0000000..3832726 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/deps/zerocopy-97ddaa70c3afd57d.zerocopy.cbc842af99811a07-cgu.0.rcgu.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/05a6ledm442jo1gucysw1iy2z.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/05a6ledm442jo1gucysw1iy2z.o new file mode 100644 index 0000000..6b3bf74 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/05a6ledm442jo1gucysw1iy2z.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/05chzh1mrghd3iwcetxqdf9bw.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/05chzh1mrghd3iwcetxqdf9bw.o new file mode 100644 index 0000000..cd80156 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/05chzh1mrghd3iwcetxqdf9bw.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/16x6yclox1660fea03vwrbdzd.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/16x6yclox1660fea03vwrbdzd.o new file mode 100644 index 0000000..7296bd3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/16x6yclox1660fea03vwrbdzd.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/1stwb7jdagsfck60n0ggk68n5.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/1stwb7jdagsfck60n0ggk68n5.o new file mode 100644 index 0000000..dc2a437 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/1stwb7jdagsfck60n0ggk68n5.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/1u5v5rxzv4wnoop5ia95w49pj.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/1u5v5rxzv4wnoop5ia95w49pj.o new file mode 100644 index 0000000..80109f2 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/1u5v5rxzv4wnoop5ia95w49pj.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/1xxmhia9kqr2fen0aqth4lgi2.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/1xxmhia9kqr2fen0aqth4lgi2.o new file mode 100644 index 0000000..f33e827 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/1xxmhia9kqr2fen0aqth4lgi2.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/243zektbon76lz4jau4xt9iqm.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/243zektbon76lz4jau4xt9iqm.o new file mode 100644 index 0000000..5fd01ec Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/243zektbon76lz4jau4xt9iqm.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/2lvyx338e47biinqax6gmkrko.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/2lvyx338e47biinqax6gmkrko.o new file mode 100644 index 0000000..a33494e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/2lvyx338e47biinqax6gmkrko.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/2mn8jkuf32lyu5ug7ekt3vvmd.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/2mn8jkuf32lyu5ug7ekt3vvmd.o new file mode 100644 index 0000000..bc7a82b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/2mn8jkuf32lyu5ug7ekt3vvmd.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/2s48w3375yopeg099qp6t5i4z.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/2s48w3375yopeg099qp6t5i4z.o new file mode 100644 index 0000000..0dbbda5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/2s48w3375yopeg099qp6t5i4z.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/34a5zqftso1nwi6bs3s4sk3ke.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/34a5zqftso1nwi6bs3s4sk3ke.o new file mode 100644 index 0000000..74362a0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/34a5zqftso1nwi6bs3s4sk3ke.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/4nj10wf1h4hzsfuynqbvv0fr4.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/4nj10wf1h4hzsfuynqbvv0fr4.o new file mode 100644 index 0000000..8158d63 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/4nj10wf1h4hzsfuynqbvv0fr4.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/4sgt24yjv7uia1rpgx9f877ee.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/4sgt24yjv7uia1rpgx9f877ee.o new file mode 100644 index 0000000..8adcf55 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/4sgt24yjv7uia1rpgx9f877ee.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/5ag3o1w3blfhe071d46d9h8fy.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/5ag3o1w3blfhe071d46d9h8fy.o new file mode 100644 index 0000000..eb520a9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/5ag3o1w3blfhe071d46d9h8fy.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/5e07khggczo8grt88x9i7erto.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/5e07khggczo8grt88x9i7erto.o new file mode 100644 index 0000000..886c135 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/5e07khggczo8grt88x9i7erto.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/5w6s4xyqkj1xm1qxyvymvwdbc.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/5w6s4xyqkj1xm1qxyvymvwdbc.o new file mode 100644 index 0000000..627e690 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/5w6s4xyqkj1xm1qxyvymvwdbc.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/6817i3jciu74vc3dhj8y17aa2.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/6817i3jciu74vc3dhj8y17aa2.o new file mode 100644 index 0000000..ea23a18 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/6817i3jciu74vc3dhj8y17aa2.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/6az7uphpl02i4avsk3a9hg97v.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/6az7uphpl02i4avsk3a9hg97v.o new file mode 100644 index 0000000..f099dc5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/6az7uphpl02i4avsk3a9hg97v.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/70vofehzcthuhi40tmkvs96im.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/70vofehzcthuhi40tmkvs96im.o new file mode 100644 index 0000000..e77b020 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/70vofehzcthuhi40tmkvs96im.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/78d3jzr1zep8upbt038or67le.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/78d3jzr1zep8upbt038or67le.o new file mode 100644 index 0000000..147a7ea Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/78d3jzr1zep8upbt038or67le.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/79f2qavqcxsebur5gz2rry5zk.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/79f2qavqcxsebur5gz2rry5zk.o new file mode 100644 index 0000000..c66e719 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/79f2qavqcxsebur5gz2rry5zk.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/7qrcnk7rog5oepgx6pegt2wzo.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/7qrcnk7rog5oepgx6pegt2wzo.o new file mode 100644 index 0000000..9341d89 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/7qrcnk7rog5oepgx6pegt2wzo.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/7yc1jl711aez0bjkzo1o01waw.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/7yc1jl711aez0bjkzo1o01waw.o new file mode 100644 index 0000000..19d38c5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/7yc1jl711aez0bjkzo1o01waw.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/80uysws5vhhcfiyq9nic4fdwo.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/80uysws5vhhcfiyq9nic4fdwo.o new file mode 100644 index 0000000..b1c869b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/80uysws5vhhcfiyq9nic4fdwo.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/82fxdn2ehecz9n39f82b6b4fb.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/82fxdn2ehecz9n39f82b6b4fb.o new file mode 100644 index 0000000..d6a8d20 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/82fxdn2ehecz9n39f82b6b4fb.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/8ucb4g9vn0csrqdg2g7dgdax5.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/8ucb4g9vn0csrqdg2g7dgdax5.o new file mode 100644 index 0000000..d68d523 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/8ucb4g9vn0csrqdg2g7dgdax5.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/91edmc95ooazz02973f88yj7b.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/91edmc95ooazz02973f88yj7b.o new file mode 100644 index 0000000..39c6929 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/91edmc95ooazz02973f88yj7b.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/91ef7hs2am60yu9o03fd1ekx8.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/91ef7hs2am60yu9o03fd1ekx8.o new file mode 100644 index 0000000..21b7d61 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/91ef7hs2am60yu9o03fd1ekx8.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/99jlkld7682hdghzkvam2tq8c.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/99jlkld7682hdghzkvam2tq8c.o new file mode 100644 index 0000000..a80689f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/99jlkld7682hdghzkvam2tq8c.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/abh9r7pecmjzp0toy267fug24.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/abh9r7pecmjzp0toy267fug24.o new file mode 100644 index 0000000..550955f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/abh9r7pecmjzp0toy267fug24.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/avfz260hoshohzg4acd3kbw10.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/avfz260hoshohzg4acd3kbw10.o new file mode 100644 index 0000000..e063fdf Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/avfz260hoshohzg4acd3kbw10.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/awoydahoh83qpnn5fyieht4cd.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/awoydahoh83qpnn5fyieht4cd.o new file mode 100644 index 0000000..ee0d9d8 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/awoydahoh83qpnn5fyieht4cd.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/bddc41bnkoos7s44jc3kvdc5x.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/bddc41bnkoos7s44jc3kvdc5x.o new file mode 100644 index 0000000..ca2aa66 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/bddc41bnkoos7s44jc3kvdc5x.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/c0g2ui1n1zvke9c4alvr9n0o9.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/c0g2ui1n1zvke9c4alvr9n0o9.o new file mode 100644 index 0000000..2ceb711 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/c0g2ui1n1zvke9c4alvr9n0o9.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/c3gpklby2ah3x08d1l1i0fflu.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/c3gpklby2ah3x08d1l1i0fflu.o new file mode 100644 index 0000000..5bae350 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/c3gpklby2ah3x08d1l1i0fflu.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/c5bfqnj2m0qterp3rel36ng05.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/c5bfqnj2m0qterp3rel36ng05.o new file mode 100644 index 0000000..919e1ea Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/c5bfqnj2m0qterp3rel36ng05.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/clyosjzsb1xhzciq3qvvwfsh8.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/clyosjzsb1xhzciq3qvvwfsh8.o new file mode 100644 index 0000000..0fed0dd Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/clyosjzsb1xhzciq3qvvwfsh8.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/crhqry4ewjrecgeyoadxytteg.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/crhqry4ewjrecgeyoadxytteg.o new file mode 100644 index 0000000..27fbb3b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/crhqry4ewjrecgeyoadxytteg.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/d82211zvty1oq5m1q1twcdhjd.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/d82211zvty1oq5m1q1twcdhjd.o new file mode 100644 index 0000000..40e236e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/d82211zvty1oq5m1q1twcdhjd.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dep-graph.bin b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dep-graph.bin new file mode 100644 index 0000000..2690e1b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dep-graph.bin differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dj6fx2sc6j85j0b1pa1src98c.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dj6fx2sc6j85j0b1pa1src98c.o new file mode 100644 index 0000000..1a19428 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dj6fx2sc6j85j0b1pa1src98c.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dk872qge7yvm5fqqxrjo69r9w.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dk872qge7yvm5fqqxrjo69r9w.o new file mode 100644 index 0000000..6087aa3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dk872qge7yvm5fqqxrjo69r9w.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/doep033if0jpgqu1ordr2l9m8.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/doep033if0jpgqu1ordr2l9m8.o new file mode 100644 index 0000000..f2eac40 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/doep033if0jpgqu1ordr2l9m8.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dv47t7wnxe8bkj61x2dae1g44.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dv47t7wnxe8bkj61x2dae1g44.o new file mode 100644 index 0000000..cd1dacd Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/dv47t7wnxe8bkj61x2dae1g44.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/engrpahpcqd41cxw5158s884n.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/engrpahpcqd41cxw5158s884n.o new file mode 100644 index 0000000..ea194f4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/engrpahpcqd41cxw5158s884n.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/f01v3auyr8xc6l8jhxxo44iwg.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/f01v3auyr8xc6l8jhxxo44iwg.o new file mode 100644 index 0000000..06bd16a Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/f01v3auyr8xc6l8jhxxo44iwg.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/query-cache.bin b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/query-cache.bin new file mode 100644 index 0000000..ab705a7 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/query-cache.bin differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/work-products.bin b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/work-products.bin new file mode 100644 index 0000000..c452b72 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3-48n66gs8vnoz9c5b59a3xtt5w/work-products.bin differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3.lock b/src-tauri/html_scraper/target/debug/incremental/html_scraper-1xjk09ig7sg3q/s-hbgw0f3djv-04tp9x3.lock new file mode 100755 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0fcsk5p6640nhux62do561e5m.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0fcsk5p6640nhux62do561e5m.o new file mode 100644 index 0000000..73237af Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0fcsk5p6640nhux62do561e5m.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0lv1mmoupz9d2b3tsknm8hutu.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0lv1mmoupz9d2b3tsknm8hutu.o new file mode 100644 index 0000000..0a43811 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0lv1mmoupz9d2b3tsknm8hutu.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0rc2l8pajzz4gn7cbc7dqx9jk.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0rc2l8pajzz4gn7cbc7dqx9jk.o new file mode 100644 index 0000000..e5707d2 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0rc2l8pajzz4gn7cbc7dqx9jk.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0yspoa633qln51fo83mxqf1n4.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0yspoa633qln51fo83mxqf1n4.o new file mode 100644 index 0000000..2b7a222 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/0yspoa633qln51fo83mxqf1n4.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/17irvcia3duzq2q2yty2ykg4r.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/17irvcia3duzq2q2yty2ykg4r.o new file mode 100644 index 0000000..926b7cc Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/17irvcia3duzq2q2yty2ykg4r.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/1jfw1o0xa71tt5aq2hwesyntw.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/1jfw1o0xa71tt5aq2hwesyntw.o new file mode 100644 index 0000000..2923fc9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/1jfw1o0xa71tt5aq2hwesyntw.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/1qjnh3krkjn4vhomsnc78lrsb.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/1qjnh3krkjn4vhomsnc78lrsb.o new file mode 100644 index 0000000..d90d152 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/1qjnh3krkjn4vhomsnc78lrsb.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/233dygu5oemottzw6otgw9n8u.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/233dygu5oemottzw6otgw9n8u.o new file mode 100644 index 0000000..ef81c9e Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/233dygu5oemottzw6otgw9n8u.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/26sb7rgkr7wddh9b0t5gdjp6m.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/26sb7rgkr7wddh9b0t5gdjp6m.o new file mode 100644 index 0000000..9495466 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/26sb7rgkr7wddh9b0t5gdjp6m.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/26vljy91qcv7539nvfgh5xd99.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/26vljy91qcv7539nvfgh5xd99.o new file mode 100644 index 0000000..4f9d3b6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/26vljy91qcv7539nvfgh5xd99.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/35x00blx5saj5o1842c4tptbc.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/35x00blx5saj5o1842c4tptbc.o new file mode 100644 index 0000000..b6f8e9d Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/35x00blx5saj5o1842c4tptbc.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/38ad93pjtjpnvx08yejfcu8w3.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/38ad93pjtjpnvx08yejfcu8w3.o new file mode 100644 index 0000000..2456fa9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/38ad93pjtjpnvx08yejfcu8w3.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/3f2zivfsult6pdsh53l8cujpl.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/3f2zivfsult6pdsh53l8cujpl.o new file mode 100644 index 0000000..3b11151 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/3f2zivfsult6pdsh53l8cujpl.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/3n4f594le6oudtkcwz57j5o86.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/3n4f594le6oudtkcwz57j5o86.o new file mode 100644 index 0000000..3dd0cb4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/3n4f594le6oudtkcwz57j5o86.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/3pp2h5b4ctd7pdyw2l38lyslh.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/3pp2h5b4ctd7pdyw2l38lyslh.o new file mode 100644 index 0000000..0e69e5f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/3pp2h5b4ctd7pdyw2l38lyslh.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/490hh0cdvmtz0ui41hfslqzg4.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/490hh0cdvmtz0ui41hfslqzg4.o new file mode 100644 index 0000000..8023410 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/490hh0cdvmtz0ui41hfslqzg4.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/4odrr8frdyp89dnhj8f1vjoir.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/4odrr8frdyp89dnhj8f1vjoir.o new file mode 100644 index 0000000..16ca3f1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/4odrr8frdyp89dnhj8f1vjoir.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/5ndejy401jrgeyx0cgghjw105.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/5ndejy401jrgeyx0cgghjw105.o new file mode 100644 index 0000000..0ce0e32 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/5ndejy401jrgeyx0cgghjw105.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/6qamp1awtw2pt9zsjj4ydtv8t.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/6qamp1awtw2pt9zsjj4ydtv8t.o new file mode 100644 index 0000000..541a332 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/6qamp1awtw2pt9zsjj4ydtv8t.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/70omcky5x2tj76lsdy8b3o2l6.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/70omcky5x2tj76lsdy8b3o2l6.o new file mode 100644 index 0000000..d51bcaa Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/70omcky5x2tj76lsdy8b3o2l6.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/726sor76cik6i9d5nfxa3fgj8.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/726sor76cik6i9d5nfxa3fgj8.o new file mode 100644 index 0000000..e6c994b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/726sor76cik6i9d5nfxa3fgj8.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/76hqp2u3747liovxqib89kwks.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/76hqp2u3747liovxqib89kwks.o new file mode 100644 index 0000000..c79fc36 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/76hqp2u3747liovxqib89kwks.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/77q5twacv6b41mehd4zfes6vd.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/77q5twacv6b41mehd4zfes6vd.o new file mode 100644 index 0000000..f6e9612 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/77q5twacv6b41mehd4zfes6vd.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/7s4qd3pxcyrfo9b9vroupubq5.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/7s4qd3pxcyrfo9b9vroupubq5.o new file mode 100644 index 0000000..ceee5ab Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/7s4qd3pxcyrfo9b9vroupubq5.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/7zhjmr777hvu459ex8pmwlgvi.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/7zhjmr777hvu459ex8pmwlgvi.o new file mode 100644 index 0000000..ae70ae0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/7zhjmr777hvu459ex8pmwlgvi.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/88o5p7bc6b00in5g8diw4skk3.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/88o5p7bc6b00in5g8diw4skk3.o new file mode 100644 index 0000000..d617ac8 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/88o5p7bc6b00in5g8diw4skk3.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/89ltyufelia3ztv9eg7cngsiz.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/89ltyufelia3ztv9eg7cngsiz.o new file mode 100644 index 0000000..5954e92 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/89ltyufelia3ztv9eg7cngsiz.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/8mpkm3obli6gu0cjt15zvy71m.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/8mpkm3obli6gu0cjt15zvy71m.o new file mode 100644 index 0000000..600c441 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/8mpkm3obli6gu0cjt15zvy71m.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/8rxju4hhiq6wux82l6yiizkgd.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/8rxju4hhiq6wux82l6yiizkgd.o new file mode 100644 index 0000000..86075c6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/8rxju4hhiq6wux82l6yiizkgd.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/8tza4jqu1gm9jh0ur7c8u4tzi.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/8tza4jqu1gm9jh0ur7c8u4tzi.o new file mode 100644 index 0000000..ec017e1 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/8tza4jqu1gm9jh0ur7c8u4tzi.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/962gt8otmgg19vybis8vnqowe.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/962gt8otmgg19vybis8vnqowe.o new file mode 100644 index 0000000..9adca25 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/962gt8otmgg19vybis8vnqowe.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/a5pftzzs9gp08dycqcefqtez3.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/a5pftzzs9gp08dycqcefqtez3.o new file mode 100644 index 0000000..c392175 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/a5pftzzs9gp08dycqcefqtez3.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/atm1ikwm5ete2bpwsg0zzwzub.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/atm1ikwm5ete2bpwsg0zzwzub.o new file mode 100644 index 0000000..66c86b4 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/atm1ikwm5ete2bpwsg0zzwzub.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/b12r6v1udsr6tk3v1gmt7g6h3.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/b12r6v1udsr6tk3v1gmt7g6h3.o new file mode 100644 index 0000000..340c47b Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/b12r6v1udsr6tk3v1gmt7g6h3.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/b59ofr9ymqm4k9j0mgk91aj3a.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/b59ofr9ymqm4k9j0mgk91aj3a.o new file mode 100644 index 0000000..2f8c02f Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/b59ofr9ymqm4k9j0mgk91aj3a.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/bckj4pq8r3y675k238szfito9.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/bckj4pq8r3y675k238szfito9.o new file mode 100644 index 0000000..36078df Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/bckj4pq8r3y675k238szfito9.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/c3rmrr85ht2zojihk5adrhhlm.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/c3rmrr85ht2zojihk5adrhhlm.o new file mode 100644 index 0000000..02d81ba Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/c3rmrr85ht2zojihk5adrhhlm.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/cgufaxjv7gcvm0rfr63u6iu8a.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/cgufaxjv7gcvm0rfr63u6iu8a.o new file mode 100644 index 0000000..30502c0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/cgufaxjv7gcvm0rfr63u6iu8a.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/cqz2n9ptrsu52ia9zlrgxvm8f.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/cqz2n9ptrsu52ia9zlrgxvm8f.o new file mode 100644 index 0000000..43682d5 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/cqz2n9ptrsu52ia9zlrgxvm8f.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/cwxjdol3rqcaeuy9f9veuiikc.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/cwxjdol3rqcaeuy9f9veuiikc.o new file mode 100644 index 0000000..886d1b6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/cwxjdol3rqcaeuy9f9veuiikc.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/d2ishb7f5q91fc4yvgnkim9ba.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/d2ishb7f5q91fc4yvgnkim9ba.o new file mode 100644 index 0000000..a79adc6 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/d2ishb7f5q91fc4yvgnkim9ba.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dep-graph.bin b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dep-graph.bin new file mode 100644 index 0000000..8e5e6f0 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dep-graph.bin differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dlcz24gcirwy97wt2bgol3ggj.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dlcz24gcirwy97wt2bgol3ggj.o new file mode 100644 index 0000000..7c51d8c Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dlcz24gcirwy97wt2bgol3ggj.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dvqjbjk7knm8idwr6dekzfdqm.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dvqjbjk7knm8idwr6dekzfdqm.o new file mode 100644 index 0000000..63484f9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dvqjbjk7knm8idwr6dekzfdqm.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dy8l49glza8fngu15t3426uka.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dy8l49glza8fngu15t3426uka.o new file mode 100644 index 0000000..d8655dc Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/dy8l49glza8fngu15t3426uka.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/egzmj45w6ie3mmtfmtk69befw.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/egzmj45w6ie3mmtfmtk69befw.o new file mode 100644 index 0000000..6a5ac10 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/egzmj45w6ie3mmtfmtk69befw.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/ela3k6e9d7iwlu6pryv95glg9.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/ela3k6e9d7iwlu6pryv95glg9.o new file mode 100644 index 0000000..9efd492 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/ela3k6e9d7iwlu6pryv95glg9.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/en6fxehcklkge1kilqu1ld4b1.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/en6fxehcklkge1kilqu1ld4b1.o new file mode 100644 index 0000000..e83e4a9 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/en6fxehcklkge1kilqu1ld4b1.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/f2hq9dlrbzf6msnd4nv213mp9.o b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/f2hq9dlrbzf6msnd4nv213mp9.o new file mode 100644 index 0000000..9744542 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/f2hq9dlrbzf6msnd4nv213mp9.o differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/query-cache.bin b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/query-cache.bin new file mode 100644 index 0000000..b273d78 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/query-cache.bin differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/work-products.bin b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/work-products.bin new file mode 100644 index 0000000..5e874d3 Binary files /dev/null and b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v-8pk9qitg54fk14h8d3bxvf1f4/work-products.bin differ diff --git a/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v.lock b/src-tauri/html_scraper/target/debug/incremental/html_scraper-2nrgahtm84j2o/s-hbgw0f7na6-0jsj39v.lock new file mode 100755 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/owl/.rustc_info.json b/src-tauri/html_scraper/target/owl/.rustc_info.json new file mode 100644 index 0000000..fc511ad --- /dev/null +++ b/src-tauri/html_scraper/target/owl/.rustc_info.json @@ -0,0 +1 @@ +{"rustc_fingerprint":9158950504090421981,"outputs":{"1611179108920590944":{"success":true,"status":"","code":0,"stdout":"rustc 1.87.0 (17067e9ac 2025-05-09)\nbinary: rustc\ncommit-hash: 17067e9ac6d7ecb70e50f92c1944e545188d2359\ncommit-date: 2025-05-09\nhost: aarch64-apple-darwin\nrelease: 1.87.0\nLLVM version: 20.1.1\n","stderr":""},"16695856322010688557":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin\noff\npacked\nunpacked\n___\ndebug_assertions\nfmt_debug=\"full\"\noverflow_checks\npanic=\"unwind\"\nproc_macro\nrelocation_model=\"pic\"\ntarget_abi=\"\"\ntarget_arch=\"aarch64\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_family=\"unix\"\ntarget_feature=\"aes\"\ntarget_feature=\"crc\"\ntarget_feature=\"dit\"\ntarget_feature=\"dotprod\"\ntarget_feature=\"dpb\"\ntarget_feature=\"dpb2\"\ntarget_feature=\"fcma\"\ntarget_feature=\"fhm\"\ntarget_feature=\"flagm\"\ntarget_feature=\"flagm2\"\ntarget_feature=\"fp16\"\ntarget_feature=\"frintts\"\ntarget_feature=\"jsconv\"\ntarget_feature=\"lor\"\ntarget_feature=\"lse\"\ntarget_feature=\"lse2\"\ntarget_feature=\"neon\"\ntarget_feature=\"paca\"\ntarget_feature=\"pacg\"\ntarget_feature=\"pan\"\ntarget_feature=\"pmuv3\"\ntarget_feature=\"ras\"\ntarget_feature=\"rcpc\"\ntarget_feature=\"rcpc2\"\ntarget_feature=\"rdm\"\ntarget_feature=\"sb\"\ntarget_feature=\"sha2\"\ntarget_feature=\"sha3\"\ntarget_feature=\"ssbs\"\ntarget_feature=\"v8.1a\"\ntarget_feature=\"v8.2a\"\ntarget_feature=\"v8.3a\"\ntarget_feature=\"v8.4a\"\ntarget_feature=\"vh\"\ntarget_has_atomic\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_has_atomic_equal_alignment=\"128\"\ntarget_has_atomic_equal_alignment=\"16\"\ntarget_has_atomic_equal_alignment=\"32\"\ntarget_has_atomic_equal_alignment=\"64\"\ntarget_has_atomic_equal_alignment=\"8\"\ntarget_has_atomic_equal_alignment=\"ptr\"\ntarget_has_atomic_load_store\ntarget_has_atomic_load_store=\"128\"\ntarget_has_atomic_load_store=\"16\"\ntarget_has_atomic_load_store=\"32\"\ntarget_has_atomic_load_store=\"64\"\ntarget_has_atomic_load_store=\"8\"\ntarget_has_atomic_load_store=\"ptr\"\ntarget_os=\"macos\"\ntarget_pointer_width=\"64\"\ntarget_thread_local\ntarget_vendor=\"apple\"\nub_checks\nunix\n","stderr":""}},"successes":{}} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/cache.json b/src-tauri/html_scraper/target/owl/cache.json new file mode 100644 index 0000000..ec2123c --- /dev/null +++ b/src-tauri/html_scraper/target/owl/cache.json @@ -0,0 +1 @@ +{"/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs":{"items":[{"fn_id":21,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":21},"range":{"from":105,"until":110},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":21},"range":{"from":105,"until":110},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":21},"range":{"from":105,"until":110},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":21},"range":{"from":105,"until":110},"rval":{"type":"borrow","target_local":{"id":3,"fn_id":21},"range":{"from":105,"until":110},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":6,"fn_id":21},"fn_span":{"from":295,"until":299}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":21},"range":{"from":105,"until":110},"rval":null}],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":5,"fn_id":21},"range":{"from":105,"until":110},"rval":{"type":"borrow","target_local":{"id":6,"fn_id":21},"range":{"from":105,"until":110},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":4,"fn_id":21},"range":{"from":105,"until":110},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":21},"range":{"from":105,"until":110},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":21},"ty":"std::option::Option<&dyn std::error::Error>","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":21},"name":"self","span":{"from":105,"until":110},"ty":"&ScrapeError","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":21},"ty":"isize","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":3,"fn_id":21},"name":"source","span":{"from":105,"until":110},"ty":"®ex::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":21},"ty":"&dyn std::error::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":21},"ty":"&dyn std::error::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":21},"ty":"&dyn std::error::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":21},"ty":"®ex::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":19,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":19},"range":{"from":98,"until":103},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":11,"fn_id":19},"range":{"from":301,"until":313},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":19},"range":{"from":301,"until":313},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":12,"fn_id":19},"range":{"from":98,"until":103},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":19},"range":{"from":98,"until":103},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":14,"fn_id":19},"range":{"from":98,"until":103},"rval":null},{"type":"assign","target_local":{"id":13,"fn_id":19},"range":{"from":98,"until":103},"rval":{"type":"borrow","target_local":{"id":14,"fn_id":19},"range":{"from":98,"until":103},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":17,"fn_id":19},"range":{"from":301,"until":313},"rval":{"type":"borrow","target_local":{"id":11,"fn_id":19},"range":{"from":301,"until":313},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":16,"fn_id":19},"range":{"from":301,"until":313},"rval":{"type":"borrow","target_local":{"id":17,"fn_id":19},"range":{"from":301,"until":313},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":15,"fn_id":19},"range":{"from":301,"until":313},"rval":null}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":19},"fn_span":{"from":98,"until":103}}},{"statements":[{"type":"assign","target_local":{"id":4,"fn_id":19},"range":{"from":214,"until":220},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":19},"range":{"from":214,"until":220},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":5,"fn_id":19},"range":{"from":98,"until":103},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":19},"range":{"from":98,"until":103},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":19},"range":{"from":98,"until":103},"rval":null},{"type":"assign","target_local":{"id":6,"fn_id":19},"range":{"from":98,"until":103},"rval":{"type":"borrow","target_local":{"id":7,"fn_id":19},"range":{"from":98,"until":103},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":10,"fn_id":19},"range":{"from":214,"until":220},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":19},"range":{"from":214,"until":220},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":9,"fn_id":19},"range":{"from":214,"until":220},"rval":{"type":"borrow","target_local":{"id":10,"fn_id":19},"range":{"from":214,"until":220},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":8,"fn_id":19},"range":{"from":214,"until":220},"rval":null}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":19},"fn_span":{"from":98,"until":103}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":19},"ty":"std::result::Result<(), std::fmt::Error>","lives":[{"from":102,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":19},"name":"self","span":{"from":98,"until":103},"ty":"&ScrapeError","lives":[{"from":98,"until":103},{"from":301,"until":313},{"from":214,"until":220}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":19},"name":"f","span":{"from":98,"until":103},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":98,"until":103},{"from":301,"until":313},{"from":214,"until":220}],"shared_borrow":[],"mutable_borrow":[{"from":98,"until":103},{"from":301,"until":313},{"from":214,"until":220}],"drop":false,"drop_range":[],"must_live_at":[{"from":98,"until":103},{"from":301,"until":313},{"from":214,"until":220}]},{"type":"other","local":{"id":3,"fn_id":19},"ty":"isize","lives":[{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":4,"fn_id":19},"name":"__self_0","span":{"from":214,"until":220},"ty":"&std::string::String","lives":[{"from":98,"until":103},{"from":214,"until":220}],"shared_borrow":[{"from":214,"until":220},{"from":98,"until":103}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":214,"until":220},{"from":98,"until":103}]},{"type":"other","local":{"id":5,"fn_id":19},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":98,"until":103},{"from":214,"until":220}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":19},"ty":"&str","lives":[{"from":214,"until":220},{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":19},"ty":"&str","lives":[{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":19},"ty":"&dyn std::fmt::Debug","lives":[{"from":219,"until":220},{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":19},"ty":"&&std::string::String","lives":[{"from":214,"until":220}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":19},"ty":"&&std::string::String","lives":[{"from":214,"until":220}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":11,"fn_id":19},"name":"__self_0","span":{"from":301,"until":313},"ty":"®ex::Error","lives":[{"from":98,"until":103},{"from":301,"until":313}],"shared_borrow":[{"from":301,"until":313},{"from":98,"until":103}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":301,"until":313},{"from":98,"until":103}]},{"type":"other","local":{"id":12,"fn_id":19},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":98,"until":103},{"from":301,"until":313}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":19},"ty":"&str","lives":[{"from":301,"until":313},{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":19},"ty":"&str","lives":[{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":15,"fn_id":19},"ty":"&dyn std::fmt::Debug","lives":[{"from":312,"until":313},{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":19},"ty":"&®ex::Error","lives":[{"from":301,"until":313}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":19},"ty":"&®ex::Error","lives":[{"from":301,"until":313}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":27,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":27},"range":{"from":105,"until":110},"rval":{"type":"move","target_local":{"id":1,"fn_id":27},"range":{"from":105,"until":110}}},{"type":"assign","target_local":{"id":0,"fn_id":27},"range":{"from":105,"until":110},"rval":null}],"terminator":{"type":"drop","local":{"id":2,"fn_id":27},"range":{"from":109,"until":110}}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":27},"range":{"from":109,"until":110}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":27},"range":{"from":109,"until":110}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":27},"ty":"ScrapeError","lives":[{"from":109,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":27},"name":"source","span":{"from":105,"until":110},"ty":"regex::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":27},"ty":"regex::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]}]},{"fn_id":10,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":5,"fn_id":10},"range":{"from":738,"until":742},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":10},"range":{"from":738,"until":742},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":4,"fn_id":10},"fn_span":{"from":743,"until":749}}},{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":10},"range":{"from":738,"until":749},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":10},"range":{"from":738,"until":749},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":6,"fn_id":10},"range":{"from":753,"until":762},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":10},"range":{"from":753,"until":762},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":10},"fn_span":{"from":738,"until":762}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":10},"ty":"bool","lives":[{"from":761,"until":762}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":10},"name":"link_text","span":{"from":405,"until":414},"ty":"&mut {closure@src/lib.rs:24:31: 24:37}","lives":[{"from":738,"until":749},{"from":753,"until":762}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":10},"name":"text","span":{"from":732,"until":736},"ty":"&str","lives":[{"from":738,"until":749}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":10},"ty":"&&str","lives":[{"from":738,"until":762}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":10},"ty":"&str","lives":[{"from":738,"until":749}],"shared_borrow":[{"from":738,"until":762}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":748,"until":749},{"from":753,"until":762}]},{"type":"other","local":{"id":5,"fn_id":10},"ty":"&str","lives":[{"from":738,"until":749}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":10},"ty":"&&str","lives":[{"from":738,"until":762}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":24,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":24},"range":{"from":105,"until":110},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":18,"fn_id":24},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":24},"range":{"from":258,"until":273},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":19,"fn_id":24},"range":{"from":105,"until":110},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":24},"range":{"from":105,"until":110},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":32,"fn_id":24},"range":{"from":258,"until":273},"rval":null},{"type":"assign","target_local":{"id":22,"fn_id":24},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":32,"fn_id":24},"range":{"from":258,"until":273},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":21,"fn_id":24},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":22,"fn_id":24},"range":{"from":258,"until":273},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":31,"fn_id":24},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":18,"fn_id":24},"range":{"from":258,"until":273},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":30,"fn_id":24},"fn_span":{"from":258,"until":273}}},{"statements":[{"type":"assign","target_local":{"id":4,"fn_id":24},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":24},"range":{"from":175,"until":191},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":5,"fn_id":24},"range":{"from":105,"until":110},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":24},"range":{"from":105,"until":110},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":33,"fn_id":24},"range":{"from":175,"until":191},"rval":null},{"type":"assign","target_local":{"id":8,"fn_id":24},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":33,"fn_id":24},"range":{"from":175,"until":191},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":24},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":8,"fn_id":24},"range":{"from":175,"until":191},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":17,"fn_id":24},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":24},"range":{"from":175,"until":191},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":16,"fn_id":24},"fn_span":{"from":175,"until":191}}},{"statements":[{"type":"assign","target_local":{"id":15,"fn_id":24},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":16,"fn_id":24},"range":{"from":175,"until":191},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":14,"fn_id":24},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":24},"range":{"from":175,"until":191},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":13,"fn_id":24},"fn_span":{"from":175,"until":191}}},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":29,"fn_id":24},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":30,"fn_id":24},"range":{"from":258,"until":273},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":28,"fn_id":24},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":29,"fn_id":24},"range":{"from":258,"until":273},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":27,"fn_id":24},"fn_span":{"from":258,"until":273}}},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":24},"ty":"std::result::Result<(), std::fmt::Error>","lives":[{"from":109,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":24},"name":"self","span":{"from":105,"until":110},"ty":"&ScrapeError","lives":[{"from":105,"until":110},{"from":258,"until":273},{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":24},"name":"__formatter","span":{"from":105,"until":110},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":105,"until":110},{"from":258,"until":273},{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[{"from":258,"until":273},{"from":175,"until":191}],"drop":false,"drop_range":[],"must_live_at":[{"from":258,"until":273},{"from":175,"until":191}]},{"type":"other","local":{"id":3,"fn_id":24},"ty":"isize","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":4,"fn_id":24},"name":"_0","span":{"from":175,"until":191},"ty":"&std::string::String","lives":[{"from":105,"until":110},{"from":175,"until":191}],"shared_borrow":[{"from":175,"until":191}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":175,"until":191}]},{"type":"other","local":{"id":5,"fn_id":24},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":24},"ty":"std::fmt::Arguments<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":24},"ty":"&[&str; 1]","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":24},"ty":"&[&str; 1]","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":24},"ty":"[&str; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":24},"ty":"&[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":24},"ty":"&[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":24},"ty":"[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":24},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":190,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":24},"ty":"&&std::string::String","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":15,"fn_id":24},"ty":"&&std::string::String","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":24},"ty":"&std::string::String","lives":[{"from":175,"until":191}],"shared_borrow":[{"from":175,"until":191}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":175,"until":191}]},{"type":"other","local":{"id":17,"fn_id":24},"ty":"&&std::string::String","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":18,"fn_id":24},"name":"_0","span":{"from":258,"until":273},"ty":"®ex::Error","lives":[{"from":105,"until":110},{"from":258,"until":273}],"shared_borrow":[{"from":258,"until":273}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":258,"until":273}]},{"type":"other","local":{"id":19,"fn_id":24},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":20,"fn_id":24},"ty":"std::fmt::Arguments<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":21,"fn_id":24},"ty":"&[&str; 1]","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":22,"fn_id":24},"ty":"&[&str; 1]","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":23,"fn_id":24},"ty":"[&str; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":24,"fn_id":24},"ty":"&[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":25,"fn_id":24},"ty":"&[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":26,"fn_id":24},"ty":"[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":27,"fn_id":24},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":272,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":28,"fn_id":24},"ty":"&®ex::Error","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":29,"fn_id":24},"ty":"&®ex::Error","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":30,"fn_id":24},"ty":"®ex::Error","lives":[{"from":258,"until":273}],"shared_borrow":[{"from":258,"until":273}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":258,"until":273}]},{"type":"other","local":{"id":31,"fn_id":24},"ty":"&®ex::Error","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":32,"fn_id":24},"ty":"&[&str; 1]","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":33,"fn_id":24},"ty":"&[&str; 1]","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":38,"basic_blocks":[{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":38},"fn_span":{"from":3141,"until":3225}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":38},"ty":"std::result::Result<(), std::string::String>","lives":[{"from":3224,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":38},"ty":"&{closure@src/lib.rs:100:5: 103:6}","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":38},"ty":"()","lives":[{"from":3141,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":37,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":37},"range":{"from":3141,"until":3225},"rval":null},{"type":"assign","target_local":{"id":3,"fn_id":37},"range":{"from":3141,"until":3225},"rval":null},{"type":"assign","target_local":{"id":4,"fn_id":37},"range":{"from":3141,"until":3225},"rval":null},{"type":"assign","target_local":{"id":5,"fn_id":37},"range":{"from":3141,"until":3225},"rval":null},{"type":"assign","target_local":{"id":1,"fn_id":37},"range":{"from":3141,"until":3225},"rval":null}],"terminator":{"type":"drop","local":{"id":2,"fn_id":37},"range":{"from":3224,"until":3225}}},{"statements":[{"type":"assign","target_local":{"id":8,"fn_id":37},"range":{"from":3141,"until":3225},"rval":null},{"type":"assign","target_local":{"id":7,"fn_id":37},"range":{"from":3141,"until":3225},"rval":null},{"type":"assign","target_local":{"id":6,"fn_id":37},"range":{"from":3141,"until":3225},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":37},"range":{"from":3141,"until":3225},"rval":null}],"terminator":{"type":"drop","local":{"id":6,"fn_id":37},"range":{"from":3224,"until":3225}}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":37},"range":{"from":3224,"until":3225}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":37},"range":{"from":3224,"until":3225}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":37},"ty":"tests::test::TestDescAndFn","lives":[{"from":3141,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":37},"ty":"tests::test::TestDesc","lives":[{"from":3141,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":3224,"until":3225}],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":37},"ty":"tests::test::TestName","lives":[{"from":3141,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":37},"ty":"std::option::Option<&str>","lives":[{"from":3141,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":37},"ty":"tests::test::ShouldPanic","lives":[{"from":3141,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":37},"ty":"tests::test::TestType","lives":[{"from":3141,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":37},"ty":"tests::test::TestFn","lives":[{"from":3141,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":37},"ty":"fn() -> std::result::Result<(), std::string::String>","lives":[{"from":3141,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":37},"ty":"{closure@src/lib.rs:100:5: 103:6}","lives":[{"from":3141,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":23,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":23},"range":{"from":105,"until":110},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":23},"range":{"from":105,"until":110},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":23},"range":{"from":105,"until":110},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":23},"range":{"from":105,"until":110},"rval":{"type":"borrow","target_local":{"id":3,"fn_id":23},"range":{"from":105,"until":110},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":6,"fn_id":23},"fn_span":{"from":295,"until":299}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":23},"range":{"from":105,"until":110},"rval":null}],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":5,"fn_id":23},"range":{"from":105,"until":110},"rval":{"type":"borrow","target_local":{"id":6,"fn_id":23},"range":{"from":105,"until":110},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":4,"fn_id":23},"range":{"from":105,"until":110},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":23},"range":{"from":105,"until":110},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":23},"ty":"std::option::Option<&dyn std::error::Error>","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":23},"name":"self","span":{"from":105,"until":110},"ty":"&ScrapeError","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":23},"ty":"isize","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":3,"fn_id":23},"name":"source","span":{"from":105,"until":110},"ty":"®ex::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":23},"ty":"&dyn std::error::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":23},"ty":"&dyn std::error::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":23},"ty":"&dyn std::error::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":23},"ty":"®ex::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":21,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":21},"range":{"from":98,"until":103},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":11,"fn_id":21},"range":{"from":301,"until":313},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":21},"range":{"from":301,"until":313},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":12,"fn_id":21},"range":{"from":98,"until":103},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":21},"range":{"from":98,"until":103},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":14,"fn_id":21},"range":{"from":98,"until":103},"rval":null},{"type":"assign","target_local":{"id":13,"fn_id":21},"range":{"from":98,"until":103},"rval":{"type":"borrow","target_local":{"id":14,"fn_id":21},"range":{"from":98,"until":103},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":17,"fn_id":21},"range":{"from":301,"until":313},"rval":{"type":"borrow","target_local":{"id":11,"fn_id":21},"range":{"from":301,"until":313},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":16,"fn_id":21},"range":{"from":301,"until":313},"rval":{"type":"borrow","target_local":{"id":17,"fn_id":21},"range":{"from":301,"until":313},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":15,"fn_id":21},"range":{"from":301,"until":313},"rval":null}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":21},"fn_span":{"from":98,"until":103}}},{"statements":[{"type":"assign","target_local":{"id":4,"fn_id":21},"range":{"from":214,"until":220},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":21},"range":{"from":214,"until":220},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":5,"fn_id":21},"range":{"from":98,"until":103},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":21},"range":{"from":98,"until":103},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":21},"range":{"from":98,"until":103},"rval":null},{"type":"assign","target_local":{"id":6,"fn_id":21},"range":{"from":98,"until":103},"rval":{"type":"borrow","target_local":{"id":7,"fn_id":21},"range":{"from":98,"until":103},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":10,"fn_id":21},"range":{"from":214,"until":220},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":21},"range":{"from":214,"until":220},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":9,"fn_id":21},"range":{"from":214,"until":220},"rval":{"type":"borrow","target_local":{"id":10,"fn_id":21},"range":{"from":214,"until":220},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":8,"fn_id":21},"range":{"from":214,"until":220},"rval":null}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":21},"fn_span":{"from":98,"until":103}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":21},"ty":"std::result::Result<(), std::fmt::Error>","lives":[{"from":102,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":21},"name":"self","span":{"from":98,"until":103},"ty":"&ScrapeError","lives":[{"from":98,"until":103},{"from":301,"until":313},{"from":214,"until":220}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":21},"name":"f","span":{"from":98,"until":103},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":98,"until":103},{"from":301,"until":313},{"from":214,"until":220}],"shared_borrow":[],"mutable_borrow":[{"from":98,"until":103},{"from":301,"until":313},{"from":214,"until":220}],"drop":false,"drop_range":[],"must_live_at":[{"from":98,"until":103},{"from":301,"until":313},{"from":214,"until":220}]},{"type":"other","local":{"id":3,"fn_id":21},"ty":"isize","lives":[{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":4,"fn_id":21},"name":"__self_0","span":{"from":214,"until":220},"ty":"&std::string::String","lives":[{"from":98,"until":103},{"from":214,"until":220}],"shared_borrow":[{"from":214,"until":220},{"from":98,"until":103}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":214,"until":220},{"from":98,"until":103}]},{"type":"other","local":{"id":5,"fn_id":21},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":98,"until":103},{"from":214,"until":220}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":21},"ty":"&str","lives":[{"from":214,"until":220},{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":21},"ty":"&str","lives":[{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":21},"ty":"&dyn std::fmt::Debug","lives":[{"from":219,"until":220},{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":21},"ty":"&&std::string::String","lives":[{"from":214,"until":220}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":21},"ty":"&&std::string::String","lives":[{"from":214,"until":220}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":11,"fn_id":21},"name":"__self_0","span":{"from":301,"until":313},"ty":"®ex::Error","lives":[{"from":98,"until":103},{"from":301,"until":313}],"shared_borrow":[{"from":301,"until":313},{"from":98,"until":103}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":301,"until":313},{"from":98,"until":103}]},{"type":"other","local":{"id":12,"fn_id":21},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":98,"until":103},{"from":301,"until":313}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":21},"ty":"&str","lives":[{"from":301,"until":313},{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":21},"ty":"&str","lives":[{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":15,"fn_id":21},"ty":"&dyn std::fmt::Debug","lives":[{"from":312,"until":313},{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":21},"ty":"&®ex::Error","lives":[{"from":301,"until":313}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":21},"ty":"&®ex::Error","lives":[{"from":301,"until":313}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":29,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":29},"range":{"from":105,"until":110},"rval":{"type":"move","target_local":{"id":1,"fn_id":29},"range":{"from":105,"until":110}}},{"type":"assign","target_local":{"id":0,"fn_id":29},"range":{"from":105,"until":110},"rval":null}],"terminator":{"type":"drop","local":{"id":2,"fn_id":29},"range":{"from":109,"until":110}}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":29},"range":{"from":109,"until":110}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":29},"range":{"from":109,"until":110}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":29},"ty":"ScrapeError","lives":[{"from":109,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":29},"name":"source","span":{"from":105,"until":110},"ty":"regex::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":29},"ty":"regex::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]}]},{"fn_id":9,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":19,"fn_id":9},"range":{"from":570,"until":593},"rval":null},{"type":"assign","target_local":{"id":8,"fn_id":9},"range":{"from":570,"until":593},"rval":{"type":"borrow","target_local":{"id":19,"fn_id":9},"range":{"from":570,"until":593},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":9},"range":{"from":570,"until":593},"rval":{"type":"borrow","target_local":{"id":8,"fn_id":9},"range":{"from":570,"until":593},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":15,"fn_id":9},"range":{"from":572,"until":586},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":9},"range":{"from":572,"until":586},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":14,"fn_id":9},"range":{"from":572,"until":586},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":9},"range":{"from":572,"until":586},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":13,"fn_id":9},"fn_span":{"from":572,"until":586}}},{"statements":[{"type":"assign","target_local":{"id":18,"fn_id":9},"range":{"from":589,"until":592},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":9},"range":{"from":589,"until":592},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":17,"fn_id":9},"range":{"from":589,"until":592},"rval":{"type":"borrow","target_local":{"id":18,"fn_id":9},"range":{"from":589,"until":592},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":16,"fn_id":9},"fn_span":{"from":589,"until":592}}},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":9},"range":{"from":533,"until":595},"rval":null}],"terminator":{"type":"drop","local":{"id":3,"fn_id":9},"range":{"from":594,"until":595}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":9},"range":{"from":594,"until":595}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":9},"range":{"from":594,"until":595}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":9},"ty":"ScrapeError","lives":[{"from":594,"until":595}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":9},"name":"selector_str","span":{"from":385,"until":397},"ty":"{closure@src/lib.rs:19:18: 19:21}","lives":[{"from":570,"until":593}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":9},"name":"e","span":{"from":530,"until":531},"ty":"scraper::error::SelectorErrorKind<'_>","lives":[{"from":570,"until":593}],"shared_borrow":[{"from":589,"until":592}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":533,"until":595}],"must_live_at":[{"from":589,"until":592}]},{"type":"other","local":{"id":3,"fn_id":9},"ty":"std::string::String","lives":[{"from":533,"until":595}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":9},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":9},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":9},"ty":"std::fmt::Arguments<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":9},"ty":"&[&str; 2]","lives":[{"from":572,"until":586},{"from":589,"until":592}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":9},"ty":"&[&str; 2]","lives":[{"from":570,"until":593}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":9},"ty":"[&str; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":9},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":9},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":9},"ty":"[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":9},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":585,"until":586},{"from":589,"until":592}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":9},"ty":"&&str","lives":[{"from":572,"until":586}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":15,"fn_id":9},"ty":"&&str","lives":[{"from":572,"until":586}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":9},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":591,"until":592}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":9},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":589,"until":592}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":9},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":589,"until":592}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":9},"ty":"&[&str; 2]","lives":[{"from":570,"until":593}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":11,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":11},"range":{"from":1063,"until":1072},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":11},"range":{"from":1063,"until":1072},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":4,"fn_id":11},"range":{"from":1074,"until":1104},"rval":null},{"type":"assign","target_local":{"id":3,"fn_id":11},"range":{"from":1074,"until":1104},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":11},"range":{"from":1074,"until":1104},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":6,"fn_id":11},"range":{"from":1106,"until":1110},"rval":null},{"type":"assign","target_local":{"id":5,"fn_id":11},"range":{"from":1106,"until":1110},"rval":{"type":"borrow","target_local":{"id":6,"fn_id":11},"range":{"from":1106,"until":1110},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":11},"fn_span":{"from":1045,"until":1111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":11},"ty":"std::result::Result, ScrapeError>","lives":[{"from":1110,"until":1111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":11},"name":"html_body","span":{"from":983,"until":992},"ty":"&str","lives":[{"from":1063,"until":1072}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":11},"ty":"&str","lives":[{"from":1045,"until":1111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":11},"ty":"&str","lives":[{"from":1045,"until":1111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":11},"ty":"&str","lives":[{"from":1074,"until":1104}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":11},"ty":"&str","lives":[{"from":1045,"until":1111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":11},"ty":"&str","lives":[{"from":1106,"until":1110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":12,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":12},"range":{"from":1255,"until":1264},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":12},"range":{"from":1255,"until":1264},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":4,"fn_id":12},"range":{"from":1266,"until":1296},"rval":null},{"type":"assign","target_local":{"id":3,"fn_id":12},"range":{"from":1266,"until":1296},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":12},"range":{"from":1266,"until":1296},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":6,"fn_id":12},"range":{"from":1298,"until":1305},"rval":null},{"type":"assign","target_local":{"id":5,"fn_id":12},"range":{"from":1298,"until":1305},"rval":{"type":"borrow","target_local":{"id":6,"fn_id":12},"range":{"from":1298,"until":1305},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":12},"fn_span":{"from":1237,"until":1306}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":12},"ty":"std::result::Result, ScrapeError>","lives":[{"from":1305,"until":1306}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":12},"name":"html_body","span":{"from":1175,"until":1184},"ty":"&str","lives":[{"from":1255,"until":1264}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":12},"ty":"&str","lives":[{"from":1237,"until":1306}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":12},"ty":"&str","lives":[{"from":1237,"until":1306}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":12},"ty":"&str","lives":[{"from":1266,"until":1296}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":12},"ty":"&str","lives":[{"from":1237,"until":1306}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":12},"ty":"&str","lives":[{"from":1298,"until":1305}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":14,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":19,"fn_id":14},"range":{"from":1625,"until":1648},"rval":null},{"type":"assign","target_local":{"id":8,"fn_id":14},"range":{"from":1625,"until":1648},"rval":{"type":"borrow","target_local":{"id":19,"fn_id":14},"range":{"from":1625,"until":1648},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":14},"range":{"from":1625,"until":1648},"rval":{"type":"borrow","target_local":{"id":8,"fn_id":14},"range":{"from":1625,"until":1648},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":15,"fn_id":14},"range":{"from":1627,"until":1641},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":14},"range":{"from":1627,"until":1641},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":14,"fn_id":14},"range":{"from":1627,"until":1641},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":14},"range":{"from":1627,"until":1641},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":13,"fn_id":14},"fn_span":{"from":1627,"until":1641}}},{"statements":[{"type":"assign","target_local":{"id":18,"fn_id":14},"range":{"from":1644,"until":1647},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":14},"range":{"from":1644,"until":1647},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":17,"fn_id":14},"range":{"from":1644,"until":1647},"rval":{"type":"borrow","target_local":{"id":18,"fn_id":14},"range":{"from":1644,"until":1647},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":16,"fn_id":14},"fn_span":{"from":1644,"until":1647}}},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":14},"range":{"from":1588,"until":1650},"rval":null}],"terminator":{"type":"drop","local":{"id":3,"fn_id":14},"range":{"from":1649,"until":1650}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":14},"range":{"from":1649,"until":1650}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":14},"range":{"from":1649,"until":1650}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":14},"ty":"ScrapeError","lives":[{"from":1649,"until":1650}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":14},"name":"selector_str","span":{"from":1471,"until":1483},"ty":"{closure@src/lib.rs:50:18: 50:21}","lives":[{"from":1625,"until":1648}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":14},"name":"e","span":{"from":1585,"until":1586},"ty":"scraper::error::SelectorErrorKind<'_>","lives":[{"from":1625,"until":1648}],"shared_borrow":[{"from":1644,"until":1647}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":1588,"until":1650}],"must_live_at":[{"from":1644,"until":1647}]},{"type":"other","local":{"id":3,"fn_id":14},"ty":"std::string::String","lives":[{"from":1588,"until":1650}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":14},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":14},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":14},"ty":"std::fmt::Arguments<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":14},"ty":"&[&str; 2]","lives":[{"from":1627,"until":1641},{"from":1644,"until":1647}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":14},"ty":"&[&str; 2]","lives":[{"from":1625,"until":1648}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":14},"ty":"[&str; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":14},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":14},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":14},"ty":"[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":14},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":1640,"until":1641},{"from":1644,"until":1647}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":14},"ty":"&&str","lives":[{"from":1627,"until":1641}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":15,"fn_id":14},"ty":"&&str","lives":[{"from":1627,"until":1641}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":14},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":1646,"until":1647}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":14},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":1644,"until":1647}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":14},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":1644,"until":1647}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":14},"ty":"&[&str; 2]","lives":[{"from":1625,"until":1648}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":26,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":26},"range":{"from":105,"until":110},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":18,"fn_id":26},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":26},"range":{"from":258,"until":273},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":19,"fn_id":26},"range":{"from":105,"until":110},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":26},"range":{"from":105,"until":110},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":32,"fn_id":26},"range":{"from":258,"until":273},"rval":null},{"type":"assign","target_local":{"id":22,"fn_id":26},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":32,"fn_id":26},"range":{"from":258,"until":273},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":21,"fn_id":26},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":22,"fn_id":26},"range":{"from":258,"until":273},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":31,"fn_id":26},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":18,"fn_id":26},"range":{"from":258,"until":273},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":30,"fn_id":26},"fn_span":{"from":258,"until":273}}},{"statements":[{"type":"assign","target_local":{"id":4,"fn_id":26},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":26},"range":{"from":175,"until":191},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":5,"fn_id":26},"range":{"from":105,"until":110},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":26},"range":{"from":105,"until":110},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":33,"fn_id":26},"range":{"from":175,"until":191},"rval":null},{"type":"assign","target_local":{"id":8,"fn_id":26},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":33,"fn_id":26},"range":{"from":175,"until":191},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":26},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":8,"fn_id":26},"range":{"from":175,"until":191},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":17,"fn_id":26},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":26},"range":{"from":175,"until":191},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":16,"fn_id":26},"fn_span":{"from":175,"until":191}}},{"statements":[{"type":"assign","target_local":{"id":15,"fn_id":26},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":16,"fn_id":26},"range":{"from":175,"until":191},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":14,"fn_id":26},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":26},"range":{"from":175,"until":191},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":13,"fn_id":26},"fn_span":{"from":175,"until":191}}},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":29,"fn_id":26},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":30,"fn_id":26},"range":{"from":258,"until":273},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":28,"fn_id":26},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":29,"fn_id":26},"range":{"from":258,"until":273},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":27,"fn_id":26},"fn_span":{"from":258,"until":273}}},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":26},"ty":"std::result::Result<(), std::fmt::Error>","lives":[{"from":109,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":26},"name":"self","span":{"from":105,"until":110},"ty":"&ScrapeError","lives":[{"from":105,"until":110},{"from":258,"until":273},{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":26},"name":"__formatter","span":{"from":105,"until":110},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":105,"until":110},{"from":258,"until":273},{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[{"from":258,"until":273},{"from":175,"until":191}],"drop":false,"drop_range":[],"must_live_at":[{"from":258,"until":273},{"from":175,"until":191}]},{"type":"other","local":{"id":3,"fn_id":26},"ty":"isize","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":4,"fn_id":26},"name":"_0","span":{"from":175,"until":191},"ty":"&std::string::String","lives":[{"from":105,"until":110},{"from":175,"until":191}],"shared_borrow":[{"from":175,"until":191}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":175,"until":191}]},{"type":"other","local":{"id":5,"fn_id":26},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":26},"ty":"std::fmt::Arguments<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":26},"ty":"&[&str; 1]","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":26},"ty":"&[&str; 1]","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":26},"ty":"[&str; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":26},"ty":"&[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":26},"ty":"&[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":26},"ty":"[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":26},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":190,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":26},"ty":"&&std::string::String","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":15,"fn_id":26},"ty":"&&std::string::String","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":26},"ty":"&std::string::String","lives":[{"from":175,"until":191}],"shared_borrow":[{"from":175,"until":191}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":175,"until":191}]},{"type":"other","local":{"id":17,"fn_id":26},"ty":"&&std::string::String","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":18,"fn_id":26},"name":"_0","span":{"from":258,"until":273},"ty":"®ex::Error","lives":[{"from":105,"until":110},{"from":258,"until":273}],"shared_borrow":[{"from":258,"until":273}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":258,"until":273}]},{"type":"other","local":{"id":19,"fn_id":26},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":20,"fn_id":26},"ty":"std::fmt::Arguments<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":21,"fn_id":26},"ty":"&[&str; 1]","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":22,"fn_id":26},"ty":"&[&str; 1]","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":23,"fn_id":26},"ty":"[&str; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":24,"fn_id":26},"ty":"&[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":25,"fn_id":26},"ty":"&[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":26,"fn_id":26},"ty":"[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":27,"fn_id":26},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":272,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":28,"fn_id":26},"ty":"&®ex::Error","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":29,"fn_id":26},"ty":"&®ex::Error","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":30,"fn_id":26},"ty":"®ex::Error","lives":[{"from":258,"until":273}],"shared_borrow":[{"from":258,"until":273}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":258,"until":273}]},{"type":"other","local":{"id":31,"fn_id":26},"ty":"&®ex::Error","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":32,"fn_id":26},"ty":"&[&str; 1]","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":33,"fn_id":26},"ty":"&[&str; 1]","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":10,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":5,"fn_id":10},"range":{"from":738,"until":742},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":10},"range":{"from":738,"until":742},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":4,"fn_id":10},"fn_span":{"from":743,"until":749}}},{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":10},"range":{"from":738,"until":749},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":10},"range":{"from":738,"until":749},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":6,"fn_id":10},"range":{"from":753,"until":762},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":10},"range":{"from":753,"until":762},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":10},"fn_span":{"from":738,"until":762}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":10},"ty":"bool","lives":[{"from":761,"until":762}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":10},"name":"link_text","span":{"from":405,"until":414},"ty":"&mut {closure@src/lib.rs:24:31: 24:37}","lives":[{"from":738,"until":749},{"from":753,"until":762}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":10},"name":"text","span":{"from":732,"until":736},"ty":"&str","lives":[{"from":738,"until":749}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":10},"ty":"&&str","lives":[{"from":738,"until":762}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":10},"ty":"&str","lives":[{"from":738,"until":749}],"shared_borrow":[{"from":738,"until":762}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":748,"until":749},{"from":753,"until":762}]},{"type":"other","local":{"id":5,"fn_id":10},"ty":"&str","lives":[{"from":738,"until":749}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":10},"ty":"&&str","lives":[{"from":738,"until":762}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":16,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":19,"fn_id":16},"range":{"from":2374,"until":2397},"rval":null},{"type":"assign","target_local":{"id":8,"fn_id":16},"range":{"from":2374,"until":2397},"rval":{"type":"borrow","target_local":{"id":19,"fn_id":16},"range":{"from":2374,"until":2397},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":16},"range":{"from":2374,"until":2397},"rval":{"type":"borrow","target_local":{"id":8,"fn_id":16},"range":{"from":2374,"until":2397},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":15,"fn_id":16},"range":{"from":2376,"until":2390},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":16},"range":{"from":2376,"until":2390},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":14,"fn_id":16},"range":{"from":2376,"until":2390},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":16},"range":{"from":2376,"until":2390},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":13,"fn_id":16},"fn_span":{"from":2376,"until":2390}}},{"statements":[{"type":"assign","target_local":{"id":18,"fn_id":16},"range":{"from":2393,"until":2396},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":16},"range":{"from":2393,"until":2396},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":17,"fn_id":16},"range":{"from":2393,"until":2396},"rval":{"type":"borrow","target_local":{"id":18,"fn_id":16},"range":{"from":2393,"until":2396},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":16,"fn_id":16},"fn_span":{"from":2393,"until":2396}}},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":16},"range":{"from":2337,"until":2399},"rval":null}],"terminator":{"type":"drop","local":{"id":3,"fn_id":16},"range":{"from":2398,"until":2399}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":16},"range":{"from":2398,"until":2399}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":16},"range":{"from":2398,"until":2399}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":16},"ty":"ScrapeError","lives":[{"from":2398,"until":2399}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":16},"name":"selector_str","span":{"from":2205,"until":2217},"ty":"{closure@src/lib.rs:71:18: 71:21}","lives":[{"from":2374,"until":2397}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":16},"name":"e","span":{"from":2334,"until":2335},"ty":"scraper::error::SelectorErrorKind<'_>","lives":[{"from":2374,"until":2397}],"shared_borrow":[{"from":2393,"until":2396}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":2337,"until":2399}],"must_live_at":[{"from":2393,"until":2396}]},{"type":"other","local":{"id":3,"fn_id":16},"ty":"std::string::String","lives":[{"from":2337,"until":2399}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":16},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":16},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":16},"ty":"std::fmt::Arguments<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":16},"ty":"&[&str; 2]","lives":[{"from":2376,"until":2390},{"from":2393,"until":2396}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":16},"ty":"&[&str; 2]","lives":[{"from":2374,"until":2397}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":16},"ty":"[&str; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":16},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":16},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":16},"ty":"[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":16},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":2389,"until":2390},{"from":2393,"until":2396}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":16},"ty":"&&str","lives":[{"from":2376,"until":2390}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":15,"fn_id":16},"ty":"&&str","lives":[{"from":2376,"until":2390}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":16},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":2395,"until":2396}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":16},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":2393,"until":2396}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":16},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":2393,"until":2396}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":16},"ty":"&[&str; 2]","lives":[{"from":2374,"until":2397}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":9,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":19,"fn_id":9},"range":{"from":570,"until":593},"rval":null},{"type":"assign","target_local":{"id":8,"fn_id":9},"range":{"from":570,"until":593},"rval":{"type":"borrow","target_local":{"id":19,"fn_id":9},"range":{"from":570,"until":593},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":9},"range":{"from":570,"until":593},"rval":{"type":"borrow","target_local":{"id":8,"fn_id":9},"range":{"from":570,"until":593},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":15,"fn_id":9},"range":{"from":572,"until":586},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":9},"range":{"from":572,"until":586},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":14,"fn_id":9},"range":{"from":572,"until":586},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":9},"range":{"from":572,"until":586},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":13,"fn_id":9},"fn_span":{"from":572,"until":586}}},{"statements":[{"type":"assign","target_local":{"id":18,"fn_id":9},"range":{"from":589,"until":592},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":9},"range":{"from":589,"until":592},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":17,"fn_id":9},"range":{"from":589,"until":592},"rval":{"type":"borrow","target_local":{"id":18,"fn_id":9},"range":{"from":589,"until":592},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":16,"fn_id":9},"fn_span":{"from":589,"until":592}}},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":9},"range":{"from":533,"until":595},"rval":null}],"terminator":{"type":"drop","local":{"id":3,"fn_id":9},"range":{"from":594,"until":595}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":9},"range":{"from":594,"until":595}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":9},"range":{"from":594,"until":595}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":9},"ty":"ScrapeError","lives":[{"from":594,"until":595}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":9},"name":"selector_str","span":{"from":385,"until":397},"ty":"{closure@src/lib.rs:19:18: 19:21}","lives":[{"from":570,"until":593}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":9},"name":"e","span":{"from":530,"until":531},"ty":"scraper::error::SelectorErrorKind<'_>","lives":[{"from":570,"until":593}],"shared_borrow":[{"from":589,"until":592}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":533,"until":595}],"must_live_at":[{"from":589,"until":592}]},{"type":"other","local":{"id":3,"fn_id":9},"ty":"std::string::String","lives":[{"from":533,"until":595}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":9},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":9},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":9},"ty":"std::fmt::Arguments<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":9},"ty":"&[&str; 2]","lives":[{"from":572,"until":586},{"from":589,"until":592}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":9},"ty":"&[&str; 2]","lives":[{"from":570,"until":593}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":9},"ty":"[&str; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":9},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":9},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":9},"ty":"[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":9},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":585,"until":586},{"from":589,"until":592}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":9},"ty":"&&str","lives":[{"from":572,"until":586}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":15,"fn_id":9},"ty":"&&str","lives":[{"from":572,"until":586}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":9},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":591,"until":592}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":9},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":589,"until":592}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":9},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":589,"until":592}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":9},"ty":"&[&str; 2]","lives":[{"from":570,"until":593}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":11,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":11},"range":{"from":1063,"until":1072},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":11},"range":{"from":1063,"until":1072},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":4,"fn_id":11},"range":{"from":1074,"until":1104},"rval":null},{"type":"assign","target_local":{"id":3,"fn_id":11},"range":{"from":1074,"until":1104},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":11},"range":{"from":1074,"until":1104},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":6,"fn_id":11},"range":{"from":1106,"until":1110},"rval":null},{"type":"assign","target_local":{"id":5,"fn_id":11},"range":{"from":1106,"until":1110},"rval":{"type":"borrow","target_local":{"id":6,"fn_id":11},"range":{"from":1106,"until":1110},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":11},"fn_span":{"from":1045,"until":1111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":11},"ty":"std::result::Result, ScrapeError>","lives":[{"from":1110,"until":1111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":11},"name":"html_body","span":{"from":983,"until":992},"ty":"&str","lives":[{"from":1063,"until":1072}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":11},"ty":"&str","lives":[{"from":1045,"until":1111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":11},"ty":"&str","lives":[{"from":1045,"until":1111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":11},"ty":"&str","lives":[{"from":1074,"until":1104}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":11},"ty":"&str","lives":[{"from":1045,"until":1111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":11},"ty":"&str","lives":[{"from":1106,"until":1110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":12,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":12},"range":{"from":1255,"until":1264},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":12},"range":{"from":1255,"until":1264},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":4,"fn_id":12},"range":{"from":1266,"until":1296},"rval":null},{"type":"assign","target_local":{"id":3,"fn_id":12},"range":{"from":1266,"until":1296},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":12},"range":{"from":1266,"until":1296},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":6,"fn_id":12},"range":{"from":1298,"until":1305},"rval":null},{"type":"assign","target_local":{"id":5,"fn_id":12},"range":{"from":1298,"until":1305},"rval":{"type":"borrow","target_local":{"id":6,"fn_id":12},"range":{"from":1298,"until":1305},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":12},"fn_span":{"from":1237,"until":1306}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":12},"ty":"std::result::Result, ScrapeError>","lives":[{"from":1305,"until":1306}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":12},"name":"html_body","span":{"from":1175,"until":1184},"ty":"&str","lives":[{"from":1255,"until":1264}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":12},"ty":"&str","lives":[{"from":1237,"until":1306}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":12},"ty":"&str","lives":[{"from":1237,"until":1306}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":12},"ty":"&str","lives":[{"from":1266,"until":1296}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":12},"ty":"&str","lives":[{"from":1237,"until":1306}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":12},"ty":"&str","lives":[{"from":1298,"until":1305}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":14,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":19,"fn_id":14},"range":{"from":1625,"until":1648},"rval":null},{"type":"assign","target_local":{"id":8,"fn_id":14},"range":{"from":1625,"until":1648},"rval":{"type":"borrow","target_local":{"id":19,"fn_id":14},"range":{"from":1625,"until":1648},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":14},"range":{"from":1625,"until":1648},"rval":{"type":"borrow","target_local":{"id":8,"fn_id":14},"range":{"from":1625,"until":1648},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":15,"fn_id":14},"range":{"from":1627,"until":1641},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":14},"range":{"from":1627,"until":1641},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":14,"fn_id":14},"range":{"from":1627,"until":1641},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":14},"range":{"from":1627,"until":1641},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":13,"fn_id":14},"fn_span":{"from":1627,"until":1641}}},{"statements":[{"type":"assign","target_local":{"id":18,"fn_id":14},"range":{"from":1644,"until":1647},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":14},"range":{"from":1644,"until":1647},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":17,"fn_id":14},"range":{"from":1644,"until":1647},"rval":{"type":"borrow","target_local":{"id":18,"fn_id":14},"range":{"from":1644,"until":1647},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":16,"fn_id":14},"fn_span":{"from":1644,"until":1647}}},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":14},"range":{"from":1588,"until":1650},"rval":null}],"terminator":{"type":"drop","local":{"id":3,"fn_id":14},"range":{"from":1649,"until":1650}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":14},"range":{"from":1649,"until":1650}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":14},"range":{"from":1649,"until":1650}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":14},"ty":"ScrapeError","lives":[{"from":1649,"until":1650}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":14},"name":"selector_str","span":{"from":1471,"until":1483},"ty":"{closure@src/lib.rs:50:18: 50:21}","lives":[{"from":1625,"until":1648}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":14},"name":"e","span":{"from":1585,"until":1586},"ty":"scraper::error::SelectorErrorKind<'_>","lives":[{"from":1625,"until":1648}],"shared_borrow":[{"from":1644,"until":1647}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":1588,"until":1650}],"must_live_at":[{"from":1644,"until":1647}]},{"type":"other","local":{"id":3,"fn_id":14},"ty":"std::string::String","lives":[{"from":1588,"until":1650}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":14},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":14},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":14},"ty":"std::fmt::Arguments<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":14},"ty":"&[&str; 2]","lives":[{"from":1627,"until":1641},{"from":1644,"until":1647}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":14},"ty":"&[&str; 2]","lives":[{"from":1625,"until":1648}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":14},"ty":"[&str; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":14},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":14},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":14},"ty":"[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":14},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":1640,"until":1641},{"from":1644,"until":1647}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":14},"ty":"&&str","lives":[{"from":1627,"until":1641}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":15,"fn_id":14},"ty":"&&str","lives":[{"from":1627,"until":1641}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":14},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":1646,"until":1647}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":14},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":1644,"until":1647}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":14},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":1644,"until":1647}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":14},"ty":"&[&str; 2]","lives":[{"from":1625,"until":1648}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":16,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":19,"fn_id":16},"range":{"from":2374,"until":2397},"rval":null},{"type":"assign","target_local":{"id":8,"fn_id":16},"range":{"from":2374,"until":2397},"rval":{"type":"borrow","target_local":{"id":19,"fn_id":16},"range":{"from":2374,"until":2397},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":16},"range":{"from":2374,"until":2397},"rval":{"type":"borrow","target_local":{"id":8,"fn_id":16},"range":{"from":2374,"until":2397},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":15,"fn_id":16},"range":{"from":2376,"until":2390},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":16},"range":{"from":2376,"until":2390},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":14,"fn_id":16},"range":{"from":2376,"until":2390},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":16},"range":{"from":2376,"until":2390},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":13,"fn_id":16},"fn_span":{"from":2376,"until":2390}}},{"statements":[{"type":"assign","target_local":{"id":18,"fn_id":16},"range":{"from":2393,"until":2396},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":16},"range":{"from":2393,"until":2396},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":17,"fn_id":16},"range":{"from":2393,"until":2396},"rval":{"type":"borrow","target_local":{"id":18,"fn_id":16},"range":{"from":2393,"until":2396},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":16,"fn_id":16},"fn_span":{"from":2393,"until":2396}}},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":16},"range":{"from":2337,"until":2399},"rval":null}],"terminator":{"type":"drop","local":{"id":3,"fn_id":16},"range":{"from":2398,"until":2399}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":16},"range":{"from":2398,"until":2399}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":16},"range":{"from":2398,"until":2399}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":16},"ty":"ScrapeError","lives":[{"from":2398,"until":2399}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":16},"name":"selector_str","span":{"from":2205,"until":2217},"ty":"{closure@src/lib.rs:71:18: 71:21}","lives":[{"from":2374,"until":2397}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":16},"name":"e","span":{"from":2334,"until":2335},"ty":"scraper::error::SelectorErrorKind<'_>","lives":[{"from":2374,"until":2397}],"shared_borrow":[{"from":2393,"until":2396}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":2337,"until":2399}],"must_live_at":[{"from":2393,"until":2396}]},{"type":"other","local":{"id":3,"fn_id":16},"ty":"std::string::String","lives":[{"from":2337,"until":2399}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":16},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":16},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":16},"ty":"std::fmt::Arguments<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":16},"ty":"&[&str; 2]","lives":[{"from":2376,"until":2390},{"from":2393,"until":2396}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":16},"ty":"&[&str; 2]","lives":[{"from":2374,"until":2397}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":16},"ty":"[&str; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":16},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":16},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":16},"ty":"[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":16},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":2389,"until":2390},{"from":2393,"until":2396}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":16},"ty":"&&str","lives":[{"from":2376,"until":2390}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":15,"fn_id":16},"ty":"&&str","lives":[{"from":2376,"until":2390}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":16},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":2395,"until":2396}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":16},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":2393,"until":2396}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":16},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":2393,"until":2396}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":16},"ty":"&[&str; 2]","lives":[{"from":2374,"until":2397}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":8,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":8,"fn_id":8},"range":{"from":498,"until":510},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":8},"range":{"from":498,"until":510},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":7,"fn_id":8},"fn_span":{"from":482,"until":511}}},{"statements":[{"type":"assign","target_local":{"id":10,"fn_id":8},"range":{"from":529,"until":595},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":8},"range":{"from":529,"until":595},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":9,"fn_id":8},"range":{"from":529,"until":595},"rval":null}],"terminator":{"type":"call","destination_local":{"id":6,"fn_id":8},"fn_span":{"from":521,"until":596}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":5,"fn_id":8},"fn_span":{"from":482,"until":597}}},{"statements":[{"type":"assign","target_local":{"id":11,"fn_id":8},"range":{"from":482,"until":597},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":15,"fn_id":8},"range":{"from":482,"until":597},"rval":{"type":"move","target_local":{"id":5,"fn_id":8},"range":{"from":482,"until":597}}},{"type":"assign","target_local":{"id":4,"fn_id":8},"range":{"from":482,"until":597},"rval":{"type":"move","target_local":{"id":15,"fn_id":8},"range":{"from":482,"until":597}}}],"terminator":{"type":"drop","local":{"id":15,"fn_id":8},"range":{"from":596,"until":597}}},{"statements":[{"type":"assign","target_local":{"id":12,"fn_id":8},"range":{"from":596,"until":597},"rval":{"type":"move","target_local":{"id":5,"fn_id":8},"range":{"from":596,"until":597}}},{"type":"assign","target_local":{"id":14,"fn_id":8},"range":{"from":596,"until":597},"rval":{"type":"move","target_local":{"id":12,"fn_id":8},"range":{"from":596,"until":597}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":8},"fn_span":{"from":482,"until":597}}},{"statements":[],"terminator":{"type":"drop","local":{"id":12,"fn_id":8},"range":{"from":596,"until":597}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":8},"range":{"from":597,"until":598}}},{"statements":[{"type":"assign","target_local":{"id":17,"fn_id":8},"range":{"from":640,"until":649},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":8},"range":{"from":640,"until":649},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":16,"fn_id":8},"fn_span":{"from":619,"until":650}}},{"statements":[{"type":"assign","target_local":{"id":21,"fn_id":8},"range":{"from":672,"until":680},"rval":{"type":"borrow","target_local":{"id":16,"fn_id":8},"range":{"from":672,"until":680},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":23,"fn_id":8},"range":{"from":688,"until":697},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":8},"range":{"from":688,"until":697},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":22,"fn_id":8},"range":{"from":688,"until":697},"rval":{"type":"borrow","target_local":{"id":23,"fn_id":8},"range":{"from":688,"until":697},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":20,"fn_id":8},"fn_span":{"from":681,"until":698}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":19,"fn_id":8},"fn_span":{"from":672,"until":698}}},{"statements":[{"type":"assign","target_local":{"id":24,"fn_id":8},"range":{"from":672,"until":698},"rval":{"type":"move","target_local":{"id":19,"fn_id":8},"range":{"from":672,"until":698}}}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":29,"fn_id":8},"range":{"from":672,"until":698},"rval":{"type":"borrow","target_local":{"id":24,"fn_id":8},"range":{"from":672,"until":698},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":28,"fn_id":8},"range":{"from":672,"until":698},"rval":{"type":"borrow","target_local":{"id":29,"fn_id":8},"range":{"from":672,"until":698},"mutable":true,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":27,"fn_id":8},"fn_span":{"from":672,"until":698}}},{"statements":[{"type":"assign","target_local":{"id":30,"fn_id":8},"range":{"from":672,"until":698},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":32,"fn_id":8},"range":{"from":661,"until":668},"rval":null},{"type":"assign","target_local":{"id":36,"fn_id":8},"range":{"from":712,"until":719},"rval":{"type":"borrow","target_local":{"id":32,"fn_id":8},"range":{"from":712,"until":719},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":35,"fn_id":8},"fn_span":{"from":720,"until":726}}},{"statements":[{"type":"assign","target_local":{"id":18,"fn_id":8},"range":{"from":657,"until":909},"rval":null}],"terminator":{"type":"drop","local":{"id":24,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[{"type":"assign","target_local":{"id":34,"fn_id":8},"range":{"from":712,"until":726},"rval":{"type":"borrow","target_local":{"id":35,"fn_id":8},"range":{"from":712,"until":726},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":38,"fn_id":8},"range":{"from":731,"until":762},"rval":{"type":"borrow","target_local":{"id":3,"fn_id":8},"range":{"from":731,"until":762},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":37,"fn_id":8},"range":{"from":731,"until":762},"rval":null}],"terminator":{"type":"call","destination_local":{"id":33,"fn_id":8},"fn_span":{"from":727,"until":763}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":42,"fn_id":8},"range":{"from":798,"until":805},"rval":{"type":"borrow","target_local":{"id":32,"fn_id":8},"range":{"from":798,"until":805},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":41,"fn_id":8},"fn_span":{"from":806,"until":813}}},{"statements":[{"type":"assign","target_local":{"id":40,"fn_id":8},"range":{"from":798,"until":813},"rval":{"type":"borrow","target_local":{"id":41,"fn_id":8},"range":{"from":798,"until":813},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":44,"fn_id":8},"range":{"from":819,"until":825},"rval":null},{"type":"assign","target_local":{"id":43,"fn_id":8},"range":{"from":819,"until":825},"rval":{"type":"borrow","target_local":{"id":44,"fn_id":8},"range":{"from":819,"until":825},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":39,"fn_id":8},"fn_span":{"from":814,"until":826}}},{"statements":[{"type":"assign","target_local":{"id":45,"fn_id":8},"range":{"from":798,"until":826},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":46,"fn_id":8},"range":{"from":790,"until":794},"rval":null},{"type":"assign","target_local":{"id":50,"fn_id":8},"range":{"from":860,"until":864},"rval":{"type":"borrow","target_local":{"id":46,"fn_id":8},"range":{"from":860,"until":864},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":49,"fn_id":8},"fn_span":{"from":865,"until":876}}},{"statements":[{"type":"assign","target_local":{"id":48,"fn_id":8},"range":{"from":855,"until":877},"rval":null}],"terminator":{"type":"drop","local":{"id":49,"fn_id":8},"range":{"from":876,"until":877}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":8},"range":{"from":852,"until":878},"rval":null}],"terminator":{"type":"drop","local":{"id":48,"fn_id":8},"range":{"from":877,"until":878}}},{"statements":[],"terminator":{"type":"drop","local":{"id":24,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":25,"fn_id":8},"range":{"from":657,"until":909},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":19,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[{"type":"assign","target_local":{"id":51,"fn_id":8},"range":{"from":918,"until":922},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":8},"range":{"from":915,"until":923},"rval":null}],"terminator":{"type":"drop","local":{"id":51,"fn_id":8},"range":{"from":922,"until":923}}},{"statements":[],"terminator":{"type":"drop","local":{"id":16,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":19,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[],"terminator":{"type":"drop","local":{"id":16,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":8},"range":{"from":597,"until":598}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":48,"fn_id":8},"range":{"from":877,"until":878}}},{"statements":[],"terminator":{"type":"drop","local":{"id":24,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[],"terminator":{"type":"drop","local":{"id":19,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":8},"range":{"from":697,"until":698}}},{"statements":[],"terminator":{"type":"drop","local":{"id":16,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"drop","local":{"id":14,"fn_id":8},"range":{"from":596,"until":597}}},{"statements":[],"terminator":{"type":"drop","local":{"id":12,"fn_id":8},"range":{"from":596,"until":597}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":8},"range":{"from":597,"until":598}}},{"statements":[],"terminator":{"type":"drop","local":{"id":6,"fn_id":8},"range":{"from":596,"until":597}}},{"statements":[],"terminator":{"type":"drop","local":{"id":7,"fn_id":8},"range":{"from":595,"until":596}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":8},"ty":"std::result::Result, ScrapeError>","lives":[{"from":596,"until":598},{"from":877,"until":878},{"from":892,"until":893},{"from":902,"until":903},{"from":908,"until":909},{"from":922,"until":923},{"from":924,"until":925}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":8},"name":"html_body","span":{"from":368,"until":377},"ty":"&str","lives":[{"from":471,"until":479},{"from":482,"until":598},{"from":608,"until":616},{"from":640,"until":649}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":8},"name":"selector_str","span":{"from":385,"until":397},"ty":"&str","lives":[{"from":471,"until":479},{"from":482,"until":597}],"shared_borrow":[{"from":482,"until":596}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":529,"until":595}]},{"type":"user","local":{"id":3,"fn_id":8},"name":"link_text","span":{"from":405,"until":414},"ty":"&str","lives":[{"from":471,"until":479},{"from":482,"until":598},{"from":608,"until":616},{"from":619,"until":650},{"from":657,"until":909}],"shared_borrow":[{"from":712,"until":763}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":731,"until":762}]},{"type":"user","local":{"id":4,"fn_id":8},"name":"selector","span":{"from":471,"until":479},"ty":"scraper::Selector","lives":[{"from":596,"until":598},{"from":471,"until":479},{"from":608,"until":616},{"from":619,"until":650},{"from":657,"until":909}],"shared_borrow":[{"from":657,"until":909}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":596,"until":598},{"from":471,"until":479},{"from":608,"until":616},{"from":619,"until":650},{"from":657,"until":909},{"from":915,"until":923},{"from":924,"until":925}],"must_live_at":[{"from":688,"until":698},{"from":661,"until":668},{"from":712,"until":763},{"from":798,"until":826},{"from":785,"until":795},{"from":892,"until":893},{"from":902,"until":903},{"from":908,"until":909}]},{"type":"other","local":{"id":5,"fn_id":8},"ty":"std::ops::ControlFlow, scraper::Selector>","lives":[{"from":482,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":482,"until":598},{"from":471,"until":479}],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":8},"ty":"std::result::Result","lives":[{"from":482,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":8},"ty":"std::result::Result>","lives":[{"from":482,"until":596}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":8},"ty":"&str","lives":[{"from":482,"until":511}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":8},"ty":"{closure@src/lib.rs:19:18: 19:21}","lives":[{"from":482,"until":596}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":8},"ty":"&&str","lives":[{"from":529,"until":595}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":8},"ty":"isize","lives":[{"from":482,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":12,"fn_id":8},"name":"residual","span":{"from":596,"until":597},"ty":"std::result::Result","lives":[{"from":596,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":8},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":8},"ty":"std::result::Result","lives":[{"from":482,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":15,"fn_id":8},"name":"val","span":{"from":482,"until":597},"ty":"scraper::Selector","lives":[{"from":482,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":16,"fn_id":8},"name":"document","span":{"from":608,"until":616},"ty":"scraper::Html","lives":[{"from":649,"until":650},{"from":608,"until":616},{"from":657,"until":909}],"shared_borrow":[{"from":657,"until":909}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":649,"until":650},{"from":608,"until":616},{"from":657,"until":909},{"from":915,"until":923},{"from":924,"until":925}],"must_live_at":[{"from":688,"until":698},{"from":661,"until":668},{"from":712,"until":763},{"from":798,"until":826},{"from":785,"until":795},{"from":855,"until":877},{"from":892,"until":893},{"from":902,"until":903},{"from":908,"until":909}]},{"type":"other","local":{"id":17,"fn_id":8},"ty":"&str","lives":[{"from":619,"until":650}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":8},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":8},"ty":"scraper::html::Select<'_, '_>","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":20,"fn_id":8},"ty":"scraper::html::Select<'_, '_>","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":21,"fn_id":8},"ty":"&scraper::Html","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":22,"fn_id":8},"ty":"&scraper::Selector","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":23,"fn_id":8},"ty":"&scraper::Selector","lives":[{"from":688,"until":697}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":24,"fn_id":8},"name":"iter","span":{"from":672,"until":698},"ty":"scraper::html::Select<'_, '_>","lives":[{"from":657,"until":909}],"shared_borrow":[],"mutable_borrow":[{"from":672,"until":698}],"drop":true,"drop_range":[{"from":657,"until":909}],"must_live_at":[{"from":672,"until":698}]},{"type":"other","local":{"id":25,"fn_id":8},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":26,"fn_id":8},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":27,"fn_id":8},"ty":"std::option::Option>","lives":[{"from":657,"until":909}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":28,"fn_id":8},"ty":"&mut scraper::html::Select<'_, '_>","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":29,"fn_id":8},"ty":"&mut scraper::html::Select<'_, '_>","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[{"from":672,"until":698}],"drop":false,"drop_range":[],"must_live_at":[{"from":672,"until":698}]},{"type":"other","local":{"id":30,"fn_id":8},"ty":"isize","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":31,"fn_id":8},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":32,"fn_id":8},"name":"element","span":{"from":661,"until":668},"ty":"scraper::ElementRef<'_>","lives":[{"from":712,"until":763},{"from":798,"until":826}],"shared_borrow":[{"from":712,"until":726},{"from":798,"until":813}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":712,"until":726},{"from":798,"until":813}]},{"type":"other","local":{"id":33,"fn_id":8},"ty":"bool","lives":[{"from":712,"until":763}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":34,"fn_id":8},"ty":"&mut scraper::element_ref::Text<'_>","lives":[{"from":712,"until":763}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":35,"fn_id":8},"ty":"scraper::element_ref::Text<'_>","lives":[{"from":712,"until":726}],"shared_borrow":[],"mutable_borrow":[{"from":712,"until":763}],"drop":false,"drop_range":[],"must_live_at":[{"from":725,"until":726},{"from":731,"until":762}]},{"type":"other","local":{"id":36,"fn_id":8},"ty":"&scraper::ElementRef<'_>","lives":[{"from":712,"until":726}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":37,"fn_id":8},"ty":"{closure@src/lib.rs:24:31: 24:37}","lives":[{"from":712,"until":763}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":38,"fn_id":8},"ty":"&&str","lives":[{"from":731,"until":762}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":39,"fn_id":8},"ty":"std::option::Option<&str>","lives":[{"from":798,"until":826},{"from":785,"until":795}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":40,"fn_id":8},"ty":"&scraper::node::Element","lives":[{"from":798,"until":826}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":41,"fn_id":8},"ty":"&scraper::node::Element","lives":[{"from":798,"until":813}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":42,"fn_id":8},"ty":"&scraper::ElementRef<'_>","lives":[{"from":798,"until":813}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":43,"fn_id":8},"ty":"&str","lives":[{"from":798,"until":826}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":44,"fn_id":8},"ty":"&str","lives":[{"from":819,"until":825}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":45,"fn_id":8},"ty":"isize","lives":[{"from":785,"until":795}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":46,"fn_id":8},"name":"link","span":{"from":790,"until":794},"ty":"&str","lives":[{"from":855,"until":877}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":47,"fn_id":8},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":48,"fn_id":8},"ty":"std::option::Option","lives":[{"from":852,"until":878}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":876,"until":878}],"must_live_at":[]},{"type":"other","local":{"id":49,"fn_id":8},"ty":"std::string::String","lives":[{"from":855,"until":877}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":50,"fn_id":8},"ty":"&str","lives":[{"from":860,"until":876}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":51,"fn_id":8},"ty":"std::option::Option","lives":[{"from":915,"until":923}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]}]},{"fn_id":13,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":13},"range":{"from":1486,"until":1510},"rval":null},{"type":"assign","target_local":{"id":7,"fn_id":13},"range":{"from":1553,"until":1565},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":13},"range":{"from":1553,"until":1565},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":6,"fn_id":13},"fn_span":{"from":1537,"until":1566}}},{"statements":[{"type":"assign","target_local":{"id":9,"fn_id":13},"range":{"from":1584,"until":1650},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":13},"range":{"from":1584,"until":1650},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":8,"fn_id":13},"range":{"from":1584,"until":1650},"rval":null}],"terminator":{"type":"call","destination_local":{"id":5,"fn_id":13},"fn_span":{"from":1576,"until":1651}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":4,"fn_id":13},"fn_span":{"from":1537,"until":1652}}},{"statements":[{"type":"assign","target_local":{"id":10,"fn_id":13},"range":{"from":1537,"until":1652},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":14,"fn_id":13},"range":{"from":1537,"until":1652},"rval":{"type":"move","target_local":{"id":4,"fn_id":13},"range":{"from":1537,"until":1652}}},{"type":"assign","target_local":{"id":3,"fn_id":13},"range":{"from":1537,"until":1652},"rval":{"type":"move","target_local":{"id":14,"fn_id":13},"range":{"from":1537,"until":1652}}}],"terminator":{"type":"drop","local":{"id":14,"fn_id":13},"range":{"from":1651,"until":1652}}},{"statements":[{"type":"assign","target_local":{"id":11,"fn_id":13},"range":{"from":1651,"until":1652},"rval":{"type":"move","target_local":{"id":4,"fn_id":13},"range":{"from":1651,"until":1652}}},{"type":"assign","target_local":{"id":13,"fn_id":13},"range":{"from":1651,"until":1652},"rval":{"type":"move","target_local":{"id":11,"fn_id":13},"range":{"from":1651,"until":1652}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":13},"fn_span":{"from":1537,"until":1652}}},{"statements":[],"terminator":{"type":"drop","local":{"id":11,"fn_id":13},"range":{"from":1651,"until":1652}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":13},"range":{"from":1652,"until":1653}}},{"statements":[{"type":"assign","target_local":{"id":16,"fn_id":13},"range":{"from":1695,"until":1704},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":13},"range":{"from":1695,"until":1704},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":15,"fn_id":13},"fn_span":{"from":1674,"until":1705}}},{"statements":[{"type":"assign","target_local":{"id":21,"fn_id":13},"range":{"from":1768,"until":1776},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":13},"range":{"from":1768,"until":1776},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":23,"fn_id":13},"range":{"from":1784,"until":1799},"rval":{"type":"borrow","target_local":{"id":3,"fn_id":13},"range":{"from":1784,"until":1799},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":22,"fn_id":13},"range":{"from":1784,"until":1799},"rval":{"type":"borrow","target_local":{"id":23,"fn_id":13},"range":{"from":1784,"until":1799},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":20,"fn_id":13},"fn_span":{"from":1777,"until":1800}}},{"statements":[{"type":"assign","target_local":{"id":19,"fn_id":13},"range":{"from":1768,"until":1800},"rval":{"type":"borrow","target_local":{"id":20,"fn_id":13},"range":{"from":1768,"until":1800},"mutable":true,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":18,"fn_id":13},"fn_span":{"from":1801,"until":1807}}},{"statements":[{"type":"assign","target_local":{"id":24,"fn_id":13},"range":{"from":1768,"until":1807},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":25,"fn_id":13},"range":{"from":1757,"until":1764},"rval":null},{"type":"assign","target_local":{"id":29,"fn_id":13},"range":{"from":1845,"until":1852},"rval":{"type":"borrow","target_local":{"id":25,"fn_id":13},"range":{"from":1845,"until":1852},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":28,"fn_id":13},"fn_span":{"from":1853,"until":1860}}},{"statements":[{"type":"assign","target_local":{"id":27,"fn_id":13},"range":{"from":1845,"until":1860},"rval":{"type":"borrow","target_local":{"id":28,"fn_id":13},"range":{"from":1845,"until":1860},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":31,"fn_id":13},"range":{"from":1866,"until":1873},"rval":null},{"type":"assign","target_local":{"id":30,"fn_id":13},"range":{"from":1866,"until":1873},"rval":{"type":"borrow","target_local":{"id":31,"fn_id":13},"range":{"from":1866,"until":1873},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":26,"fn_id":13},"fn_span":{"from":1861,"until":1874}}},{"statements":[{"type":"assign","target_local":{"id":32,"fn_id":13},"range":{"from":1845,"until":1874},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":33,"fn_id":13},"range":{"from":1830,"until":1841},"rval":null},{"type":"assign","target_local":{"id":37,"fn_id":13},"range":{"from":1904,"until":1915},"rval":{"type":"borrow","target_local":{"id":33,"fn_id":13},"range":{"from":1904,"until":1915},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":36,"fn_id":13},"fn_span":{"from":1916,"until":1927}}},{"statements":[{"type":"assign","target_local":{"id":35,"fn_id":13},"range":{"from":1899,"until":1928},"rval":null}],"terminator":{"type":"drop","local":{"id":36,"fn_id":13},"range":{"from":1927,"until":1928}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":13},"range":{"from":1896,"until":1929},"rval":null}],"terminator":{"type":"drop","local":{"id":35,"fn_id":13},"range":{"from":1928,"until":1929}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":13},"range":{"from":1945,"until":1946}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":13},"range":{"from":1945,"until":1946}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":13},"range":{"from":1945,"until":1946}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":38,"fn_id":13},"range":{"from":1955,"until":1959},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":13},"range":{"from":1952,"until":1960},"rval":null}],"terminator":{"type":"drop","local":{"id":38,"fn_id":13},"range":{"from":1959,"until":1960}}},{"statements":[],"terminator":{"type":"drop","local":{"id":15,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":15,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":13},"range":{"from":1652,"until":1653}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":35,"fn_id":13},"range":{"from":1928,"until":1929}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":13},"range":{"from":1945,"until":1946}}},{"statements":[],"terminator":{"type":"drop","local":{"id":15,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"drop","local":{"id":13,"fn_id":13},"range":{"from":1651,"until":1652}}},{"statements":[],"terminator":{"type":"drop","local":{"id":11,"fn_id":13},"range":{"from":1651,"until":1652}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":13},"range":{"from":1652,"until":1653}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":13},"range":{"from":1651,"until":1652}}},{"statements":[],"terminator":{"type":"drop","local":{"id":6,"fn_id":13},"range":{"from":1650,"until":1651}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":13},"ty":"std::result::Result, ScrapeError>","lives":[{"from":1651,"until":1653},{"from":1928,"until":1929},{"from":1939,"until":1940},{"from":1945,"until":1946},{"from":1959,"until":1960},{"from":1961,"until":1962}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":13},"name":"html_body","span":{"from":1378,"until":1387},"ty":"&str","lives":[{"from":1471,"until":1483},{"from":1486,"until":1510},{"from":1520,"until":1534},{"from":1537,"until":1653},{"from":1663,"until":1671},{"from":1695,"until":1704}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":13},"name":"selector_str","span":{"from":1471,"until":1483},"ty":"&str","lives":[{"from":1471,"until":1483},{"from":1520,"until":1534},{"from":1537,"until":1652}],"shared_borrow":[{"from":1537,"until":1651}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":1584,"until":1650}]},{"type":"user","local":{"id":3,"fn_id":13},"name":"token_selector","span":{"from":1520,"until":1534},"ty":"scraper::Selector","lives":[{"from":1651,"until":1653},{"from":1520,"until":1534},{"from":1663,"until":1671},{"from":1674,"until":1705},{"from":1745,"until":1946}],"shared_borrow":[{"from":1768,"until":1807}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":1651,"until":1653},{"from":1520,"until":1534},{"from":1663,"until":1671},{"from":1674,"until":1705},{"from":1745,"until":1946},{"from":1952,"until":1960},{"from":1961,"until":1962}],"must_live_at":[{"from":1784,"until":1800}]},{"type":"other","local":{"id":4,"fn_id":13},"ty":"std::ops::ControlFlow, scraper::Selector>","lives":[{"from":1537,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":1537,"until":1653},{"from":1520,"until":1534}],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":13},"ty":"std::result::Result","lives":[{"from":1537,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":13},"ty":"std::result::Result>","lives":[{"from":1537,"until":1651}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":13},"ty":"&str","lives":[{"from":1537,"until":1566}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":13},"ty":"{closure@src/lib.rs:50:18: 50:21}","lives":[{"from":1537,"until":1651}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":13},"ty":"&&str","lives":[{"from":1584,"until":1650}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":13},"ty":"isize","lives":[{"from":1537,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":11,"fn_id":13},"name":"residual","span":{"from":1651,"until":1652},"ty":"std::result::Result","lives":[{"from":1651,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":13},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":13},"ty":"std::result::Result","lives":[{"from":1537,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":14,"fn_id":13},"name":"val","span":{"from":1537,"until":1652},"ty":"scraper::Selector","lives":[{"from":1537,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":15,"fn_id":13},"name":"document","span":{"from":1663,"until":1671},"ty":"scraper::Html","lives":[{"from":1704,"until":1705},{"from":1663,"until":1671},{"from":1745,"until":1946}],"shared_borrow":[{"from":1768,"until":1807},{"from":1752,"until":1765},{"from":1845,"until":1874},{"from":1825,"until":1842},{"from":1899,"until":1928}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":1704,"until":1705},{"from":1663,"until":1671},{"from":1745,"until":1946},{"from":1952,"until":1960},{"from":1961,"until":1962}],"must_live_at":[{"from":1784,"until":1800},{"from":1806,"until":1807},{"from":1752,"until":1765},{"from":1845,"until":1874},{"from":1825,"until":1842},{"from":1899,"until":1928}]},{"type":"other","local":{"id":16,"fn_id":13},"ty":"&str","lives":[{"from":1674,"until":1705}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":13},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":13},"ty":"std::option::Option>","lives":[{"from":1768,"until":1807},{"from":1752,"until":1765}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":13},"ty":"&mut scraper::html::Select<'_, '_>","lives":[{"from":1768,"until":1807}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":20,"fn_id":13},"ty":"scraper::html::Select<'_, '_>","lives":[{"from":1768,"until":1800}],"shared_borrow":[],"mutable_borrow":[{"from":1768,"until":1807}],"drop":true,"drop_range":[{"from":1768,"until":1807},{"from":1752,"until":1765},{"from":1845,"until":1874},{"from":1825,"until":1842},{"from":1896,"until":1929},{"from":1939,"until":1940},{"from":1945,"until":1946}],"must_live_at":[{"from":1799,"until":1800}]},{"type":"other","local":{"id":21,"fn_id":13},"ty":"&scraper::Html","lives":[{"from":1768,"until":1800}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":22,"fn_id":13},"ty":"&scraper::Selector","lives":[{"from":1768,"until":1800}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":23,"fn_id":13},"ty":"&scraper::Selector","lives":[{"from":1784,"until":1799}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":24,"fn_id":13},"ty":"isize","lives":[{"from":1752,"until":1765}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":25,"fn_id":13},"name":"element","span":{"from":1757,"until":1764},"ty":"scraper::ElementRef<'_>","lives":[{"from":1845,"until":1874}],"shared_borrow":[{"from":1845,"until":1860}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":1845,"until":1860}]},{"type":"other","local":{"id":26,"fn_id":13},"ty":"std::option::Option<&str>","lives":[{"from":1845,"until":1874},{"from":1825,"until":1842}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":27,"fn_id":13},"ty":"&scraper::node::Element","lives":[{"from":1845,"until":1874}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":28,"fn_id":13},"ty":"&scraper::node::Element","lives":[{"from":1845,"until":1860}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":29,"fn_id":13},"ty":"&scraper::ElementRef<'_>","lives":[{"from":1845,"until":1860}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":30,"fn_id":13},"ty":"&str","lives":[{"from":1845,"until":1874}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":31,"fn_id":13},"ty":"&str","lives":[{"from":1866,"until":1873}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":32,"fn_id":13},"ty":"isize","lives":[{"from":1825,"until":1842}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":33,"fn_id":13},"name":"token_value","span":{"from":1830,"until":1841},"ty":"&str","lives":[{"from":1899,"until":1928}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":34,"fn_id":13},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":35,"fn_id":13},"ty":"std::option::Option","lives":[{"from":1896,"until":1929}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":1927,"until":1929}],"must_live_at":[]},{"type":"other","local":{"id":36,"fn_id":13},"ty":"std::string::String","lives":[{"from":1899,"until":1928}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":37,"fn_id":13},"ty":"&str","lives":[{"from":1904,"until":1927}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":38,"fn_id":13},"ty":"std::option::Option","lives":[{"from":1952,"until":1960}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]}]},{"fn_id":8,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":8,"fn_id":8},"range":{"from":498,"until":510},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":8},"range":{"from":498,"until":510},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":7,"fn_id":8},"fn_span":{"from":482,"until":511}}},{"statements":[{"type":"assign","target_local":{"id":10,"fn_id":8},"range":{"from":529,"until":595},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":8},"range":{"from":529,"until":595},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":9,"fn_id":8},"range":{"from":529,"until":595},"rval":null}],"terminator":{"type":"call","destination_local":{"id":6,"fn_id":8},"fn_span":{"from":521,"until":596}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":5,"fn_id":8},"fn_span":{"from":482,"until":597}}},{"statements":[{"type":"assign","target_local":{"id":11,"fn_id":8},"range":{"from":482,"until":597},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":15,"fn_id":8},"range":{"from":482,"until":597},"rval":{"type":"move","target_local":{"id":5,"fn_id":8},"range":{"from":482,"until":597}}},{"type":"assign","target_local":{"id":4,"fn_id":8},"range":{"from":482,"until":597},"rval":{"type":"move","target_local":{"id":15,"fn_id":8},"range":{"from":482,"until":597}}}],"terminator":{"type":"drop","local":{"id":15,"fn_id":8},"range":{"from":596,"until":597}}},{"statements":[{"type":"assign","target_local":{"id":12,"fn_id":8},"range":{"from":596,"until":597},"rval":{"type":"move","target_local":{"id":5,"fn_id":8},"range":{"from":596,"until":597}}},{"type":"assign","target_local":{"id":14,"fn_id":8},"range":{"from":596,"until":597},"rval":{"type":"move","target_local":{"id":12,"fn_id":8},"range":{"from":596,"until":597}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":8},"fn_span":{"from":482,"until":597}}},{"statements":[],"terminator":{"type":"drop","local":{"id":12,"fn_id":8},"range":{"from":596,"until":597}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":8},"range":{"from":597,"until":598}}},{"statements":[{"type":"assign","target_local":{"id":17,"fn_id":8},"range":{"from":640,"until":649},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":8},"range":{"from":640,"until":649},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":16,"fn_id":8},"fn_span":{"from":619,"until":650}}},{"statements":[{"type":"assign","target_local":{"id":21,"fn_id":8},"range":{"from":672,"until":680},"rval":{"type":"borrow","target_local":{"id":16,"fn_id":8},"range":{"from":672,"until":680},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":23,"fn_id":8},"range":{"from":688,"until":697},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":8},"range":{"from":688,"until":697},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":22,"fn_id":8},"range":{"from":688,"until":697},"rval":{"type":"borrow","target_local":{"id":23,"fn_id":8},"range":{"from":688,"until":697},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":20,"fn_id":8},"fn_span":{"from":681,"until":698}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":19,"fn_id":8},"fn_span":{"from":672,"until":698}}},{"statements":[{"type":"assign","target_local":{"id":24,"fn_id":8},"range":{"from":672,"until":698},"rval":{"type":"move","target_local":{"id":19,"fn_id":8},"range":{"from":672,"until":698}}}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":29,"fn_id":8},"range":{"from":672,"until":698},"rval":{"type":"borrow","target_local":{"id":24,"fn_id":8},"range":{"from":672,"until":698},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":28,"fn_id":8},"range":{"from":672,"until":698},"rval":{"type":"borrow","target_local":{"id":29,"fn_id":8},"range":{"from":672,"until":698},"mutable":true,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":27,"fn_id":8},"fn_span":{"from":672,"until":698}}},{"statements":[{"type":"assign","target_local":{"id":30,"fn_id":8},"range":{"from":672,"until":698},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":32,"fn_id":8},"range":{"from":661,"until":668},"rval":null},{"type":"assign","target_local":{"id":36,"fn_id":8},"range":{"from":712,"until":719},"rval":{"type":"borrow","target_local":{"id":32,"fn_id":8},"range":{"from":712,"until":719},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":35,"fn_id":8},"fn_span":{"from":720,"until":726}}},{"statements":[{"type":"assign","target_local":{"id":18,"fn_id":8},"range":{"from":657,"until":909},"rval":null}],"terminator":{"type":"drop","local":{"id":24,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[{"type":"assign","target_local":{"id":34,"fn_id":8},"range":{"from":712,"until":726},"rval":{"type":"borrow","target_local":{"id":35,"fn_id":8},"range":{"from":712,"until":726},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":38,"fn_id":8},"range":{"from":731,"until":762},"rval":{"type":"borrow","target_local":{"id":3,"fn_id":8},"range":{"from":731,"until":762},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":37,"fn_id":8},"range":{"from":731,"until":762},"rval":null}],"terminator":{"type":"call","destination_local":{"id":33,"fn_id":8},"fn_span":{"from":727,"until":763}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":42,"fn_id":8},"range":{"from":798,"until":805},"rval":{"type":"borrow","target_local":{"id":32,"fn_id":8},"range":{"from":798,"until":805},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":41,"fn_id":8},"fn_span":{"from":806,"until":813}}},{"statements":[{"type":"assign","target_local":{"id":40,"fn_id":8},"range":{"from":798,"until":813},"rval":{"type":"borrow","target_local":{"id":41,"fn_id":8},"range":{"from":798,"until":813},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":44,"fn_id":8},"range":{"from":819,"until":825},"rval":null},{"type":"assign","target_local":{"id":43,"fn_id":8},"range":{"from":819,"until":825},"rval":{"type":"borrow","target_local":{"id":44,"fn_id":8},"range":{"from":819,"until":825},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":39,"fn_id":8},"fn_span":{"from":814,"until":826}}},{"statements":[{"type":"assign","target_local":{"id":45,"fn_id":8},"range":{"from":798,"until":826},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":46,"fn_id":8},"range":{"from":790,"until":794},"rval":null},{"type":"assign","target_local":{"id":50,"fn_id":8},"range":{"from":860,"until":864},"rval":{"type":"borrow","target_local":{"id":46,"fn_id":8},"range":{"from":860,"until":864},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":49,"fn_id":8},"fn_span":{"from":865,"until":876}}},{"statements":[{"type":"assign","target_local":{"id":48,"fn_id":8},"range":{"from":855,"until":877},"rval":null}],"terminator":{"type":"drop","local":{"id":49,"fn_id":8},"range":{"from":876,"until":877}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":8},"range":{"from":852,"until":878},"rval":null}],"terminator":{"type":"drop","local":{"id":48,"fn_id":8},"range":{"from":877,"until":878}}},{"statements":[],"terminator":{"type":"drop","local":{"id":24,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":25,"fn_id":8},"range":{"from":657,"until":909},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":19,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[{"type":"assign","target_local":{"id":51,"fn_id":8},"range":{"from":918,"until":922},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":8},"range":{"from":915,"until":923},"rval":null}],"terminator":{"type":"drop","local":{"id":51,"fn_id":8},"range":{"from":922,"until":923}}},{"statements":[],"terminator":{"type":"drop","local":{"id":16,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":19,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[],"terminator":{"type":"drop","local":{"id":16,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":8},"range":{"from":597,"until":598}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":48,"fn_id":8},"range":{"from":877,"until":878}}},{"statements":[],"terminator":{"type":"drop","local":{"id":24,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[],"terminator":{"type":"drop","local":{"id":19,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":8},"range":{"from":697,"until":698}}},{"statements":[],"terminator":{"type":"drop","local":{"id":16,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"drop","local":{"id":14,"fn_id":8},"range":{"from":596,"until":597}}},{"statements":[],"terminator":{"type":"drop","local":{"id":12,"fn_id":8},"range":{"from":596,"until":597}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":8},"range":{"from":597,"until":598}}},{"statements":[],"terminator":{"type":"drop","local":{"id":6,"fn_id":8},"range":{"from":596,"until":597}}},{"statements":[],"terminator":{"type":"drop","local":{"id":7,"fn_id":8},"range":{"from":595,"until":596}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":8},"ty":"std::result::Result, ScrapeError>","lives":[{"from":596,"until":598},{"from":877,"until":878},{"from":892,"until":893},{"from":902,"until":903},{"from":908,"until":909},{"from":922,"until":923},{"from":924,"until":925}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":8},"name":"html_body","span":{"from":368,"until":377},"ty":"&str","lives":[{"from":471,"until":479},{"from":482,"until":598},{"from":608,"until":616},{"from":640,"until":649}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":8},"name":"selector_str","span":{"from":385,"until":397},"ty":"&str","lives":[{"from":471,"until":479},{"from":482,"until":597}],"shared_borrow":[{"from":482,"until":596}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":529,"until":595}]},{"type":"user","local":{"id":3,"fn_id":8},"name":"link_text","span":{"from":405,"until":414},"ty":"&str","lives":[{"from":471,"until":479},{"from":482,"until":598},{"from":608,"until":616},{"from":619,"until":650},{"from":657,"until":909}],"shared_borrow":[{"from":712,"until":763}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":731,"until":762}]},{"type":"user","local":{"id":4,"fn_id":8},"name":"selector","span":{"from":471,"until":479},"ty":"scraper::Selector","lives":[{"from":596,"until":598},{"from":471,"until":479},{"from":608,"until":616},{"from":619,"until":650},{"from":657,"until":909}],"shared_borrow":[{"from":657,"until":909}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":596,"until":598},{"from":471,"until":479},{"from":608,"until":616},{"from":619,"until":650},{"from":657,"until":909},{"from":915,"until":923},{"from":924,"until":925}],"must_live_at":[{"from":688,"until":698},{"from":661,"until":668},{"from":712,"until":763},{"from":798,"until":826},{"from":785,"until":795},{"from":892,"until":893},{"from":902,"until":903},{"from":908,"until":909}]},{"type":"other","local":{"id":5,"fn_id":8},"ty":"std::ops::ControlFlow, scraper::Selector>","lives":[{"from":482,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":482,"until":598},{"from":471,"until":479}],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":8},"ty":"std::result::Result","lives":[{"from":482,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":8},"ty":"std::result::Result>","lives":[{"from":482,"until":596}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":8},"ty":"&str","lives":[{"from":482,"until":511}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":8},"ty":"{closure@src/lib.rs:19:18: 19:21}","lives":[{"from":482,"until":596}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":8},"ty":"&&str","lives":[{"from":529,"until":595}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":8},"ty":"isize","lives":[{"from":482,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":12,"fn_id":8},"name":"residual","span":{"from":596,"until":597},"ty":"std::result::Result","lives":[{"from":596,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":8},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":8},"ty":"std::result::Result","lives":[{"from":482,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":15,"fn_id":8},"name":"val","span":{"from":482,"until":597},"ty":"scraper::Selector","lives":[{"from":482,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":16,"fn_id":8},"name":"document","span":{"from":608,"until":616},"ty":"scraper::Html","lives":[{"from":649,"until":650},{"from":608,"until":616},{"from":657,"until":909}],"shared_borrow":[{"from":657,"until":909}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":649,"until":650},{"from":608,"until":616},{"from":657,"until":909},{"from":915,"until":923},{"from":924,"until":925}],"must_live_at":[{"from":688,"until":698},{"from":661,"until":668},{"from":712,"until":763},{"from":798,"until":826},{"from":785,"until":795},{"from":855,"until":877},{"from":892,"until":893},{"from":902,"until":903},{"from":908,"until":909}]},{"type":"other","local":{"id":17,"fn_id":8},"ty":"&str","lives":[{"from":619,"until":650}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":8},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":8},"ty":"scraper::html::Select<'_, '_>","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":20,"fn_id":8},"ty":"scraper::html::Select<'_, '_>","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":21,"fn_id":8},"ty":"&scraper::Html","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":22,"fn_id":8},"ty":"&scraper::Selector","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":23,"fn_id":8},"ty":"&scraper::Selector","lives":[{"from":688,"until":697}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":24,"fn_id":8},"name":"iter","span":{"from":672,"until":698},"ty":"scraper::html::Select<'_, '_>","lives":[{"from":657,"until":909}],"shared_borrow":[],"mutable_borrow":[{"from":672,"until":698}],"drop":true,"drop_range":[{"from":657,"until":909}],"must_live_at":[{"from":672,"until":698}]},{"type":"other","local":{"id":25,"fn_id":8},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":26,"fn_id":8},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":27,"fn_id":8},"ty":"std::option::Option>","lives":[{"from":657,"until":909}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":28,"fn_id":8},"ty":"&mut scraper::html::Select<'_, '_>","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":29,"fn_id":8},"ty":"&mut scraper::html::Select<'_, '_>","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[{"from":672,"until":698}],"drop":false,"drop_range":[],"must_live_at":[{"from":672,"until":698}]},{"type":"other","local":{"id":30,"fn_id":8},"ty":"isize","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":31,"fn_id":8},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":32,"fn_id":8},"name":"element","span":{"from":661,"until":668},"ty":"scraper::ElementRef<'_>","lives":[{"from":712,"until":763},{"from":798,"until":826}],"shared_borrow":[{"from":712,"until":726},{"from":798,"until":813}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":712,"until":726},{"from":798,"until":813}]},{"type":"other","local":{"id":33,"fn_id":8},"ty":"bool","lives":[{"from":712,"until":763}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":34,"fn_id":8},"ty":"&mut scraper::element_ref::Text<'_>","lives":[{"from":712,"until":763}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":35,"fn_id":8},"ty":"scraper::element_ref::Text<'_>","lives":[{"from":712,"until":726}],"shared_borrow":[],"mutable_borrow":[{"from":712,"until":763}],"drop":false,"drop_range":[],"must_live_at":[{"from":725,"until":726},{"from":731,"until":762}]},{"type":"other","local":{"id":36,"fn_id":8},"ty":"&scraper::ElementRef<'_>","lives":[{"from":712,"until":726}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":37,"fn_id":8},"ty":"{closure@src/lib.rs:24:31: 24:37}","lives":[{"from":712,"until":763}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":38,"fn_id":8},"ty":"&&str","lives":[{"from":731,"until":762}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":39,"fn_id":8},"ty":"std::option::Option<&str>","lives":[{"from":798,"until":826},{"from":785,"until":795}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":40,"fn_id":8},"ty":"&scraper::node::Element","lives":[{"from":798,"until":826}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":41,"fn_id":8},"ty":"&scraper::node::Element","lives":[{"from":798,"until":813}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":42,"fn_id":8},"ty":"&scraper::ElementRef<'_>","lives":[{"from":798,"until":813}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":43,"fn_id":8},"ty":"&str","lives":[{"from":798,"until":826}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":44,"fn_id":8},"ty":"&str","lives":[{"from":819,"until":825}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":45,"fn_id":8},"ty":"isize","lives":[{"from":785,"until":795}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":46,"fn_id":8},"name":"link","span":{"from":790,"until":794},"ty":"&str","lives":[{"from":855,"until":877}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":47,"fn_id":8},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":48,"fn_id":8},"ty":"std::option::Option","lives":[{"from":852,"until":878}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":876,"until":878}],"must_live_at":[]},{"type":"other","local":{"id":49,"fn_id":8},"ty":"std::string::String","lives":[{"from":855,"until":877}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":50,"fn_id":8},"ty":"&str","lives":[{"from":860,"until":876}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":51,"fn_id":8},"ty":"std::option::Option","lives":[{"from":915,"until":923}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]}]},{"fn_id":13,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":13},"range":{"from":1486,"until":1510},"rval":null},{"type":"assign","target_local":{"id":7,"fn_id":13},"range":{"from":1553,"until":1565},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":13},"range":{"from":1553,"until":1565},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":6,"fn_id":13},"fn_span":{"from":1537,"until":1566}}},{"statements":[{"type":"assign","target_local":{"id":9,"fn_id":13},"range":{"from":1584,"until":1650},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":13},"range":{"from":1584,"until":1650},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":8,"fn_id":13},"range":{"from":1584,"until":1650},"rval":null}],"terminator":{"type":"call","destination_local":{"id":5,"fn_id":13},"fn_span":{"from":1576,"until":1651}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":4,"fn_id":13},"fn_span":{"from":1537,"until":1652}}},{"statements":[{"type":"assign","target_local":{"id":10,"fn_id":13},"range":{"from":1537,"until":1652},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":14,"fn_id":13},"range":{"from":1537,"until":1652},"rval":{"type":"move","target_local":{"id":4,"fn_id":13},"range":{"from":1537,"until":1652}}},{"type":"assign","target_local":{"id":3,"fn_id":13},"range":{"from":1537,"until":1652},"rval":{"type":"move","target_local":{"id":14,"fn_id":13},"range":{"from":1537,"until":1652}}}],"terminator":{"type":"drop","local":{"id":14,"fn_id":13},"range":{"from":1651,"until":1652}}},{"statements":[{"type":"assign","target_local":{"id":11,"fn_id":13},"range":{"from":1651,"until":1652},"rval":{"type":"move","target_local":{"id":4,"fn_id":13},"range":{"from":1651,"until":1652}}},{"type":"assign","target_local":{"id":13,"fn_id":13},"range":{"from":1651,"until":1652},"rval":{"type":"move","target_local":{"id":11,"fn_id":13},"range":{"from":1651,"until":1652}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":13},"fn_span":{"from":1537,"until":1652}}},{"statements":[],"terminator":{"type":"drop","local":{"id":11,"fn_id":13},"range":{"from":1651,"until":1652}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":13},"range":{"from":1652,"until":1653}}},{"statements":[{"type":"assign","target_local":{"id":16,"fn_id":13},"range":{"from":1695,"until":1704},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":13},"range":{"from":1695,"until":1704},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":15,"fn_id":13},"fn_span":{"from":1674,"until":1705}}},{"statements":[{"type":"assign","target_local":{"id":21,"fn_id":13},"range":{"from":1768,"until":1776},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":13},"range":{"from":1768,"until":1776},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":23,"fn_id":13},"range":{"from":1784,"until":1799},"rval":{"type":"borrow","target_local":{"id":3,"fn_id":13},"range":{"from":1784,"until":1799},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":22,"fn_id":13},"range":{"from":1784,"until":1799},"rval":{"type":"borrow","target_local":{"id":23,"fn_id":13},"range":{"from":1784,"until":1799},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":20,"fn_id":13},"fn_span":{"from":1777,"until":1800}}},{"statements":[{"type":"assign","target_local":{"id":19,"fn_id":13},"range":{"from":1768,"until":1800},"rval":{"type":"borrow","target_local":{"id":20,"fn_id":13},"range":{"from":1768,"until":1800},"mutable":true,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":18,"fn_id":13},"fn_span":{"from":1801,"until":1807}}},{"statements":[{"type":"assign","target_local":{"id":24,"fn_id":13},"range":{"from":1768,"until":1807},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":25,"fn_id":13},"range":{"from":1757,"until":1764},"rval":null},{"type":"assign","target_local":{"id":29,"fn_id":13},"range":{"from":1845,"until":1852},"rval":{"type":"borrow","target_local":{"id":25,"fn_id":13},"range":{"from":1845,"until":1852},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":28,"fn_id":13},"fn_span":{"from":1853,"until":1860}}},{"statements":[{"type":"assign","target_local":{"id":27,"fn_id":13},"range":{"from":1845,"until":1860},"rval":{"type":"borrow","target_local":{"id":28,"fn_id":13},"range":{"from":1845,"until":1860},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":31,"fn_id":13},"range":{"from":1866,"until":1873},"rval":null},{"type":"assign","target_local":{"id":30,"fn_id":13},"range":{"from":1866,"until":1873},"rval":{"type":"borrow","target_local":{"id":31,"fn_id":13},"range":{"from":1866,"until":1873},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":26,"fn_id":13},"fn_span":{"from":1861,"until":1874}}},{"statements":[{"type":"assign","target_local":{"id":32,"fn_id":13},"range":{"from":1845,"until":1874},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":33,"fn_id":13},"range":{"from":1830,"until":1841},"rval":null},{"type":"assign","target_local":{"id":37,"fn_id":13},"range":{"from":1904,"until":1915},"rval":{"type":"borrow","target_local":{"id":33,"fn_id":13},"range":{"from":1904,"until":1915},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":36,"fn_id":13},"fn_span":{"from":1916,"until":1927}}},{"statements":[{"type":"assign","target_local":{"id":35,"fn_id":13},"range":{"from":1899,"until":1928},"rval":null}],"terminator":{"type":"drop","local":{"id":36,"fn_id":13},"range":{"from":1927,"until":1928}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":13},"range":{"from":1896,"until":1929},"rval":null}],"terminator":{"type":"drop","local":{"id":35,"fn_id":13},"range":{"from":1928,"until":1929}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":13},"range":{"from":1945,"until":1946}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":13},"range":{"from":1945,"until":1946}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":13},"range":{"from":1945,"until":1946}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":38,"fn_id":13},"range":{"from":1955,"until":1959},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":13},"range":{"from":1952,"until":1960},"rval":null}],"terminator":{"type":"drop","local":{"id":38,"fn_id":13},"range":{"from":1959,"until":1960}}},{"statements":[],"terminator":{"type":"drop","local":{"id":15,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":15,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":13},"range":{"from":1652,"until":1653}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":35,"fn_id":13},"range":{"from":1928,"until":1929}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":13},"range":{"from":1945,"until":1946}}},{"statements":[],"terminator":{"type":"drop","local":{"id":15,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"drop","local":{"id":13,"fn_id":13},"range":{"from":1651,"until":1652}}},{"statements":[],"terminator":{"type":"drop","local":{"id":11,"fn_id":13},"range":{"from":1651,"until":1652}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":13},"range":{"from":1652,"until":1653}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":13},"range":{"from":1651,"until":1652}}},{"statements":[],"terminator":{"type":"drop","local":{"id":6,"fn_id":13},"range":{"from":1650,"until":1651}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":13},"ty":"std::result::Result, ScrapeError>","lives":[{"from":1651,"until":1653},{"from":1928,"until":1929},{"from":1939,"until":1940},{"from":1945,"until":1946},{"from":1959,"until":1960},{"from":1961,"until":1962}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":13},"name":"html_body","span":{"from":1378,"until":1387},"ty":"&str","lives":[{"from":1471,"until":1483},{"from":1486,"until":1510},{"from":1520,"until":1534},{"from":1537,"until":1653},{"from":1663,"until":1671},{"from":1695,"until":1704}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":13},"name":"selector_str","span":{"from":1471,"until":1483},"ty":"&str","lives":[{"from":1471,"until":1483},{"from":1520,"until":1534},{"from":1537,"until":1652}],"shared_borrow":[{"from":1537,"until":1651}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":1584,"until":1650}]},{"type":"user","local":{"id":3,"fn_id":13},"name":"token_selector","span":{"from":1520,"until":1534},"ty":"scraper::Selector","lives":[{"from":1651,"until":1653},{"from":1520,"until":1534},{"from":1663,"until":1671},{"from":1674,"until":1705},{"from":1745,"until":1946}],"shared_borrow":[{"from":1768,"until":1807}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":1651,"until":1653},{"from":1520,"until":1534},{"from":1663,"until":1671},{"from":1674,"until":1705},{"from":1745,"until":1946},{"from":1952,"until":1960},{"from":1961,"until":1962}],"must_live_at":[{"from":1784,"until":1800}]},{"type":"other","local":{"id":4,"fn_id":13},"ty":"std::ops::ControlFlow, scraper::Selector>","lives":[{"from":1537,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":1537,"until":1653},{"from":1520,"until":1534}],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":13},"ty":"std::result::Result","lives":[{"from":1537,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":13},"ty":"std::result::Result>","lives":[{"from":1537,"until":1651}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":13},"ty":"&str","lives":[{"from":1537,"until":1566}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":13},"ty":"{closure@src/lib.rs:50:18: 50:21}","lives":[{"from":1537,"until":1651}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":13},"ty":"&&str","lives":[{"from":1584,"until":1650}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":13},"ty":"isize","lives":[{"from":1537,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":11,"fn_id":13},"name":"residual","span":{"from":1651,"until":1652},"ty":"std::result::Result","lives":[{"from":1651,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":13},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":13},"ty":"std::result::Result","lives":[{"from":1537,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":14,"fn_id":13},"name":"val","span":{"from":1537,"until":1652},"ty":"scraper::Selector","lives":[{"from":1537,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":15,"fn_id":13},"name":"document","span":{"from":1663,"until":1671},"ty":"scraper::Html","lives":[{"from":1704,"until":1705},{"from":1663,"until":1671},{"from":1745,"until":1946}],"shared_borrow":[{"from":1768,"until":1807},{"from":1752,"until":1765},{"from":1845,"until":1874},{"from":1825,"until":1842},{"from":1899,"until":1928}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":1704,"until":1705},{"from":1663,"until":1671},{"from":1745,"until":1946},{"from":1952,"until":1960},{"from":1961,"until":1962}],"must_live_at":[{"from":1784,"until":1800},{"from":1806,"until":1807},{"from":1752,"until":1765},{"from":1845,"until":1874},{"from":1825,"until":1842},{"from":1899,"until":1928}]},{"type":"other","local":{"id":16,"fn_id":13},"ty":"&str","lives":[{"from":1674,"until":1705}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":13},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":13},"ty":"std::option::Option>","lives":[{"from":1768,"until":1807},{"from":1752,"until":1765}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":13},"ty":"&mut scraper::html::Select<'_, '_>","lives":[{"from":1768,"until":1807}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":20,"fn_id":13},"ty":"scraper::html::Select<'_, '_>","lives":[{"from":1768,"until":1800}],"shared_borrow":[],"mutable_borrow":[{"from":1768,"until":1807}],"drop":true,"drop_range":[{"from":1768,"until":1807},{"from":1752,"until":1765},{"from":1845,"until":1874},{"from":1825,"until":1842},{"from":1896,"until":1929},{"from":1939,"until":1940},{"from":1945,"until":1946}],"must_live_at":[{"from":1799,"until":1800}]},{"type":"other","local":{"id":21,"fn_id":13},"ty":"&scraper::Html","lives":[{"from":1768,"until":1800}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":22,"fn_id":13},"ty":"&scraper::Selector","lives":[{"from":1768,"until":1800}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":23,"fn_id":13},"ty":"&scraper::Selector","lives":[{"from":1784,"until":1799}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":24,"fn_id":13},"ty":"isize","lives":[{"from":1752,"until":1765}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":25,"fn_id":13},"name":"element","span":{"from":1757,"until":1764},"ty":"scraper::ElementRef<'_>","lives":[{"from":1845,"until":1874}],"shared_borrow":[{"from":1845,"until":1860}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":1845,"until":1860}]},{"type":"other","local":{"id":26,"fn_id":13},"ty":"std::option::Option<&str>","lives":[{"from":1845,"until":1874},{"from":1825,"until":1842}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":27,"fn_id":13},"ty":"&scraper::node::Element","lives":[{"from":1845,"until":1874}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":28,"fn_id":13},"ty":"&scraper::node::Element","lives":[{"from":1845,"until":1860}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":29,"fn_id":13},"ty":"&scraper::ElementRef<'_>","lives":[{"from":1845,"until":1860}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":30,"fn_id":13},"ty":"&str","lives":[{"from":1845,"until":1874}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":31,"fn_id":13},"ty":"&str","lives":[{"from":1866,"until":1873}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":32,"fn_id":13},"ty":"isize","lives":[{"from":1825,"until":1842}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":33,"fn_id":13},"name":"token_value","span":{"from":1830,"until":1841},"ty":"&str","lives":[{"from":1899,"until":1928}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":34,"fn_id":13},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":35,"fn_id":13},"ty":"std::option::Option","lives":[{"from":1896,"until":1929}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":1927,"until":1929}],"must_live_at":[]},{"type":"other","local":{"id":36,"fn_id":13},"ty":"std::string::String","lives":[{"from":1899,"until":1928}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":37,"fn_id":13},"ty":"&str","lives":[{"from":1904,"until":1927}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":38,"fn_id":13},"ty":"std::option::Option","lives":[{"from":1952,"until":1960}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]}]},{"fn_id":39,"basic_blocks":[{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":39},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":40,"basic_blocks":[{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":40},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":40},"ty":"&[&tests::test::TestDescAndFn]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":40},"ty":"&[&tests::test::TestDescAndFn; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":40},"ty":"&[&tests::test::TestDescAndFn; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":40},"ty":"[&tests::test::TestDescAndFn; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":40},"ty":"&tests::test::TestDescAndFn","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":40},"ty":"&tests::test::TestDescAndFn","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":40},"ty":"tests::test::TestDescAndFn","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":40},"ty":"&[&tests::test::TestDescAndFn; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":15,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":15},"range":{"from":2220,"until":2253},"rval":null},{"type":"assign","target_local":{"id":7,"fn_id":15},"range":{"from":2302,"until":2314},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":15},"range":{"from":2302,"until":2314},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":6,"fn_id":15},"fn_span":{"from":2286,"until":2315}}},{"statements":[{"type":"assign","target_local":{"id":9,"fn_id":15},"range":{"from":2333,"until":2399},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":15},"range":{"from":2333,"until":2399},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":8,"fn_id":15},"range":{"from":2333,"until":2399},"rval":null}],"terminator":{"type":"call","destination_local":{"id":5,"fn_id":15},"fn_span":{"from":2325,"until":2400}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":4,"fn_id":15},"fn_span":{"from":2286,"until":2401}}},{"statements":[{"type":"assign","target_local":{"id":10,"fn_id":15},"range":{"from":2286,"until":2401},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":14,"fn_id":15},"range":{"from":2286,"until":2401},"rval":{"type":"move","target_local":{"id":4,"fn_id":15},"range":{"from":2286,"until":2401}}},{"type":"assign","target_local":{"id":3,"fn_id":15},"range":{"from":2286,"until":2401},"rval":{"type":"move","target_local":{"id":14,"fn_id":15},"range":{"from":2286,"until":2401}}}],"terminator":{"type":"drop","local":{"id":14,"fn_id":15},"range":{"from":2400,"until":2401}}},{"statements":[{"type":"assign","target_local":{"id":11,"fn_id":15},"range":{"from":2400,"until":2401},"rval":{"type":"move","target_local":{"id":4,"fn_id":15},"range":{"from":2400,"until":2401}}},{"type":"assign","target_local":{"id":13,"fn_id":15},"range":{"from":2400,"until":2401},"rval":{"type":"move","target_local":{"id":11,"fn_id":15},"range":{"from":2400,"until":2401}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":15},"fn_span":{"from":2286,"until":2401}}},{"statements":[],"terminator":{"type":"drop","local":{"id":11,"fn_id":15},"range":{"from":2400,"until":2401}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":15},"range":{"from":2401,"until":2402}}},{"statements":[{"type":"assign","target_local":{"id":16,"fn_id":15},"range":{"from":2444,"until":2453},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":15},"range":{"from":2444,"until":2453},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":15,"fn_id":15},"fn_span":{"from":2423,"until":2454}}},{"statements":[{"type":"assign","target_local":{"id":21,"fn_id":15},"range":{"from":2502,"until":2510},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":15},"range":{"from":2502,"until":2510},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":23,"fn_id":15},"range":{"from":2518,"until":2539},"rval":{"type":"borrow","target_local":{"id":3,"fn_id":15},"range":{"from":2518,"until":2539},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":22,"fn_id":15},"range":{"from":2518,"until":2539},"rval":{"type":"borrow","target_local":{"id":23,"fn_id":15},"range":{"from":2518,"until":2539},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":20,"fn_id":15},"fn_span":{"from":2511,"until":2540}}},{"statements":[{"type":"assign","target_local":{"id":19,"fn_id":15},"range":{"from":2502,"until":2540},"rval":{"type":"borrow","target_local":{"id":20,"fn_id":15},"range":{"from":2502,"until":2540},"mutable":true,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":18,"fn_id":15},"fn_span":{"from":2541,"until":2547}}},{"statements":[{"type":"assign","target_local":{"id":24,"fn_id":15},"range":{"from":2502,"until":2547},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":25,"fn_id":15},"range":{"from":2491,"until":2498},"rval":null},{"type":"assign","target_local":{"id":29,"fn_id":15},"range":{"from":2603,"until":2610},"rval":{"type":"borrow","target_local":{"id":25,"fn_id":15},"range":{"from":2603,"until":2610},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":28,"fn_id":15},"fn_span":{"from":2611,"until":2618}}},{"statements":[{"type":"assign","target_local":{"id":27,"fn_id":15},"range":{"from":2603,"until":2618},"rval":{"type":"borrow","target_local":{"id":28,"fn_id":15},"range":{"from":2603,"until":2618},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":31,"fn_id":15},"range":{"from":2624,"until":2630},"rval":null},{"type":"assign","target_local":{"id":30,"fn_id":15},"range":{"from":2624,"until":2630},"rval":{"type":"borrow","target_local":{"id":31,"fn_id":15},"range":{"from":2624,"until":2630},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":26,"fn_id":15},"fn_span":{"from":2619,"until":2631}}},{"statements":[{"type":"assign","target_local":{"id":32,"fn_id":15},"range":{"from":2603,"until":2631},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":33,"fn_id":15},"range":{"from":2595,"until":2599},"rval":null},{"type":"assign","target_local":{"id":38,"fn_id":15},"range":{"from":2768,"until":2779},"rval":null},{"type":"assign","target_local":{"id":37,"fn_id":15},"range":{"from":2768,"until":2779},"rval":{"type":"borrow","target_local":{"id":38,"fn_id":15},"range":{"from":2768,"until":2779},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":36,"fn_id":15},"fn_span":{"from":2757,"until":2780}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":35,"fn_id":15},"fn_span":{"from":2757,"until":2781}}},{"statements":[{"type":"assign","target_local":{"id":39,"fn_id":15},"range":{"from":2757,"until":2781},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":43,"fn_id":15},"range":{"from":2757,"until":2781},"rval":{"type":"move","target_local":{"id":35,"fn_id":15},"range":{"from":2757,"until":2781}}},{"type":"assign","target_local":{"id":34,"fn_id":15},"range":{"from":2757,"until":2781},"rval":{"type":"move","target_local":{"id":43,"fn_id":15},"range":{"from":2757,"until":2781}}}],"terminator":{"type":"drop","local":{"id":43,"fn_id":15},"range":{"from":2780,"until":2781}}},{"statements":[{"type":"assign","target_local":{"id":40,"fn_id":15},"range":{"from":2780,"until":2781},"rval":{"type":"move","target_local":{"id":35,"fn_id":15},"range":{"from":2780,"until":2781}}},{"type":"assign","target_local":{"id":42,"fn_id":15},"range":{"from":2780,"until":2781},"rval":{"type":"move","target_local":{"id":40,"fn_id":15},"range":{"from":2780,"until":2781}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":15},"fn_span":{"from":2757,"until":2781}}},{"statements":[],"terminator":{"type":"drop","local":{"id":40,"fn_id":15},"range":{"from":2780,"until":2781}}},{"statements":[],"terminator":{"type":"drop","local":{"id":35,"fn_id":15},"range":{"from":2781,"until":2782}}},{"statements":[{"type":"assign","target_local":{"id":45,"fn_id":15},"range":{"from":2815,"until":2817},"rval":{"type":"borrow","target_local":{"id":34,"fn_id":15},"range":{"from":2815,"until":2817},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":46,"fn_id":15},"range":{"from":2827,"until":2831},"rval":{"type":"borrow","target_local":{"id":33,"fn_id":15},"range":{"from":2827,"until":2831},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":44,"fn_id":15},"fn_span":{"from":2818,"until":2832}}},{"statements":[{"type":"assign","target_local":{"id":47,"fn_id":15},"range":{"from":2815,"until":2832},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":48,"fn_id":15},"range":{"from":2807,"until":2811},"rval":{"type":"move","target_local":{"id":44,"fn_id":15},"range":{"from":2807,"until":2811}}},{"type":"assign","target_local":{"id":50,"fn_id":15},"range":{"from":2933,"until":2937},"rval":{"type":"borrow","target_local":{"id":48,"fn_id":15},"range":{"from":2933,"until":2937},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":49,"fn_id":15},"fn_span":{"from":2938,"until":2944}}},{"statements":[{"type":"assign","target_local":{"id":51,"fn_id":15},"range":{"from":2933,"until":2944},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":52,"fn_id":15},"range":{"from":2921,"until":2929},"rval":null},{"type":"assign","target_local":{"id":58,"fn_id":15},"range":{"from":2982,"until":2990},"rval":{"type":"borrow","target_local":{"id":52,"fn_id":15},"range":{"from":2982,"until":2990},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":57,"fn_id":15},"fn_span":{"from":2991,"until":2999}}},{"statements":[{"type":"assign","target_local":{"id":56,"fn_id":15},"range":{"from":2982,"until":2999},"rval":{"type":"borrow","target_local":{"id":57,"fn_id":15},"range":{"from":2982,"until":2999},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":55,"fn_id":15},"fn_span":{"from":3000,"until":3011}}},{"statements":[{"type":"assign","target_local":{"id":54,"fn_id":15},"range":{"from":2977,"until":3012},"rval":null}],"terminator":{"type":"drop","local":{"id":55,"fn_id":15},"range":{"from":3011,"until":3012}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":15},"range":{"from":2974,"until":3013},"rval":null}],"terminator":{"type":"drop","local":{"id":54,"fn_id":15},"range":{"from":3012,"until":3013}}},{"statements":[],"terminator":{"type":"drop","local":{"id":48,"fn_id":15},"range":{"from":3045,"until":3046}}},{"statements":[],"terminator":{"type":"drop","local":{"id":48,"fn_id":15},"range":{"from":3045,"until":3046}}},{"statements":[],"terminator":{"type":"drop","local":{"id":44,"fn_id":15},"range":{"from":3045,"until":3046}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":44,"fn_id":15},"range":{"from":3045,"until":3046}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":34,"fn_id":15},"range":{"from":3055,"until":3056}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":15},"range":{"from":3061,"until":3062}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":15},"range":{"from":3061,"until":3062}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":59,"fn_id":15},"range":{"from":3071,"until":3075},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":15},"range":{"from":3068,"until":3076},"rval":null}],"terminator":{"type":"drop","local":{"id":59,"fn_id":15},"range":{"from":3075,"until":3076}}},{"statements":[],"terminator":{"type":"drop","local":{"id":15,"fn_id":15},"range":{"from":3077,"until":3078}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":15},"range":{"from":3077,"until":3078}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":44,"fn_id":15},"range":{"from":3045,"until":3046}}},{"statements":[],"terminator":{"type":"drop","local":{"id":34,"fn_id":15},"range":{"from":3055,"until":3056}}},{"statements":[],"terminator":{"type":"drop","local":{"id":35,"fn_id":15},"range":{"from":2781,"until":2782}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":15},"range":{"from":3061,"until":3062}}},{"statements":[],"terminator":{"type":"drop","local":{"id":15,"fn_id":15},"range":{"from":3077,"until":3078}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":15},"range":{"from":3077,"until":3078}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":15},"range":{"from":2401,"until":2402}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":54,"fn_id":15},"range":{"from":3012,"until":3013}}},{"statements":[],"terminator":{"type":"drop","local":{"id":48,"fn_id":15},"range":{"from":3045,"until":3046}}},{"statements":[],"terminator":{"type":"drop","local":{"id":44,"fn_id":15},"range":{"from":3045,"until":3046}}},{"statements":[],"terminator":{"type":"drop","local":{"id":34,"fn_id":15},"range":{"from":3055,"until":3056}}},{"statements":[],"terminator":{"type":"drop","local":{"id":42,"fn_id":15},"range":{"from":2780,"until":2781}}},{"statements":[],"terminator":{"type":"drop","local":{"id":40,"fn_id":15},"range":{"from":2780,"until":2781}}},{"statements":[],"terminator":{"type":"drop","local":{"id":35,"fn_id":15},"range":{"from":2781,"until":2782}}},{"statements":[],"terminator":{"type":"drop","local":{"id":36,"fn_id":15},"range":{"from":2780,"until":2781}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":15},"range":{"from":3061,"until":3062}}},{"statements":[],"terminator":{"type":"drop","local":{"id":15,"fn_id":15},"range":{"from":3077,"until":3078}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":15},"range":{"from":3077,"until":3078}}},{"statements":[],"terminator":{"type":"drop","local":{"id":13,"fn_id":15},"range":{"from":2400,"until":2401}}},{"statements":[],"terminator":{"type":"drop","local":{"id":11,"fn_id":15},"range":{"from":2400,"until":2401}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":15},"range":{"from":2401,"until":2402}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":15},"range":{"from":2400,"until":2401}}},{"statements":[],"terminator":{"type":"drop","local":{"id":6,"fn_id":15},"range":{"from":2399,"until":2400}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":15},"ty":"std::result::Result, ScrapeError>","lives":[{"from":2400,"until":2402},{"from":2780,"until":2782},{"from":3012,"until":3014},{"from":3031,"until":3032},{"from":3045,"until":3046},{"from":3075,"until":3076},{"from":3077,"until":3078},{"from":3055,"until":3056},{"from":3061,"until":3062}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":15},"name":"html_body","span":{"from":2072,"until":2081},"ty":"&str","lives":[{"from":2205,"until":2217},{"from":2220,"until":2253},{"from":2263,"until":2283},{"from":2286,"until":2402},{"from":2412,"until":2420},{"from":2444,"until":2453}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":15},"name":"selector_str","span":{"from":2205,"until":2217},"ty":"&str","lives":[{"from":2205,"until":2217},{"from":2263,"until":2283},{"from":2286,"until":2401}],"shared_borrow":[{"from":2286,"until":2400}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":2333,"until":2399}]},{"type":"user","local":{"id":3,"fn_id":15},"name":"detail_link_selector","span":{"from":2263,"until":2283},"ty":"scraper::Selector","lives":[{"from":2400,"until":2402},{"from":2263,"until":2283},{"from":2412,"until":2420},{"from":2423,"until":2454},{"from":2479,"until":3062}],"shared_borrow":[{"from":2502,"until":2547}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":2400,"until":2402},{"from":2263,"until":2283},{"from":2412,"until":2420},{"from":2423,"until":2454},{"from":2479,"until":3062},{"from":3068,"until":3076},{"from":3077,"until":3078}],"must_live_at":[{"from":2518,"until":2540}]},{"type":"other","local":{"id":4,"fn_id":15},"ty":"std::ops::ControlFlow, scraper::Selector>","lives":[{"from":2286,"until":2401}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":2286,"until":2402},{"from":2263,"until":2283}],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":15},"ty":"std::result::Result","lives":[{"from":2286,"until":2401}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":15},"ty":"std::result::Result>","lives":[{"from":2286,"until":2400}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":15},"ty":"&str","lives":[{"from":2286,"until":2315}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":15},"ty":"{closure@src/lib.rs:71:18: 71:21}","lives":[{"from":2286,"until":2400}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":15},"ty":"&&str","lives":[{"from":2333,"until":2399}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":15},"ty":"isize","lives":[{"from":2286,"until":2401}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":11,"fn_id":15},"name":"residual","span":{"from":2400,"until":2401},"ty":"std::result::Result","lives":[{"from":2400,"until":2401}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":15},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":15},"ty":"std::result::Result","lives":[{"from":2286,"until":2401}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":14,"fn_id":15},"name":"val","span":{"from":2286,"until":2401},"ty":"scraper::Selector","lives":[{"from":2286,"until":2401}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":15,"fn_id":15},"name":"document","span":{"from":2412,"until":2420},"ty":"scraper::Html","lives":[{"from":2453,"until":2454},{"from":2412,"until":2420},{"from":2479,"until":3062}],"shared_borrow":[{"from":2502,"until":2547},{"from":2486,"until":2499},{"from":2603,"until":2631},{"from":2590,"until":2600},{"from":2752,"until":2754},{"from":2757,"until":2782},{"from":2815,"until":2832},{"from":2802,"until":2812},{"from":2933,"until":2944},{"from":2916,"until":2930},{"from":2977,"until":3012}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":2453,"until":2454},{"from":2412,"until":2420},{"from":2479,"until":3062},{"from":3068,"until":3076},{"from":3077,"until":3078}],"must_live_at":[{"from":2518,"until":2540},{"from":2546,"until":2547},{"from":2486,"until":2499},{"from":2603,"until":2631},{"from":2590,"until":2600},{"from":2752,"until":2754},{"from":2757,"until":2782},{"from":2815,"until":2832},{"from":2802,"until":2812},{"from":2933,"until":2944},{"from":2916,"until":2930},{"from":2977,"until":3012}]},{"type":"other","local":{"id":16,"fn_id":15},"ty":"&str","lives":[{"from":2423,"until":2454}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":15},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":15},"ty":"std::option::Option>","lives":[{"from":2502,"until":2547},{"from":2486,"until":2499}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":15},"ty":"&mut scraper::html::Select<'_, '_>","lives":[{"from":2502,"until":2547}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":20,"fn_id":15},"ty":"scraper::html::Select<'_, '_>","lives":[{"from":2502,"until":2540}],"shared_borrow":[],"mutable_borrow":[{"from":2502,"until":2547}],"drop":true,"drop_range":[{"from":2502,"until":2547},{"from":2486,"until":2499},{"from":2583,"until":3056},{"from":3061,"until":3062}],"must_live_at":[{"from":2539,"until":2540}]},{"type":"other","local":{"id":21,"fn_id":15},"ty":"&scraper::Html","lives":[{"from":2502,"until":2540}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":22,"fn_id":15},"ty":"&scraper::Selector","lives":[{"from":2502,"until":2540}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":23,"fn_id":15},"ty":"&scraper::Selector","lives":[{"from":2518,"until":2539}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":24,"fn_id":15},"ty":"isize","lives":[{"from":2486,"until":2499}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":25,"fn_id":15},"name":"element","span":{"from":2491,"until":2498},"ty":"scraper::ElementRef<'_>","lives":[{"from":2603,"until":2631}],"shared_borrow":[{"from":2603,"until":2618}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":2603,"until":2618}]},{"type":"other","local":{"id":26,"fn_id":15},"ty":"std::option::Option<&str>","lives":[{"from":2603,"until":2631},{"from":2590,"until":2600}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":27,"fn_id":15},"ty":"&scraper::node::Element","lives":[{"from":2603,"until":2631}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":28,"fn_id":15},"ty":"&scraper::node::Element","lives":[{"from":2603,"until":2618}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":29,"fn_id":15},"ty":"&scraper::ElementRef<'_>","lives":[{"from":2603,"until":2618}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":30,"fn_id":15},"ty":"&str","lives":[{"from":2603,"until":2631}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":31,"fn_id":15},"ty":"&str","lives":[{"from":2624,"until":2630}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":32,"fn_id":15},"ty":"isize","lives":[{"from":2590,"until":2600}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":33,"fn_id":15},"name":"href","span":{"from":2595,"until":2599},"ty":"&str","lives":[{"from":2752,"until":2754},{"from":2757,"until":2782},{"from":2815,"until":2832}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":34,"fn_id":15},"name":"re","span":{"from":2752,"until":2754},"ty":"regex::Regex","lives":[{"from":2780,"until":2782},{"from":2752,"until":2754},{"from":2815,"until":2832}],"shared_borrow":[{"from":2815,"until":2832}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":2780,"until":2782},{"from":2752,"until":2754},{"from":2795,"until":3046},{"from":3055,"until":3056}],"must_live_at":[{"from":2827,"until":2831}]},{"type":"other","local":{"id":35,"fn_id":15},"ty":"std::ops::ControlFlow, regex::Regex>","lives":[{"from":2757,"until":2781}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":2757,"until":2782},{"from":2752,"until":2754}],"must_live_at":[]},{"type":"other","local":{"id":36,"fn_id":15},"ty":"std::result::Result","lives":[{"from":2757,"until":2781}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":37,"fn_id":15},"ty":"&str","lives":[{"from":2757,"until":2780}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":38,"fn_id":15},"ty":"&str","lives":[{"from":2768,"until":2779}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":39,"fn_id":15},"ty":"isize","lives":[{"from":2757,"until":2781}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":40,"fn_id":15},"name":"residual","span":{"from":2780,"until":2781},"ty":"std::result::Result","lives":[{"from":2780,"until":2781}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":41,"fn_id":15},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":42,"fn_id":15},"ty":"std::result::Result","lives":[{"from":2757,"until":2781}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":43,"fn_id":15},"name":"val","span":{"from":2757,"until":2781},"ty":"regex::Regex","lives":[{"from":2757,"until":2781}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":44,"fn_id":15},"ty":"std::option::Option>","lives":[{"from":2815,"until":2832},{"from":2802,"until":2812}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":2815,"until":2832},{"from":2802,"until":2812},{"from":2933,"until":2944},{"from":2916,"until":2930},{"from":2974,"until":3014},{"from":3031,"until":3032},{"from":3045,"until":3046}],"must_live_at":[]},{"type":"other","local":{"id":45,"fn_id":15},"ty":"®ex::Regex","lives":[{"from":2815,"until":2832}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":46,"fn_id":15},"ty":"&str","lives":[{"from":2815,"until":2832}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":47,"fn_id":15},"ty":"isize","lives":[{"from":2802,"until":2812}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":48,"fn_id":15},"name":"caps","span":{"from":2807,"until":2811},"ty":"regex::Captures<'_>","lives":[{"from":2933,"until":2944}],"shared_borrow":[{"from":2933,"until":2944}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":2933,"until":2944},{"from":2916,"until":2930},{"from":2974,"until":3014},{"from":3031,"until":3032},{"from":3045,"until":3046}],"must_live_at":[{"from":2933,"until":2944}]},{"type":"other","local":{"id":49,"fn_id":15},"ty":"std::option::Option>","lives":[{"from":2933,"until":2944},{"from":2916,"until":2930}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":50,"fn_id":15},"ty":"®ex::Captures<'_>","lives":[{"from":2933,"until":2944}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":51,"fn_id":15},"ty":"isize","lives":[{"from":2916,"until":2930}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":52,"fn_id":15},"name":"id_match","span":{"from":2921,"until":2929},"ty":"regex::Match<'_>","lives":[{"from":2977,"until":3012}],"shared_borrow":[{"from":2982,"until":2999}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":2982,"until":2999}]},{"type":"other","local":{"id":53,"fn_id":15},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":54,"fn_id":15},"ty":"std::option::Option","lives":[{"from":2974,"until":3013}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":3011,"until":3013}],"must_live_at":[]},{"type":"other","local":{"id":55,"fn_id":15},"ty":"std::string::String","lives":[{"from":2977,"until":3012}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":56,"fn_id":15},"ty":"&str","lives":[{"from":2982,"until":3011}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":57,"fn_id":15},"ty":"&str","lives":[{"from":2982,"until":2999}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":58,"fn_id":15},"ty":"®ex::Match<'_>","lives":[{"from":2982,"until":2999}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":59,"fn_id":15},"ty":"std::option::Option","lives":[{"from":3068,"until":3076}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]}]}]}} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.cargo-lock b/src-tauri/html_scraper/target/owl/debug/.cargo-lock new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/build-script-build-script-build new file mode 100644 index 0000000..4a86637 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/build-script-build-script-build @@ -0,0 +1 @@ +b666e50f8cf3865f \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/build-script-build-script-build.json new file mode 100644 index 0000000..031b7ca --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"getrandom\", \"runtime-rng\", \"std\"]","declared_features":"[\"atomic-polyfill\", \"compile-time-rng\", \"const-random\", \"default\", \"getrandom\", \"nightly-arm-aes\", \"no-rng\", \"runtime-rng\", \"serde\", \"std\"]","target":17883862002600103897,"profile":3033921117576893,"path":17920999637309774808,"deps":[[5398981501050481332,"version_check",false,7805814245542558566]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ahash-3dd7d030eeabe912/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/dep-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-c55aa2f3a000e411/run-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-c55aa2f3a000e411/run-build-script-build-script-build new file mode 100644 index 0000000..08eca59 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-c55aa2f3a000e411/run-build-script-build-script-build @@ -0,0 +1 @@ +f8a9e51a2a325357 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-c55aa2f3a000e411/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-c55aa2f3a000e411/run-build-script-build-script-build.json new file mode 100644 index 0000000..81ea6f4 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-c55aa2f3a000e411/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[966925859616469517,"build_script_build",false,6883456863370045110]],"local":[{"RerunIfChanged":{"output":"debug/build/ahash-c55aa2f3a000e411/output","paths":["build.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-cf5adf12f91a3f07/dep-lib-ahash b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-cf5adf12f91a3f07/dep-lib-ahash new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-cf5adf12f91a3f07/dep-lib-ahash differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-cf5adf12f91a3f07/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-cf5adf12f91a3f07/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-cf5adf12f91a3f07/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-cf5adf12f91a3f07/lib-ahash b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-cf5adf12f91a3f07/lib-ahash new file mode 100644 index 0000000..cad85f9 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-cf5adf12f91a3f07/lib-ahash @@ -0,0 +1 @@ +f4fa01de64df80ad \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-cf5adf12f91a3f07/lib-ahash.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-cf5adf12f91a3f07/lib-ahash.json new file mode 100644 index 0000000..ec0f78c --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ahash-cf5adf12f91a3f07/lib-ahash.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"getrandom\", \"runtime-rng\", \"std\"]","declared_features":"[\"atomic-polyfill\", \"compile-time-rng\", \"const-random\", \"default\", \"getrandom\", \"nightly-arm-aes\", \"no-rng\", \"runtime-rng\", \"serde\", \"std\"]","target":8470944000320059508,"profile":8276155916380437441,"path":12810807120029859987,"deps":[[966925859616469517,"build_script_build",false,6292428260787988984],[3331586631144870129,"getrandom",false,3822032069953742984],[3722963349756955755,"once_cell",false,9649834255008937173],[7843059260364151289,"cfg_if",false,3334986249336963704],[13102401248396471120,"zerocopy",false,11683912439845224440]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ahash-cf5adf12f91a3f07/dep-lib-ahash","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/aho-corasick-4a71a11a304f34de/dep-lib-aho_corasick b/src-tauri/html_scraper/target/owl/debug/.fingerprint/aho-corasick-4a71a11a304f34de/dep-lib-aho_corasick new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/aho-corasick-4a71a11a304f34de/dep-lib-aho_corasick differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/aho-corasick-4a71a11a304f34de/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/aho-corasick-4a71a11a304f34de/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/aho-corasick-4a71a11a304f34de/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/aho-corasick-4a71a11a304f34de/lib-aho_corasick b/src-tauri/html_scraper/target/owl/debug/.fingerprint/aho-corasick-4a71a11a304f34de/lib-aho_corasick new file mode 100644 index 0000000..610799c --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/aho-corasick-4a71a11a304f34de/lib-aho_corasick @@ -0,0 +1 @@ +2a197f92e430a036 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/aho-corasick-4a71a11a304f34de/lib-aho_corasick.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/aho-corasick-4a71a11a304f34de/lib-aho_corasick.json new file mode 100644 index 0000000..e3f6e49 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/aho-corasick-4a71a11a304f34de/lib-aho_corasick.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"perf-literal\", \"std\"]","declared_features":"[\"default\", \"logging\", \"perf-literal\", \"std\"]","target":7534583537114156500,"profile":8276155916380437441,"path":11139722221124632792,"deps":[[198136567835728122,"memchr",false,4121246264241880933]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/aho-corasick-4a71a11a304f34de/dep-lib-aho_corasick","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/autocfg-3036797dcbb68a8c/dep-lib-autocfg b/src-tauri/html_scraper/target/owl/debug/.fingerprint/autocfg-3036797dcbb68a8c/dep-lib-autocfg new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/autocfg-3036797dcbb68a8c/dep-lib-autocfg differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/autocfg-3036797dcbb68a8c/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/autocfg-3036797dcbb68a8c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/autocfg-3036797dcbb68a8c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/autocfg-3036797dcbb68a8c/lib-autocfg b/src-tauri/html_scraper/target/owl/debug/.fingerprint/autocfg-3036797dcbb68a8c/lib-autocfg new file mode 100644 index 0000000..4dcec4e --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/autocfg-3036797dcbb68a8c/lib-autocfg @@ -0,0 +1 @@ +ff8209b7600ce6d1 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/autocfg-3036797dcbb68a8c/lib-autocfg.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/autocfg-3036797dcbb68a8c/lib-autocfg.json new file mode 100644 index 0000000..ba2d602 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/autocfg-3036797dcbb68a8c/lib-autocfg.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":6962977057026645649,"profile":3033921117576893,"path":4816054105157844318,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/autocfg-3036797dcbb68a8c/dep-lib-autocfg","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/bitflags-47fb54c026abfaca/dep-lib-bitflags b/src-tauri/html_scraper/target/owl/debug/.fingerprint/bitflags-47fb54c026abfaca/dep-lib-bitflags new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/bitflags-47fb54c026abfaca/dep-lib-bitflags differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/bitflags-47fb54c026abfaca/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/bitflags-47fb54c026abfaca/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/bitflags-47fb54c026abfaca/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/bitflags-47fb54c026abfaca/lib-bitflags b/src-tauri/html_scraper/target/owl/debug/.fingerprint/bitflags-47fb54c026abfaca/lib-bitflags new file mode 100644 index 0000000..a3342bb --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/bitflags-47fb54c026abfaca/lib-bitflags @@ -0,0 +1 @@ +ed1169031395f051 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/bitflags-47fb54c026abfaca/lib-bitflags.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/bitflags-47fb54c026abfaca/lib-bitflags.json new file mode 100644 index 0000000..f584b0d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/bitflags-47fb54c026abfaca/lib-bitflags.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"arbitrary\", \"bytemuck\", \"example_generated\", \"serde\", \"std\"]","target":7691312148208718491,"profile":8276155916380437441,"path":18317973836223632092,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-47fb54c026abfaca/dep-lib-bitflags","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/dep-lib-byteorder b/src-tauri/html_scraper/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/dep-lib-byteorder new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/dep-lib-byteorder differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/lib-byteorder b/src-tauri/html_scraper/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/lib-byteorder new file mode 100644 index 0000000..1ba25f5 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/lib-byteorder @@ -0,0 +1 @@ +39424427554feebe \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/lib-byteorder.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/lib-byteorder.json new file mode 100644 index 0000000..a371276 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/lib-byteorder.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"i128\", \"std\"]","target":8344828840634961491,"profile":8276155916380437441,"path":12354199761892589061,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/dep-lib-byteorder","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-22c5faecaaf90584/dep-lib-cfg_if b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-22c5faecaaf90584/dep-lib-cfg_if new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-22c5faecaaf90584/dep-lib-cfg_if differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-22c5faecaaf90584/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-22c5faecaaf90584/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-22c5faecaaf90584/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-22c5faecaaf90584/lib-cfg_if b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-22c5faecaaf90584/lib-cfg_if new file mode 100644 index 0000000..9329a18 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-22c5faecaaf90584/lib-cfg_if @@ -0,0 +1 @@ +ee825bdf5a3b9717 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-22c5faecaaf90584/lib-cfg_if.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-22c5faecaaf90584/lib-cfg_if.json new file mode 100644 index 0000000..7c4d14a --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-22c5faecaaf90584/lib-cfg_if.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":3033921117576893,"path":18047468991854014316,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-22c5faecaaf90584/dep-lib-cfg_if","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-24c926a9096103c7/dep-lib-cfg_if b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-24c926a9096103c7/dep-lib-cfg_if new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-24c926a9096103c7/dep-lib-cfg_if differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-24c926a9096103c7/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-24c926a9096103c7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-24c926a9096103c7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-24c926a9096103c7/lib-cfg_if b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-24c926a9096103c7/lib-cfg_if new file mode 100644 index 0000000..c874ac6 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-24c926a9096103c7/lib-cfg_if @@ -0,0 +1 @@ +78c28a025340482e \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-24c926a9096103c7/lib-cfg_if.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-24c926a9096103c7/lib-cfg_if.json new file mode 100644 index 0000000..4de9173 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cfg-if-24c926a9096103c7/lib-cfg_if.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":8276155916380437441,"path":18047468991854014316,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-24c926a9096103c7/dep-lib-cfg_if","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-288940f99e39038a/dep-lib-cssparser b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-288940f99e39038a/dep-lib-cssparser new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-288940f99e39038a/dep-lib-cssparser differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-288940f99e39038a/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-288940f99e39038a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-288940f99e39038a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-288940f99e39038a/lib-cssparser b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-288940f99e39038a/lib-cssparser new file mode 100644 index 0000000..c573998 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-288940f99e39038a/lib-cssparser @@ -0,0 +1 @@ +8d92fbda0dace501 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-288940f99e39038a/lib-cssparser.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-288940f99e39038a/lib-cssparser.json new file mode 100644 index 0000000..e3e6193 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-288940f99e39038a/lib-cssparser.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"bench\", \"dummy_match_byte\", \"serde\"]","target":4051351535474248705,"profile":8276155916380437441,"path":11693278406116127147,"deps":[[3666196340704888985,"smallvec",false,14194441167904933901],[7695812897323945497,"itoa",false,3107599212972511736],[9280804215119811138,"cssparser_macros",false,11991358206820667840],[12842584195496215797,"dtoa_short",false,5046940966649730623],[17186037756130803222,"phf",false,3275485335853316039]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cssparser-288940f99e39038a/dep-lib-cssparser","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-macros-7723e16b38393b19/dep-lib-cssparser_macros b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-macros-7723e16b38393b19/dep-lib-cssparser_macros new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-macros-7723e16b38393b19/dep-lib-cssparser_macros differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-macros-7723e16b38393b19/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-macros-7723e16b38393b19/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-macros-7723e16b38393b19/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-macros-7723e16b38393b19/lib-cssparser_macros b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-macros-7723e16b38393b19/lib-cssparser_macros new file mode 100644 index 0000000..2918ae0 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-macros-7723e16b38393b19/lib-cssparser_macros @@ -0,0 +1 @@ +c0d10294c1dc69a6 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-macros-7723e16b38393b19/lib-cssparser_macros.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-macros-7723e16b38393b19/lib-cssparser_macros.json new file mode 100644 index 0000000..7149952 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/cssparser-macros-7723e16b38393b19/lib-cssparser_macros.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":4853353551047732211,"profile":3033921117576893,"path":330677744058670353,"deps":[[17332570067994900305,"syn",false,17971348096264547987],[17990358020177143287,"quote",false,18137893867194747271]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cssparser-macros-7723e16b38393b19/dep-lib-cssparser_macros","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/derive_more-1f55f046a174a726/dep-lib-derive_more b/src-tauri/html_scraper/target/owl/debug/.fingerprint/derive_more-1f55f046a174a726/dep-lib-derive_more new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/derive_more-1f55f046a174a726/dep-lib-derive_more differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/derive_more-1f55f046a174a726/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/derive_more-1f55f046a174a726/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/derive_more-1f55f046a174a726/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/derive_more-1f55f046a174a726/lib-derive_more b/src-tauri/html_scraper/target/owl/debug/.fingerprint/derive_more-1f55f046a174a726/lib-derive_more new file mode 100644 index 0000000..e6b920a --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/derive_more-1f55f046a174a726/lib-derive_more @@ -0,0 +1 @@ +427a71d1011309a5 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/derive_more-1f55f046a174a726/lib-derive_more.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/derive_more-1f55f046a174a726/lib-derive_more.json new file mode 100644 index 0000000..ad06c31 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/derive_more-1f55f046a174a726/lib-derive_more.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"add\", \"add_assign\"]","declared_features":"[\"add\", \"add_assign\", \"as_mut\", \"as_ref\", \"constructor\", \"convert_case\", \"default\", \"deref\", \"deref_mut\", \"display\", \"error\", \"from\", \"from_str\", \"generate-parsing-rs\", \"index\", \"index_mut\", \"into\", \"into_iterator\", \"is_variant\", \"iterator\", \"mul\", \"mul_assign\", \"nightly\", \"not\", \"peg\", \"rustc_version\", \"sum\", \"testing-helpers\", \"track-caller\", \"try_into\", \"unwrap\"]","target":12153973509411789784,"profile":3033921117576893,"path":7715744502101933300,"deps":[[373107762698212489,"proc_macro2",false,11352822849591009774],[17332570067994900305,"syn",false,17971348096264547987],[17990358020177143287,"quote",false,18137893867194747271]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/derive_more-1f55f046a174a726/dep-lib-derive_more","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-e1b5b1d152ea2e94/dep-lib-dtoa b/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-e1b5b1d152ea2e94/dep-lib-dtoa new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-e1b5b1d152ea2e94/dep-lib-dtoa differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-e1b5b1d152ea2e94/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-e1b5b1d152ea2e94/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-e1b5b1d152ea2e94/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-e1b5b1d152ea2e94/lib-dtoa b/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-e1b5b1d152ea2e94/lib-dtoa new file mode 100644 index 0000000..5ba4f86 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-e1b5b1d152ea2e94/lib-dtoa @@ -0,0 +1 @@ +928fa0f3f728f603 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-e1b5b1d152ea2e94/lib-dtoa.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-e1b5b1d152ea2e94/lib-dtoa.json new file mode 100644 index 0000000..cfb8246 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-e1b5b1d152ea2e94/lib-dtoa.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"no-panic\"]","target":822708863277375670,"profile":8276155916380437441,"path":14027389299766794047,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dtoa-e1b5b1d152ea2e94/dep-lib-dtoa","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-short-ddc69d4b6aa0e19b/dep-lib-dtoa_short b/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-short-ddc69d4b6aa0e19b/dep-lib-dtoa_short new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-short-ddc69d4b6aa0e19b/dep-lib-dtoa_short differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-short-ddc69d4b6aa0e19b/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-short-ddc69d4b6aa0e19b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-short-ddc69d4b6aa0e19b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-short-ddc69d4b6aa0e19b/lib-dtoa_short b/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-short-ddc69d4b6aa0e19b/lib-dtoa_short new file mode 100644 index 0000000..e336a00 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-short-ddc69d4b6aa0e19b/lib-dtoa_short @@ -0,0 +1 @@ +3f1686bf11560a46 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-short-ddc69d4b6aa0e19b/lib-dtoa_short.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-short-ddc69d4b6aa0e19b/lib-dtoa_short.json new file mode 100644 index 0000000..d960911 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/dtoa-short-ddc69d4b6aa0e19b/lib-dtoa_short.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":14166870648037865358,"profile":8276155916380437441,"path":5752282311582272956,"deps":[[9187552546091909091,"dtoa",false,285460671794024338]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dtoa-short-ddc69d4b6aa0e19b/dep-lib-dtoa_short","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/dep-lib-ego_tree b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/dep-lib-ego_tree new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/dep-lib-ego_tree differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/lib-ego_tree b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/lib-ego_tree new file mode 100644 index 0000000..59fb563 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/lib-ego_tree @@ -0,0 +1 @@ +620853eb5714fd29 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/lib-ego_tree.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/lib-ego_tree.json new file mode 100644 index 0000000..9bd1e06 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/lib-ego_tree.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":15686662276775554462,"profile":8276155916380437441,"path":3922949300094133188,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ego-tree-809c8514ee657827/dep-lib-ego_tree","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/dep-lib-futf b/src-tauri/html_scraper/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/dep-lib-futf new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/dep-lib-futf differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/lib-futf b/src-tauri/html_scraper/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/lib-futf new file mode 100644 index 0000000..13b3699 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/lib-futf @@ -0,0 +1 @@ +9ced3c82b2b54312 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/lib-futf.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/lib-futf.json new file mode 100644 index 0000000..5644b78 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/lib-futf.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":14342764474404802961,"profile":8276155916380437441,"path":8384350080134491944,"deps":[[2687729594444538932,"debug_unreachable",false,9754738614369676465],[10952224881603935644,"mac",false,3938639248673190958]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futf-3d480dde70c9eb27/dep-lib-futf","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/dep-lib-fxhash b/src-tauri/html_scraper/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/dep-lib-fxhash new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/dep-lib-fxhash differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/lib-fxhash b/src-tauri/html_scraper/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/lib-fxhash new file mode 100644 index 0000000..bcb507b --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/lib-fxhash @@ -0,0 +1 @@ +e8ab1c5f48ebda27 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/lib-fxhash.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/lib-fxhash.json new file mode 100644 index 0000000..5fa9aba --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/lib-fxhash.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":10973188114720300281,"profile":8276155916380437441,"path":15035325997359553401,"deps":[[3712811570531045576,"byteorder",false,13758021138813043257]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/fxhash-655a24a699d73c8e/dep-lib-fxhash","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/getopts-3bd88005c8a6f4a9/dep-lib-getopts b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getopts-3bd88005c8a6f4a9/dep-lib-getopts new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getopts-3bd88005c8a6f4a9/dep-lib-getopts differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/getopts-3bd88005c8a6f4a9/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getopts-3bd88005c8a6f4a9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getopts-3bd88005c8a6f4a9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/getopts-3bd88005c8a6f4a9/lib-getopts b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getopts-3bd88005c8a6f4a9/lib-getopts new file mode 100644 index 0000000..8861a0e --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getopts-3bd88005c8a6f4a9/lib-getopts @@ -0,0 +1 @@ +c2cf4ff2b8d573af \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/getopts-3bd88005c8a6f4a9/lib-getopts.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getopts-3bd88005c8a6f4a9/lib-getopts.json new file mode 100644 index 0000000..5f8ce20 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getopts-3bd88005c8a6f4a9/lib-getopts.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"unicode\"]","declared_features":"[\"core\", \"default\", \"rustc-dep-of-std\", \"std\", \"unicode\"]","target":14000208569025797744,"profile":8276155916380437441,"path":12630201017420769364,"deps":[[13774335185398496026,"unicode_width",false,11780933250261401939]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getopts-3bd88005c8a6f4a9/dep-lib-getopts","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-1bc8302ea0358cac/build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-1bc8302ea0358cac/build-script-build-script-build new file mode 100644 index 0000000..94c4826 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-1bc8302ea0358cac/build-script-build-script-build @@ -0,0 +1 @@ +02494b22956ea30f \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-1bc8302ea0358cac/build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-1bc8302ea0358cac/build-script-build-script-build.json new file mode 100644 index 0000000..3bbe552 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-1bc8302ea0358cac/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"rustc-dep-of-std\", \"std\", \"wasm_js\"]","target":5408242616063297496,"profile":16185483997463588654,"path":18081575481898839827,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-1bc8302ea0358cac/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-1bc8302ea0358cac/dep-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-1bc8302ea0358cac/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-1bc8302ea0358cac/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-1bc8302ea0358cac/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-1bc8302ea0358cac/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-1bc8302ea0358cac/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-40baf98a89404270/dep-lib-getrandom b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-40baf98a89404270/dep-lib-getrandom new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-40baf98a89404270/dep-lib-getrandom differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-40baf98a89404270/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-40baf98a89404270/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-40baf98a89404270/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-40baf98a89404270/lib-getrandom b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-40baf98a89404270/lib-getrandom new file mode 100644 index 0000000..75d66d4 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-40baf98a89404270/lib-getrandom @@ -0,0 +1 @@ +8868bee9ea950a35 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-40baf98a89404270/lib-getrandom.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-40baf98a89404270/lib-getrandom.json new file mode 100644 index 0000000..fa6ddb7 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-40baf98a89404270/lib-getrandom.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"rustc-dep-of-std\", \"std\", \"wasm_js\"]","target":11669924403970522481,"profile":1848226155837682299,"path":10274335946090132471,"deps":[[3331586631144870129,"build_script_build",false,3148829659264253692],[6366008408347001515,"libc",false,13414440935387993477],[7843059260364151289,"cfg_if",false,3334986249336963704]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-40baf98a89404270/dep-lib-getrandom","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-aeef0a1ac5c0c405/run-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-aeef0a1ac5c0c405/run-build-script-build-script-build new file mode 100644 index 0000000..2718d20 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-aeef0a1ac5c0c405/run-build-script-build-script-build @@ -0,0 +1 @@ +fcfea852e4e3b22b \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-aeef0a1ac5c0c405/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-aeef0a1ac5c0c405/run-build-script-build-script-build.json new file mode 100644 index 0000000..49e6e9e --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-aeef0a1ac5c0c405/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[3331586631144870129,"build_script_build",false,1126865918577297666]],"local":[{"RerunIfChanged":{"output":"debug/build/getrandom-aeef0a1ac5c0c405/output","paths":["build.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-b386e888130291ba/dep-lib-getrandom b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-b386e888130291ba/dep-lib-getrandom new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-b386e888130291ba/dep-lib-getrandom differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-b386e888130291ba/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-b386e888130291ba/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-b386e888130291ba/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-b386e888130291ba/lib-getrandom b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-b386e888130291ba/lib-getrandom new file mode 100644 index 0000000..67c08ae --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-b386e888130291ba/lib-getrandom @@ -0,0 +1 @@ +98ded37f27e675d9 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-b386e888130291ba/lib-getrandom.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-b386e888130291ba/lib-getrandom.json new file mode 100644 index 0000000..51c6245 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/getrandom-b386e888130291ba/lib-getrandom.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"std\"]","declared_features":"[\"compiler_builtins\", \"core\", \"custom\", \"js\", \"js-sys\", \"linux_disable_fallback\", \"rdrand\", \"rustc-dep-of-std\", \"std\", \"test-in-browser\", \"wasm-bindgen\"]","target":16244099637825074703,"profile":3033921117576893,"path":7596050522435702209,"deps":[[6366008408347001515,"libc",false,14214529729649398373],[7843059260364151289,"cfg_if",false,1699892645836063470]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-b386e888130291ba/dep-lib-getrandom","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-2971a9ee54624ba3/run-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-2971a9ee54624ba3/run-build-script-build-script-build new file mode 100644 index 0000000..0c1da2b --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-2971a9ee54624ba3/run-build-script-build-script-build @@ -0,0 +1 @@ +e1ad92f28a80d99c \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-2971a9ee54624ba3/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-2971a9ee54624ba3/run-build-script-build-script-build.json new file mode 100644 index 0000000..c33724b --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-2971a9ee54624ba3/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6894592641856567887,"build_script_build",false,1526288002363189774]],"local":[{"RerunIfChanged":{"output":"debug/build/html5ever-2971a9ee54624ba3/output","paths":["src/tree_builder/rules.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-310ff3bc678af8f1/build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-310ff3bc678af8f1/build-script-build-script-build new file mode 100644 index 0000000..4a53cd5 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-310ff3bc678af8f1/build-script-build-script-build @@ -0,0 +1 @@ +0e6accfdd9762e15 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-310ff3bc678af8f1/build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-310ff3bc678af8f1/build-script-build-script-build.json new file mode 100644 index 0000000..cccd73a --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-310ff3bc678af8f1/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":3033921117576893,"path":14885463844166715674,"deps":[[373107762698212489,"proc_macro2",false,11352822849591009774],[17332570067994900305,"syn",false,17971348096264547987],[17990358020177143287,"quote",false,18137893867194747271]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/html5ever-310ff3bc678af8f1/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-310ff3bc678af8f1/dep-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-310ff3bc678af8f1/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-310ff3bc678af8f1/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-310ff3bc678af8f1/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-310ff3bc678af8f1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-310ff3bc678af8f1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-49e2f1f84d5b7dd4/dep-lib-html5ever b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-49e2f1f84d5b7dd4/dep-lib-html5ever new file mode 100644 index 0000000..ebf0580 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-49e2f1f84d5b7dd4/dep-lib-html5ever differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-49e2f1f84d5b7dd4/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-49e2f1f84d5b7dd4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-49e2f1f84d5b7dd4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-49e2f1f84d5b7dd4/lib-html5ever b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-49e2f1f84d5b7dd4/lib-html5ever new file mode 100644 index 0000000..1b3af14 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-49e2f1f84d5b7dd4/lib-html5ever @@ -0,0 +1 @@ +fa0b1b8029cb9f1d \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-49e2f1f84d5b7dd4/lib-html5ever.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-49e2f1f84d5b7dd4/lib-html5ever.json new file mode 100644 index 0000000..01f4d58 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html5ever-49e2f1f84d5b7dd4/lib-html5ever.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":4652384769665216062,"profile":8276155916380437441,"path":17660630867118463672,"deps":[[6894592641856567887,"build_script_build",false,11302206074126511585],[7359235151837888654,"markup5ever",false,4865125598853349527],[10952224881603935644,"mac",false,3938639248673190958],[13066042571740262168,"log",false,1661767345955543619]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/html5ever-49e2f1f84d5b7dd4/dep-lib-html5ever","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/html_scraper-30b12a61e60c45f4/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html_scraper-30b12a61e60c45f4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html_scraper-30b12a61e60c45f4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/html_scraper-30b12a61e60c45f4/output-test-lib-html_scraper b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html_scraper-30b12a61e60c45f4/output-test-lib-html_scraper new file mode 100644 index 0000000..f35726d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html_scraper-30b12a61e60c45f4/output-test-lib-html_scraper @@ -0,0 +1,106 @@ +{"$message_type":"diagnostic","message":"unused import: `super::*`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/lib.rs","byte_start":3782,"byte_end":3790,"line_start":97,"line_end":97,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":" use super::*;","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/lib.rs","byte_start":3778,"byte_end":3791,"line_start":97,"line_end":97,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" use super::*;","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `super::*`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:97:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m97\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m use super::*;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"} +2026-02-24T07:50:51.358Z INFO [rustowlc::core] start borrowck of DefId(0:37 ~ html_scraper[8f50]::tests::it_works) +2026-02-24T07:50:51.361Z INFO [rustowlc::core] start borrowck of DefId(0:38 ~ html_scraper[8f50]::tests::it_works::{closure#0}) +2026-02-24T07:50:51.361Z INFO [rustowlc::core::analyze] facts of DefId(0:38 ~ html_scraper[8f50]::tests::it_works::{closure#0}) prepared; start analyze of DefId(0:38 ~ html_scraper[8f50]::tests::it_works::{closure#0}) +2026-02-24T07:50:51.362Z INFO [rustowlc::core] borrow checked: 1 / 17 +2026-02-24T07:50:51.362Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.363Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.363Z INFO [rustowlc::core::analyze] facts of DefId(0:37 ~ html_scraper[8f50]::tests::it_works) prepared; start analyze of DefId(0:37 ~ html_scraper[8f50]::tests::it_works) +2026-02-24T07:50:51.363Z INFO [rustowlc::core] borrow checked: 2 / 17 +2026-02-24T07:50:51.363Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.364Z INFO [rustowlc::core::analyze] borrow check finished +{"$message_type":"diagnostic","message":"cannot find function `add` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":3846,"byte_end":3849,"line_start":101,"line_end":101,"column_start":22,"column_end":25,"is_primary":true,"text":[{"text":" let result = add(2, 2);","highlight_start":22,"highlight_end":25}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"use the `.` operator to call the method `std::ops::Add::add` on `{integer}`","code":null,"level":"help","spans":[{"file_name":"src/lib.rs","byte_start":3846,"byte_end":3850,"line_start":101,"line_end":101,"column_start":22,"column_end":26,"is_primary":true,"text":[{"text":" let result = add(2, 2);","highlight_start":22,"highlight_end":26}],"label":null,"suggested_replacement":"","suggestion_applicability":"MaybeIncorrect","expansion":null},{"file_name":"src/lib.rs","byte_start":3851,"byte_end":3855,"line_start":101,"line_end":101,"column_start":27,"column_end":31,"is_primary":true,"text":[{"text":" let result = add(2, 2);","highlight_start":27,"highlight_end":31}],"label":null,"suggested_replacement":".add(2)","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find function `add` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:101:22\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m101\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let result = add(2, 2);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: use the `.` operator to call the method `std::ops::Add::add` on `{integer}`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m101\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;9m- \u001b[0m\u001b[0m let result = \u001b[0m\u001b[0m\u001b[38;5;9madd(\u001b[0m\u001b[0m2\u001b[0m\u001b[0m\u001b[38;5;9m, 2)\u001b[0m\u001b[0m;\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m101\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ \u001b[0m\u001b[0m let result = 2\u001b[0m\u001b[0m\u001b[38;5;10m.add(2)\u001b[0m\u001b[0m;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +2026-02-24T07:50:51.394Z INFO [rustowlc::core] start borrowck of DefId(0:21 ~ html_scraper[8f50]::{impl#0}::fmt) +2026-02-24T07:50:51.395Z INFO [rustowlc::core::analyze] facts of DefId(0:21 ~ html_scraper[8f50]::{impl#0}::fmt) prepared; start analyze of DefId(0:21 ~ html_scraper[8f50]::{impl#0}::fmt) +2026-02-24T07:50:51.396Z INFO [rustowlc::core] borrow checked: 3 / 17 +2026-02-24T07:50:51.396Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.396Z INFO [rustowlc::core] start borrowck of DefId(0:23 ~ html_scraper[8f50]::{impl#1}::source) +2026-02-24T07:50:51.397Z INFO [rustowlc::core::analyze] facts of DefId(0:23 ~ html_scraper[8f50]::{impl#1}::source) prepared; start analyze of DefId(0:23 ~ html_scraper[8f50]::{impl#1}::source) +2026-02-24T07:50:51.397Z INFO [rustowlc::core] borrow checked: 4 / 17 +2026-02-24T07:50:51.397Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.398Z INFO [rustowlc::core] start borrowck of DefId(0:26 ~ html_scraper[8f50]::{impl#2}::fmt) +2026-02-24T07:50:51.398Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.399Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.401Z INFO [rustowlc::core::analyze] facts of DefId(0:26 ~ html_scraper[8f50]::{impl#2}::fmt) prepared; start analyze of DefId(0:26 ~ html_scraper[8f50]::{impl#2}::fmt) +2026-02-24T07:50:51.402Z INFO [rustowlc::core] borrow checked: 5 / 17 +2026-02-24T07:50:51.402Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.402Z INFO [rustowlc::core] start borrowck of DefId(0:29 ~ html_scraper[8f50]::{impl#3}::from) +2026-02-24T07:50:51.402Z INFO [rustowlc::core::analyze] facts of DefId(0:29 ~ html_scraper[8f50]::{impl#3}::from) prepared; start analyze of DefId(0:29 ~ html_scraper[8f50]::{impl#3}::from) +2026-02-24T07:50:51.402Z INFO [rustowlc::core] borrow checked: 6 / 17 +2026-02-24T07:50:51.403Z INFO [rustowlc::core] start borrowck of DefId(0:8 ~ html_scraper[8f50]::find_link_by_text) +2026-02-24T07:50:51.404Z INFO [rustowlc::core] start borrowck of DefId(0:9 ~ html_scraper[8f50]::find_link_by_text::{closure#0}) +2026-02-24T07:50:51.405Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.405Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.406Z INFO [rustowlc::core::analyze] facts of DefId(0:9 ~ html_scraper[8f50]::find_link_by_text::{closure#0}) prepared; start analyze of DefId(0:9 ~ html_scraper[8f50]::find_link_by_text::{closure#0}) +2026-02-24T07:50:51.407Z INFO [rustowlc::core] borrow checked: 7 / 17 +2026-02-24T07:50:51.407Z INFO [rustowlc::core] start borrowck of DefId(0:10 ~ html_scraper[8f50]::find_link_by_text::{closure#1}) +2026-02-24T07:50:51.407Z INFO [rustowlc::core::analyze] facts of DefId(0:10 ~ html_scraper[8f50]::find_link_by_text::{closure#1}) prepared; start analyze of DefId(0:10 ~ html_scraper[8f50]::find_link_by_text::{closure#1}) +2026-02-24T07:50:51.408Z INFO [rustowlc::core] borrow checked: 8 / 17 +2026-02-24T07:50:51.409Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.409Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.409Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.409Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.412Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.418Z INFO [rustowlc::core::analyze] facts of DefId(0:8 ~ html_scraper[8f50]::find_link_by_text) prepared; start analyze of DefId(0:8 ~ html_scraper[8f50]::find_link_by_text) +2026-02-24T07:50:51.420Z INFO [rustowlc::core] borrow checked: 9 / 17 +2026-02-24T07:50:51.420Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.420Z INFO [rustowlc::core] start borrowck of DefId(0:11 ~ html_scraper[8f50]::find_edit_link) +2026-02-24T07:50:51.420Z INFO [rustowlc::core::analyze] facts of DefId(0:11 ~ html_scraper[8f50]::find_edit_link) prepared; start analyze of DefId(0:11 ~ html_scraper[8f50]::find_edit_link) +2026-02-24T07:50:51.421Z INFO [rustowlc::core] borrow checked: 10 / 17 +2026-02-24T07:50:51.421Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.421Z INFO [rustowlc::core] start borrowck of DefId(0:12 ~ html_scraper[8f50]::find_tms_config_link) +2026-02-24T07:50:51.421Z INFO [rustowlc::core::analyze] facts of DefId(0:12 ~ html_scraper[8f50]::find_tms_config_link) prepared; start analyze of DefId(0:12 ~ html_scraper[8f50]::find_tms_config_link) +2026-02-24T07:50:51.421Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.421Z INFO [rustowlc::core] borrow checked: 11 / 17 +2026-02-24T07:50:51.421Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.422Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.422Z INFO [rustowlc::core] start borrowck of DefId(0:13 ~ html_scraper[8f50]::find_token) +2026-02-24T07:50:51.422Z INFO [rustowlc::core] start borrowck of DefId(0:14 ~ html_scraper[8f50]::find_token::{closure#0}) +2026-02-24T07:50:51.424Z INFO [rustowlc::core::analyze] facts of DefId(0:14 ~ html_scraper[8f50]::find_token::{closure#0}) prepared; start analyze of DefId(0:14 ~ html_scraper[8f50]::find_token::{closure#0}) +2026-02-24T07:50:51.424Z INFO [rustowlc::core] borrow checked: 12 / 17 +2026-02-24T07:50:51.424Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.429Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.430Z INFO [rustowlc::core::analyze] facts of DefId(0:13 ~ html_scraper[8f50]::find_token) prepared; start analyze of DefId(0:13 ~ html_scraper[8f50]::find_token) +2026-02-24T07:50:51.432Z INFO [rustowlc::core] borrow checked: 13 / 17 +2026-02-24T07:50:51.432Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.433Z INFO [rustowlc::core] start borrowck of DefId(0:15 ~ html_scraper[8f50]::find_latest_work_order_id) +2026-02-24T07:50:51.433Z INFO [rustowlc::core] start borrowck of DefId(0:16 ~ html_scraper[8f50]::find_latest_work_order_id::{closure#0}) +2026-02-24T07:50:51.435Z INFO [rustowlc::core::analyze] facts of DefId(0:16 ~ html_scraper[8f50]::find_latest_work_order_id::{closure#0}) prepared; start analyze of DefId(0:16 ~ html_scraper[8f50]::find_latest_work_order_id::{closure#0}) +2026-02-24T07:50:51.436Z INFO [rustowlc::core] borrow checked: 14 / 17 +2026-02-24T07:50:51.437Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.440Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.441Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.444Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.455Z INFO [rustowlc::core::analyze] facts of DefId(0:15 ~ html_scraper[8f50]::find_latest_work_order_id) prepared; start analyze of DefId(0:15 ~ html_scraper[8f50]::find_latest_work_order_id) +2026-02-24T07:50:51.459Z INFO [rustowlc::core] borrow checked: 15 / 17 +2026-02-24T07:50:51.459Z INFO [rustowlc::core] start borrowck of DefId(0:39 ~ html_scraper[8f50]::tests::it_works#1) +2026-02-24T07:50:51.459Z INFO [rustowlc::core::analyze] facts of DefId(0:39 ~ html_scraper[8f50]::tests::it_works#1) prepared; start analyze of DefId(0:39 ~ html_scraper[8f50]::tests::it_works#1) +2026-02-24T07:50:51.459Z INFO [rustowlc::core] borrow checked: 16 / 17 +2026-02-24T07:50:51.459Z INFO [rustowlc::core] start borrowck of DefId(0:40 ~ html_scraper[8f50]::main) +2026-02-24T07:50:51.460Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.460Z INFO [rustowlc::core::analyze] facts of DefId(0:40 ~ html_scraper[8f50]::main) prepared; start analyze of DefId(0:40 ~ html_scraper[8f50]::main) +2026-02-24T07:50:51.460Z INFO [rustowlc::core] borrow checked: 17 / 17 +2026-02-24T07:50:51.460Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.462Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.462Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.462Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.463Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.464Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.465Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.469Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.469Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.490Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.491Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.491Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.502Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.503Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.504Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.515Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.528Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.566Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.594Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.594Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.594Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.673Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +{"$message_type":"diagnostic","message":"aborting due to 1 previous error; 1 warning emitted","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 1 previous error; 1 warning emitted\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0425`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0425`.\u001b[0m\n"} diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/html_scraper-537d9c2b38b2abaa/dep-lib-html_scraper b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html_scraper-537d9c2b38b2abaa/dep-lib-html_scraper new file mode 100644 index 0000000..024be49 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html_scraper-537d9c2b38b2abaa/dep-lib-html_scraper differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/html_scraper-537d9c2b38b2abaa/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html_scraper-537d9c2b38b2abaa/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html_scraper-537d9c2b38b2abaa/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/html_scraper-537d9c2b38b2abaa/lib-html_scraper b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html_scraper-537d9c2b38b2abaa/lib-html_scraper new file mode 100644 index 0000000..22e69d4 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html_scraper-537d9c2b38b2abaa/lib-html_scraper @@ -0,0 +1 @@ +898e6e23c4b8bf9b \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/html_scraper-537d9c2b38b2abaa/lib-html_scraper.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html_scraper-537d9c2b38b2abaa/lib-html_scraper.json new file mode 100644 index 0000000..7a5a5b1 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html_scraper-537d9c2b38b2abaa/lib-html_scraper.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":9930676247025263629,"profile":2330448797067240312,"path":10763286916239946207,"deps":[[8008191657135824715,"thiserror",false,12597450493660998448],[13626897008533545915,"regex",false,17011555004648764927],[14847387549330244405,"scraper",false,8832721453438312452]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/html_scraper-537d9c2b38b2abaa/dep-lib-html_scraper","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/html_scraper-537d9c2b38b2abaa/output-lib-html_scraper b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html_scraper-537d9c2b38b2abaa/output-lib-html_scraper new file mode 100644 index 0000000..3b20858 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/html_scraper-537d9c2b38b2abaa/output-lib-html_scraper @@ -0,0 +1,78 @@ +2026-02-24T07:50:51.358Z INFO [rustowlc::core] start borrowck of DefId(0:19 ~ html_scraper[ee4d]::{impl#0}::fmt) +2026-02-24T07:50:51.360Z INFO [rustowlc::core::analyze] facts of DefId(0:19 ~ html_scraper[ee4d]::{impl#0}::fmt) prepared; start analyze of DefId(0:19 ~ html_scraper[ee4d]::{impl#0}::fmt) +2026-02-24T07:50:51.360Z INFO [rustowlc::core] borrow checked: 1 / 13 +2026-02-24T07:50:51.360Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.361Z INFO [rustowlc::core] start borrowck of DefId(0:21 ~ html_scraper[ee4d]::{impl#1}::source) +2026-02-24T07:50:51.361Z INFO [rustowlc::core::analyze] facts of DefId(0:21 ~ html_scraper[ee4d]::{impl#1}::source) prepared; start analyze of DefId(0:21 ~ html_scraper[ee4d]::{impl#1}::source) +2026-02-24T07:50:51.361Z INFO [rustowlc::core] borrow checked: 2 / 13 +2026-02-24T07:50:51.362Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.362Z INFO [rustowlc::core] start borrowck of DefId(0:24 ~ html_scraper[ee4d]::{impl#2}::fmt) +2026-02-24T07:50:51.362Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.363Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.365Z INFO [rustowlc::core::analyze] facts of DefId(0:24 ~ html_scraper[ee4d]::{impl#2}::fmt) prepared; start analyze of DefId(0:24 ~ html_scraper[ee4d]::{impl#2}::fmt) +2026-02-24T07:50:51.366Z INFO [rustowlc::core] borrow checked: 3 / 13 +2026-02-24T07:50:51.366Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.366Z INFO [rustowlc::core] start borrowck of DefId(0:27 ~ html_scraper[ee4d]::{impl#3}::from) +2026-02-24T07:50:51.367Z INFO [rustowlc::core::analyze] facts of DefId(0:27 ~ html_scraper[ee4d]::{impl#3}::from) prepared; start analyze of DefId(0:27 ~ html_scraper[ee4d]::{impl#3}::from) +2026-02-24T07:50:51.367Z INFO [rustowlc::core] borrow checked: 4 / 13 +2026-02-24T07:50:51.367Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.367Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.369Z INFO [rustowlc::core] start borrowck of DefId(0:8 ~ html_scraper[ee4d]::find_link_by_text) +2026-02-24T07:50:51.370Z INFO [rustowlc::core] start borrowck of DefId(0:9 ~ html_scraper[ee4d]::find_link_by_text::{closure#0}) +2026-02-24T07:50:51.371Z INFO [rustowlc::core::analyze] facts of DefId(0:9 ~ html_scraper[ee4d]::find_link_by_text::{closure#0}) prepared; start analyze of DefId(0:9 ~ html_scraper[ee4d]::find_link_by_text::{closure#0}) +2026-02-24T07:50:51.371Z INFO [rustowlc::core] borrow checked: 5 / 13 +2026-02-24T07:50:51.372Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.372Z INFO [rustowlc::core] start borrowck of DefId(0:10 ~ html_scraper[ee4d]::find_link_by_text::{closure#1}) +2026-02-24T07:50:51.372Z INFO [rustowlc::core::analyze] facts of DefId(0:10 ~ html_scraper[ee4d]::find_link_by_text::{closure#1}) prepared; start analyze of DefId(0:10 ~ html_scraper[ee4d]::find_link_by_text::{closure#1}) +2026-02-24T07:50:51.373Z INFO [rustowlc::core] borrow checked: 6 / 13 +2026-02-24T07:50:51.373Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.373Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.374Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.375Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.385Z INFO [rustowlc::core::analyze] facts of DefId(0:8 ~ html_scraper[ee4d]::find_link_by_text) prepared; start analyze of DefId(0:8 ~ html_scraper[ee4d]::find_link_by_text) +2026-02-24T07:50:51.386Z INFO [rustowlc::core] borrow checked: 7 / 13 +2026-02-24T07:50:51.386Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.386Z INFO [rustowlc::core] start borrowck of DefId(0:11 ~ html_scraper[ee4d]::find_edit_link) +2026-02-24T07:50:51.387Z INFO [rustowlc::core::analyze] facts of DefId(0:11 ~ html_scraper[ee4d]::find_edit_link) prepared; start analyze of DefId(0:11 ~ html_scraper[ee4d]::find_edit_link) +2026-02-24T07:50:51.387Z INFO [rustowlc::core] borrow checked: 8 / 13 +2026-02-24T07:50:51.387Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.387Z INFO [rustowlc::core] start borrowck of DefId(0:12 ~ html_scraper[ee4d]::find_tms_config_link) +2026-02-24T07:50:51.387Z INFO [rustowlc::core::analyze] facts of DefId(0:12 ~ html_scraper[ee4d]::find_tms_config_link) prepared; start analyze of DefId(0:12 ~ html_scraper[ee4d]::find_tms_config_link) +2026-02-24T07:50:51.387Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.388Z INFO [rustowlc::core] borrow checked: 9 / 13 +2026-02-24T07:50:51.388Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.388Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.388Z INFO [rustowlc::core] start borrowck of DefId(0:13 ~ html_scraper[ee4d]::find_token) +2026-02-24T07:50:51.388Z INFO [rustowlc::core] start borrowck of DefId(0:14 ~ html_scraper[ee4d]::find_token::{closure#0}) +2026-02-24T07:50:51.390Z INFO [rustowlc::core::analyze] facts of DefId(0:14 ~ html_scraper[ee4d]::find_token::{closure#0}) prepared; start analyze of DefId(0:14 ~ html_scraper[ee4d]::find_token::{closure#0}) +2026-02-24T07:50:51.391Z INFO [rustowlc::core] borrow checked: 10 / 13 +2026-02-24T07:50:51.391Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.395Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.398Z INFO [rustowlc::core::analyze] facts of DefId(0:13 ~ html_scraper[ee4d]::find_token) prepared; start analyze of DefId(0:13 ~ html_scraper[ee4d]::find_token) +2026-02-24T07:50:51.401Z INFO [rustowlc::core] borrow checked: 11 / 13 +2026-02-24T07:50:51.401Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.403Z INFO [rustowlc::core] start borrowck of DefId(0:15 ~ html_scraper[ee4d]::find_latest_work_order_id) +2026-02-24T07:50:51.403Z INFO [rustowlc::core] start borrowck of DefId(0:16 ~ html_scraper[ee4d]::find_latest_work_order_id::{closure#0}) +2026-02-24T07:50:51.404Z INFO [rustowlc::core::analyze] facts of DefId(0:16 ~ html_scraper[ee4d]::find_latest_work_order_id::{closure#0}) prepared; start analyze of DefId(0:16 ~ html_scraper[ee4d]::find_latest_work_order_id::{closure#0}) +2026-02-24T07:50:51.405Z INFO [rustowlc::core] borrow checked: 12 / 13 +2026-02-24T07:50:51.406Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.410Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.410Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.413Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.424Z INFO [rustowlc::core::analyze] facts of DefId(0:15 ~ html_scraper[ee4d]::find_latest_work_order_id) prepared; start analyze of DefId(0:15 ~ html_scraper[ee4d]::find_latest_work_order_id) +2026-02-24T07:50:51.428Z INFO [rustowlc::core] borrow checked: 13 / 13 +2026-02-24T07:50:51.428Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:51.433Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.436Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.437Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.438Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.457Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.460Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:51.468Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.469Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.470Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.482Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.496Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.533Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.563Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs +2026-02-24T07:50:51.641Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/itoa-a49ee8ba6037ae7c/dep-lib-itoa b/src-tauri/html_scraper/target/owl/debug/.fingerprint/itoa-a49ee8ba6037ae7c/dep-lib-itoa new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/itoa-a49ee8ba6037ae7c/dep-lib-itoa differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/itoa-a49ee8ba6037ae7c/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/itoa-a49ee8ba6037ae7c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/itoa-a49ee8ba6037ae7c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/itoa-a49ee8ba6037ae7c/lib-itoa b/src-tauri/html_scraper/target/owl/debug/.fingerprint/itoa-a49ee8ba6037ae7c/lib-itoa new file mode 100644 index 0000000..3292dd4 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/itoa-a49ee8ba6037ae7c/lib-itoa @@ -0,0 +1 @@ +f89182f90469202b \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/itoa-a49ee8ba6037ae7c/lib-itoa.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/itoa-a49ee8ba6037ae7c/lib-itoa.json new file mode 100644 index 0000000..e043fd4 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/itoa-a49ee8ba6037ae7c/lib-itoa.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"no-panic\"]","target":8239509073162986830,"profile":8276155916380437441,"path":14258538388536324146,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/itoa-a49ee8ba6037ae7c/dep-lib-itoa","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-264ebbf0640cb510/dep-lib-libc b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-264ebbf0640cb510/dep-lib-libc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-264ebbf0640cb510/dep-lib-libc differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-264ebbf0640cb510/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-264ebbf0640cb510/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-264ebbf0640cb510/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-264ebbf0640cb510/lib-libc b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-264ebbf0640cb510/lib-libc new file mode 100644 index 0000000..60240c8 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-264ebbf0640cb510/lib-libc @@ -0,0 +1 @@ +6552fb307a2744c5 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-264ebbf0640cb510/lib-libc.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-264ebbf0640cb510/lib-libc.json new file mode 100644 index 0000000..a43668c --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-264ebbf0640cb510/lib-libc.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":17682796336736096309,"profile":3039969951022573740,"path":6022497162635093810,"deps":[[6366008408347001515,"build_script_build",false,13593522664786581896]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-264ebbf0640cb510/dep-lib-libc","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-33136c87e0d52e01/run-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-33136c87e0d52e01/run-build-script-build-script-build new file mode 100644 index 0000000..91dd38a --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-33136c87e0d52e01/run-build-script-build-script-build @@ -0,0 +1 @@ +8859d390d7e4a5bc \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-33136c87e0d52e01/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-33136c87e0d52e01/run-build-script-build-script-build.json new file mode 100644 index 0000000..30e8a3c --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-33136c87e0d52e01/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6366008408347001515,"build_script_build",false,14614051454881699328]],"local":[{"RerunIfChanged":{"output":"debug/build/libc-33136c87e0d52e01/output","paths":["build.rs"]}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_FREEBSD_VERSION","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_MUSL_V1_2_3","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_TIME_BITS","val":null}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-5095d4274a755e94/build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-5095d4274a755e94/build-script-build-script-build new file mode 100644 index 0000000..596fd07 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-5095d4274a755e94/build-script-build-script-build @@ -0,0 +1 @@ +b17c98449f0dca24 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-5095d4274a755e94/build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-5095d4274a755e94/build-script-build-script-build.json new file mode 100644 index 0000000..9bceb77 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-5095d4274a755e94/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":5408242616063297496,"profile":3039969951022573740,"path":10067107254380781927,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-5095d4274a755e94/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-5095d4274a755e94/dep-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-5095d4274a755e94/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-5095d4274a755e94/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-5095d4274a755e94/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-5095d4274a755e94/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-5095d4274a755e94/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-709939b439d7e4b8/build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-709939b439d7e4b8/build-script-build-script-build new file mode 100644 index 0000000..dfcb377 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-709939b439d7e4b8/build-script-build-script-build @@ -0,0 +1 @@ +001681a15e8acfca \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-709939b439d7e4b8/build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-709939b439d7e4b8/build-script-build-script-build.json new file mode 100644 index 0000000..ebe6f46 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-709939b439d7e4b8/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":5408242616063297496,"profile":3039969951022573740,"path":10067107254380781927,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-709939b439d7e4b8/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-709939b439d7e4b8/dep-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-709939b439d7e4b8/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-709939b439d7e4b8/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-709939b439d7e4b8/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-709939b439d7e4b8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-709939b439d7e4b8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-92ea4d42e166db1e/run-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-92ea4d42e166db1e/run-build-script-build-script-build new file mode 100644 index 0000000..d1c9438 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-92ea4d42e166db1e/run-build-script-build-script-build @@ -0,0 +1 @@ +16431c6b456cad8b \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-92ea4d42e166db1e/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-92ea4d42e166db1e/run-build-script-build-script-build.json new file mode 100644 index 0000000..e92c6bd --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-92ea4d42e166db1e/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6366008408347001515,"build_script_build",false,2650946308362763441]],"local":[{"RerunIfChanged":{"output":"debug/build/libc-92ea4d42e166db1e/output","paths":["build.rs"]}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_FREEBSD_VERSION","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_MUSL_V1_2_3","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_TIME_BITS","val":null}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-b85126284b89e743/dep-lib-libc b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-b85126284b89e743/dep-lib-libc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-b85126284b89e743/dep-lib-libc differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-b85126284b89e743/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-b85126284b89e743/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-b85126284b89e743/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-b85126284b89e743/lib-libc b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-b85126284b89e743/lib-libc new file mode 100644 index 0000000..69fe7ff --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-b85126284b89e743/lib-libc @@ -0,0 +1 @@ +8595423ef5aa29ba \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-b85126284b89e743/lib-libc.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-b85126284b89e743/lib-libc.json new file mode 100644 index 0000000..c6bd741 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/libc-b85126284b89e743/lib-libc.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":17682796336736096309,"profile":9845369694348380695,"path":6022497162635093810,"deps":[[6366008408347001515,"build_script_build",false,10064819787648484118]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-b85126284b89e743/dep-lib-libc","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-3c1f3db8d9fca7b4/dep-lib-lock_api b/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-3c1f3db8d9fca7b4/dep-lib-lock_api new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-3c1f3db8d9fca7b4/dep-lib-lock_api differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-3c1f3db8d9fca7b4/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-3c1f3db8d9fca7b4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-3c1f3db8d9fca7b4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-3c1f3db8d9fca7b4/lib-lock_api b/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-3c1f3db8d9fca7b4/lib-lock_api new file mode 100644 index 0000000..22ebf21 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-3c1f3db8d9fca7b4/lib-lock_api @@ -0,0 +1 @@ +e80a6bf9fe64f2a5 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-3c1f3db8d9fca7b4/lib-lock_api.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-3c1f3db8d9fca7b4/lib-lock_api.json new file mode 100644 index 0000000..c27602b --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-3c1f3db8d9fca7b4/lib-lock_api.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"atomic_usize\", \"default\"]","declared_features":"[\"arc_lock\", \"atomic_usize\", \"default\", \"nightly\", \"owning_ref\", \"serde\"]","target":16157403318809843794,"profile":8276155916380437441,"path":2887581883898358518,"deps":[[8081351675046095464,"build_script_build",false,2542680629921305227],[15358414700195712381,"scopeguard",false,3583690820382550625]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/lock_api-3c1f3db8d9fca7b4/dep-lib-lock_api","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-c86319de41590a71/build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-c86319de41590a71/build-script-build-script-build new file mode 100644 index 0000000..b6f5b0b --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-c86319de41590a71/build-script-build-script-build @@ -0,0 +1 @@ +46f04f2629df1120 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-c86319de41590a71/build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-c86319de41590a71/build-script-build-script-build.json new file mode 100644 index 0000000..f5d448a --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-c86319de41590a71/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"atomic_usize\", \"default\"]","declared_features":"[\"arc_lock\", \"atomic_usize\", \"default\", \"nightly\", \"owning_ref\", \"serde\"]","target":5408242616063297496,"profile":3033921117576893,"path":5634100084029554254,"deps":[[13927012481677012980,"autocfg",false,15124790008097637119]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/lock_api-c86319de41590a71/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-c86319de41590a71/dep-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-c86319de41590a71/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-c86319de41590a71/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-c86319de41590a71/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-c86319de41590a71/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-c86319de41590a71/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-d7d73b95392ce3f6/run-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-d7d73b95392ce3f6/run-build-script-build-script-build new file mode 100644 index 0000000..044b8f7 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-d7d73b95392ce3f6/run-build-script-build-script-build @@ -0,0 +1 @@ +8bd2b9ab8f6a4923 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-d7d73b95392ce3f6/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-d7d73b95392ce3f6/run-build-script-build-script-build.json new file mode 100644 index 0000000..c31dfa8 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/lock_api-d7d73b95392ce3f6/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8081351675046095464,"build_script_build",false,2310873451647201350]],"local":[{"RerunIfChanged":{"output":"debug/build/lock_api-d7d73b95392ce3f6/output","paths":["build.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/log-a85f59543d513f35/dep-lib-log b/src-tauri/html_scraper/target/owl/debug/.fingerprint/log-a85f59543d513f35/dep-lib-log new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/log-a85f59543d513f35/dep-lib-log differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/log-a85f59543d513f35/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/log-a85f59543d513f35/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/log-a85f59543d513f35/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/log-a85f59543d513f35/lib-log b/src-tauri/html_scraper/target/owl/debug/.fingerprint/log-a85f59543d513f35/lib-log new file mode 100644 index 0000000..3b65013 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/log-a85f59543d513f35/lib-log @@ -0,0 +1 @@ +431a06c398c80f17 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/log-a85f59543d513f35/lib-log.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/log-a85f59543d513f35/lib-log.json new file mode 100644 index 0000000..5c6a368 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/log-a85f59543d513f35/lib-log.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"kv\", \"kv_serde\", \"kv_std\", \"kv_sval\", \"kv_unstable\", \"kv_unstable_serde\", \"kv_unstable_std\", \"kv_unstable_sval\", \"max_level_debug\", \"max_level_error\", \"max_level_info\", \"max_level_off\", \"max_level_trace\", \"max_level_warn\", \"release_max_level_debug\", \"release_max_level_error\", \"release_max_level_info\", \"release_max_level_off\", \"release_max_level_trace\", \"release_max_level_warn\", \"serde\", \"std\", \"sval\", \"sval_ref\", \"value-bag\"]","target":6550155848337067049,"profile":8276155916380437441,"path":18190111470042270582,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/log-a85f59543d513f35/dep-lib-log","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/dep-lib-mac b/src-tauri/html_scraper/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/dep-lib-mac new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/dep-lib-mac differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/lib-mac b/src-tauri/html_scraper/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/lib-mac new file mode 100644 index 0000000..83f0563 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/lib-mac @@ -0,0 +1 @@ +2eb4936387dba836 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/lib-mac.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/lib-mac.json new file mode 100644 index 0000000..cc466d9 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/lib-mac.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":4071246351868317718,"profile":8276155916380437441,"path":13915823805326551209,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/mac-8bcbbf2eea6c88e0/dep-lib-mac","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-aca4b4cab63f52cf/run-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-aca4b4cab63f52cf/run-build-script-build-script-build new file mode 100644 index 0000000..5666338 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-aca4b4cab63f52cf/run-build-script-build-script-build @@ -0,0 +1 @@ +59e5aa40fa2c37cc \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-aca4b4cab63f52cf/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-aca4b4cab63f52cf/run-build-script-build-script-build.json new file mode 100644 index 0000000..d67317c --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-aca4b4cab63f52cf/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[7359235151837888654,"build_script_build",false,17913001872287833458]],"local":[{"Precalculated":"0.12.1"}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-c05d280d82fda2f5/dep-lib-markup5ever b/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-c05d280d82fda2f5/dep-lib-markup5ever new file mode 100644 index 0000000..e765566 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-c05d280d82fda2f5/dep-lib-markup5ever differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-c05d280d82fda2f5/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-c05d280d82fda2f5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-c05d280d82fda2f5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-c05d280d82fda2f5/lib-markup5ever b/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-c05d280d82fda2f5/lib-markup5ever new file mode 100644 index 0000000..4d340f6 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-c05d280d82fda2f5/lib-markup5ever @@ -0,0 +1 @@ +974050a3f4658443 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-c05d280d82fda2f5/lib-markup5ever.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-c05d280d82fda2f5/lib-markup5ever.json new file mode 100644 index 0000000..58e5399 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-c05d280d82fda2f5/lib-markup5ever.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":7456125560412827427,"profile":8276155916380437441,"path":16090091400190184061,"deps":[[2399633497816108991,"tendril",false,8130818123392665286],[3791929332532787956,"string_cache",false,1482816505765786796],[7359235151837888654,"build_script_build",false,14715279760794772825],[13066042571740262168,"log",false,1661767345955543619],[17186037756130803222,"phf",false,3275485335853316039]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/markup5ever-c05d280d82fda2f5/dep-lib-markup5ever","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-e42ad18694224326/build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-e42ad18694224326/build-script-build-script-build new file mode 100644 index 0000000..0da83ae --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-e42ad18694224326/build-script-build-script-build @@ -0,0 +1 @@ +729d9fb24bc497f8 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-e42ad18694224326/build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-e42ad18694224326/build-script-build-script-build.json new file mode 100644 index 0000000..bac2849 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-e42ad18694224326/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":3033921117576893,"path":17205600533683944716,"deps":[[1280075590338009456,"phf_codegen",false,2473083143927582524],[11594986142849509546,"string_cache_codegen",false,3616675101354501795]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/markup5ever-e42ad18694224326/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-e42ad18694224326/dep-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-e42ad18694224326/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-e42ad18694224326/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-e42ad18694224326/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-e42ad18694224326/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/markup5ever-e42ad18694224326/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/memchr-7c3340bc369d5f50/dep-lib-memchr b/src-tauri/html_scraper/target/owl/debug/.fingerprint/memchr-7c3340bc369d5f50/dep-lib-memchr new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/memchr-7c3340bc369d5f50/dep-lib-memchr differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/memchr-7c3340bc369d5f50/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/memchr-7c3340bc369d5f50/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/memchr-7c3340bc369d5f50/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/memchr-7c3340bc369d5f50/lib-memchr b/src-tauri/html_scraper/target/owl/debug/.fingerprint/memchr-7c3340bc369d5f50/lib-memchr new file mode 100644 index 0000000..7c383db --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/memchr-7c3340bc369d5f50/lib-memchr @@ -0,0 +1 @@ +65ff0a5ca49b3139 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/memchr-7c3340bc369d5f50/lib-memchr.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/memchr-7c3340bc369d5f50/lib-memchr.json new file mode 100644 index 0000000..ca557c5 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/memchr-7c3340bc369d5f50/lib-memchr.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"core\", \"default\", \"libc\", \"logging\", \"rustc-dep-of-std\", \"std\", \"use_std\"]","target":11745930252914242013,"profile":8276155916380437441,"path":9541460020488583586,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/memchr-7c3340bc369d5f50/dep-lib-memchr","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/dep-lib-debug_unreachable b/src-tauri/html_scraper/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/dep-lib-debug_unreachable new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/dep-lib-debug_unreachable differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/lib-debug_unreachable b/src-tauri/html_scraper/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/lib-debug_unreachable new file mode 100644 index 0000000..7b68d84 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/lib-debug_unreachable @@ -0,0 +1 @@ +b16c4a4216cb5f87 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/lib-debug_unreachable.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/lib-debug_unreachable.json new file mode 100644 index 0000000..df964a6 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/lib-debug_unreachable.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":7622437403250301378,"profile":8276155916380437441,"path":4262947987712254272,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/dep-lib-debug_unreachable","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/dep-lib-once_cell b/src-tauri/html_scraper/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/dep-lib-once_cell new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/dep-lib-once_cell differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/lib-once_cell b/src-tauri/html_scraper/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/lib-once_cell new file mode 100644 index 0000000..f61e22b --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/lib-once_cell @@ -0,0 +1 @@ +d53434bf2019eb85 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/lib-once_cell.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/lib-once_cell.json new file mode 100644 index 0000000..1627d84 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/lib-once_cell.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"default\", \"race\", \"std\"]","declared_features":"[\"alloc\", \"atomic-polyfill\", \"critical-section\", \"default\", \"parking_lot\", \"portable-atomic\", \"race\", \"std\", \"unstable\"]","target":17524666916136250164,"profile":8276155916380437441,"path":2764379529893184722,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/once_cell-4c5c529dad6841fd/dep-lib-once_cell","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot-67e3c76077a8687b/dep-lib-parking_lot b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot-67e3c76077a8687b/dep-lib-parking_lot new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot-67e3c76077a8687b/dep-lib-parking_lot differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot-67e3c76077a8687b/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot-67e3c76077a8687b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot-67e3c76077a8687b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot-67e3c76077a8687b/lib-parking_lot b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot-67e3c76077a8687b/lib-parking_lot new file mode 100644 index 0000000..338b69e --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot-67e3c76077a8687b/lib-parking_lot @@ -0,0 +1 @@ +1fabb1cb527875fa \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot-67e3c76077a8687b/lib-parking_lot.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot-67e3c76077a8687b/lib-parking_lot.json new file mode 100644 index 0000000..4a66255 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot-67e3c76077a8687b/lib-parking_lot.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\"]","declared_features":"[\"arc_lock\", \"deadlock_detection\", \"default\", \"hardware-lock-elision\", \"nightly\", \"owning_ref\", \"send_guard\", \"serde\"]","target":9887373948397848517,"profile":8276155916380437441,"path":15796840589677294026,"deps":[[4269498962362888130,"parking_lot_core",false,4224480055935431148],[8081351675046095464,"lock_api",false,11957731006891100904]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/parking_lot-67e3c76077a8687b/dep-lib-parking_lot","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-16d73b43a8856b67/build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-16d73b43a8856b67/build-script-build-script-build new file mode 100644 index 0000000..4689b96 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-16d73b43a8856b67/build-script-build-script-build @@ -0,0 +1 @@ +2dcf56d4ba227c46 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-16d73b43a8856b67/build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-16d73b43a8856b67/build-script-build-script-build.json new file mode 100644 index 0000000..0c9b2cd --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-16d73b43a8856b67/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"backtrace\", \"deadlock_detection\", \"nightly\", \"petgraph\", \"thread-id\"]","target":5408242616063297496,"profile":3033921117576893,"path":5419401473259055741,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/parking_lot_core-16d73b43a8856b67/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-16d73b43a8856b67/dep-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-16d73b43a8856b67/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-16d73b43a8856b67/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-16d73b43a8856b67/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-16d73b43a8856b67/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-16d73b43a8856b67/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-59dd462d63b732d8/run-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-59dd462d63b732d8/run-build-script-build-script-build new file mode 100644 index 0000000..3744fd6 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-59dd462d63b732d8/run-build-script-build-script-build @@ -0,0 +1 @@ +6b9a28b4dbc3e270 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-59dd462d63b732d8/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-59dd462d63b732d8/run-build-script-build-script-build.json new file mode 100644 index 0000000..4939f97 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-59dd462d63b732d8/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[4269498962362888130,"build_script_build",false,5078972665588797229]],"local":[{"RerunIfChanged":{"output":"debug/build/parking_lot_core-59dd462d63b732d8/output","paths":["build.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-a1c9ac69068499a0/dep-lib-parking_lot_core b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-a1c9ac69068499a0/dep-lib-parking_lot_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-a1c9ac69068499a0/dep-lib-parking_lot_core differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-a1c9ac69068499a0/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-a1c9ac69068499a0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-a1c9ac69068499a0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-a1c9ac69068499a0/lib-parking_lot_core b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-a1c9ac69068499a0/lib-parking_lot_core new file mode 100644 index 0000000..57a63b0 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-a1c9ac69068499a0/lib-parking_lot_core @@ -0,0 +1 @@ +ecf1c0863a5ea03a \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-a1c9ac69068499a0/lib-parking_lot_core.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-a1c9ac69068499a0/lib-parking_lot_core.json new file mode 100644 index 0000000..6136218 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/parking_lot_core-a1c9ac69068499a0/lib-parking_lot_core.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"backtrace\", \"deadlock_detection\", \"nightly\", \"petgraph\", \"thread-id\"]","target":12558056885032795287,"profile":8276155916380437441,"path":3949814361040375174,"deps":[[3666196340704888985,"smallvec",false,14194441167904933901],[4269498962362888130,"build_script_build",false,8134279225372351083],[6366008408347001515,"libc",false,13414440935387993477],[7843059260364151289,"cfg_if",false,3334986249336963704]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/parking_lot_core-a1c9ac69068499a0/dep-lib-parking_lot_core","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-6b194834e92a8bee/dep-lib-phf b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-6b194834e92a8bee/dep-lib-phf new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-6b194834e92a8bee/dep-lib-phf differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-6b194834e92a8bee/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-6b194834e92a8bee/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-6b194834e92a8bee/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-6b194834e92a8bee/lib-phf b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-6b194834e92a8bee/lib-phf new file mode 100644 index 0000000..5021684 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-6b194834e92a8bee/lib-phf @@ -0,0 +1 @@ +c7b789068fdc742d \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-6b194834e92a8bee/lib-phf.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-6b194834e92a8bee/lib-phf.json new file mode 100644 index 0000000..bd2146d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-6b194834e92a8bee/lib-phf.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"macros\", \"phf_macros\", \"std\"]","declared_features":"[\"default\", \"macros\", \"phf_macros\", \"serde\", \"std\", \"uncased\", \"unicase\"]","target":10640910166656384580,"profile":8276155916380437441,"path":3770551232215580075,"deps":[[7564874552398678785,"phf_macros",false,15615624583012096862],[9060940869921439196,"phf_shared",false,2477246615744959163]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf-6b194834e92a8bee/dep-lib-phf","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-a5e281d909db600d/dep-lib-phf b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-a5e281d909db600d/dep-lib-phf new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-a5e281d909db600d/dep-lib-phf differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-a5e281d909db600d/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-a5e281d909db600d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-a5e281d909db600d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-a5e281d909db600d/lib-phf b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-a5e281d909db600d/lib-phf new file mode 100644 index 0000000..6e1669f --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-a5e281d909db600d/lib-phf @@ -0,0 +1 @@ +f0b28af7985bd2d9 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-a5e281d909db600d/lib-phf.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-a5e281d909db600d/lib-phf.json new file mode 100644 index 0000000..e770c78 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf-a5e281d909db600d/lib-phf.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"macros\", \"phf_macros\", \"proc-macro-hack\", \"serde\", \"std\", \"uncased\", \"unicase\"]","target":3117898612494421391,"profile":8276155916380437441,"path":13050512348035577473,"deps":[[2132929450596319411,"phf_shared",false,6596027217312206874]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf-a5e281d909db600d/dep-lib-phf","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-40157be3fe634da0/dep-lib-phf_codegen b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-40157be3fe634da0/dep-lib-phf_codegen new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-40157be3fe634da0/dep-lib-phf_codegen differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-40157be3fe634da0/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-40157be3fe634da0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-40157be3fe634da0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-40157be3fe634da0/lib-phf_codegen b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-40157be3fe634da0/lib-phf_codegen new file mode 100644 index 0000000..a83ed07 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-40157be3fe634da0/lib-phf_codegen @@ -0,0 +1 @@ +eb38fffa5d00f292 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-40157be3fe634da0/lib-phf_codegen.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-40157be3fe634da0/lib-phf_codegen.json new file mode 100644 index 0000000..2edcd11 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-40157be3fe634da0/lib-phf_codegen.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":10627201688748800353,"profile":3033921117576893,"path":2640184637354120304,"deps":[[2132929450596319411,"phf_shared",false,16989110608943260674],[15690706847525356077,"phf_generator",false,6958873644105126078]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_codegen-40157be3fe634da0/dep-lib-phf_codegen","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-5ea2ef6feacfe22f/dep-lib-phf_codegen b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-5ea2ef6feacfe22f/dep-lib-phf_codegen new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-5ea2ef6feacfe22f/dep-lib-phf_codegen differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-5ea2ef6feacfe22f/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-5ea2ef6feacfe22f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-5ea2ef6feacfe22f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-5ea2ef6feacfe22f/lib-phf_codegen b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-5ea2ef6feacfe22f/lib-phf_codegen new file mode 100644 index 0000000..ec6acce --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-5ea2ef6feacfe22f/lib-phf_codegen @@ -0,0 +1 @@ +3c4fcf3504285222 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-5ea2ef6feacfe22f/lib-phf_codegen.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-5ea2ef6feacfe22f/lib-phf_codegen.json new file mode 100644 index 0000000..1993e18 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_codegen-5ea2ef6feacfe22f/lib-phf_codegen.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":4007019473634205266,"profile":3033921117576893,"path":16114921603904541884,"deps":[[9060940869921439196,"phf_shared",false,6527085793670228801],[18124350542602697595,"phf_generator",false,17725863451963423025]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_codegen-5ea2ef6feacfe22f/dep-lib-phf_codegen","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-43336aadae1e491f/dep-lib-phf_generator b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-43336aadae1e491f/dep-lib-phf_generator new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-43336aadae1e491f/dep-lib-phf_generator differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-43336aadae1e491f/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-43336aadae1e491f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-43336aadae1e491f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-43336aadae1e491f/lib-phf_generator b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-43336aadae1e491f/lib-phf_generator new file mode 100644 index 0000000..20052b6 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-43336aadae1e491f/lib-phf_generator @@ -0,0 +1 @@ +bed0b6a9b5e29260 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-43336aadae1e491f/lib-phf_generator.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-43336aadae1e491f/lib-phf_generator.json new file mode 100644 index 0000000..9bfc14c --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-43336aadae1e491f/lib-phf_generator.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"criterion\"]","target":10230150387258866563,"profile":3033921117576893,"path":10252491202899702061,"deps":[[2132929450596319411,"phf_shared",false,16989110608943260674],[13208667028893622512,"rand",false,17321195535058825961]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_generator-43336aadae1e491f/dep-lib-phf_generator","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-884b0d250f91fc53/dep-lib-phf_generator b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-884b0d250f91fc53/dep-lib-phf_generator new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-884b0d250f91fc53/dep-lib-phf_generator differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-884b0d250f91fc53/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-884b0d250f91fc53/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-884b0d250f91fc53/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-884b0d250f91fc53/lib-phf_generator b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-884b0d250f91fc53/lib-phf_generator new file mode 100644 index 0000000..7570ee5 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-884b0d250f91fc53/lib-phf_generator @@ -0,0 +1 @@ +31f95bd7e4eafef5 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-884b0d250f91fc53/lib-phf_generator.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-884b0d250f91fc53/lib-phf_generator.json new file mode 100644 index 0000000..25af555 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_generator-884b0d250f91fc53/lib-phf_generator.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"criterion\"]","target":4203241669981453472,"profile":3033921117576893,"path":11230546398072409261,"deps":[[9060940869921439196,"phf_shared",false,6527085793670228801],[13208667028893622512,"rand",false,17321195535058825961]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_generator-884b0d250f91fc53/dep-lib-phf_generator","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_macros-7f841b68f6c64112/dep-lib-phf_macros b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_macros-7f841b68f6c64112/dep-lib-phf_macros new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_macros-7f841b68f6c64112/dep-lib-phf_macros differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_macros-7f841b68f6c64112/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_macros-7f841b68f6c64112/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_macros-7f841b68f6c64112/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_macros-7f841b68f6c64112/lib-phf_macros b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_macros-7f841b68f6c64112/lib-phf_macros new file mode 100644 index 0000000..bcd323b --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_macros-7f841b68f6c64112/lib-phf_macros @@ -0,0 +1 @@ +5e1b4bb8d2d7b5d8 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_macros-7f841b68f6c64112/lib-phf_macros.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_macros-7f841b68f6c64112/lib-phf_macros.json new file mode 100644 index 0000000..631f663 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_macros-7f841b68f6c64112/lib-phf_macros.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"unicase\", \"unicase_\"]","target":17891898593638043230,"profile":3033921117576893,"path":11697858029674195464,"deps":[[373107762698212489,"proc_macro2",false,11352822849591009774],[9060940869921439196,"phf_shared",false,6527085793670228801],[17332570067994900305,"syn",false,17971348096264547987],[17990358020177143287,"quote",false,18137893867194747271],[18124350542602697595,"phf_generator",false,17725863451963423025]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_macros-7f841b68f6c64112/dep-lib-phf_macros","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-326f17bea3a347fa/dep-lib-phf_shared b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-326f17bea3a347fa/dep-lib-phf_shared new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-326f17bea3a347fa/dep-lib-phf_shared differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-326f17bea3a347fa/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-326f17bea3a347fa/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-326f17bea3a347fa/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-326f17bea3a347fa/lib-phf_shared b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-326f17bea3a347fa/lib-phf_shared new file mode 100644 index 0000000..1edd423 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-326f17bea3a347fa/lib-phf_shared @@ -0,0 +1 @@ +416b3686f2dd945a \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-326f17bea3a347fa/lib-phf_shared.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-326f17bea3a347fa/lib-phf_shared.json new file mode 100644 index 0000000..bd00562 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-326f17bea3a347fa/lib-phf_shared.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\", \"uncased\", \"unicase\"]","target":13191988717353488301,"profile":3033921117576893,"path":16045028260159766411,"deps":[[17007833651981688255,"siphasher",false,16755182972815334573]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_shared-326f17bea3a347fa/dep-lib-phf_shared","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/dep-lib-phf_shared b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/dep-lib-phf_shared new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/dep-lib-phf_shared differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/lib-phf_shared b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/lib-phf_shared new file mode 100644 index 0000000..7bba37b --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/lib-phf_shared @@ -0,0 +1 @@ +0224e22f1672c5eb \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/lib-phf_shared.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/lib-phf_shared.json new file mode 100644 index 0000000..4b54de7 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/lib-phf_shared.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\", \"uncased\", \"unicase\"]","target":886472421596331379,"profile":3033921117576893,"path":17563638565876096459,"deps":[[8079500665534101559,"siphasher",false,6568460692945467855]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/dep-lib-phf_shared","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/dep-lib-phf_shared b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/dep-lib-phf_shared new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/dep-lib-phf_shared differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/lib-phf_shared b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/lib-phf_shared new file mode 100644 index 0000000..071a7b2 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/lib-phf_shared @@ -0,0 +1 @@ +1ad0b390cecb895b \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/lib-phf_shared.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/lib-phf_shared.json new file mode 100644 index 0000000..db0f268 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/lib-phf_shared.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"std\"]","declared_features":"[\"default\", \"std\", \"uncased\", \"unicase\"]","target":886472421596331379,"profile":8276155916380437441,"path":17563638565876096459,"deps":[[8079500665534101559,"siphasher",false,9978222342595387305]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_shared-d820095d9f30a958/dep-lib-phf_shared","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d8d2ac53d54b5ecf/dep-lib-phf_shared b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d8d2ac53d54b5ecf/dep-lib-phf_shared new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d8d2ac53d54b5ecf/dep-lib-phf_shared differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d8d2ac53d54b5ecf/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d8d2ac53d54b5ecf/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d8d2ac53d54b5ecf/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d8d2ac53d54b5ecf/lib-phf_shared b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d8d2ac53d54b5ecf/lib-phf_shared new file mode 100644 index 0000000..97e2162 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d8d2ac53d54b5ecf/lib-phf_shared @@ -0,0 +1 @@ +bb528408acf26022 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d8d2ac53d54b5ecf/lib-phf_shared.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d8d2ac53d54b5ecf/lib-phf_shared.json new file mode 100644 index 0000000..fe12243 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/phf_shared-d8d2ac53d54b5ecf/lib-phf_shared.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\", \"uncased\", \"unicase\"]","target":13191988717353488301,"profile":8276155916380437441,"path":16045028260159766411,"deps":[[17007833651981688255,"siphasher",false,9380539660003789685]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_shared-d8d2ac53d54b5ecf/dep-lib-phf_shared","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/ppv-lite86-152841d868a1fbc8/dep-lib-ppv_lite86 b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ppv-lite86-152841d868a1fbc8/dep-lib-ppv_lite86 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ppv-lite86-152841d868a1fbc8/dep-lib-ppv_lite86 differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/ppv-lite86-152841d868a1fbc8/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ppv-lite86-152841d868a1fbc8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ppv-lite86-152841d868a1fbc8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/ppv-lite86-152841d868a1fbc8/lib-ppv_lite86 b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ppv-lite86-152841d868a1fbc8/lib-ppv_lite86 new file mode 100644 index 0000000..8daa80b --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ppv-lite86-152841d868a1fbc8/lib-ppv_lite86 @@ -0,0 +1 @@ +85fd2a754310aabd \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/ppv-lite86-152841d868a1fbc8/lib-ppv_lite86.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ppv-lite86-152841d868a1fbc8/lib-ppv_lite86.json new file mode 100644 index 0000000..99b548a --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/ppv-lite86-152841d868a1fbc8/lib-ppv_lite86.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"simd\", \"std\"]","declared_features":"[\"default\", \"no_simd\", \"simd\", \"std\"]","target":2607852365283500179,"profile":3033921117576893,"path":16631539534317957071,"deps":[[13102401248396471120,"zerocopy",false,17346502776689249081]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ppv-lite86-152841d868a1fbc8/dep-lib-ppv_lite86","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/dep-lib-precomputed_hash b/src-tauri/html_scraper/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/dep-lib-precomputed_hash new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/dep-lib-precomputed_hash differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/lib-precomputed_hash b/src-tauri/html_scraper/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/lib-precomputed_hash new file mode 100644 index 0000000..c2fba69 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/lib-precomputed_hash @@ -0,0 +1 @@ +98171ea8cd449914 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/lib-precomputed_hash.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/lib-precomputed_hash.json new file mode 100644 index 0000000..b547a6c --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/lib-precomputed_hash.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":18034549675578888011,"profile":8276155916380437441,"path":12339682501616810603,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/dep-lib-precomputed_hash","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-291ed4ead1b38229/dep-lib-proc_macro2 b/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-291ed4ead1b38229/dep-lib-proc_macro2 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-291ed4ead1b38229/dep-lib-proc_macro2 differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-291ed4ead1b38229/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-291ed4ead1b38229/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-291ed4ead1b38229/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-291ed4ead1b38229/lib-proc_macro2 b/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-291ed4ead1b38229/lib-proc_macro2 new file mode 100644 index 0000000..60d5a44 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-291ed4ead1b38229/lib-proc_macro2 @@ -0,0 +1 @@ +ee61cf5b3b548d9d \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-291ed4ead1b38229/lib-proc_macro2.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-291ed4ead1b38229/lib-proc_macro2.json new file mode 100644 index 0000000..ab4e3d8 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-291ed4ead1b38229/lib-proc_macro2.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":369203346396300798,"profile":3033921117576893,"path":11240588147534753076,"deps":[[373107762698212489,"build_script_build",false,17624785803923414934],[10637008577242657367,"unicode_ident",false,2958865658703586715]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-291ed4ead1b38229/dep-lib-proc_macro2","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-d5dbe78a9a06b2af/build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-d5dbe78a9a06b2af/build-script-build-script-build new file mode 100644 index 0000000..f1532ca --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-d5dbe78a9a06b2af/build-script-build-script-build @@ -0,0 +1 @@ +9a0f4ea619cb0f83 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-d5dbe78a9a06b2af/build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-d5dbe78a9a06b2af/build-script-build-script-build.json new file mode 100644 index 0000000..639270c --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-d5dbe78a9a06b2af/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":5408242616063297496,"profile":3033921117576893,"path":13031256517555130205,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-d5dbe78a9a06b2af/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-d5dbe78a9a06b2af/dep-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-d5dbe78a9a06b2af/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-d5dbe78a9a06b2af/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-d5dbe78a9a06b2af/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-d5dbe78a9a06b2af/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-d5dbe78a9a06b2af/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-e14fdc701678645e/run-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-e14fdc701678645e/run-build-script-build-script-build new file mode 100644 index 0000000..7f01fa9 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-e14fdc701678645e/run-build-script-build-script-build @@ -0,0 +1 @@ +96df33fd4ed197f4 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-e14fdc701678645e/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-e14fdc701678645e/run-build-script-build-script-build.json new file mode 100644 index 0000000..dbcf095 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/proc-macro2-e14fdc701678645e/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[373107762698212489,"build_script_build",false,9443990254643974042]],"local":[{"RerunIfChanged":{"output":"debug/build/proc-macro2-e14fdc701678645e/output","paths":["src/probe/proc_macro_span.rs","src/probe/proc_macro_span.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/quote-e142a560d591b9f6/dep-lib-quote b/src-tauri/html_scraper/target/owl/debug/.fingerprint/quote-e142a560d591b9f6/dep-lib-quote new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/quote-e142a560d591b9f6/dep-lib-quote differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/quote-e142a560d591b9f6/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/quote-e142a560d591b9f6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/quote-e142a560d591b9f6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/quote-e142a560d591b9f6/lib-quote b/src-tauri/html_scraper/target/owl/debug/.fingerprint/quote-e142a560d591b9f6/lib-quote new file mode 100644 index 0000000..c56fbf7 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/quote-e142a560d591b9f6/lib-quote @@ -0,0 +1 @@ +8709e19f5fbeb6fb \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/quote-e142a560d591b9f6/lib-quote.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/quote-e142a560d591b9f6/lib-quote.json new file mode 100644 index 0000000..00c01a6 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/quote-e142a560d591b9f6/lib-quote.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":3570458776599611685,"profile":3033921117576893,"path":9517233860309494112,"deps":[[373107762698212489,"proc_macro2",false,11352822849591009774]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/quote-e142a560d591b9f6/dep-lib-quote","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand-ab5ef89d506a41da/dep-lib-rand b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand-ab5ef89d506a41da/dep-lib-rand new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand-ab5ef89d506a41da/dep-lib-rand differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand-ab5ef89d506a41da/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand-ab5ef89d506a41da/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand-ab5ef89d506a41da/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand-ab5ef89d506a41da/lib-rand b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand-ab5ef89d506a41da/lib-rand new file mode 100644 index 0000000..0b6b2e1 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand-ab5ef89d506a41da/lib-rand @@ -0,0 +1 @@ +e9724348913f61f0 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand-ab5ef89d506a41da/lib-rand.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand-ab5ef89d506a41da/lib-rand.json new file mode 100644 index 0000000..c52b1f5 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand-ab5ef89d506a41da/lib-rand.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"rand_chacha\", \"small_rng\", \"std\", \"std_rng\"]","declared_features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"log\", \"min_const_gen\", \"nightly\", \"packed_simd\", \"rand_chacha\", \"serde\", \"serde1\", \"simd_support\", \"small_rng\", \"std\", \"std_rng\"]","target":8827111241893198906,"profile":3033921117576893,"path":2297357063441996956,"deps":[[1573238666360410412,"rand_chacha",false,1503661616694436534],[6366008408347001515,"libc",false,14214529729649398373],[18130209639506977569,"rand_core",false,3901060246448604327]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand-ab5ef89d506a41da/dep-lib-rand","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_chacha-c8d61b1a796d881d/dep-lib-rand_chacha b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_chacha-c8d61b1a796d881d/dep-lib-rand_chacha new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_chacha-c8d61b1a796d881d/dep-lib-rand_chacha differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_chacha-c8d61b1a796d881d/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_chacha-c8d61b1a796d881d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_chacha-c8d61b1a796d881d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_chacha-c8d61b1a796d881d/lib-rand_chacha b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_chacha-c8d61b1a796d881d/lib-rand_chacha new file mode 100644 index 0000000..41da247 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_chacha-c8d61b1a796d881d/lib-rand_chacha @@ -0,0 +1 @@ +b622760d4614de14 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_chacha-c8d61b1a796d881d/lib-rand_chacha.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_chacha-c8d61b1a796d881d/lib-rand_chacha.json new file mode 100644 index 0000000..1f18d0c --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_chacha-c8d61b1a796d881d/lib-rand_chacha.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"std\"]","declared_features":"[\"default\", \"serde\", \"serde1\", \"simd\", \"std\"]","target":15766068575093147603,"profile":3033921117576893,"path":15469373326032794104,"deps":[[12919011715531272606,"ppv_lite86",false,13666753901123796357],[18130209639506977569,"rand_core",false,3901060246448604327]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_chacha-c8d61b1a796d881d/dep-lib-rand_chacha","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_core-f3a8d6f0864acf19/dep-lib-rand_core b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_core-f3a8d6f0864acf19/dep-lib-rand_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_core-f3a8d6f0864acf19/dep-lib-rand_core differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_core-f3a8d6f0864acf19/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_core-f3a8d6f0864acf19/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_core-f3a8d6f0864acf19/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_core-f3a8d6f0864acf19/lib-rand_core b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_core-f3a8d6f0864acf19/lib-rand_core new file mode 100644 index 0000000..12f507a --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_core-f3a8d6f0864acf19/lib-rand_core @@ -0,0 +1 @@ +a784f71ca0592336 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_core-f3a8d6f0864acf19/lib-rand_core.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_core-f3a8d6f0864acf19/lib-rand_core.json new file mode 100644 index 0000000..bd33317 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/rand_core-f3a8d6f0864acf19/lib-rand_core.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"getrandom\", \"std\"]","declared_features":"[\"alloc\", \"getrandom\", \"serde\", \"serde1\", \"std\"]","target":13770603672348587087,"profile":3033921117576893,"path":12942933456727152248,"deps":[[9920160576179037441,"getrandom",false,15669683535828213400]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_core-f3a8d6f0864acf19/dep-lib-rand_core","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-a4ec923d1ef1e9a6/dep-lib-regex b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-a4ec923d1ef1e9a6/dep-lib-regex new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-a4ec923d1ef1e9a6/dep-lib-regex differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-a4ec923d1ef1e9a6/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-a4ec923d1ef1e9a6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-a4ec923d1ef1e9a6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-a4ec923d1ef1e9a6/lib-regex b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-a4ec923d1ef1e9a6/lib-regex new file mode 100644 index 0000000..3031567 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-a4ec923d1ef1e9a6/lib-regex @@ -0,0 +1 @@ +ffb51b49252f15ec \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-a4ec923d1ef1e9a6/lib-regex.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-a4ec923d1ef1e9a6/lib-regex.json new file mode 100644 index 0000000..4c592ec --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-a4ec923d1ef1e9a6/lib-regex.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"perf\", \"perf-backtrack\", \"perf-cache\", \"perf-dfa\", \"perf-inline\", \"perf-literal\", \"perf-onepass\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","declared_features":"[\"default\", \"logging\", \"pattern\", \"perf\", \"perf-backtrack\", \"perf-cache\", \"perf-dfa\", \"perf-dfa-full\", \"perf-inline\", \"perf-literal\", \"perf-onepass\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unstable\", \"use_std\"]","target":5796931310894148030,"profile":8276155916380437441,"path":7431917759555425471,"deps":[[198136567835728122,"memchr",false,4121246264241880933],[2779309023524819297,"aho_corasick",false,3936199832590293290],[4310815957326066901,"regex_automata",false,12962477273540322553],[7507008215594894126,"regex_syntax",false,5285339369837430458]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-a4ec923d1ef1e9a6/dep-lib-regex","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-automata-a19565a0024fd174/dep-lib-regex_automata b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-automata-a19565a0024fd174/dep-lib-regex_automata new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-automata-a19565a0024fd174/dep-lib-regex_automata differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-automata-a19565a0024fd174/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-automata-a19565a0024fd174/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-automata-a19565a0024fd174/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-automata-a19565a0024fd174/lib-regex_automata b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-automata-a19565a0024fd174/lib-regex_automata new file mode 100644 index 0000000..f28c6a1 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-automata-a19565a0024fd174/lib-regex_automata @@ -0,0 +1 @@ +f9e471f266f8e3b3 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-automata-a19565a0024fd174/lib-regex_automata.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-automata-a19565a0024fd174/lib-regex_automata.json new file mode 100644 index 0000000..f224a17 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-automata-a19565a0024fd174/lib-regex_automata.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"dfa-onepass\", \"hybrid\", \"meta\", \"nfa-backtrack\", \"nfa-pikevm\", \"nfa-thompson\", \"perf-inline\", \"perf-literal\", \"perf-literal-multisubstring\", \"perf-literal-substring\", \"std\", \"syntax\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unicode-word-boundary\"]","declared_features":"[\"alloc\", \"default\", \"dfa\", \"dfa-build\", \"dfa-onepass\", \"dfa-search\", \"hybrid\", \"internal-instrument\", \"internal-instrument-pikevm\", \"logging\", \"meta\", \"nfa\", \"nfa-backtrack\", \"nfa-pikevm\", \"nfa-thompson\", \"perf\", \"perf-inline\", \"perf-literal\", \"perf-literal-multisubstring\", \"perf-literal-substring\", \"std\", \"syntax\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unicode-word-boundary\"]","target":4726246767843925232,"profile":8276155916380437441,"path":4122093375942959951,"deps":[[198136567835728122,"memchr",false,4121246264241880933],[2779309023524819297,"aho_corasick",false,3936199832590293290],[7507008215594894126,"regex_syntax",false,5285339369837430458]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-automata-a19565a0024fd174/dep-lib-regex_automata","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-syntax-64f543cc93457e20/dep-lib-regex_syntax b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-syntax-64f543cc93457e20/dep-lib-regex_syntax new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-syntax-64f543cc93457e20/dep-lib-regex_syntax differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-syntax-64f543cc93457e20/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-syntax-64f543cc93457e20/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-syntax-64f543cc93457e20/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-syntax-64f543cc93457e20/lib-regex_syntax b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-syntax-64f543cc93457e20/lib-regex_syntax new file mode 100644 index 0000000..06c25ef --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-syntax-64f543cc93457e20/lib-regex_syntax @@ -0,0 +1 @@ +ba068c68274c5949 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-syntax-64f543cc93457e20/lib-regex_syntax.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-syntax-64f543cc93457e20/lib-regex_syntax.json new file mode 100644 index 0000000..2dcdf59 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/regex-syntax-64f543cc93457e20/lib-regex_syntax.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","declared_features":"[\"arbitrary\", \"default\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","target":742186494246220192,"profile":8276155916380437441,"path":3698463006484291124,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-syntax-64f543cc93457e20/dep-lib-regex_syntax","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/dep-lib-scopeguard b/src-tauri/html_scraper/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/dep-lib-scopeguard new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/dep-lib-scopeguard differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/lib-scopeguard b/src-tauri/html_scraper/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/lib-scopeguard new file mode 100644 index 0000000..7183bbc --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/lib-scopeguard @@ -0,0 +1 @@ +61eaba5dd0d3bb31 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/lib-scopeguard.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/lib-scopeguard.json new file mode 100644 index 0000000..689d980 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/lib-scopeguard.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"default\", \"use_std\"]","target":3556356971060988614,"profile":8276155916380437441,"path":885833570584633668,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/dep-lib-scopeguard","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/scraper-97a3ebea50003e71/dep-lib-scraper b/src-tauri/html_scraper/target/owl/debug/.fingerprint/scraper-97a3ebea50003e71/dep-lib-scraper new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/scraper-97a3ebea50003e71/dep-lib-scraper differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/scraper-97a3ebea50003e71/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/scraper-97a3ebea50003e71/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/scraper-97a3ebea50003e71/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/scraper-97a3ebea50003e71/lib-scraper b/src-tauri/html_scraper/target/owl/debug/.fingerprint/scraper-97a3ebea50003e71/lib-scraper new file mode 100644 index 0000000..112a1e1 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/scraper-97a3ebea50003e71/lib-scraper @@ -0,0 +1 @@ +04a029385d21947a \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/scraper-97a3ebea50003e71/lib-scraper.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/scraper-97a3ebea50003e71/lib-scraper.json new file mode 100644 index 0000000..19e374e --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/scraper-97a3ebea50003e71/lib-scraper.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"errors\", \"getopts\", \"main\"]","declared_features":"[\"atomic\", \"default\", \"deterministic\", \"errors\", \"getopts\", \"indexmap\", \"main\"]","target":678004358678959319,"profile":8276155916380437441,"path":123666986528478429,"deps":[[966925859616469517,"ahash",false,12502238189894892276],[2399633497816108991,"tendril",false,8130818123392665286],[3722963349756955755,"once_cell",false,9649834255008937173],[5658260411229319297,"selectors",false,8872954789039133430],[6894592641856567887,"html5ever",false,2134648127500258298],[7492350663910880704,"cssparser",false,136704539213140621],[12290581011641529047,"ego_tree",false,3025596892505639010],[14686689205187145500,"getopts",false,12642683569275129794]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/scraper-97a3ebea50003e71/dep-lib-scraper","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-4df59249114547d8/dep-lib-selectors b/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-4df59249114547d8/dep-lib-selectors new file mode 100644 index 0000000..8a56d9b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-4df59249114547d8/dep-lib-selectors differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-4df59249114547d8/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-4df59249114547d8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-4df59249114547d8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-4df59249114547d8/lib-selectors b/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-4df59249114547d8/lib-selectors new file mode 100644 index 0000000..e7511b4 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-4df59249114547d8/lib-selectors @@ -0,0 +1 @@ +f652c7a45e11237b \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-4df59249114547d8/lib-selectors.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-4df59249114547d8/lib-selectors.json new file mode 100644 index 0000000..4eb1bbf --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-4df59249114547d8/lib-selectors.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"bench\"]","target":18301272685162166244,"profile":8276155916380437441,"path":2177853817784095536,"deps":[[403167652641725433,"servo_arc",false,1625527404819393839],[1764276339024939380,"phf",false,15695708363885818608],[2687729594444538932,"debug_unreachable",false,9754738614369676465],[3666196340704888985,"smallvec",false,14194441167904933901],[5658260411229319297,"build_script_build",false,15422898045930869000],[6995234255362136112,"precomputed_hash",false,1484293202274817944],[7492350663910880704,"cssparser",false,136704539213140621],[7521345276086848634,"fxhash",false,2871866408467999720],[9504753771229857410,"derive_more",false,11892057189578275394],[12848154260885479101,"bitflags",false,5904383020376855021],[13066042571740262168,"log",false,1661767345955543619]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/selectors-4df59249114547d8/dep-lib-selectors","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-5717698d2147172f/build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-5717698d2147172f/build-script-build-script-build new file mode 100644 index 0000000..9bf0fb8 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-5717698d2147172f/build-script-build-script-build @@ -0,0 +1 @@ +99505fb4e7cf730b \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-5717698d2147172f/build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-5717698d2147172f/build-script-build-script-build.json new file mode 100644 index 0000000..25ed113 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-5717698d2147172f/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"bench\"]","target":12318548087768197662,"profile":3033921117576893,"path":13472646309042386456,"deps":[[8351446744408386070,"phf_codegen",false,10588526077544446187]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/selectors-5717698d2147172f/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-5717698d2147172f/dep-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-5717698d2147172f/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-5717698d2147172f/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-5717698d2147172f/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-5717698d2147172f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-5717698d2147172f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-ef7a1a7cb6ce8753/run-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-ef7a1a7cb6ce8753/run-build-script-build-script-build new file mode 100644 index 0000000..1dbfe8e --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-ef7a1a7cb6ce8753/run-build-script-build-script-build @@ -0,0 +1 @@ +0891c60a0f2409d6 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-ef7a1a7cb6ce8753/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-ef7a1a7cb6ce8753/run-build-script-build-script-build.json new file mode 100644 index 0000000..b12901d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/selectors-ef7a1a7cb6ce8753/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[5658260411229319297,"build_script_build",false,825231750809473177]],"local":[{"Precalculated":"0.25.0"}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-36ae8a7a22049ef5/run-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-36ae8a7a22049ef5/run-build-script-build-script-build new file mode 100644 index 0000000..607cebd --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-36ae8a7a22049ef5/run-build-script-build-script-build @@ -0,0 +1 @@ +3420226cf94112f1 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-36ae8a7a22049ef5/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-36ae8a7a22049ef5/run-build-script-build-script-build.json new file mode 100644 index 0000000..2278d7a --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-36ae8a7a22049ef5/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[10656518421724629931,"build_script_build",false,11395704523948179763]],"local":[{"RerunIfChanged":{"output":"debug/build/serde-36ae8a7a22049ef5/output","paths":["build.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-9af645a775cf9f01/dep-lib-serde b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-9af645a775cf9f01/dep-lib-serde new file mode 100644 index 0000000..ec0cf69 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-9af645a775cf9f01/dep-lib-serde differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-9af645a775cf9f01/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-9af645a775cf9f01/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-9af645a775cf9f01/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-9af645a775cf9f01/lib-serde b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-9af645a775cf9f01/lib-serde new file mode 100644 index 0000000..c29e646 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-9af645a775cf9f01/lib-serde @@ -0,0 +1 @@ +c91871501f5028a2 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-9af645a775cf9f01/lib-serde.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-9af645a775cf9f01/lib-serde.json new file mode 100644 index 0000000..0cd27a7 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-9af645a775cf9f01/lib-serde.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":11327258112168116673,"profile":8276155916380437441,"path":10593835462578803494,"deps":[[7262577012435935306,"serde_core",false,6615681731637078819],[10656518421724629931,"build_script_build",false,17371019252238262324]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-9af645a775cf9f01/dep-lib-serde","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-afadcf3533f50ff3/build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-afadcf3533f50ff3/build-script-build-script-build new file mode 100644 index 0000000..3ce1a23 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-afadcf3533f50ff3/build-script-build-script-build @@ -0,0 +1 @@ +33413e33e3ac259e \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-afadcf3533f50ff3/build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-afadcf3533f50ff3/build-script-build-script-build.json new file mode 100644 index 0000000..66a80b3 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-afadcf3533f50ff3/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":3033921117576893,"path":4184458396422613491,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-afadcf3533f50ff3/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-afadcf3533f50ff3/dep-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-afadcf3533f50ff3/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-afadcf3533f50ff3/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-afadcf3533f50ff3/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-afadcf3533f50ff3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde-afadcf3533f50ff3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-42463c873814e1da/run-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-42463c873814e1da/run-build-script-build-script-build new file mode 100644 index 0000000..bac7ad0 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-42463c873814e1da/run-build-script-build-script-build @@ -0,0 +1 @@ +b70fcef24e2b40be \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-42463c873814e1da/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-42463c873814e1da/run-build-script-build-script-build.json new file mode 100644 index 0000000..dc6fbb1 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-42463c873814e1da/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[7262577012435935306,"build_script_build",false,17136349512018416551]],"local":[{"RerunIfChanged":{"output":"debug/build/serde_core-42463c873814e1da/output","paths":["build.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-50b4738178e48ed3/build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-50b4738178e48ed3/build-script-build-script-build new file mode 100644 index 0000000..465da27 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-50b4738178e48ed3/build-script-build-script-build @@ -0,0 +1 @@ +a7d3cbc2168bd0ed \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-50b4738178e48ed3/build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-50b4738178e48ed3/build-script-build-script-build.json new file mode 100644 index 0000000..7f4e40d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-50b4738178e48ed3/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":3033921117576893,"path":9382027963482802372,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_core-50b4738178e48ed3/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-50b4738178e48ed3/dep-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-50b4738178e48ed3/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-50b4738178e48ed3/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-50b4738178e48ed3/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-50b4738178e48ed3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-50b4738178e48ed3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-d96f7512d0867ca5/dep-lib-serde_core b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-d96f7512d0867ca5/dep-lib-serde_core new file mode 100644 index 0000000..b5ed634 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-d96f7512d0867ca5/dep-lib-serde_core differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-d96f7512d0867ca5/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-d96f7512d0867ca5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-d96f7512d0867ca5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-d96f7512d0867ca5/lib-serde_core b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-d96f7512d0867ca5/lib-serde_core new file mode 100644 index 0000000..bf2dfeb --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-d96f7512d0867ca5/lib-serde_core @@ -0,0 +1 @@ +23eb44c97b9fcf5b \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-d96f7512d0867ca5/lib-serde_core.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-d96f7512d0867ca5/lib-serde_core.json new file mode 100644 index 0000000..4aac42e --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/serde_core-d96f7512d0867ca5/lib-serde_core.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":6810695588070812737,"profile":8276155916380437441,"path":17978131071531296502,"deps":[[7262577012435935306,"build_script_build",false,13709004883796823991]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_core-d96f7512d0867ca5/dep-lib-serde_core","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/servo_arc-0740b3386ca058d0/dep-lib-servo_arc b/src-tauri/html_scraper/target/owl/debug/.fingerprint/servo_arc-0740b3386ca058d0/dep-lib-servo_arc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/servo_arc-0740b3386ca058d0/dep-lib-servo_arc differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/servo_arc-0740b3386ca058d0/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/servo_arc-0740b3386ca058d0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/servo_arc-0740b3386ca058d0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/servo_arc-0740b3386ca058d0/lib-servo_arc b/src-tauri/html_scraper/target/owl/debug/.fingerprint/servo_arc-0740b3386ca058d0/lib-servo_arc new file mode 100644 index 0000000..dc62b89 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/servo_arc-0740b3386ca058d0/lib-servo_arc @@ -0,0 +1 @@ +2f2decf08f088f16 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/servo_arc-0740b3386ca058d0/lib-servo_arc.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/servo_arc-0740b3386ca058d0/lib-servo_arc.json new file mode 100644 index 0000000..ff8c3e5 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/servo_arc-0740b3386ca058d0/lib-servo_arc.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"gecko_refcount_logging\", \"serde\", \"servo\"]","target":7827887664671662080,"profile":8276155916380437441,"path":17267836162935998812,"deps":[[4462517779602467004,"stable_deref_trait",false,18021156106286411668]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/servo_arc-0740b3386ca058d0/dep-lib-servo_arc","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-1fcf29601dcb3ded/dep-lib-siphasher b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-1fcf29601dcb3ded/dep-lib-siphasher new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-1fcf29601dcb3ded/dep-lib-siphasher differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-1fcf29601dcb3ded/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-1fcf29601dcb3ded/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-1fcf29601dcb3ded/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-1fcf29601dcb3ded/lib-siphasher b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-1fcf29601dcb3ded/lib-siphasher new file mode 100644 index 0000000..bc01206 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-1fcf29601dcb3ded/lib-siphasher @@ -0,0 +1 @@ +addc5419245e86e8 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-1fcf29601dcb3ded/lib-siphasher.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-1fcf29601dcb3ded/lib-siphasher.json new file mode 100644 index 0000000..a5771c5 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-1fcf29601dcb3ded/lib-siphasher.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"serde\", \"serde_json\", \"serde_no_std\", \"serde_std\", \"std\"]","target":6846127388476139628,"profile":3033921117576893,"path":11718900784615148168,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/siphasher-1fcf29601dcb3ded/dep-lib-siphasher","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/dep-lib-siphasher b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/dep-lib-siphasher new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/dep-lib-siphasher differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/lib-siphasher b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/lib-siphasher new file mode 100644 index 0000000..3557181 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/lib-siphasher @@ -0,0 +1 @@ +a99f438c5ac4798a \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/lib-siphasher.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/lib-siphasher.json new file mode 100644 index 0000000..0af3c8d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/lib-siphasher.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"serde\", \"serde_json\", \"serde_no_std\", \"serde_std\", \"std\"]","target":6846127388476139628,"profile":8276155916380437441,"path":14427627578243790336,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/siphasher-3fafa0cf348dee4c/dep-lib-siphasher","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-d9bc522279c35d09/dep-lib-siphasher b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-d9bc522279c35d09/dep-lib-siphasher new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-d9bc522279c35d09/dep-lib-siphasher differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-d9bc522279c35d09/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-d9bc522279c35d09/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-d9bc522279c35d09/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-d9bc522279c35d09/lib-siphasher b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-d9bc522279c35d09/lib-siphasher new file mode 100644 index 0000000..4408742 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-d9bc522279c35d09/lib-siphasher @@ -0,0 +1 @@ +754bfddb1e5f2e82 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-d9bc522279c35d09/lib-siphasher.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-d9bc522279c35d09/lib-siphasher.json new file mode 100644 index 0000000..014b2e0 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-d9bc522279c35d09/lib-siphasher.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"serde\", \"serde_json\", \"serde_no_std\", \"serde_std\", \"std\"]","target":6846127388476139628,"profile":8276155916380437441,"path":11718900784615148168,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/siphasher-d9bc522279c35d09/dep-lib-siphasher","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/dep-lib-siphasher b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/dep-lib-siphasher new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/dep-lib-siphasher differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/lib-siphasher b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/lib-siphasher new file mode 100644 index 0000000..adff3ad --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/lib-siphasher @@ -0,0 +1 @@ +cf7921f432dc275b \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/lib-siphasher.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/lib-siphasher.json new file mode 100644 index 0000000..c5482b8 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/lib-siphasher.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"serde\", \"serde_json\", \"serde_no_std\", \"serde_std\", \"std\"]","target":6846127388476139628,"profile":3033921117576893,"path":14427627578243790336,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/siphasher-e9d3e929006ac3ab/dep-lib-siphasher","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/smallvec-62042a0d847875ed/dep-lib-smallvec b/src-tauri/html_scraper/target/owl/debug/.fingerprint/smallvec-62042a0d847875ed/dep-lib-smallvec new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/smallvec-62042a0d847875ed/dep-lib-smallvec differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/smallvec-62042a0d847875ed/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/smallvec-62042a0d847875ed/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/smallvec-62042a0d847875ed/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/smallvec-62042a0d847875ed/lib-smallvec b/src-tauri/html_scraper/target/owl/debug/.fingerprint/smallvec-62042a0d847875ed/lib-smallvec new file mode 100644 index 0000000..18816a8 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/smallvec-62042a0d847875ed/lib-smallvec @@ -0,0 +1 @@ +0d88276e09c9fcc4 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/smallvec-62042a0d847875ed/lib-smallvec.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/smallvec-62042a0d847875ed/lib-smallvec.json new file mode 100644 index 0000000..56be7b7 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/smallvec-62042a0d847875ed/lib-smallvec.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"arbitrary\", \"bincode\", \"const_generics\", \"const_new\", \"debugger_visualizer\", \"drain_filter\", \"drain_keep_rest\", \"impl_bincode\", \"malloc_size_of\", \"may_dangle\", \"serde\", \"specialization\", \"union\", \"unty\", \"write\"]","target":9091769176333489034,"profile":8276155916380437441,"path":10967196498251714325,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/smallvec-62042a0d847875ed/dep-lib-smallvec","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/stable_deref_trait-0337c135e7a2ce00/dep-lib-stable_deref_trait b/src-tauri/html_scraper/target/owl/debug/.fingerprint/stable_deref_trait-0337c135e7a2ce00/dep-lib-stable_deref_trait new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/stable_deref_trait-0337c135e7a2ce00/dep-lib-stable_deref_trait differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/stable_deref_trait-0337c135e7a2ce00/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/stable_deref_trait-0337c135e7a2ce00/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/stable_deref_trait-0337c135e7a2ce00/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/stable_deref_trait-0337c135e7a2ce00/lib-stable_deref_trait b/src-tauri/html_scraper/target/owl/debug/.fingerprint/stable_deref_trait-0337c135e7a2ce00/lib-stable_deref_trait new file mode 100644 index 0000000..bfd2005 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/stable_deref_trait-0337c135e7a2ce00/lib-stable_deref_trait @@ -0,0 +1 @@ +942f109dff0118fa \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/stable_deref_trait-0337c135e7a2ce00/lib-stable_deref_trait.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/stable_deref_trait-0337c135e7a2ce00/lib-stable_deref_trait.json new file mode 100644 index 0000000..3513a9d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/stable_deref_trait-0337c135e7a2ce00/lib-stable_deref_trait.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":5317002649412810881,"profile":8276155916380437441,"path":6976652667278790719,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/stable_deref_trait-0337c135e7a2ce00/dep-lib-stable_deref_trait","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache-686a5974b6d8d8f0/dep-lib-string_cache b/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache-686a5974b6d8d8f0/dep-lib-string_cache new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache-686a5974b6d8d8f0/dep-lib-string_cache differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache-686a5974b6d8d8f0/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache-686a5974b6d8d8f0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache-686a5974b6d8d8f0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache-686a5974b6d8d8f0/lib-string_cache b/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache-686a5974b6d8d8f0/lib-string_cache new file mode 100644 index 0000000..9dc3ebe --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache-686a5974b6d8d8f0/lib-string_cache @@ -0,0 +1 @@ +ac744175c1059414 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache-686a5974b6d8d8f0/lib-string_cache.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache-686a5974b6d8d8f0/lib-string_cache.json new file mode 100644 index 0000000..356446f --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache-686a5974b6d8d8f0/lib-string_cache.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"serde\", \"serde_support\"]","declared_features":"[\"default\", \"malloc_size_of\", \"serde\", \"serde_support\"]","target":8038205195467990777,"profile":8276155916380437441,"path":17223908927111041296,"deps":[[2687729594444538932,"debug_unreachable",false,9754738614369676465],[4495526598637097934,"parking_lot",false,18047463378757200671],[6995234255362136112,"precomputed_hash",false,1484293202274817944],[9060940869921439196,"phf_shared",false,2477246615744959163],[10656518421724629931,"serde",false,11684677328636549321]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/string_cache-686a5974b6d8d8f0/dep-lib-string_cache","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache_codegen-a13c66493fd49489/dep-lib-string_cache_codegen b/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache_codegen-a13c66493fd49489/dep-lib-string_cache_codegen new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache_codegen-a13c66493fd49489/dep-lib-string_cache_codegen differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache_codegen-a13c66493fd49489/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache_codegen-a13c66493fd49489/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache_codegen-a13c66493fd49489/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache_codegen-a13c66493fd49489/lib-string_cache_codegen b/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache_codegen-a13c66493fd49489/lib-string_cache_codegen new file mode 100644 index 0000000..666a2e5 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache_codegen-a13c66493fd49489/lib-string_cache_codegen @@ -0,0 +1 @@ +a3263cbcd7023132 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache_codegen-a13c66493fd49489/lib-string_cache_codegen.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache_codegen-a13c66493fd49489/lib-string_cache_codegen.json new file mode 100644 index 0000000..4bcd5de --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/string_cache_codegen-a13c66493fd49489/lib-string_cache_codegen.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":4822312724886654266,"profile":3033921117576893,"path":13298400039011249331,"deps":[[373107762698212489,"proc_macro2",false,11352822849591009774],[9060940869921439196,"phf_shared",false,6527085793670228801],[17990358020177143287,"quote",false,18137893867194747271],[18124350542602697595,"phf_generator",false,17725863451963423025]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/string_cache_codegen-a13c66493fd49489/dep-lib-string_cache_codegen","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/syn-c542fcde6b325b88/dep-lib-syn b/src-tauri/html_scraper/target/owl/debug/.fingerprint/syn-c542fcde6b325b88/dep-lib-syn new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/syn-c542fcde6b325b88/dep-lib-syn differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/syn-c542fcde6b325b88/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/syn-c542fcde6b325b88/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/syn-c542fcde6b325b88/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/syn-c542fcde6b325b88/lib-syn b/src-tauri/html_scraper/target/owl/debug/.fingerprint/syn-c542fcde6b325b88/lib-syn new file mode 100644 index 0000000..94d3fc1 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/syn-c542fcde6b325b88/lib-syn @@ -0,0 +1 @@ +93aebd94e00d67f9 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/syn-c542fcde6b325b88/lib-syn.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/syn-c542fcde6b325b88/lib-syn.json new file mode 100644 index 0000000..4dae0e8 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/syn-c542fcde6b325b88/lib-syn.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\"]","declared_features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"test\", \"visit\", \"visit-mut\"]","target":9442126953582868550,"profile":3033921117576893,"path":5970787925620428768,"deps":[[373107762698212489,"proc_macro2",false,11352822849591009774],[10637008577242657367,"unicode_ident",false,2958865658703586715],[17990358020177143287,"quote",false,18137893867194747271]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/syn-c542fcde6b325b88/dep-lib-syn","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/dep-lib-tendril b/src-tauri/html_scraper/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/dep-lib-tendril new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/dep-lib-tendril differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/lib-tendril b/src-tauri/html_scraper/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/lib-tendril new file mode 100644 index 0000000..8c40f39 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/lib-tendril @@ -0,0 +1 @@ +c6c6201a0178d670 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/lib-tendril.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/lib-tendril.json new file mode 100644 index 0000000..ed773d4 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/lib-tendril.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"bench\", \"encoding\", \"encoding_rs\"]","target":11953572604185802203,"profile":8276155916380437441,"path":1567848641023780023,"deps":[[3353245243264097488,"futf",false,1316095294416154012],[4359956005902820838,"utf8",false,6829597203760734528],[10952224881603935644,"mac",false,3938639248673190958]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tendril-117c4ad9dedd98e9/dep-lib-tendril","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-1c93938e89dffc58/run-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-1c93938e89dffc58/run-build-script-build-script-build new file mode 100644 index 0000000..477a173 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-1c93938e89dffc58/run-build-script-build-script-build @@ -0,0 +1 @@ +2a84409ace9a8634 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-1c93938e89dffc58/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-1c93938e89dffc58/run-build-script-build-script-build.json new file mode 100644 index 0000000..2779e29 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-1c93938e89dffc58/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8008191657135824715,"build_script_build",false,14983509580146283819]],"local":[{"RerunIfChanged":{"output":"debug/build/thiserror-1c93938e89dffc58/output","paths":["build/probe.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":"1"}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-5a2ce00f8f4a9ca3/dep-lib-thiserror b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-5a2ce00f8f4a9ca3/dep-lib-thiserror new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-5a2ce00f8f4a9ca3/dep-lib-thiserror differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-5a2ce00f8f4a9ca3/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-5a2ce00f8f4a9ca3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-5a2ce00f8f4a9ca3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-5a2ce00f8f4a9ca3/lib-thiserror b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-5a2ce00f8f4a9ca3/lib-thiserror new file mode 100644 index 0000000..2b8f527 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-5a2ce00f8f4a9ca3/lib-thiserror @@ -0,0 +1 @@ +30ab3bd67a22d3ae \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-5a2ce00f8f4a9ca3/lib-thiserror.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-5a2ce00f8f4a9ca3/lib-thiserror.json new file mode 100644 index 0000000..f89a2c0 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-5a2ce00f8f4a9ca3/lib-thiserror.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":13586076721141200315,"profile":8276155916380437441,"path":8330822632269504242,"deps":[[8008191657135824715,"build_script_build",false,3784882748993340458],[15291996789830541733,"thiserror_impl",false,17429823361347098392]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-5a2ce00f8f4a9ca3/dep-lib-thiserror","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/build-script-build-script-build new file mode 100644 index 0000000..ded9bc3 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/build-script-build-script-build @@ -0,0 +1 @@ +2b1548bd931ef0cf \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/build-script-build-script-build.json new file mode 100644 index 0000000..f64629b --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":3033921117576893,"path":3465689967842960980,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-6457224d9763f31b/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/dep-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-impl-d4e25a678f0789c5/dep-lib-thiserror_impl b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-impl-d4e25a678f0789c5/dep-lib-thiserror_impl new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-impl-d4e25a678f0789c5/dep-lib-thiserror_impl differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-impl-d4e25a678f0789c5/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-impl-d4e25a678f0789c5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-impl-d4e25a678f0789c5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-impl-d4e25a678f0789c5/lib-thiserror_impl b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-impl-d4e25a678f0789c5/lib-thiserror_impl new file mode 100644 index 0000000..48ac4c8 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-impl-d4e25a678f0789c5/lib-thiserror_impl @@ -0,0 +1 @@ +1817e6feff2be3f1 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-impl-d4e25a678f0789c5/lib-thiserror_impl.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-impl-d4e25a678f0789c5/lib-thiserror_impl.json new file mode 100644 index 0000000..5d87748 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/thiserror-impl-d4e25a678f0789c5/lib-thiserror_impl.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":6216210811039475267,"profile":3033921117576893,"path":13901972743864971099,"deps":[[373107762698212489,"proc_macro2",false,11352822849591009774],[17332570067994900305,"syn",false,17971348096264547987],[17990358020177143287,"quote",false,18137893867194747271]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-impl-d4e25a678f0789c5/dep-lib-thiserror_impl","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-ident-b558ea2496fc600b/dep-lib-unicode_ident b/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-ident-b558ea2496fc600b/dep-lib-unicode_ident new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-ident-b558ea2496fc600b/dep-lib-unicode_ident differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-ident-b558ea2496fc600b/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-ident-b558ea2496fc600b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-ident-b558ea2496fc600b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-ident-b558ea2496fc600b/lib-unicode_ident b/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-ident-b558ea2496fc600b/lib-unicode_ident new file mode 100644 index 0000000..161becd --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-ident-b558ea2496fc600b/lib-unicode_ident @@ -0,0 +1 @@ +9b2521cda3001029 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-ident-b558ea2496fc600b/lib-unicode_ident.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-ident-b558ea2496fc600b/lib-unicode_ident.json new file mode 100644 index 0000000..2062f36 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-ident-b558ea2496fc600b/lib-unicode_ident.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":5438535436255082082,"profile":3033921117576893,"path":13163740923502486748,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicode-ident-b558ea2496fc600b/dep-lib-unicode_ident","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-width-20fcc90c7c561b5e/dep-lib-unicode_width b/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-width-20fcc90c7c561b5e/dep-lib-unicode_width new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-width-20fcc90c7c561b5e/dep-lib-unicode_width differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-width-20fcc90c7c561b5e/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-width-20fcc90c7c561b5e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-width-20fcc90c7c561b5e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-width-20fcc90c7c561b5e/lib-unicode_width b/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-width-20fcc90c7c561b5e/lib-unicode_width new file mode 100644 index 0000000..c04a525 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-width-20fcc90c7c561b5e/lib-unicode_width @@ -0,0 +1 @@ +53416b805f487ea3 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-width-20fcc90c7c561b5e/lib-unicode_width.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-width-20fcc90c7c561b5e/lib-unicode_width.json new file mode 100644 index 0000000..4c0c1ca --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/unicode-width-20fcc90c7c561b5e/lib-unicode_width.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"cjk\", \"default\"]","declared_features":"[\"cjk\", \"core\", \"default\", \"no_std\", \"rustc-dep-of-std\", \"std\"]","target":16876147670056848225,"profile":8276155916380437441,"path":7451267599816890634,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicode-width-20fcc90c7c561b5e/dep-lib-unicode_width","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/dep-lib-utf8 b/src-tauri/html_scraper/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/dep-lib-utf8 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/dep-lib-utf8 differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/lib-utf8 b/src-tauri/html_scraper/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/lib-utf8 new file mode 100644 index 0000000..1bbf3cb --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/lib-utf8 @@ -0,0 +1 @@ +40e128d9789ac75e \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/lib-utf8.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/lib-utf8.json new file mode 100644 index 0000000..d5852b5 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/lib-utf8.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":10206970129552530490,"profile":8276155916380437441,"path":4893332698562544415,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/utf-8-cdf51886c64f6cca/dep-lib-utf8","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/dep-lib-version_check b/src-tauri/html_scraper/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/dep-lib-version_check new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/dep-lib-version_check differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/lib-version_check b/src-tauri/html_scraper/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/lib-version_check new file mode 100644 index 0000000..0a2868b --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/lib-version_check @@ -0,0 +1 @@ +667b3f08b3d2536c \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/lib-version_check.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/lib-version_check.json new file mode 100644 index 0000000..e633561 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/lib-version_check.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":18099224280402537651,"profile":3033921117576893,"path":12121388095467597986,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/version_check-bc29451f0514ce26/dep-lib-version_check","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-01ceee95be2bda4d/dep-lib-zerocopy b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-01ceee95be2bda4d/dep-lib-zerocopy new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-01ceee95be2bda4d/dep-lib-zerocopy differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-01ceee95be2bda4d/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-01ceee95be2bda4d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-01ceee95be2bda4d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-01ceee95be2bda4d/lib-zerocopy b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-01ceee95be2bda4d/lib-zerocopy new file mode 100644 index 0000000..12823b2 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-01ceee95be2bda4d/lib-zerocopy @@ -0,0 +1 @@ +f8ffbdc3759825a2 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-01ceee95be2bda4d/lib-zerocopy.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-01ceee95be2bda4d/lib-zerocopy.json new file mode 100644 index 0000000..ea7a727 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-01ceee95be2bda4d/lib-zerocopy.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"simd\"]","declared_features":"[\"__internal_use_only_features_that_work_on_stable\", \"alloc\", \"derive\", \"float-nightly\", \"simd\", \"simd-nightly\", \"std\", \"zerocopy-derive\"]","target":3084901215544504908,"profile":8276155916380437441,"path":17011602485865747278,"deps":[[13102401248396471120,"build_script_build",false,17182470893208407225]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerocopy-01ceee95be2bda4d/dep-lib-zerocopy","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-20a5e624ae883db2/dep-lib-zerocopy b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-20a5e624ae883db2/dep-lib-zerocopy new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-20a5e624ae883db2/dep-lib-zerocopy differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-20a5e624ae883db2/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-20a5e624ae883db2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-20a5e624ae883db2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-20a5e624ae883db2/lib-zerocopy b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-20a5e624ae883db2/lib-zerocopy new file mode 100644 index 0000000..0e20e38 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-20a5e624ae883db2/lib-zerocopy @@ -0,0 +1 @@ +39cbe3a35e28bbf0 \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-20a5e624ae883db2/lib-zerocopy.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-20a5e624ae883db2/lib-zerocopy.json new file mode 100644 index 0000000..0a04c61 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-20a5e624ae883db2/lib-zerocopy.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"simd\"]","declared_features":"[\"__internal_use_only_features_that_work_on_stable\", \"alloc\", \"derive\", \"float-nightly\", \"simd\", \"simd-nightly\", \"std\", \"zerocopy-derive\"]","target":3084901215544504908,"profile":3033921117576893,"path":17011602485865747278,"deps":[[13102401248396471120,"build_script_build",false,17182470893208407225]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerocopy-20a5e624ae883db2/dep-lib-zerocopy","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-ae1ccd06155afaf9/build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-ae1ccd06155afaf9/build-script-build-script-build new file mode 100644 index 0000000..3fd49b0 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-ae1ccd06155afaf9/build-script-build-script-build @@ -0,0 +1 @@ +152b84926ba0be6f \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-ae1ccd06155afaf9/build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-ae1ccd06155afaf9/build-script-build-script-build.json new file mode 100644 index 0000000..0cf7329 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-ae1ccd06155afaf9/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"simd\"]","declared_features":"[\"__internal_use_only_features_that_work_on_stable\", \"alloc\", \"derive\", \"float-nightly\", \"simd\", \"simd-nightly\", \"std\", \"zerocopy-derive\"]","target":5408242616063297496,"profile":3033921117576893,"path":4970674899193408944,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerocopy-ae1ccd06155afaf9/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-ae1ccd06155afaf9/dep-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-ae1ccd06155afaf9/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-ae1ccd06155afaf9/dep-build-script-build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-ae1ccd06155afaf9/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-ae1ccd06155afaf9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-ae1ccd06155afaf9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-c4e3836daa31bc40/run-build-script-build-script-build b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-c4e3836daa31bc40/run-build-script-build-script-build new file mode 100644 index 0000000..b8fd194 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-c4e3836daa31bc40/run-build-script-build-script-build @@ -0,0 +1 @@ +b90c2da13d6674ee \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-c4e3836daa31bc40/run-build-script-build-script-build.json b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-c4e3836daa31bc40/run-build-script-build-script-build.json new file mode 100644 index 0000000..d8e71c5 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/.fingerprint/zerocopy-c4e3836daa31bc40/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13102401248396471120,"build_script_build",false,8052049567665105685]],"local":[{"RerunIfChanged":{"output":"debug/build/zerocopy-c4e3836daa31bc40/output","paths":["build.rs","Cargo.toml"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/ahash-3dd7d030eeabe912/build-script-build b/src-tauri/html_scraper/target/owl/debug/build/ahash-3dd7d030eeabe912/build-script-build new file mode 100755 index 0000000..257003d Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/ahash-3dd7d030eeabe912/build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/ahash-3dd7d030eeabe912/build_script_build-3dd7d030eeabe912 b/src-tauri/html_scraper/target/owl/debug/build/ahash-3dd7d030eeabe912/build_script_build-3dd7d030eeabe912 new file mode 100755 index 0000000..257003d Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/ahash-3dd7d030eeabe912/build_script_build-3dd7d030eeabe912 differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/ahash-3dd7d030eeabe912/build_script_build-3dd7d030eeabe912.d b/src-tauri/html_scraper/target/owl/debug/build/ahash-3dd7d030eeabe912/build_script_build-3dd7d030eeabe912.d new file mode 100644 index 0000000..0fdef40 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/ahash-3dd7d030eeabe912/build_script_build-3dd7d030eeabe912.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/ahash-3dd7d030eeabe912/build_script_build-3dd7d030eeabe912: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/ahash-3dd7d030eeabe912/build_script_build-3dd7d030eeabe912.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/build.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/build/ahash-c55aa2f3a000e411/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/build/ahash-c55aa2f3a000e411/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/ahash-c55aa2f3a000e411/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/ahash-c55aa2f3a000e411/output b/src-tauri/html_scraper/target/owl/debug/build/ahash-c55aa2f3a000e411/output new file mode 100644 index 0000000..94882eb --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/ahash-c55aa2f3a000e411/output @@ -0,0 +1,4 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(specialize) +cargo:rustc-check-cfg=cfg(folded_multiply) +cargo:rustc-cfg=folded_multiply diff --git a/src-tauri/html_scraper/target/owl/debug/build/ahash-c55aa2f3a000e411/root-output b/src-tauri/html_scraper/target/owl/debug/build/ahash-c55aa2f3a000e411/root-output new file mode 100644 index 0000000..45daa06 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/ahash-c55aa2f3a000e411/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/ahash-c55aa2f3a000e411/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/ahash-c55aa2f3a000e411/stderr b/src-tauri/html_scraper/target/owl/debug/build/ahash-c55aa2f3a000e411/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/owl/debug/build/getrandom-1bc8302ea0358cac/build-script-build b/src-tauri/html_scraper/target/owl/debug/build/getrandom-1bc8302ea0358cac/build-script-build new file mode 100755 index 0000000..23819c5 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/getrandom-1bc8302ea0358cac/build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/getrandom-1bc8302ea0358cac/build_script_build-1bc8302ea0358cac b/src-tauri/html_scraper/target/owl/debug/build/getrandom-1bc8302ea0358cac/build_script_build-1bc8302ea0358cac new file mode 100755 index 0000000..23819c5 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/getrandom-1bc8302ea0358cac/build_script_build-1bc8302ea0358cac differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/getrandom-1bc8302ea0358cac/build_script_build-1bc8302ea0358cac.d b/src-tauri/html_scraper/target/owl/debug/build/getrandom-1bc8302ea0358cac/build_script_build-1bc8302ea0358cac.d new file mode 100644 index 0000000..b041bb0 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/getrandom-1bc8302ea0358cac/build_script_build-1bc8302ea0358cac.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/getrandom-1bc8302ea0358cac/build_script_build-1bc8302ea0358cac: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/getrandom-1bc8302ea0358cac/build_script_build-1bc8302ea0358cac.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/build.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/build/getrandom-aeef0a1ac5c0c405/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/build/getrandom-aeef0a1ac5c0c405/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/getrandom-aeef0a1ac5c0c405/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/getrandom-aeef0a1ac5c0c405/output b/src-tauri/html_scraper/target/owl/debug/build/getrandom-aeef0a1ac5c0c405/output new file mode 100644 index 0000000..d15ba9a --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/getrandom-aeef0a1ac5c0c405/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=build.rs diff --git a/src-tauri/html_scraper/target/owl/debug/build/getrandom-aeef0a1ac5c0c405/root-output b/src-tauri/html_scraper/target/owl/debug/build/getrandom-aeef0a1ac5c0c405/root-output new file mode 100644 index 0000000..fbcf6ab --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/getrandom-aeef0a1ac5c0c405/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/getrandom-aeef0a1ac5c0c405/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/getrandom-aeef0a1ac5c0c405/stderr b/src-tauri/html_scraper/target/owl/debug/build/getrandom-aeef0a1ac5c0c405/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/owl/debug/build/html5ever-2971a9ee54624ba3/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/build/html5ever-2971a9ee54624ba3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/html5ever-2971a9ee54624ba3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/html5ever-2971a9ee54624ba3/out/rules.rs b/src-tauri/html_scraper/target/owl/debug/build/html5ever-2971a9ee54624ba3/out/rules.rs new file mode 100644 index 0000000..e669024 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/html5ever-2971a9ee54624ba3/out/rules.rs @@ -0,0 +1,1656 @@ +use markup5ever :: { +expanded_name , local_name , namespace_prefix , namespace_url , ns +} ; use crate :: tokenizer :: states :: { +Plaintext , Rawtext , Rcdata , ScriptData +} ; use crate :: tree_builder :: tag_sets :: * ; use crate :: tree_builder :: types :: * ; use std :: borrow :: ToOwned ; use crate :: tendril :: SliceExt ; fn any_not_whitespace (x : & StrTendril) -> bool { +x . chars () . any (| c | ! c . is_ascii_whitespace ()) +} fn current_node < Handle > (open_elems : & [Handle]) -> & Handle { +open_elems . last () . expect ("no current element") +} # [doc (hidden)] impl < Handle , Sink > TreeBuilder < Handle , Sink > where Handle : Clone , Sink : TreeSink < Handle = Handle > , { +fn step (& mut self , mode : InsertionMode , token : Token) -> ProcessResult < Handle > { +self . debug_step (mode , & token) ; match mode { +Initial => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => Done , CommentToken (text) => self . append_comment_to_doc (text) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +if ! self . opts . iframe_srcdoc { +self . unexpected (& token) ; self . set_quirks_mode (Quirks) ; +} Reprocess (BeforeHtml , token) +} , +} +} +} , BeforeHtml => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => Done , CommentToken (text) => self . append_comment_to_doc (text) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => { +self . create_root (tag . attrs) ; self . mode = BeforeHead ; Done +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("head") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => false , _ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => self . unexpected (& tag) , (_ , token) => { +self . create_root (vec ! ()) ; Reprocess (BeforeHead , token) +} , +} +} +} , BeforeHead => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => Done , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) => { +self . head_elem = Some (self . insert_element_for (tag)) ; self . mode = InHead ; Done +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("head") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => false , _ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => self . unexpected (& tag) , (_ , token) => { +self . head_elem = Some (self . insert_phantom (local_name ! ("head"))) ; Reprocess (InHead , token) +} , +} +} +} , InHead => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("base") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("basefont") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("bgsound") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("link") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) => { +self . insert_and_pop_element_for (tag) ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("title") , .. +}) => { +self . parse_raw_data (tag , Rcdata) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noscript") , .. +}) => { +if (! self . opts . scripting_enabled) && (tag . name == local_name ! ("noscript")) { +self . insert_element_for (tag) ; self . mode = InHeadNoscript ; Done +} else { +self . parse_raw_data (tag , Rawtext) +} +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) => { +let elem = create_element (& mut self . sink , QualName :: new (None , ns ! (html) , local_name ! ("script")) , tag . attrs) ; if self . is_fragment () { +self . sink . mark_script_already_started (& elem) ; +} self . insert_appropriately (AppendNode (elem . clone ()) , None) ; self . open_elems . push (elem) ; self . to_raw_text_mode (ScriptData) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("head") , .. +}) => { +self . pop () ; self . mode = AfterHead ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) => { +self . insert_element_for (tag) ; self . active_formatting . push (Marker) ; self . frameset_ok = false ; self . mode = InTemplate ; self . template_modes . push (InTemplate) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => { +if ! self . in_html_elem_named (local_name ! ("template")) { +self . unexpected (& tag) ; +} else { +self . generate_implied_end (thorough_implied_end) ; self . expect_to_close (local_name ! ("template")) ; self . clear_active_formatting_to_marker () ; self . template_modes . pop () ; self . mode = self . reset_insertion_mode () ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => false , _ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => self . unexpected (& tag) , (_ , token) => { +self . pop () ; Reprocess (AfterHead , token) +} , +} +} +} , InHeadNoscript => match token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("noscript") , .. +}) => { +self . pop () ; self . mode = InHead ; Done +} , CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => self . step (InHead , token) , CommentToken (_) => self . step (InHead , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("basefont") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("bgsound") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("link") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) => self . step (InHead , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noscript") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => false , _ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => self . unexpected (& tag) , (_ , token) => { +self . unexpected (& token) ; self . pop () ; Reprocess (InHead , token) +} , +} +} +} , AfterHead => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("body") , .. +}) => { +self . insert_element_for (tag) ; self . frameset_ok = false ; self . mode = InBody ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("frameset") , .. +}) => { +self . insert_element_for (tag) ; self . mode = InFrameset ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("base") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("basefont") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("bgsound") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("link") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("title") , .. +}) => { +self . unexpected (& token) ; let head = self . head_elem . as_ref () . expect ("no head element") . clone () ; self . push (& head) ; let result = self . step (InHead , token) ; self . remove_from_stack (& head) ; result +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => self . step (InHead , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => false , _ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => self . unexpected (& tag) , (_ , token) => { +self . insert_phantom (local_name ! ("body")) ; Reprocess (InBody , token) +} , +} +} +} , InBody => match token { +NullCharacterToken => self . unexpected (& token) , CharacterTokens (_ , text) => { +self . reconstruct_formatting () ; if any_not_whitespace (& text) { +self . frameset_ok = false ; +} self . append_text (text) +} , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => { +self . unexpected (& tag) ; if ! self . in_html_elem_named (local_name ! ("template")) { +let top = html_elem (& self . open_elems) ; self . sink . add_attrs_if_missing (top , tag . attrs) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("base") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("basefont") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("bgsound") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("link") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("title") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => { +self . step (InHead , token) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("body") , .. +}) => { +self . unexpected (& tag) ; match self . body_elem () . cloned () { +Some (ref node) if self . open_elems . len () != 1 && ! self . in_html_elem_named (local_name ! ("template")) => { +self . frameset_ok = false ; self . sink . add_attrs_if_missing (node , tag . attrs) +} , _ => { +} +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("frameset") , .. +}) => { +self . unexpected (& tag) ; if ! self . frameset_ok { +return Done ; +} let body = unwrap_or_return ! (self . body_elem () , Done) . clone () ; self . sink . remove_from_parent (& body) ; self . open_elems . truncate (1) ; self . insert_element_for (tag) ; self . mode = InFrameset ; Done +} , EOFToken => { +if ! self . template_modes . is_empty () { +self . step (InTemplate , token) +} else { +self . check_body_end () ; self . stop_parsing () +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) => { +if self . in_scope_named (default_scope , local_name ! ("body")) { +self . check_body_end () ; self . mode = AfterBody ; +} else { +self . sink . parse_error (Borrowed (" with no in scope")) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => { +if self . in_scope_named (default_scope , local_name ! ("body")) { +self . check_body_end () ; Reprocess (AfterBody , token) +} else { +self . sink . parse_error (Borrowed (" with no in scope")) ; Done +} +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("address") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("article") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("aside") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("blockquote") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("center") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("details") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dialog") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dir") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("div") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dl") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("fieldset") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("figcaption") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("figure") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("footer") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("header") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("hgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("main") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("nav") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("ol") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("p") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("search") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("section") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("summary") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("ul") , .. +}) => { +self . close_p_element_in_button_scope () ; self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("menu") , .. +}) => { +self . close_p_element_in_button_scope () ; self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h1") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h2") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h3") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h4") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h5") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h6") , .. +}) => { +self . close_p_element_in_button_scope () ; if self . current_node_in (heading_tag) { +self . sink . parse_error (Borrowed ("nested heading tags")) ; self . pop () ; +} self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("pre") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("listing") , .. +}) => { +self . close_p_element_in_button_scope () ; self . insert_element_for (tag) ; self . ignore_lf = true ; self . frameset_ok = false ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("form") , .. +}) => { +if self . form_elem . is_some () && ! self . in_html_elem_named (local_name ! ("template")) { +self . sink . parse_error (Borrowed ("nested forms")) ; +} else { +self . close_p_element_in_button_scope () ; let elem = self . insert_element_for (tag) ; if ! self . in_html_elem_named (local_name ! ("template")) { +self . form_elem = Some (elem) ; +} +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("li") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dd") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dt") , .. +}) => { +declare_tag_set ! (close_list = "li") ; declare_tag_set ! (close_defn = "dd" "dt") ; declare_tag_set ! (extra_special = [special_tag] - "address" "div" "p") ; let list = match tag . name { +local_name ! ("li") => true , local_name ! ("dd") | local_name ! ("dt") => false , _ => unreachable ! () , +} ; self . frameset_ok = false ; let mut to_close = None ; for node in self . open_elems . iter () . rev () { +let name = self . sink . elem_name (node) ; let can_close = if list { +close_list (name) +} else { +close_defn (name) +} ; if can_close { +to_close = Some (name . local . clone ()) ; break ; +} if extra_special (name) { +break ; +} +} match to_close { +Some (name) => { +self . generate_implied_end_except (name . clone ()) ; self . expect_to_close (name) ; +} None => () , +} self . close_p_element_in_button_scope () ; self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("plaintext") , .. +}) => { +self . close_p_element_in_button_scope () ; self . insert_element_for (tag) ; ToPlaintext +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("button") , .. +}) => { +if self . in_scope_named (default_scope , local_name ! ("button")) { +self . sink . parse_error (Borrowed ("nested buttons")) ; self . generate_implied_end (cursory_implied_end) ; self . pop_until_named (local_name ! ("button")) ; +} self . reconstruct_formatting () ; self . insert_element_for (tag) ; self . frameset_ok = false ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("address") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("article") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("aside") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("blockquote") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("button") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("center") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("details") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("dialog") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("dir") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("div") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("dl") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("fieldset") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("figcaption") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("figure") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("footer") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("header") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("hgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("listing") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("main") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("menu") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("nav") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("ol") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("pre") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("search") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("section") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("summary") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("ul") , .. +}) => { +if ! self . in_scope_named (default_scope , tag . name . clone ()) { +self . unexpected (& tag) ; +} else { +self . generate_implied_end (cursory_implied_end) ; self . expect_to_close (tag . name) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("form") , .. +}) => { +if ! self . in_html_elem_named (local_name ! ("template")) { +let node = match self . form_elem . take () { +None => { +self . sink . parse_error (Borrowed ("Null form element pointer on ")) ; return Done ; +} Some (x) => x , +} ; if ! self . in_scope (default_scope , | n | self . sink . same_node (& node , & n)) { +self . sink . parse_error (Borrowed ("Form element not in scope on ")) ; return Done ; +} self . generate_implied_end (cursory_implied_end) ; let current = self . current_node () . clone () ; self . remove_from_stack (& node) ; if ! self . sink . same_node (& current , & node) { +self . sink . parse_error (Borrowed ("Bad open element on ")) ; +} +} else { +if ! self . in_scope_named (default_scope , local_name ! ("form")) { +self . sink . parse_error (Borrowed ("Form element not in scope on ")) ; return Done ; +} self . generate_implied_end (cursory_implied_end) ; if ! self . current_node_named (local_name ! ("form")) { +self . sink . parse_error (Borrowed ("Bad open element on ")) ; +} self . pop_until_named (local_name ! ("form")) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("p") , .. +}) => { +if ! self . in_scope_named (button_scope , local_name ! ("p")) { +self . sink . parse_error (Borrowed ("No

tag to close")) ; self . insert_phantom (local_name ! ("p")) ; +} self . close_p_element () ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("li") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("dd") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("dt") , .. +}) => { +let in_scope = if tag . name == local_name ! ("li") { +self . in_scope_named (list_item_scope , tag . name . clone ()) +} else { +self . in_scope_named (default_scope , tag . name . clone ()) +} ; if in_scope { +self . generate_implied_end_except (tag . name . clone ()) ; self . expect_to_close (tag . name) ; +} else { +self . sink . parse_error (Borrowed ("No matching tag to close")) ; +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h1") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h2") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h3") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h4") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h5") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h6") , .. +}) => { +if self . in_scope (default_scope , | n | self . elem_in (& n , heading_tag)) { +self . generate_implied_end (cursory_implied_end) ; if ! self . current_node_named (tag . name) { +self . sink . parse_error (Borrowed ("Closing wrong heading tag")) ; +} self . pop_until (heading_tag) ; +} else { +self . sink . parse_error (Borrowed ("No heading tag to close")) ; +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("a") , .. +}) => { +self . handle_misnested_a_tags (& tag) ; self . reconstruct_formatting () ; self . create_formatting_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("b") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("big") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("code") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("em") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("font") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("i") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("s") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("small") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("strike") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("strong") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tt") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("u") , .. +}) => { +self . reconstruct_formatting () ; self . create_formatting_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("nobr") , .. +}) => { +self . reconstruct_formatting () ; if self . in_scope_named (default_scope , local_name ! ("nobr")) { +self . sink . parse_error (Borrowed ("Nested ")) ; self . adoption_agency (local_name ! ("nobr")) ; self . reconstruct_formatting () ; +} self . create_formatting_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("a") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("b") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("big") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("code") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("em") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("font") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("i") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("nobr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("s") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("small") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("strike") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("strong") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tt") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("u") , .. +}) => { +self . adoption_agency (tag . name) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("applet") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("marquee") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("object") , .. +}) => { +self . reconstruct_formatting () ; self . insert_element_for (tag) ; self . active_formatting . push (Marker) ; self . frameset_ok = false ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("applet") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("marquee") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("object") , .. +}) => { +if ! self . in_scope_named (default_scope , tag . name . clone ()) { +self . unexpected (& tag) ; +} else { +self . generate_implied_end (cursory_implied_end) ; self . expect_to_close (tag . name) ; self . clear_active_formatting_to_marker () ; +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("table") , .. +}) => { +if self . quirks_mode != Quirks { +self . close_p_element_in_button_scope () ; +} self . insert_element_for (tag) ; self . frameset_ok = false ; self . mode = InTable ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => { +self . unexpected (& tag) ; self . step (InBody , TagToken (Tag { +kind : StartTag , attrs : vec ! () , .. tag +})) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("area") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("br") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("embed") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("img") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("keygen") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("wbr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("input") , .. +}) => { +let keep_frameset_ok = match tag . name { +local_name ! ("input") => self . is_type_hidden (& tag) , _ => false , +} ; self . reconstruct_formatting () ; self . insert_and_pop_element_for (tag) ; if ! keep_frameset_ok { +self . frameset_ok = false ; +} DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("param") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("source") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("track") , .. +}) => { +self . insert_and_pop_element_for (tag) ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("hr") , .. +}) => { +self . close_p_element_in_button_scope () ; self . insert_and_pop_element_for (tag) ; self . frameset_ok = false ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("image") , .. +}) => { +self . unexpected (& tag) ; self . step (InBody , TagToken (Tag { +name : local_name ! ("img") , .. tag +})) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("textarea") , .. +}) => { +self . ignore_lf = true ; self . frameset_ok = false ; self . parse_raw_data (tag , Rcdata) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("xmp") , .. +}) => { +self . close_p_element_in_button_scope () ; self . reconstruct_formatting () ; self . frameset_ok = false ; self . parse_raw_data (tag , Rawtext) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("iframe") , .. +}) => { +self . frameset_ok = false ; self . parse_raw_data (tag , Rawtext) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noembed") , .. +}) => { +self . parse_raw_data (tag , Rawtext) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("select") , .. +}) => { +self . reconstruct_formatting () ; self . insert_element_for (tag) ; self . frameset_ok = false ; self . mode = match self . mode { +InTable | InCaption | InTableBody | InRow | InCell => InSelectInTable , _ => InSelect , +} ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("optgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("option") , .. +}) => { +if self . current_node_named (local_name ! ("option")) { +self . pop () ; +} self . reconstruct_formatting () ; self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("rb") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("rtc") , .. +}) => { +if self . in_scope_named (default_scope , local_name ! ("ruby")) { +self . generate_implied_end (cursory_implied_end) ; +} if ! self . current_node_named (local_name ! ("ruby")) { +self . unexpected (& tag) ; +} self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("rp") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("rt") , .. +}) => { +if self . in_scope_named (default_scope , local_name ! ("ruby")) { +self . generate_implied_end_except (local_name ! ("rtc")) ; +} if ! self . current_node_named (local_name ! ("rtc")) && ! self . current_node_named (local_name ! ("ruby")) { +self . unexpected (& tag) ; +} self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("math") , .. +}) => self . enter_foreign (tag , ns ! (mathml)) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("svg") , .. +}) => self . enter_foreign (tag , ns ! (svg)) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("frame") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) => { +self . unexpected (& token) ; Done +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , .. +})) => { +if self . opts . scripting_enabled && tag . name == local_name ! ("noscript") { +self . parse_raw_data (tag , Rawtext) +} else { +self . reconstruct_formatting () ; self . insert_element_for (tag) ; Done +} +} , (true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => { +self . process_end_tag_in_body (tag) ; Done +} , (_ , _) => panic ! ("impossible case in InBody mode") , +} +} +} , Text => match token { +CharacterTokens (_ , text) => self . append_text (text) , EOFToken => { +self . unexpected (& token) ; if self . current_node_named (local_name ! ("script")) { +let current = current_node (& self . open_elems) ; self . sink . mark_script_already_started (current) ; +} self . pop () ; Reprocess (self . orig_mode . take () . unwrap () , token) +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => { +let node = self . pop () ; self . mode = self . orig_mode . take () . unwrap () ; if tag . name == local_name ! ("script") { +return Script (node) ; +} Done +} , (_ , _) => panic ! ("impossible case in Text mode") , +} +} +} , InTable => match token { +NullCharacterToken => self . process_chars_in_table (token) , CharacterTokens (..) => self . process_chars_in_table (token) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) => { +self . pop_until_current (table_scope) ; self . active_formatting . push (Marker) ; self . insert_element_for (tag) ; self . mode = InCaption ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) => { +self . pop_until_current (table_scope) ; self . insert_element_for (tag) ; self . mode = InColumnGroup ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) => { +self . pop_until_current (table_scope) ; self . insert_phantom (local_name ! ("colgroup")) ; Reprocess (InColumnGroup , token) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) => { +self . pop_until_current (table_scope) ; self . insert_element_for (tag) ; self . mode = InTableBody ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) => { +self . pop_until_current (table_scope) ; self . insert_phantom (local_name ! ("tbody")) ; Reprocess (InTableBody , token) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("table") , .. +}) => { +self . unexpected (& token) ; if self . in_scope_named (table_scope , local_name ! ("table")) { +self . pop_until_named (local_name ! ("table")) ; Reprocess (self . reset_insertion_mode () , token) +} else { +Done +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) => { +if self . in_scope_named (table_scope , local_name ! ("table")) { +self . pop_until_named (local_name ! ("table")) ; self . mode = self . reset_insertion_mode () ; +} else { +self . unexpected (& token) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) => self . unexpected (& token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => self . step (InHead , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("input") , .. +}) => { +self . unexpected (& tag) ; if self . is_type_hidden (& tag) { +self . insert_and_pop_element_for (tag) ; DoneAckSelfClosing +} else { +self . foster_parent_in_body (TagToken (tag)) +} +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("form") , .. +}) => { +self . unexpected (& tag) ; if ! self . in_html_elem_named (local_name ! ("template")) && self . form_elem . is_none () { +self . form_elem = Some (self . insert_and_pop_element_for (tag)) ; +} Done +} , EOFToken => self . step (InBody , token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +self . unexpected (& token) ; self . foster_parent_in_body (token) +} , +} +} +} , InTableText => match token { +NullCharacterToken => self . unexpected (& token) , CharacterTokens (split , text) => { +self . pending_table_text . push ((split , text)) ; Done +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +let pending = :: std :: mem :: take (& mut self . pending_table_text) ; let contains_nonspace = pending . iter () . any (| & (split , ref text) | { +match split { +Whitespace => false , NotWhitespace => true , NotSplit => any_not_whitespace (text) , +} +}) ; if contains_nonspace { +self . sink . parse_error (Borrowed ("Non-space table text")) ; for (split , text) in pending . into_iter () { +match self . foster_parent_in_body (CharacterTokens (split , text)) { +Done => () , _ => panic ! ("not prepared to handle this!") , +} +} +} else { +for (_ , text) in pending . into_iter () { +self . append_text (text) ; +} +} Reprocess (self . orig_mode . take () . unwrap () , token) +} , +} +} +} , InCaption => match token { +crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) => { +if self . in_scope_named (table_scope , local_name ! ("caption")) { +self . generate_implied_end (cursory_implied_end) ; self . expect_to_close (local_name ! ("caption")) ; self . clear_active_formatting_to_marker () ; match tag { +Tag { +kind : EndTag , name : local_name ! ("caption") , .. +} => { +self . mode = InTable ; Done +} _ => Reprocess (InTable , TagToken (tag)) +} +} else { +self . unexpected (& tag) ; Done +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . step (InBody , token) , +} +} +} , InColumnGroup => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) => { +self . insert_and_pop_element_for (tag) ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) => { +if self . current_node_named (local_name ! ("colgroup")) { +self . pop () ; self . mode = InTable ; +} else { +self . unexpected (& token) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) => self . unexpected (& token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => self . step (InHead , token) , EOFToken => self . step (InBody , token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +if self . current_node_named (local_name ! ("colgroup")) { +self . pop () ; Reprocess (InTable , token) +} else { +self . unexpected (& token) +} +} , +} +} +} , InTableBody => match token { +crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) => { +self . pop_until_current (table_body_context) ; self . insert_element_for (tag) ; self . mode = InRow ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) => { +self . unexpected (& token) ; self . pop_until_current (table_body_context) ; self . insert_phantom (local_name ! ("tr")) ; Reprocess (InRow , token) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) => { +if self . in_scope_named (table_scope , tag . name . clone ()) { +self . pop_until_current (table_body_context) ; self . pop () ; self . mode = InTable ; +} else { +self . unexpected (& tag) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) => { +declare_tag_set ! (table_outer = "table" "tbody" "tfoot") ; if self . in_scope (table_scope , | e | self . elem_in (& e , table_outer)) { +self . pop_until_current (table_body_context) ; self . pop () ; Reprocess (InTable , token) +} else { +self . unexpected (& token) +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . step (InTable , token) , +} +} +} , InRow => match token { +crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) => { +self . pop_until_current (table_row_context) ; self . insert_element_for (tag) ; self . mode = InCell ; self . active_formatting . push (Marker) ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) => { +if self . in_scope_named (table_scope , local_name ! ("tr")) { +self . pop_until_current (table_row_context) ; let node = self . pop () ; self . assert_named (& node , local_name ! ("tr")) ; self . mode = InTableBody ; +} else { +self . unexpected (& token) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) => { +if self . in_scope_named (table_scope , local_name ! ("tr")) { +self . pop_until_current (table_row_context) ; let node = self . pop () ; self . assert_named (& node , local_name ! ("tr")) ; Reprocess (InTableBody , token) +} else { +self . unexpected (& token) +} +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) => { +if self . in_scope_named (table_scope , tag . name . clone ()) { +if self . in_scope_named (table_scope , local_name ! ("tr")) { +self . pop_until_current (table_row_context) ; let node = self . pop () ; self . assert_named (& node , local_name ! ("tr")) ; Reprocess (InTableBody , TagToken (tag)) +} else { +Done +} +} else { +self . unexpected (& tag) +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . step (InTable , token) , +} +} +} , InCell => match token { +crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) => { +if self . in_scope_named (table_scope , tag . name . clone ()) { +self . generate_implied_end (cursory_implied_end) ; self . expect_to_close (tag . name) ; self . clear_active_formatting_to_marker () ; self . mode = InRow ; +} else { +self . unexpected (& tag) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) => { +if self . in_scope (table_scope , | n | self . elem_in (& n , td_th)) { +self . close_the_cell () ; Reprocess (InRow , token) +} else { +self . unexpected (& token) +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => self . unexpected (& token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) => { +if self . in_scope_named (table_scope , tag . name . clone ()) { +self . close_the_cell () ; Reprocess (InRow , TagToken (tag)) +} else { +self . unexpected (& tag) +} +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . step (InBody , token) , +} +} +} , InSelect => match token { +NullCharacterToken => self . unexpected (& token) , CharacterTokens (_ , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("option") , .. +}) => { +if self . current_node_named (local_name ! ("option")) { +self . pop () ; +} self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("optgroup") , .. +}) => { +if self . current_node_named (local_name ! ("option")) { +self . pop () ; +} if self . current_node_named (local_name ! ("optgroup")) { +self . pop () ; +} self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("hr") , .. +}) => { +if self . current_node_named (local_name ! ("option")) { +self . pop () ; +} if self . current_node_named (local_name ! ("optgroup")) { +self . pop () ; +} self . insert_element_for (tag) ; self . pop () ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("optgroup") , .. +}) => { +if self . open_elems . len () >= 2 && self . current_node_named (local_name ! ("option")) && self . html_elem_named (& self . open_elems [self . open_elems . len () - 2] , local_name ! ("optgroup")) { +self . pop () ; +} if self . current_node_named (local_name ! ("optgroup")) { +self . pop () ; +} else { +self . unexpected (& token) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("option") , .. +}) => { +if self . current_node_named (local_name ! ("option")) { +self . pop () ; +} else { +self . unexpected (& token) ; +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("select") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("select") , .. +}) => { +let in_scope = self . in_scope_named (select_scope , local_name ! ("select")) ; if ! in_scope || tag . kind == StartTag { +self . unexpected (& tag) ; +} if in_scope { +self . pop_until_named (local_name ! ("select")) ; self . mode = self . reset_insertion_mode () ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("input") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("keygen") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("textarea") , .. +}) => { +self . unexpected (& token) ; if self . in_scope_named (select_scope , local_name ! ("select")) { +self . pop_until_named (local_name ! ("select")) ; Reprocess (self . reset_insertion_mode () , token) +} else { +Done +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => self . step (InHead , token) , EOFToken => self . step (InBody , token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . unexpected (& token) , +} +} +} , InSelectInTable => match token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("table") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) => { +self . unexpected (& token) ; self . pop_until_named (local_name ! ("select")) ; Reprocess (self . reset_insertion_mode () , token) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) => { +self . unexpected (& tag) ; if self . in_scope_named (table_scope , tag . name . clone ()) { +self . pop_until_named (local_name ! ("select")) ; Reprocess (self . reset_insertion_mode () , TagToken (tag)) +} else { +Done +} +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . step (InSelect , token) , +} +} +} , InTemplate => match token { +CharacterTokens (_ , _) => self . step (InBody , token) , CommentToken (_) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("base") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("basefont") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("bgsound") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("link") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("title") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => { +self . step (InHead , token) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) => { +self . template_modes . pop () ; self . template_modes . push (InTable) ; Reprocess (InTable , token) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) => { +self . template_modes . pop () ; self . template_modes . push (InColumnGroup) ; Reprocess (InColumnGroup , token) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) => { +self . template_modes . pop () ; self . template_modes . push (InTableBody) ; Reprocess (InTableBody , token) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) => { +self . template_modes . pop () ; self . template_modes . push (InRow) ; Reprocess (InRow , token) +} , EOFToken => { +if ! self . in_html_elem_named (local_name ! ("template")) { +self . stop_parsing () +} else { +self . unexpected (& token) ; self . pop_until_named (local_name ! ("template")) ; self . clear_active_formatting_to_marker () ; self . template_modes . pop () ; self . mode = self . reset_insertion_mode () ; Reprocess (self . reset_insertion_mode () , token) +} +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , .. +})) => { +self . template_modes . pop () ; self . template_modes . push (InBody) ; Reprocess (InBody , TagToken (tag)) +} , (_ , token) => self . unexpected (& token) , +} +} +} , AfterBody => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => self . step (InBody , token) , CommentToken (text) => self . append_comment_to_html (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => { +if self . is_fragment () { +self . unexpected (& token) ; +} else { +self . mode = AfterAfterBody ; +} Done +} , EOFToken => self . stop_parsing () , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +self . unexpected (& token) ; Reprocess (InBody , token) +} , +} +} +} , InFrameset => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("frameset") , .. +}) => { +self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("frameset") , .. +}) => { +if self . open_elems . len () == 1 { +self . unexpected (& token) ; +} else { +self . pop () ; if ! self . is_fragment () && ! self . current_node_named (local_name ! ("frameset")) { +self . mode = AfterFrameset ; +} +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("frame") , .. +}) => { +self . insert_and_pop_element_for (tag) ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) => self . step (InHead , token) , EOFToken => { +if self . open_elems . len () != 1 { +self . unexpected (& token) ; +} self . stop_parsing () +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . unexpected (& token) , +} +} +} , AfterFrameset => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => { +self . mode = AfterAfterFrameset ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) => self . step (InHead , token) , EOFToken => self . stop_parsing () , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . unexpected (& token) , +} +} +} , AfterAfterBody => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => self . step (InBody , token) , CommentToken (text) => self . append_comment_to_doc (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , EOFToken => self . stop_parsing () , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +self . unexpected (& token) ; Reprocess (InBody , token) +} , +} +} +} , AfterAfterFrameset => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => self . step (InBody , token) , CommentToken (text) => self . append_comment_to_doc (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , EOFToken => self . stop_parsing () , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) => self . step (InHead , token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . unexpected (& token) , +} +} +} , +} +} fn step_foreign (& mut self , token : Token) -> ProcessResult < Handle > { +match token { +NullCharacterToken => { +self . unexpected (& token) ; self . append_text ("\u{fffd}" . to_tendril ()) +} , CharacterTokens (_ , text) => { +if any_not_whitespace (& text) { +self . frameset_ok = false ; +} self . append_text (text) +} , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("b") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("big") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("blockquote") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("br") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("center") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("code") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dd") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("div") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dl") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dt") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("em") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("embed") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h1") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h2") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h3") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h4") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h5") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h6") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("hr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("i") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("img") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("li") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("listing") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("menu") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("nobr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("ol") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("p") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("pre") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("ruby") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("s") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("small") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("span") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("strong") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("strike") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("sub") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("sup") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("table") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tt") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("u") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("ul") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("var") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("p") , .. +}) => self . unexpected_start_tag_in_foreign_content (tag) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("font") , .. +}) => { +let unexpected = tag . attrs . iter () . any (| attr | { +matches ! (attr . name . expanded () , expanded_name ! ("" , "color") | expanded_name ! ("" , "face") | expanded_name ! ("" , "size")) +}) ; if unexpected { +self . unexpected_start_tag_in_foreign_content (tag) +} else { +self . foreign_start_tag (tag) +} +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , .. +})) => self . foreign_start_tag (tag) , (true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => { +let mut first = true ; let mut stack_idx = self . open_elems . len () - 1 ; loop { +if stack_idx == 0 { +return Done ; +} let html ; let eq ; { +let node_name = self . sink . elem_name (& self . open_elems [stack_idx]) ; html = * node_name . ns == ns ! (html) ; eq = node_name . local . eq_ignore_ascii_case (& tag . name) ; +} if ! first && html { +let mode = self . mode ; return self . step (mode , TagToken (tag)) ; +} if eq { +self . open_elems . truncate (stack_idx) ; return Done ; +} if first { +self . unexpected (& tag) ; first = false ; +} stack_idx -= 1 ; +} +} , (_ , _) => panic ! ("impossible case in foreign content") , +} +} +} +} +} \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/html5ever-2971a9ee54624ba3/output b/src-tauri/html_scraper/target/owl/debug/build/html5ever-2971a9ee54624ba3/output new file mode 100644 index 0000000..e1f6044 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/html5ever-2971a9ee54624ba3/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/rules.rs diff --git a/src-tauri/html_scraper/target/owl/debug/build/html5ever-2971a9ee54624ba3/root-output b/src-tauri/html_scraper/target/owl/debug/build/html5ever-2971a9ee54624ba3/root-output new file mode 100644 index 0000000..195db11 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/html5ever-2971a9ee54624ba3/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/html5ever-2971a9ee54624ba3/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/html5ever-2971a9ee54624ba3/stderr b/src-tauri/html_scraper/target/owl/debug/build/html5ever-2971a9ee54624ba3/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/owl/debug/build/html5ever-310ff3bc678af8f1/build-script-build b/src-tauri/html_scraper/target/owl/debug/build/html5ever-310ff3bc678af8f1/build-script-build new file mode 100755 index 0000000..c6dd091 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/html5ever-310ff3bc678af8f1/build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/html5ever-310ff3bc678af8f1/build_script_build-310ff3bc678af8f1 b/src-tauri/html_scraper/target/owl/debug/build/html5ever-310ff3bc678af8f1/build_script_build-310ff3bc678af8f1 new file mode 100755 index 0000000..c6dd091 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/html5ever-310ff3bc678af8f1/build_script_build-310ff3bc678af8f1 differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/html5ever-310ff3bc678af8f1/build_script_build-310ff3bc678af8f1.d b/src-tauri/html_scraper/target/owl/debug/build/html5ever-310ff3bc678af8f1/build_script_build-310ff3bc678af8f1.d new file mode 100644 index 0000000..8c4e51e --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/html5ever-310ff3bc678af8f1/build_script_build-310ff3bc678af8f1.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/html5ever-310ff3bc678af8f1/build_script_build-310ff3bc678af8f1: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/build.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/macros/match_token.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/html5ever-310ff3bc678af8f1/build_script_build-310ff3bc678af8f1.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/build.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/macros/match_token.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/build.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/macros/match_token.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/build/libc-33136c87e0d52e01/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/build/libc-33136c87e0d52e01/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/libc-33136c87e0d52e01/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/libc-33136c87e0d52e01/output b/src-tauri/html_scraper/target/owl/debug/build/libc-33136c87e0d52e01/output new file mode 100644 index 0000000..ce0c677 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/libc-33136c87e0d52e01/output @@ -0,0 +1,24 @@ +cargo:rerun-if-changed=build.rs +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION +cargo:rustc-cfg=freebsd12 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_MUSL_V1_2_3 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_GNU_TIME_BITS +cargo:rustc-check-cfg=cfg(emscripten_old_stat_abi) +cargo:rustc-check-cfg=cfg(espidf_time32) +cargo:rustc-check-cfg=cfg(freebsd10) +cargo:rustc-check-cfg=cfg(freebsd11) +cargo:rustc-check-cfg=cfg(freebsd12) +cargo:rustc-check-cfg=cfg(freebsd13) +cargo:rustc-check-cfg=cfg(freebsd14) +cargo:rustc-check-cfg=cfg(freebsd15) +cargo:rustc-check-cfg=cfg(gnu_file_offset_bits64) +cargo:rustc-check-cfg=cfg(gnu_time_bits64) +cargo:rustc-check-cfg=cfg(libc_deny_warnings) +cargo:rustc-check-cfg=cfg(libc_thread_local) +cargo:rustc-check-cfg=cfg(linux_time_bits64) +cargo:rustc-check-cfg=cfg(musl_v1_2_3) +cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx","cygwin")) +cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos","nto71_iosock","nto80")) +cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) diff --git a/src-tauri/html_scraper/target/owl/debug/build/libc-33136c87e0d52e01/root-output b/src-tauri/html_scraper/target/owl/debug/build/libc-33136c87e0d52e01/root-output new file mode 100644 index 0000000..6146d60 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/libc-33136c87e0d52e01/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/libc-33136c87e0d52e01/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/libc-33136c87e0d52e01/stderr b/src-tauri/html_scraper/target/owl/debug/build/libc-33136c87e0d52e01/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/owl/debug/build/libc-5095d4274a755e94/build-script-build b/src-tauri/html_scraper/target/owl/debug/build/libc-5095d4274a755e94/build-script-build new file mode 100755 index 0000000..b43bb5f Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/libc-5095d4274a755e94/build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/libc-5095d4274a755e94/build_script_build-5095d4274a755e94 b/src-tauri/html_scraper/target/owl/debug/build/libc-5095d4274a755e94/build_script_build-5095d4274a755e94 new file mode 100755 index 0000000..b43bb5f Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/libc-5095d4274a755e94/build_script_build-5095d4274a755e94 differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/libc-5095d4274a755e94/build_script_build-5095d4274a755e94.d b/src-tauri/html_scraper/target/owl/debug/build/libc-5095d4274a755e94/build_script_build-5095d4274a755e94.d new file mode 100644 index 0000000..635de4b --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/libc-5095d4274a755e94/build_script_build-5095d4274a755e94.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/libc-5095d4274a755e94/build_script_build-5095d4274a755e94: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/libc-5095d4274a755e94/build_script_build-5095d4274a755e94.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/build.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/build/libc-709939b439d7e4b8/build-script-build b/src-tauri/html_scraper/target/owl/debug/build/libc-709939b439d7e4b8/build-script-build new file mode 100755 index 0000000..63b3508 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/libc-709939b439d7e4b8/build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/libc-709939b439d7e4b8/build_script_build-709939b439d7e4b8 b/src-tauri/html_scraper/target/owl/debug/build/libc-709939b439d7e4b8/build_script_build-709939b439d7e4b8 new file mode 100755 index 0000000..63b3508 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/libc-709939b439d7e4b8/build_script_build-709939b439d7e4b8 differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/libc-709939b439d7e4b8/build_script_build-709939b439d7e4b8.d b/src-tauri/html_scraper/target/owl/debug/build/libc-709939b439d7e4b8/build_script_build-709939b439d7e4b8.d new file mode 100644 index 0000000..e75a883 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/libc-709939b439d7e4b8/build_script_build-709939b439d7e4b8.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/libc-709939b439d7e4b8/build_script_build-709939b439d7e4b8: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/libc-709939b439d7e4b8/build_script_build-709939b439d7e4b8.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/build.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/build/libc-92ea4d42e166db1e/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/build/libc-92ea4d42e166db1e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/libc-92ea4d42e166db1e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/libc-92ea4d42e166db1e/output b/src-tauri/html_scraper/target/owl/debug/build/libc-92ea4d42e166db1e/output new file mode 100644 index 0000000..ce0c677 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/libc-92ea4d42e166db1e/output @@ -0,0 +1,24 @@ +cargo:rerun-if-changed=build.rs +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION +cargo:rustc-cfg=freebsd12 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_MUSL_V1_2_3 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_GNU_TIME_BITS +cargo:rustc-check-cfg=cfg(emscripten_old_stat_abi) +cargo:rustc-check-cfg=cfg(espidf_time32) +cargo:rustc-check-cfg=cfg(freebsd10) +cargo:rustc-check-cfg=cfg(freebsd11) +cargo:rustc-check-cfg=cfg(freebsd12) +cargo:rustc-check-cfg=cfg(freebsd13) +cargo:rustc-check-cfg=cfg(freebsd14) +cargo:rustc-check-cfg=cfg(freebsd15) +cargo:rustc-check-cfg=cfg(gnu_file_offset_bits64) +cargo:rustc-check-cfg=cfg(gnu_time_bits64) +cargo:rustc-check-cfg=cfg(libc_deny_warnings) +cargo:rustc-check-cfg=cfg(libc_thread_local) +cargo:rustc-check-cfg=cfg(linux_time_bits64) +cargo:rustc-check-cfg=cfg(musl_v1_2_3) +cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx","cygwin")) +cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos","nto71_iosock","nto80")) +cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) diff --git a/src-tauri/html_scraper/target/owl/debug/build/libc-92ea4d42e166db1e/root-output b/src-tauri/html_scraper/target/owl/debug/build/libc-92ea4d42e166db1e/root-output new file mode 100644 index 0000000..9d82a39 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/libc-92ea4d42e166db1e/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/libc-92ea4d42e166db1e/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/libc-92ea4d42e166db1e/stderr b/src-tauri/html_scraper/target/owl/debug/build/libc-92ea4d42e166db1e/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/owl/debug/build/lock_api-c86319de41590a71/build-script-build b/src-tauri/html_scraper/target/owl/debug/build/lock_api-c86319de41590a71/build-script-build new file mode 100755 index 0000000..abb7521 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/lock_api-c86319de41590a71/build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/lock_api-c86319de41590a71/build_script_build-c86319de41590a71 b/src-tauri/html_scraper/target/owl/debug/build/lock_api-c86319de41590a71/build_script_build-c86319de41590a71 new file mode 100755 index 0000000..abb7521 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/lock_api-c86319de41590a71/build_script_build-c86319de41590a71 differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/lock_api-c86319de41590a71/build_script_build-c86319de41590a71.d b/src-tauri/html_scraper/target/owl/debug/build/lock_api-c86319de41590a71/build_script_build-c86319de41590a71.d new file mode 100644 index 0000000..1b03df2 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/lock_api-c86319de41590a71/build_script_build-c86319de41590a71.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/lock_api-c86319de41590a71/build_script_build-c86319de41590a71: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.13/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/lock_api-c86319de41590a71/build_script_build-c86319de41590a71.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.13/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.13/build.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/build/lock_api-d7d73b95392ce3f6/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/build/lock_api-d7d73b95392ce3f6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/lock_api-d7d73b95392ce3f6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/lock_api-d7d73b95392ce3f6/output b/src-tauri/html_scraper/target/owl/debug/build/lock_api-d7d73b95392ce3f6/output new file mode 100644 index 0000000..232d899 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/lock_api-d7d73b95392ce3f6/output @@ -0,0 +1,3 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(has_const_fn_trait_bound) +cargo:rustc-cfg=has_const_fn_trait_bound diff --git a/src-tauri/html_scraper/target/owl/debug/build/lock_api-d7d73b95392ce3f6/root-output b/src-tauri/html_scraper/target/owl/debug/build/lock_api-d7d73b95392ce3f6/root-output new file mode 100644 index 0000000..adc3e8e --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/lock_api-d7d73b95392ce3f6/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/lock_api-d7d73b95392ce3f6/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/lock_api-d7d73b95392ce3f6/stderr b/src-tauri/html_scraper/target/owl/debug/build/lock_api-d7d73b95392ce3f6/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/out/generated.rs b/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/out/generated.rs new file mode 100644 index 0000000..467da59 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/out/generated.rs @@ -0,0 +1,2927 @@ +pub type LocalName = :: string_cache :: Atom < LocalNameStaticSet > ; +# [derive (PartialEq , Eq , PartialOrd , Ord)] pub struct LocalNameStaticSet ; +impl :: string_cache :: StaticAtomSet for LocalNameStaticSet { fn get () -> & 'static :: string_cache :: PhfStrSet { static SET : :: string_cache :: PhfStrSet = :: string_cache :: PhfStrSet { key : 12913932095322966823u64 , disps : & [(0u32 , 2u32) , (0u32 , 12u32) , (0u32 , 1u32) , (0u32 , 196u32) , (0u32 , 6u32) , (0u32 , 352u32) , (0u32 , 96u32) , (0u32 , 27u32) , (0u32 , 1u32) , (0u32 , 151u32) , (0u32 , 9u32) , (0u32 , 112u32) , (0u32 , 200u32) , (0u32 , 214u32) , (0u32 , 0u32) , (0u32 , 17u32) , (0u32 , 2u32) , (0u32 , 9u32) , (0u32 , 8u32) , (1u32 , 83u32) , (0u32 , 23u32) , (3u32 , 151u32) , (0u32 , 77u32) , (0u32 , 35u32) , (0u32 , 4u32) , (2u32 , 150u32) , (0u32 , 321u32) , (0u32 , 22u32) , (0u32 , 64u32) , (0u32 , 24u32) , (0u32 , 2u32) , (0u32 , 12u32) , (0u32 , 2u32) , (2u32 , 168u32) , (0u32 , 58u32) , (2u32 , 214u32) , (0u32 , 167u32) , (2u32 , 544u32) , (3u32 , 112u32) , (0u32 , 3u32) , (0u32 , 63u32) , (0u32 , 483u32) , (0u32 , 33u32) , (0u32 , 0u32) , (0u32 , 1u32) , (2u32 , 36u32) , (0u32 , 18u32) , (0u32 , 4u32) , (0u32 , 0u32) , (0u32 , 206u32) , (1u32 , 218u32) , (1u32 , 25u32) , (0u32 , 0u32) , (0u32 , 74u32) , (0u32 , 1u32) , (3u32 , 258u32) , (3u32 , 525u32) , (0u32 , 0u32) , (3u32 , 403u32) , (0u32 , 193u32) , (2u32 , 349u32) , (0u32 , 294u32) , (0u32 , 183u32) , (0u32 , 3u32) , (1u32 , 217u32) , (0u32 , 384u32) , (4u32 , 395u32) , (0u32 , 29u32) , (0u32 , 6u32) , (0u32 , 0u32) , (0u32 , 306u32) , (0u32 , 220u32) , (0u32 , 6u32) , (0u32 , 2u32) , (0u32 , 0u32) , (0u32 , 0u32) , (1u32 , 156u32) , (1u32 , 28u32) , (0u32 , 202u32) , (0u32 , 104u32) , (0u32 , 537u32) , (0u32 , 120u32) , (0u32 , 535u32) , (1u32 , 432u32) , (0u32 , 127u32) , (4u32 , 6u32) , (0u32 , 3u32) , (0u32 , 13u32) , (2u32 , 236u32) , (3u32 , 137u32) , (0u32 , 249u32) , (0u32 , 86u32) , (3u32 , 242u32) , (0u32 , 251u32) , (0u32 , 218u32) , (0u32 , 55u32) , (0u32 , 314u32) , (2u32 , 225u32) , (1u32 , 12u32) , (0u32 , 435u32) , (0u32 , 61u32) , (0u32 , 26u32) , (13u32 , 46u32) , (3u32 , 561u32) , (34u32 , 53u32) , (0u32 , 84u32) , (3u32 , 430u32) , (8u32 , 242u32) , (28u32 , 328u32) , (2u32 , 397u32) , (0u32 , 316u32) , (1u32 , 0u32) , (0u32 , 14u32) , (2u32 , 89u32) , (25u32 , 39u32) , (2u32 , 392u32) , (0u32 , 0u32) , (6u32 , 245u32) , (0u32 , 44u32) , (0u32 , 11u32)] , atoms : & ["columnspacing", +"kernelunitlength", +"color-interpolation", +"complexes", +"annotation-xml", +"specularconstant", +"mozbrowser", +"interval", +"gradientUnits", +"onmouseleave", +"writing-mode", +"aria-valuemax", +"animateTransform", +"definitionURL", +"background", +"aria-templateid", +"feGaussianBlur", +"subscriptshift", +"xmlns:xlink", +"fieldset", +"spreadmethod", +"formtarget", +"feDiffuseLighting", +"feturbulence", +"onbeforeeditfocus", +"colgroup", +"mathbackground", +"onkeydown", +"feColorMatrix", +"startoffset", +"autofocus", +"contextmenu", +"longdesc", +"aria-relevant", +"onbeforeprint", +"fill-rule", +"hreflang", +"domainofapplication", +"keytimes", +"numoctaves", +"partialdiff", +"aria-describedby", +"color-interpolation-filters", +"preserveaspectratio", +"actiontype", +"quotient", +"notation", +"autocomplete", +"contentStyleType", +"strikethrough-thickness", +"stop-color", +"itemtype", +"fepointlight", +"formmethod", +"seamless", +"plaintext", +"aria-modal", +"required", +"numOctaves", +"maxlength", +"piecewise", +"cellspacing", +"xChannelSelector", +"momentabout", +"onfinish", +"kernelmatrix", +"color-profile", +"fedropshadow", +"aria-haspopup", +"pointsatz", +"decoding", +"linearGradient", +"columnlines", +"onmousemove", +"codomain", +"prsubset", +"alignment-baseline", +"intercept", +"font-face-src", +"aria-multiselectable", +"keyPoints", +"diffuseconstant", +"xlink:arcrole", +"onafterupdate", +"foreignObject", +"autosubmit", +"scrolldelay", +"stretchy", +"font-weight", +"onafterprint", +"aria-pressed", +"line-height", +"basefrequency", +"aria-description", +"onhashchange", +"displaystyle", +"v-hanging", +"patterncontentunits", +"http-equiv", +"animation", +"vert-adv-y", +"onrowsdelete", +"aria-labelledby", +"unicode-range", +"listener", +"accent-height", +"dominant-baseline", +"datetime", +"aria-colspan", +"conjugate", +"onmousedown", +"equalrows", +"stitchtiles", +"edgemode", +"aria-autocomplete", +"aria-atomic", +"mathsize", +"glyphref", +"maskunits", +"clippathunits", +"aria-checked", +"enable-background", +"onbeforecut", +"onmouseover", +"pointsAtX", +"ondblclick", +"xchannelselector", +"symmetric", +"fediffuselighting", +"aria-multiline", +"oninvalid", +"markerHeight", +"repeatdur", +"vert-origin-y", +"requiredFeatures", +"elevation", +"viewtarget", +"aria-label", +"solidcolor", +"onforminput", +"textpath", +"spellcheck", +"patternTransform", +"aria-disabled", +"font-face-format", +"autoplay", +"altGlyph", +"imaginaryi", +"dataformatas", +"femorphology", +"x-height", +"onbefordeactivate", +"zoomAndPan", +"letter-spacing", +"aria-expanded", +"aria-braillelabel", +"mathcolor", +"equivalent", +"fontfamily", +"scriptlevel", +"rowspacing", +"maskUnits", +"glyphRef", +"glyph-orientation-horizontal", +"multicol", +"maskContentUnits", +"thinmathspace", +"condition", +"formnovalidate", +"attributeName", +"cellpadding", +"stroke-miterlimit", +"altglyph", +"selector", +"onbeforeunload", +"lowlimit", +"optgroup", +"feDistantLight", +"frameset", +"underline-thickness", +"strikethrough-position", +"onrowsinserted", +"definitionurl", +"fontweight", +"aria-placeholder", +"marker-start", +"ononline", +"xml:base", +"allowfullscreen", +"noresize", +"spreadMethod", +"feConvolveMatrix", +"limitingConeAngle", +"attributetype", +"selection", +"repeat-max", +"font-face-name", +"controllerchange", +"aria-selected", +"formenctype", +"datalist", +"rowalign", +"scalarproduct", +"limitingconeangle", +"mprescripts", +"aria-valuetext", +"disabled", +"stroke-width", +"noscript", +"onresize", +"filterUnits", +"aria-setsize", +"onbeforepaste", +"aria-busy", +"aria-controls", +"malignmark", +"aria-keyshortcuts", +"calcmode", +"marker-mid", +"onformchange", +"aria-flowto", +"animatemotion", +"amplitude", +"aria-valuemin", +"aria-posinset", +"lengthadjust", +"diffuseConstant", +"baseProfile", +"color-rendering", +"altGlyphDef", +"primitiveunits", +"preservealpha", +"aria-rowindex", +"ondeactivate", +"font-face-uri", +"feSpecularLighting", +"v-ideographic", +"stdDeviation", +"onsubmit", +"scriptsizemultiplier", +"onrowexit", +"font-face", +"gradienttransform", +"veryverythinmathspace", +"onselect", +"clip-rule", +"codebase", +"underline-position", +"v-mathematical", +"separator", +"matrixrow", +"selected", +"xlink:href", +"horiz-adv-x", +"controls", +"aria-current", +"onscroll", +"pointsAtZ", +"overflow", +"", +"onpagehide", +"visibility", +"feComponentTransfer", +"overline-position", +"rendering-intent", +"infinity", +"feconvolvematrix", +"repeatCount", +"onselectstart", +"pointsaty", +"direction", +"fecolormatrix", +"tabindex", +"placeholder", +"transpose", +"gradientunits", +"feDropShadow", +"xlink:role", +"edgeMode", +"gradientTransform", +"integers", +"stddeviation", +"repeat-start", +"cap-height", +"xlink:type", +"unselectable", +"contentstyletype", +"transform", +"stroke-linejoin", +"integrity", +"ondatasetchanged", +"foreignobject", +"radiogroup", +"contenteditable", +"template", +"statechange", +"pathlength", +"divergence", +"aria-hidden", +"ondragleave", +"maligngroup", +"outerproduct", +"aria-channel", +"systemlanguage", +"fetchpriority", +"polyline", +"lighting-color", +"property", +"animateColor", +"ondragdrop", +"repeat-min", +"specification", +"surfacescale", +"clippath", +"patternUnits", +"flood-opacity", +"referrerpolicy", +"factorial", +"hidefocus", +"stitchTiles", +"arabic-form", +"blockquote", +"mlabeledtr", +"novalidate", +"onpopstate", +"onerrorupdate", +"feSpotLight", +"stop-opacity", +"readonly", +"markerUnits", +"naturalnumbers", +"markerunits", +"font-family", +"patternunits", +"orientation", +"markerheight", +"aria-colindextext", +"attributeType", +"accesskey", +"clipPathUnits", +"keySplines", +"onstorage", +"font-style", +"fedisplacementmap", +"separators", +"verythinmathspace", +"primitiveUnits", +"surfaceScale", +"formaction", +"verythickmathspace", +"calcMode", +"xml:lang", +"fedistantlight", +"fontstyle", +"overline-thickness", +"onbounce", +"bevelled", +"onmouseout", +"exponent", +"prefetch", +"tablevalues", +"itemscope", +"manifest", +"nomodule", +"mathvariant", +"v-alphabetic", +"scrolling", +"keysplines", +"variance", +"feMorphology", +"preserveAlpha", +"viewTarget", +"aria-orientation", +"aria-rowcount", +"onlanguagechange", +"oncontrolselect", +"onmouseup", +"inputmode", +"notsubset", +"definition-src", +"aria-readonly", +"specularexponent", +"multiple", +"onunload", +"aria-colindex", +"reversed", +"onoffline", +"aria-rowindextext", +"externalresourcesrequired", +"datatemplate", +"fontsize", +"image-rendering", +"basefont", +"fill-opacity", +"radialgradient", +"frameborder", +"stroke-dasharray", +"encoding", +"animatetransform", +"movablelimits", +"filterres", +"font-stretch", +"clipPath", +"xlink:show", +"notanumber", +"onmouseenter", +"aria-dropeffect", +"progress", +"ondataavailable", +"valuetype", +"noframes", +"specularExponent", +"text-rendering", +"otherwise", +"baseline", +"framespacing", +"xlink:title", +"feOffset", +"aria-secret", +"aria-valuenow", +"emptyset", +"determinant", +"textlength", +"font-variant", +"horiz-origin-x", +"aria-brailleroledescription", +"onfocusout", +"menuitem", +"ondragend", +"baseline-shift", +"feComposite", +"pathLength", +"startOffset", +"glyph-orientation-vertical", +"textPath", +"onreadystatechange", +"stroke-opacity", +"accumulate", +"onbeforeupdate", +"shape-rendering", +"figcaption", +"thickmathspace", +"minlength", +"requiredextensions", +"repeat-template", +"vert-origin-x", +"lineargradient", +"download", +"onmovestart", +"patterntransform", +"superscriptshift", +"externalResourcesRequired", +"animatecolor", +"panose-1", +"filterRes", +"aria-colcount", +"missing-glyph", +"cartesianproduct", +"femergenode", +"ondragover", +"fespecularlighting", +"mphantom", +"aria-activedescendant", +"exponentiale", +"aria-invalid", +"requiredfeatures", +"additive", +"onbeforeactivate", +"altglyphitem", +"repeatcount", +"rationals", +"stroke-linecap", +"annotation", +"units-per-em", +"tableValues", +"mmultiscripts", +"aria-owns", +"ideographic", +"text-anchor", +"aria-sort", +"aria-datatype", +"irrelevant", +"preserveAspectRatio", +"markerWidth", +"columnalign", +"notprsubset", +"language", +"onbeforecopy", +"onfilterchange", +"altglyphdef", +"fePointLight", +"pointer-events", +"feDisplacementMap", +"ondatasetcomplete", +"aria-rowspan", +"columnspan", +"stroke-dashoffset", +"aria-required", +"occurrence", +"munderover", +"linethickness", +"feMergeNode", +"menclose", +"alignmentscope", +"markerwidth", +"accentunder", +"feoffset", +"columnwidth", +"textarea", +"fecomposite", +"itemprop", +"intersect", +"semantics", +"font-size-adjust", +"word-spacing", +"oncellchange", +"crossorigin", +"ondragstart", +"flood-color", +"glyph-name", +"pointsatx", +"textLength", +"eulergamma", +"aria-details", +"translate", +"filterunits", +"contentscripttype", +"mathematical", +"onrowenter", +"aria-grab", +"onfocusin", +"onpropertychange", +"zoomandpan", +"xlink:actuate", +"unicode-bidi", +"onmessage", +"fespotlight", +"clip-path", +"onmousewheel", +"marginwidth", +"aria-errormessage", +"baseFrequency", +"scriptminsize", +"systemLanguage", +"codetype", +"text-decoration", +"ondragenter", +"specularConstant", +"feTurbulence", +"font-size", +"accept-charset", +"draggable", +"maskcontentunits", +"onlosecapture", +"contentScriptType", +"rowlines", +"radialGradient", +"yChannelSelector", +"xml:space", +"aria-live", +"groupalign", +"onrepeat", +"onpageshow", +"vectorproduct", +"aria-roledescription", +"equalcolumns", +"factorof", +"onmoveend", +"onkeypress", +"operator", +"kernelUnitLength", +"oncontextmenu", +"onactivate", +"aria-level", +"pointsAtY", +"mediummathspace", +"animateMotion", +"baseprofile", +"veryverythickmathspace", +"alphabetic", +"keypoints", +"marker-end", +"laplacian", +"kernelMatrix", +"altGlyphItem", +"fegaussianblur", +"horiz-origin-y", +"imaginary", +"fecomponenttransfer", +"metadata", +"requiredExtensions", +"onchange", +"lengthAdjust", +"patternContentUnits", +"marginheight", +"attributename", +"ychannelselector", +"keyTimes", +"repeatDur", +"linebreak"] , hashes : & [3072954000u32 , 3434111473u32 , 2938551886u32 , 3761485389u32 , 1040004347u32 , 4048787516u32 , 2352150961u32 , 3813953811u32 , 1089255496u32 , 1746599759u32 , 3812424145u32 , 2627759492u32 , 1122986055u32 , 1411183032u32 , 540984354u32 , 2869380463u32 , 127349794u32 , 1324932700u32 , 3949169397u32 , 167018041u32 , 2338483475u32 , 1265818470u32 , 3017840974u32 , 2817038524u32 , 977519882u32 , 482099679u32 , 41264406u32 , 3792741489u32 , 3819629636u32 , 3023844475u32 , 2488083091u32 , 2389793136u32 , 3838527384u32 , 3895686923u32 , 1853897548u32 , 183626286u32 , 2619524090u32 , 1000927536u32 , 1343823872u32 , 3505831613u32 , 3140418151u32 , 2730644329u32 , 840604679u32 , 13967138u32 , 3674106722u32 , 890471348u32 , 1196494198u32 , 139625561u32 , 1496007974u32 , 3978549325u32 , 1531081973u32 , 876893636u32 , 3031015162u32 , 2901051737u32 , 1967061597u32 , 498024801u32 , 413668059u32 , 1014874794u32 , 2190494129u32 , 4155473355u32 , 1340310784u32 , 3087731897u32 , 738404731u32 , 3467076559u32 , 1500515759u32 , 1511898050u32 , 3123322936u32 , 1776997671u32 , 2893479988u32 , 2980412961u32 , 4208387215u32 , 1956396338u32 , 3139000449u32 , 3598404451u32 , 3848540887u32 , 1932517039u32 , 3727352922u32 , 2250640510u32 , 3569972244u32 , 882636649u32 , 3937177209u32 , 2909783456u32 , 1674115585u32 , 1463711312u32 , 917510687u32 , 3174660173u32 , 3588373335u32 , 4157184116u32 , 2754786514u32 , 3088760233u32 , 962337312u32 , 1029483847u32 , 4219469015u32 , 2550357363u32 , 3316294029u32 , 1693167880u32 , 3574495545u32 , 2965230298u32 , 1465547969u32 , 1344436999u32 , 3857554377u32 , 3436454788u32 , 1696233065u32 , 3054316836u32 , 1289272887u32 , 2749033157u32 , 3173400481u32 , 2832170387u32 , 3483791417u32 , 357019207u32 , 1494292933u32 , 610893786u32 , 1578024761u32 , 3522778558u32 , 1695163510u32 , 3441525639u32 , 191876287u32 , 53892155u32 , 1008080924u32 , 2648768565u32 , 2710653095u32 , 839481326u32 , 2363338602u32 , 2062376914u32 , 1713409972u32 , 3318082606u32 , 4064199297u32 , 3391938715u32 , 582074557u32 , 688563368u32 , 849353939u32 , 3420533286u32 , 3173625849u32 , 1137297938u32 , 1784113404u32 , 3074935477u32 , 1754753923u32 , 581625092u32 , 3200099719u32 , 872051764u32 , 1290517656u32 , 3345816294u32 , 2555432291u32 , 520649620u32 , 2351838155u32 , 2113798551u32 , 3482160649u32 , 3225919750u32 , 3538034810u32 , 1031924441u32 , 67060975u32 , 3022377460u32 , 251844155u32 , 4104071589u32 , 2813597207u32 , 3099170635u32 , 1159398089u32 , 487396000u32 , 4133853804u32 , 261387879u32 , 1152797465u32 , 585557574u32 , 3756296120u32 , 2143535654u32 , 284653812u32 , 2761967137u32 , 3172500845u32 , 1492357159u32 , 3572217425u32 , 3148690945u32 , 3303937590u32 , 1597870884u32 , 3473820876u32 , 1151125310u32 , 1327970202u32 , 2766318564u32 , 3251283326u32 , 3022346510u32 , 2822081788u32 , 657335448u32 , 2055579803u32 , 697370994u32 , 790236809u32 , 1436742140u32 , 369465691u32 , 1704381425u32 , 1545307082u32 , 3107512368u32 , 3553740950u32 , 3709793219u32 , 150393700u32 , 3296146244u32 , 175932733u32 , 3447324541u32 , 1529410224u32 , 742460070u32 , 951933631u32 , 3888122413u32 , 940673285u32 , 510569370u32 , 2481108222u32 , 11175636u32 , 742853127u32 , 4086049772u32 , 4279947214u32 , 3336988988u32 , 2253042667u32 , 2961964106u32 , 3496513502u32 , 1397943031u32 , 717168679u32 , 2440702496u32 , 835417400u32 , 1443202521u32 , 269731020u32 , 4197990453u32 , 431655942u32 , 1924991364u32 , 3503166008u32 , 2407704912u32 , 1462083347u32 , 1846373592u32 , 1004995609u32 , 1737183206u32 , 1086403303u32 , 322837783u32 , 898067958u32 , 268294220u32 , 3517724257u32 , 631093780u32 , 660920321u32 , 328232673u32 , 998270762u32 , 1622957280u32 , 3038336232u32 , 2875176293u32 , 143478574u32 , 577943792u32 , 2591735095u32 , 1106010321u32 , 130627326u32 , 59658625u32 , 2468381339u32 , 4125580644u32 , 1904259492u32 , 4179141959u32 , 1918948260u32 , 3161172129u32 , 4032437431u32 , 259654618u32 , 1980444132u32 , 1326112048u32 , 2985998690u32 , 3480491085u32 , 623782337u32 , 121548787u32 , 3263344947u32 , 2162760400u32 , 4010765371u32 , 4082073077u32 , 3730423347u32 , 680267915u32 , 1003700867u32 , 24676607u32 , 986461641u32 , 3064390904u32 , 1038372645u32 , 4004244404u32 , 3044528111u32 , 2145215358u32 , 316404133u32 , 2627228424u32 , 441619653u32 , 4227008938u32 , 2231254690u32 , 2770211272u32 , 3543883658u32 , 2705478669u32 , 427162403u32 , 1313537745u32 , 1359418558u32 , 2791371120u32 , 3247137570u32 , 1209573904u32 , 3629415669u32 , 1459652027u32 , 787973706u32 , 2990288183u32 , 388019751u32 , 3290302249u32 , 4067843623u32 , 904157188u32 , 906623274u32 , 1026931307u32 , 3192182081u32 , 2075053822u32 , 3041455211u32 , 3590479039u32 , 4016453314u32 , 1356155463u32 , 4287406983u32 , 4151148662u32 , 4257931290u32 , 6175338u32 , 3637562920u32 , 2537656704u32 , 3799256240u32 , 551601771u32 , 2274933261u32 , 4174481087u32 , 3231125223u32 , 2052860768u32 , 4193230156u32 , 1365633322u32 , 718491279u32 , 1048020461u32 , 326494834u32 , 3182531199u32 , 1421968030u32 , 1906307066u32 , 3199297686u32 , 1289880550u32 , 167340041u32 , 1694998203u32 , 507264248u32 , 2176790048u32 , 2701977759u32 , 2377326793u32 , 290068694u32 , 3390498297u32 , 3315223323u32 , 3173477931u32 , 4121432320u32 , 3221036252u32 , 1545869555u32 , 3367662520u32 , 1721701609u32 , 4001891308u32 , 1340705914u32 , 193163341u32 , 2607187618u32 , 1081021937u32 , 1109713652u32 , 2324745345u32 , 2509936390u32 , 868058960u32 , 235814134u32 , 3311581079u32 , 3859396703u32 , 4274065971u32 , 1713731671u32 , 2577707114u32 , 597485693u32 , 89533980u32 , 1764594812u32 , 236464811u32 , 42180808u32 , 1563912927u32 , 1700718142u32 , 2884343567u32 , 2974337319u32 , 1437637129u32 , 2927217335u32 , 2731266052u32 , 1585700207u32 , 2192643058u32 , 372536167u32 , 1980252733u32 , 540156035u32 , 1969026116u32 , 1054325476u32 , 3081310440u32 , 1855625123u32 , 1025361169u32 , 625288246u32 , 1085252765u32 , 3337178u32 , 1634030783u32 , 1123905875u32 , 1425318046u32 , 2753608321u32 , 2458868732u32 , 2907088801u32 , 1270941540u32 , 699250933u32 , 3776643770u32 , 496466373u32 , 844290399u32 , 1068196084u32 , 1013909549u32 , 2140727092u32 , 3725445512u32 , 3805722218u32 , 2519983718u32 , 2038498193u32 , 1670804630u32 , 2806594463u32 , 1857928766u32 , 4088548386u32 , 1490652026u32 , 314533796u32 , 1060911337u32 , 4110733451u32 , 731340681u32 , 3471797576u32 , 745064063u32 , 1402964693u32 , 3164895664u32 , 2986159298u32 , 3006277213u32 , 1622799733u32 , 3353385752u32 , 1466152561u32 , 909665113u32 , 2047753258u32 , 2384049441u32 , 115637463u32 , 1406178112u32 , 3391050331u32 , 3377397637u32 , 3608092222u32 , 4114830095u32 , 1704100245u32 , 3735993810u32 , 960352296u32 , 832628307u32 , 4266430317u32 , 3273539984u32 , 4019205149u32 , 1372447217u32 , 149474300u32 , 2152634883u32 , 33840900u32 , 3720179864u32 , 2005060454u32 , 1081225797u32 , 2007550408u32 , 3278498399u32 , 1064789251u32 , 207807063u32 , 2771320901u32 , 2488889144u32 , 1114315443u32 , 2117758015u32 , 1363498200u32 , 2286720981u32 , 797499465u32 , 3224307212u32 , 1271998022u32 , 3469436088u32 , 4197022858u32 , 4114207458u32 , 3862168567u32 , 798432117u32 , 23332298u32 , 2762337148u32 , 4214847380u32 , 3650491062u32 , 2229477384u32 , 2620153124u32 , 968834697u32 , 2213967518u32 , 3356497412u32 , 527925402u32 , 3472575083u32 , 3368766693u32 , 2271299428u32 , 1833541319u32 , 1160497299u32 , 4144887102u32 , 1659529969u32 , 859546789u32 , 1960989138u32 , 2673802232u32 , 836037603u32 , 3595420161u32 , 1528320406u32 , 3468989663u32 , 1747256964u32 , 2172529172u32 , 3084283302u32 , 2998850704u32 , 4080036470u32 , 3535003966u32 , 95564789u32 , 3646787135u32 , 3213189697u32 , 3855161187u32 , 990264918u32 , 2282081120u32 , 2112894915u32 , 570359024u32 , 2091062413u32 , 297387744u32 , 4118614427u32 , 1113648994u32 , 1493588833u32 , 303986147u32 , 4123782853u32 , 1108361085u32 , 611308476u32 , 11851321u32 , 2825708013u32 , 428550904u32 , 1961077096u32 , 1039356818u32 , 1281759160u32 , 3931194778u32 , 471362903u32 , 2660037162u32 , 3364582022u32 , 1270424231u32 , 189988860u32 , 909579565u32 , 225950890u32 , 3561280171u32 , 1099196523u32 , 2331857769u32 , 2068298677u32 , 3953335784u32 , 2196595662u32 , 3015830598u32 , 2798901808u32 , 4213661298u32 , 1647114263u32 , 3520680811u32 , 4018656289u32 , 631162154u32 , 1285071230u32 , 1733779952u32 , 3349181976u32 , 1268358839u32 , 3653391143u32 , 497920229u32 , 4260186941u32 , 2526332624u32 , 1469020628u32 , 3745411061u32 , 825000363u32 , 517970045u32 , 516688877u32 , 214212608u32 , 776053845u32 , 2994067376u32 , 1715378710u32 , 857129565u32 , 1346406727u32 , 1503507106u32 , 2410855252u32 , 938548574u32 , 3668239605u32 , 1213081654u32 , 3648607726u32 , 3937191824u32 , 4019313672u32 , 1943821868u32 , 1642132156u32 , 898289440u32 , 544785510u32 , 26369323u32 , 3978774502u32 , 1328456326u32 , 1784393862u32 , 2271863710u32 , 1070642373u32 , 3371793166u32 , 340120193u32 , 722849851u32 , 491646294u32 , 671572742u32 , 3394829011u32 , 1031843807u32 , 2720850668u32 , 948133874u32 , 3717621328u32 , 1867791235u32 , 3708044859u32 , 2146706716u32 , 1964478094u32 , 635163395u32 , 1882820659u32 , 1639866691u32 , 3564373280u32 , 1727774507u32 , 1660726878u32 , 2606928828u32 , 1582153498u32 , 155801033u32 , 1390052554u32 , 1638551108u32 , 297767543u32 , 671909442u32 , 3766194097u32 , 624093324u32 , 1341662051u32 , 3359083184u32 , 1079146945u32 , 1135843586u32 , 642136761u32 , 1751032114u32] } ; +& SET } fn empty_string_index () -> u32 { 259u32 } } pub const ATOM_LOCALNAME__63_6F_6C_75_6D_6E_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (0u32) ; +pub const ATOM_LOCALNAME__6B_65_72_6E_65_6C_75_6E_69_74_6C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (1u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_6F_72_2D_69_6E_74_65_72_70_6F_6C_61_74_69_6F_6E : LocalName = LocalName :: pack_static (2u32) ; +pub const ATOM_LOCALNAME__63_6F_6D_70_6C_65_78_65_73 : LocalName = LocalName :: pack_static (3u32) ; +pub const ATOM_LOCALNAME__61_6E_6E_6F_74_61_74_69_6F_6E_2D_78_6D_6C : LocalName = LocalName :: pack_static (4u32) ; +pub const ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_63_6F_6E_73_74_61_6E_74 : LocalName = LocalName :: pack_static (5u32) ; +pub const ATOM_LOCALNAME__6D_6F_7A_62_72_6F_77_73_65_72 : LocalName = LocalName :: pack_static (6u32) ; +pub const ATOM_LOCALNAME__69_6E_74_65_72_76_61_6C : LocalName = LocalName :: pack_static (7u32) ; +pub const ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_55_6E_69_74_73 : LocalName = LocalName :: pack_static (8u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6C_65_61_76_65 : LocalName = LocalName :: pack_static (9u32) ; +pub const ATOM_LOCALNAME__77_72_69_74_69_6E_67_2D_6D_6F_64_65 : LocalName = LocalName :: pack_static (10u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6D_61_78 : LocalName = LocalName :: pack_static (11u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_54_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (12u32) ; +pub const ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_55_52_4C : LocalName = LocalName :: pack_static (13u32) ; +pub const ATOM_LOCALNAME__62_61_63_6B_67_72_6F_75_6E_64 : LocalName = LocalName :: pack_static (14u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_74_65_6D_70_6C_61_74_65_69_64 : LocalName = LocalName :: pack_static (15u32) ; +pub const ATOM_LOCALNAME__66_65_47_61_75_73_73_69_61_6E_42_6C_75_72 : LocalName = LocalName :: pack_static (16u32) ; +pub const ATOM_LOCALNAME__73_75_62_73_63_72_69_70_74_73_68_69_66_74 : LocalName = LocalName :: pack_static (17u32) ; +pub const ATOM_LOCALNAME__78_6D_6C_6E_73_3A_78_6C_69_6E_6B : LocalName = LocalName :: pack_static (18u32) ; +pub const ATOM_LOCALNAME__66_69_65_6C_64_73_65_74 : LocalName = LocalName :: pack_static (19u32) ; +pub const ATOM_LOCALNAME__73_70_72_65_61_64_6D_65_74_68_6F_64 : LocalName = LocalName :: pack_static (20u32) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_74_61_72_67_65_74 : LocalName = LocalName :: pack_static (21u32) ; +pub const ATOM_LOCALNAME__66_65_44_69_66_66_75_73_65_4C_69_67_68_74_69_6E_67 : LocalName = LocalName :: pack_static (22u32) ; +pub const ATOM_LOCALNAME__66_65_74_75_72_62_75_6C_65_6E_63_65 : LocalName = LocalName :: pack_static (23u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_65_64_69_74_66_6F_63_75_73 : LocalName = LocalName :: pack_static (24u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_67_72_6F_75_70 : LocalName = LocalName :: pack_static (25u32) ; +pub const ATOM_LOCALNAME__6D_61_74_68_62_61_63_6B_67_72_6F_75_6E_64 : LocalName = LocalName :: pack_static (26u32) ; +pub const ATOM_LOCALNAME__6F_6E_6B_65_79_64_6F_77_6E : LocalName = LocalName :: pack_static (27u32) ; +pub const ATOM_LOCALNAME__66_65_43_6F_6C_6F_72_4D_61_74_72_69_78 : LocalName = LocalName :: pack_static (28u32) ; +pub const ATOM_LOCALNAME__73_74_61_72_74_6F_66_66_73_65_74 : LocalName = LocalName :: pack_static (29u32) ; +pub const ATOM_LOCALNAME__61_75_74_6F_66_6F_63_75_73 : LocalName = LocalName :: pack_static (30u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_78_74_6D_65_6E_75 : LocalName = LocalName :: pack_static (31u32) ; +pub const ATOM_LOCALNAME__6C_6F_6E_67_64_65_73_63 : LocalName = LocalName :: pack_static (32u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_65_6C_65_76_61_6E_74 : LocalName = LocalName :: pack_static (33u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_70_72_69_6E_74 : LocalName = LocalName :: pack_static (34u32) ; +pub const ATOM_LOCALNAME__66_69_6C_6C_2D_72_75_6C_65 : LocalName = LocalName :: pack_static (35u32) ; +pub const ATOM_LOCALNAME__68_72_65_66_6C_61_6E_67 : LocalName = LocalName :: pack_static (36u32) ; +pub const ATOM_LOCALNAME__64_6F_6D_61_69_6E_6F_66_61_70_70_6C_69_63_61_74_69_6F_6E : LocalName = LocalName :: pack_static (37u32) ; +pub const ATOM_LOCALNAME__6B_65_79_74_69_6D_65_73 : LocalName = LocalName :: pack_static (38u32) ; +pub const ATOM_LOCALNAME__6E_75_6D_6F_63_74_61_76_65_73 : LocalName = LocalName :: pack_static (39u32) ; +pub const ATOM_LOCALNAME__70_61_72_74_69_61_6C_64_69_66_66 : LocalName = LocalName :: pack_static (40u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_65_73_63_72_69_62_65_64_62_79 : LocalName = LocalName :: pack_static (41u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_6F_72_2D_69_6E_74_65_72_70_6F_6C_61_74_69_6F_6E_2D_66_69_6C_74_65_72_73 : LocalName = LocalName :: pack_static (42u32) ; +pub const ATOM_LOCALNAME__70_72_65_73_65_72_76_65_61_73_70_65_63_74_72_61_74_69_6F : LocalName = LocalName :: pack_static (43u32) ; +pub const ATOM_LOCALNAME__61_63_74_69_6F_6E_74_79_70_65 : LocalName = LocalName :: pack_static (44u32) ; +pub const ATOM_LOCALNAME__71_75_6F_74_69_65_6E_74 : LocalName = LocalName :: pack_static (45u32) ; +pub const ATOM_LOCALNAME__6E_6F_74_61_74_69_6F_6E : LocalName = LocalName :: pack_static (46u32) ; +pub const ATOM_LOCALNAME__61_75_74_6F_63_6F_6D_70_6C_65_74_65 : LocalName = LocalName :: pack_static (47u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_53_74_79_6C_65_54_79_70_65 : LocalName = LocalName :: pack_static (48u32) ; +pub const ATOM_LOCALNAME__73_74_72_69_6B_65_74_68_72_6F_75_67_68_2D_74_68_69_63_6B_6E_65_73_73 : LocalName = LocalName :: pack_static (49u32) ; +pub const ATOM_LOCALNAME__73_74_6F_70_2D_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (50u32) ; +pub const ATOM_LOCALNAME__69_74_65_6D_74_79_70_65 : LocalName = LocalName :: pack_static (51u32) ; +pub const ATOM_LOCALNAME__66_65_70_6F_69_6E_74_6C_69_67_68_74 : LocalName = LocalName :: pack_static (52u32) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_6D_65_74_68_6F_64 : LocalName = LocalName :: pack_static (53u32) ; +pub const ATOM_LOCALNAME__73_65_61_6D_6C_65_73_73 : LocalName = LocalName :: pack_static (54u32) ; +pub const ATOM_LOCALNAME__70_6C_61_69_6E_74_65_78_74 : LocalName = LocalName :: pack_static (55u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6D_6F_64_61_6C : LocalName = LocalName :: pack_static (56u32) ; +pub const ATOM_LOCALNAME__72_65_71_75_69_72_65_64 : LocalName = LocalName :: pack_static (57u32) ; +pub const ATOM_LOCALNAME__6E_75_6D_4F_63_74_61_76_65_73 : LocalName = LocalName :: pack_static (58u32) ; +pub const ATOM_LOCALNAME__6D_61_78_6C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (59u32) ; +pub const ATOM_LOCALNAME__70_69_65_63_65_77_69_73_65 : LocalName = LocalName :: pack_static (60u32) ; +pub const ATOM_LOCALNAME__63_65_6C_6C_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (61u32) ; +pub const ATOM_LOCALNAME__78_43_68_61_6E_6E_65_6C_53_65_6C_65_63_74_6F_72 : LocalName = LocalName :: pack_static (62u32) ; +pub const ATOM_LOCALNAME__6D_6F_6D_65_6E_74_61_62_6F_75_74 : LocalName = LocalName :: pack_static (63u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_69_6E_69_73_68 : LocalName = LocalName :: pack_static (64u32) ; +pub const ATOM_LOCALNAME__6B_65_72_6E_65_6C_6D_61_74_72_69_78 : LocalName = LocalName :: pack_static (65u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_6F_72_2D_70_72_6F_66_69_6C_65 : LocalName = LocalName :: pack_static (66u32) ; +pub const ATOM_LOCALNAME__66_65_64_72_6F_70_73_68_61_64_6F_77 : LocalName = LocalName :: pack_static (67u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_68_61_73_70_6F_70_75_70 : LocalName = LocalName :: pack_static (68u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_7A : LocalName = LocalName :: pack_static (69u32) ; +pub const ATOM_LOCALNAME__64_65_63_6F_64_69_6E_67 : LocalName = LocalName :: pack_static (70u32) ; +pub const ATOM_LOCALNAME__6C_69_6E_65_61_72_47_72_61_64_69_65_6E_74 : LocalName = LocalName :: pack_static (71u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_75_6D_6E_6C_69_6E_65_73 : LocalName = LocalName :: pack_static (72u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6D_6F_76_65 : LocalName = LocalName :: pack_static (73u32) ; +pub const ATOM_LOCALNAME__63_6F_64_6F_6D_61_69_6E : LocalName = LocalName :: pack_static (74u32) ; +pub const ATOM_LOCALNAME__70_72_73_75_62_73_65_74 : LocalName = LocalName :: pack_static (75u32) ; +pub const ATOM_LOCALNAME__61_6C_69_67_6E_6D_65_6E_74_2D_62_61_73_65_6C_69_6E_65 : LocalName = LocalName :: pack_static (76u32) ; +pub const ATOM_LOCALNAME__69_6E_74_65_72_63_65_70_74 : LocalName = LocalName :: pack_static (77u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_73_72_63 : LocalName = LocalName :: pack_static (78u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6D_75_6C_74_69_73_65_6C_65_63_74_61_62_6C_65 : LocalName = LocalName :: pack_static (79u32) ; +pub const ATOM_LOCALNAME__6B_65_79_50_6F_69_6E_74_73 : LocalName = LocalName :: pack_static (80u32) ; +pub const ATOM_LOCALNAME__64_69_66_66_75_73_65_63_6F_6E_73_74_61_6E_74 : LocalName = LocalName :: pack_static (81u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_61_72_63_72_6F_6C_65 : LocalName = LocalName :: pack_static (82u32) ; +pub const ATOM_LOCALNAME__6F_6E_61_66_74_65_72_75_70_64_61_74_65 : LocalName = LocalName :: pack_static (83u32) ; +pub const ATOM_LOCALNAME__66_6F_72_65_69_67_6E_4F_62_6A_65_63_74 : LocalName = LocalName :: pack_static (84u32) ; +pub const ATOM_LOCALNAME__61_75_74_6F_73_75_62_6D_69_74 : LocalName = LocalName :: pack_static (85u32) ; +pub const ATOM_LOCALNAME__73_63_72_6F_6C_6C_64_65_6C_61_79 : LocalName = LocalName :: pack_static (86u32) ; +pub const ATOM_LOCALNAME__73_74_72_65_74_63_68_79 : LocalName = LocalName :: pack_static (87u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_77_65_69_67_68_74 : LocalName = LocalName :: pack_static (88u32) ; +pub const ATOM_LOCALNAME__6F_6E_61_66_74_65_72_70_72_69_6E_74 : LocalName = LocalName :: pack_static (89u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_70_72_65_73_73_65_64 : LocalName = LocalName :: pack_static (90u32) ; +pub const ATOM_LOCALNAME__6C_69_6E_65_2D_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (91u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_66_72_65_71_75_65_6E_63_79 : LocalName = LocalName :: pack_static (92u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_65_73_63_72_69_70_74_69_6F_6E : LocalName = LocalName :: pack_static (93u32) ; +pub const ATOM_LOCALNAME__6F_6E_68_61_73_68_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (94u32) ; +pub const ATOM_LOCALNAME__64_69_73_70_6C_61_79_73_74_79_6C_65 : LocalName = LocalName :: pack_static (95u32) ; +pub const ATOM_LOCALNAME__76_2D_68_61_6E_67_69_6E_67 : LocalName = LocalName :: pack_static (96u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_63_6F_6E_74_65_6E_74_75_6E_69_74_73 : LocalName = LocalName :: pack_static (97u32) ; +pub const ATOM_LOCALNAME__68_74_74_70_2D_65_71_75_69_76 : LocalName = LocalName :: pack_static (98u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_69_6F_6E : LocalName = LocalName :: pack_static (99u32) ; +pub const ATOM_LOCALNAME__76_65_72_74_2D_61_64_76_2D_79 : LocalName = LocalName :: pack_static (100u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_6F_77_73_64_65_6C_65_74_65 : LocalName = LocalName :: pack_static (101u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6C_61_62_65_6C_6C_65_64_62_79 : LocalName = LocalName :: pack_static (102u32) ; +pub const ATOM_LOCALNAME__75_6E_69_63_6F_64_65_2D_72_61_6E_67_65 : LocalName = LocalName :: pack_static (103u32) ; +pub const ATOM_LOCALNAME__6C_69_73_74_65_6E_65_72 : LocalName = LocalName :: pack_static (104u32) ; +pub const ATOM_LOCALNAME__61_63_63_65_6E_74_2D_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (105u32) ; +pub const ATOM_LOCALNAME__64_6F_6D_69_6E_61_6E_74_2D_62_61_73_65_6C_69_6E_65 : LocalName = LocalName :: pack_static (106u32) ; +pub const ATOM_LOCALNAME__64_61_74_65_74_69_6D_65 : LocalName = LocalName :: pack_static (107u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_73_70_61_6E : LocalName = LocalName :: pack_static (108u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_6A_75_67_61_74_65 : LocalName = LocalName :: pack_static (109u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_64_6F_77_6E : LocalName = LocalName :: pack_static (110u32) ; +pub const ATOM_LOCALNAME__65_71_75_61_6C_72_6F_77_73 : LocalName = LocalName :: pack_static (111u32) ; +pub const ATOM_LOCALNAME__73_74_69_74_63_68_74_69_6C_65_73 : LocalName = LocalName :: pack_static (112u32) ; +pub const ATOM_LOCALNAME__65_64_67_65_6D_6F_64_65 : LocalName = LocalName :: pack_static (113u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_61_75_74_6F_63_6F_6D_70_6C_65_74_65 : LocalName = LocalName :: pack_static (114u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_61_74_6F_6D_69_63 : LocalName = LocalName :: pack_static (115u32) ; +pub const ATOM_LOCALNAME__6D_61_74_68_73_69_7A_65 : LocalName = LocalName :: pack_static (116u32) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68_72_65_66 : LocalName = LocalName :: pack_static (117u32) ; +pub const ATOM_LOCALNAME__6D_61_73_6B_75_6E_69_74_73 : LocalName = LocalName :: pack_static (118u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_70_61_74_68_75_6E_69_74_73 : LocalName = LocalName :: pack_static (119u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_68_65_63_6B_65_64 : LocalName = LocalName :: pack_static (120u32) ; +pub const ATOM_LOCALNAME__65_6E_61_62_6C_65_2D_62_61_63_6B_67_72_6F_75_6E_64 : LocalName = LocalName :: pack_static (121u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_63_75_74 : LocalName = LocalName :: pack_static (122u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6F_76_65_72 : LocalName = LocalName :: pack_static (123u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_58 : LocalName = LocalName :: pack_static (124u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_62_6C_63_6C_69_63_6B : LocalName = LocalName :: pack_static (125u32) ; +pub const ATOM_LOCALNAME__78_63_68_61_6E_6E_65_6C_73_65_6C_65_63_74_6F_72 : LocalName = LocalName :: pack_static (126u32) ; +pub const ATOM_LOCALNAME__73_79_6D_6D_65_74_72_69_63 : LocalName = LocalName :: pack_static (127u32) ; +pub const ATOM_LOCALNAME__66_65_64_69_66_66_75_73_65_6C_69_67_68_74_69_6E_67 : LocalName = LocalName :: pack_static (128u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6D_75_6C_74_69_6C_69_6E_65 : LocalName = LocalName :: pack_static (129u32) ; +pub const ATOM_LOCALNAME__6F_6E_69_6E_76_61_6C_69_64 : LocalName = LocalName :: pack_static (130u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_48_65_69_67_68_74 : LocalName = LocalName :: pack_static (131u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_64_75_72 : LocalName = LocalName :: pack_static (132u32) ; +pub const ATOM_LOCALNAME__76_65_72_74_2D_6F_72_69_67_69_6E_2D_79 : LocalName = LocalName :: pack_static (133u32) ; +pub const ATOM_LOCALNAME__72_65_71_75_69_72_65_64_46_65_61_74_75_72_65_73 : LocalName = LocalName :: pack_static (134u32) ; +pub const ATOM_LOCALNAME__65_6C_65_76_61_74_69_6F_6E : LocalName = LocalName :: pack_static (135u32) ; +pub const ATOM_LOCALNAME__76_69_65_77_74_61_72_67_65_74 : LocalName = LocalName :: pack_static (136u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6C_61_62_65_6C : LocalName = LocalName :: pack_static (137u32) ; +pub const ATOM_LOCALNAME__73_6F_6C_69_64_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (138u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_6F_72_6D_69_6E_70_75_74 : LocalName = LocalName :: pack_static (139u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_70_61_74_68 : LocalName = LocalName :: pack_static (140u32) ; +pub const ATOM_LOCALNAME__73_70_65_6C_6C_63_68_65_63_6B : LocalName = LocalName :: pack_static (141u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_54_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (142u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_69_73_61_62_6C_65_64 : LocalName = LocalName :: pack_static (143u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_66_6F_72_6D_61_74 : LocalName = LocalName :: pack_static (144u32) ; +pub const ATOM_LOCALNAME__61_75_74_6F_70_6C_61_79 : LocalName = LocalName :: pack_static (145u32) ; +pub const ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68 : LocalName = LocalName :: pack_static (146u32) ; +pub const ATOM_LOCALNAME__69_6D_61_67_69_6E_61_72_79_69 : LocalName = LocalName :: pack_static (147u32) ; +pub const ATOM_LOCALNAME__64_61_74_61_66_6F_72_6D_61_74_61_73 : LocalName = LocalName :: pack_static (148u32) ; +pub const ATOM_LOCALNAME__66_65_6D_6F_72_70_68_6F_6C_6F_67_79 : LocalName = LocalName :: pack_static (149u32) ; +pub const ATOM_LOCALNAME__78_2D_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (150u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_64_65_61_63_74_69_76_61_74_65 : LocalName = LocalName :: pack_static (151u32) ; +pub const ATOM_LOCALNAME__7A_6F_6F_6D_41_6E_64_50_61_6E : LocalName = LocalName :: pack_static (152u32) ; +pub const ATOM_LOCALNAME__6C_65_74_74_65_72_2D_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (153u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_65_78_70_61_6E_64_65_64 : LocalName = LocalName :: pack_static (154u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_62_72_61_69_6C_6C_65_6C_61_62_65_6C : LocalName = LocalName :: pack_static (155u32) ; +pub const ATOM_LOCALNAME__6D_61_74_68_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (156u32) ; +pub const ATOM_LOCALNAME__65_71_75_69_76_61_6C_65_6E_74 : LocalName = LocalName :: pack_static (157u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_66_61_6D_69_6C_79 : LocalName = LocalName :: pack_static (158u32) ; +pub const ATOM_LOCALNAME__73_63_72_69_70_74_6C_65_76_65_6C : LocalName = LocalName :: pack_static (159u32) ; +pub const ATOM_LOCALNAME__72_6F_77_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (160u32) ; +pub const ATOM_LOCALNAME__6D_61_73_6B_55_6E_69_74_73 : LocalName = LocalName :: pack_static (161u32) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68_52_65_66 : LocalName = LocalName :: pack_static (162u32) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68_2D_6F_72_69_65_6E_74_61_74_69_6F_6E_2D_68_6F_72_69_7A_6F_6E_74_61_6C : LocalName = LocalName :: pack_static (163u32) ; +pub const ATOM_LOCALNAME__6D_75_6C_74_69_63_6F_6C : LocalName = LocalName :: pack_static (164u32) ; +pub const ATOM_LOCALNAME__6D_61_73_6B_43_6F_6E_74_65_6E_74_55_6E_69_74_73 : LocalName = LocalName :: pack_static (165u32) ; +pub const ATOM_LOCALNAME__74_68_69_6E_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (166u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_64_69_74_69_6F_6E : LocalName = LocalName :: pack_static (167u32) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_6E_6F_76_61_6C_69_64_61_74_65 : LocalName = LocalName :: pack_static (168u32) ; +pub const ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_4E_61_6D_65 : LocalName = LocalName :: pack_static (169u32) ; +pub const ATOM_LOCALNAME__63_65_6C_6C_70_61_64_64_69_6E_67 : LocalName = LocalName :: pack_static (170u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6D_69_74_65_72_6C_69_6D_69_74 : LocalName = LocalName :: pack_static (171u32) ; +pub const ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68 : LocalName = LocalName :: pack_static (172u32) ; +pub const ATOM_LOCALNAME__73_65_6C_65_63_74_6F_72 : LocalName = LocalName :: pack_static (173u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_75_6E_6C_6F_61_64 : LocalName = LocalName :: pack_static (174u32) ; +pub const ATOM_LOCALNAME__6C_6F_77_6C_69_6D_69_74 : LocalName = LocalName :: pack_static (175u32) ; +pub const ATOM_LOCALNAME__6F_70_74_67_72_6F_75_70 : LocalName = LocalName :: pack_static (176u32) ; +pub const ATOM_LOCALNAME__66_65_44_69_73_74_61_6E_74_4C_69_67_68_74 : LocalName = LocalName :: pack_static (177u32) ; +pub const ATOM_LOCALNAME__66_72_61_6D_65_73_65_74 : LocalName = LocalName :: pack_static (178u32) ; +pub const ATOM_LOCALNAME__75_6E_64_65_72_6C_69_6E_65_2D_74_68_69_63_6B_6E_65_73_73 : LocalName = LocalName :: pack_static (179u32) ; +pub const ATOM_LOCALNAME__73_74_72_69_6B_65_74_68_72_6F_75_67_68_2D_70_6F_73_69_74_69_6F_6E : LocalName = LocalName :: pack_static (180u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_6F_77_73_69_6E_73_65_72_74_65_64 : LocalName = LocalName :: pack_static (181u32) ; +pub const ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_75_72_6C : LocalName = LocalName :: pack_static (182u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_77_65_69_67_68_74 : LocalName = LocalName :: pack_static (183u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_70_6C_61_63_65_68_6F_6C_64_65_72 : LocalName = LocalName :: pack_static (184u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_73_74_61_72_74 : LocalName = LocalName :: pack_static (185u32) ; +pub const ATOM_LOCALNAME__6F_6E_6F_6E_6C_69_6E_65 : LocalName = LocalName :: pack_static (186u32) ; +pub const ATOM_LOCALNAME__78_6D_6C_3A_62_61_73_65 : LocalName = LocalName :: pack_static (187u32) ; +pub const ATOM_LOCALNAME__61_6C_6C_6F_77_66_75_6C_6C_73_63_72_65_65_6E : LocalName = LocalName :: pack_static (188u32) ; +pub const ATOM_LOCALNAME__6E_6F_72_65_73_69_7A_65 : LocalName = LocalName :: pack_static (189u32) ; +pub const ATOM_LOCALNAME__73_70_72_65_61_64_4D_65_74_68_6F_64 : LocalName = LocalName :: pack_static (190u32) ; +pub const ATOM_LOCALNAME__66_65_43_6F_6E_76_6F_6C_76_65_4D_61_74_72_69_78 : LocalName = LocalName :: pack_static (191u32) ; +pub const ATOM_LOCALNAME__6C_69_6D_69_74_69_6E_67_43_6F_6E_65_41_6E_67_6C_65 : LocalName = LocalName :: pack_static (192u32) ; +pub const ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_74_79_70_65 : LocalName = LocalName :: pack_static (193u32) ; +pub const ATOM_LOCALNAME__73_65_6C_65_63_74_69_6F_6E : LocalName = LocalName :: pack_static (194u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_2D_6D_61_78 : LocalName = LocalName :: pack_static (195u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_6E_61_6D_65 : LocalName = LocalName :: pack_static (196u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_72_6F_6C_6C_65_72_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (197u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_73_65_6C_65_63_74_65_64 : LocalName = LocalName :: pack_static (198u32) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_65_6E_63_74_79_70_65 : LocalName = LocalName :: pack_static (199u32) ; +pub const ATOM_LOCALNAME__64_61_74_61_6C_69_73_74 : LocalName = LocalName :: pack_static (200u32) ; +pub const ATOM_LOCALNAME__72_6F_77_61_6C_69_67_6E : LocalName = LocalName :: pack_static (201u32) ; +pub const ATOM_LOCALNAME__73_63_61_6C_61_72_70_72_6F_64_75_63_74 : LocalName = LocalName :: pack_static (202u32) ; +pub const ATOM_LOCALNAME__6C_69_6D_69_74_69_6E_67_63_6F_6E_65_61_6E_67_6C_65 : LocalName = LocalName :: pack_static (203u32) ; +pub const ATOM_LOCALNAME__6D_70_72_65_73_63_72_69_70_74_73 : LocalName = LocalName :: pack_static (204u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_74_65_78_74 : LocalName = LocalName :: pack_static (205u32) ; +pub const ATOM_LOCALNAME__64_69_73_61_62_6C_65_64 : LocalName = LocalName :: pack_static (206u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_77_69_64_74_68 : LocalName = LocalName :: pack_static (207u32) ; +pub const ATOM_LOCALNAME__6E_6F_73_63_72_69_70_74 : LocalName = LocalName :: pack_static (208u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_65_73_69_7A_65 : LocalName = LocalName :: pack_static (209u32) ; +pub const ATOM_LOCALNAME__66_69_6C_74_65_72_55_6E_69_74_73 : LocalName = LocalName :: pack_static (210u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_73_65_74_73_69_7A_65 : LocalName = LocalName :: pack_static (211u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_70_61_73_74_65 : LocalName = LocalName :: pack_static (212u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_62_75_73_79 : LocalName = LocalName :: pack_static (213u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6E_74_72_6F_6C_73 : LocalName = LocalName :: pack_static (214u32) ; +pub const ATOM_LOCALNAME__6D_61_6C_69_67_6E_6D_61_72_6B : LocalName = LocalName :: pack_static (215u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6B_65_79_73_68_6F_72_74_63_75_74_73 : LocalName = LocalName :: pack_static (216u32) ; +pub const ATOM_LOCALNAME__63_61_6C_63_6D_6F_64_65 : LocalName = LocalName :: pack_static (217u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_6D_69_64 : LocalName = LocalName :: pack_static (218u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_6F_72_6D_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (219u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_66_6C_6F_77_74_6F : LocalName = LocalName :: pack_static (220u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_6D_6F_74_69_6F_6E : LocalName = LocalName :: pack_static (221u32) ; +pub const ATOM_LOCALNAME__61_6D_70_6C_69_74_75_64_65 : LocalName = LocalName :: pack_static (222u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6D_69_6E : LocalName = LocalName :: pack_static (223u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_70_6F_73_69_6E_73_65_74 : LocalName = LocalName :: pack_static (224u32) ; +pub const ATOM_LOCALNAME__6C_65_6E_67_74_68_61_64_6A_75_73_74 : LocalName = LocalName :: pack_static (225u32) ; +pub const ATOM_LOCALNAME__64_69_66_66_75_73_65_43_6F_6E_73_74_61_6E_74 : LocalName = LocalName :: pack_static (226u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_50_72_6F_66_69_6C_65 : LocalName = LocalName :: pack_static (227u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_6F_72_2D_72_65_6E_64_65_72_69_6E_67 : LocalName = LocalName :: pack_static (228u32) ; +pub const ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68_44_65_66 : LocalName = LocalName :: pack_static (229u32) ; +pub const ATOM_LOCALNAME__70_72_69_6D_69_74_69_76_65_75_6E_69_74_73 : LocalName = LocalName :: pack_static (230u32) ; +pub const ATOM_LOCALNAME__70_72_65_73_65_72_76_65_61_6C_70_68_61 : LocalName = LocalName :: pack_static (231u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_69_6E_64_65_78 : LocalName = LocalName :: pack_static (232u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_65_61_63_74_69_76_61_74_65 : LocalName = LocalName :: pack_static (233u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_75_72_69 : LocalName = LocalName :: pack_static (234u32) ; +pub const ATOM_LOCALNAME__66_65_53_70_65_63_75_6C_61_72_4C_69_67_68_74_69_6E_67 : LocalName = LocalName :: pack_static (235u32) ; +pub const ATOM_LOCALNAME__76_2D_69_64_65_6F_67_72_61_70_68_69_63 : LocalName = LocalName :: pack_static (236u32) ; +pub const ATOM_LOCALNAME__73_74_64_44_65_76_69_61_74_69_6F_6E : LocalName = LocalName :: pack_static (237u32) ; +pub const ATOM_LOCALNAME__6F_6E_73_75_62_6D_69_74 : LocalName = LocalName :: pack_static (238u32) ; +pub const ATOM_LOCALNAME__73_63_72_69_70_74_73_69_7A_65_6D_75_6C_74_69_70_6C_69_65_72 : LocalName = LocalName :: pack_static (239u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_6F_77_65_78_69_74 : LocalName = LocalName :: pack_static (240u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65 : LocalName = LocalName :: pack_static (241u32) ; +pub const ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_74_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (242u32) ; +pub const ATOM_LOCALNAME__76_65_72_79_76_65_72_79_74_68_69_6E_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (243u32) ; +pub const ATOM_LOCALNAME__6F_6E_73_65_6C_65_63_74 : LocalName = LocalName :: pack_static (244u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_2D_72_75_6C_65 : LocalName = LocalName :: pack_static (245u32) ; +pub const ATOM_LOCALNAME__63_6F_64_65_62_61_73_65 : LocalName = LocalName :: pack_static (246u32) ; +pub const ATOM_LOCALNAME__75_6E_64_65_72_6C_69_6E_65_2D_70_6F_73_69_74_69_6F_6E : LocalName = LocalName :: pack_static (247u32) ; +pub const ATOM_LOCALNAME__76_2D_6D_61_74_68_65_6D_61_74_69_63_61_6C : LocalName = LocalName :: pack_static (248u32) ; +pub const ATOM_LOCALNAME__73_65_70_61_72_61_74_6F_72 : LocalName = LocalName :: pack_static (249u32) ; +pub const ATOM_LOCALNAME__6D_61_74_72_69_78_72_6F_77 : LocalName = LocalName :: pack_static (250u32) ; +pub const ATOM_LOCALNAME__73_65_6C_65_63_74_65_64 : LocalName = LocalName :: pack_static (251u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_68_72_65_66 : LocalName = LocalName :: pack_static (252u32) ; +pub const ATOM_LOCALNAME__68_6F_72_69_7A_2D_61_64_76_2D_78 : LocalName = LocalName :: pack_static (253u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_72_6F_6C_73 : LocalName = LocalName :: pack_static (254u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_75_72_72_65_6E_74 : LocalName = LocalName :: pack_static (255u32) ; +pub const ATOM_LOCALNAME__6F_6E_73_63_72_6F_6C_6C : LocalName = LocalName :: pack_static (256u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_5A : LocalName = LocalName :: pack_static (257u32) ; +pub const ATOM_LOCALNAME__6F_76_65_72_66_6C_6F_77 : LocalName = LocalName :: pack_static (258u32) ; +pub const ATOM_LOCALNAME_ : LocalName = LocalName :: pack_static (259u32) ; +pub const ATOM_LOCALNAME__6F_6E_70_61_67_65_68_69_64_65 : LocalName = LocalName :: pack_static (260u32) ; +pub const ATOM_LOCALNAME__76_69_73_69_62_69_6C_69_74_79 : LocalName = LocalName :: pack_static (261u32) ; +pub const ATOM_LOCALNAME__66_65_43_6F_6D_70_6F_6E_65_6E_74_54_72_61_6E_73_66_65_72 : LocalName = LocalName :: pack_static (262u32) ; +pub const ATOM_LOCALNAME__6F_76_65_72_6C_69_6E_65_2D_70_6F_73_69_74_69_6F_6E : LocalName = LocalName :: pack_static (263u32) ; +pub const ATOM_LOCALNAME__72_65_6E_64_65_72_69_6E_67_2D_69_6E_74_65_6E_74 : LocalName = LocalName :: pack_static (264u32) ; +pub const ATOM_LOCALNAME__69_6E_66_69_6E_69_74_79 : LocalName = LocalName :: pack_static (265u32) ; +pub const ATOM_LOCALNAME__66_65_63_6F_6E_76_6F_6C_76_65_6D_61_74_72_69_78 : LocalName = LocalName :: pack_static (266u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_43_6F_75_6E_74 : LocalName = LocalName :: pack_static (267u32) ; +pub const ATOM_LOCALNAME__6F_6E_73_65_6C_65_63_74_73_74_61_72_74 : LocalName = LocalName :: pack_static (268u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_79 : LocalName = LocalName :: pack_static (269u32) ; +pub const ATOM_LOCALNAME__64_69_72_65_63_74_69_6F_6E : LocalName = LocalName :: pack_static (270u32) ; +pub const ATOM_LOCALNAME__66_65_63_6F_6C_6F_72_6D_61_74_72_69_78 : LocalName = LocalName :: pack_static (271u32) ; +pub const ATOM_LOCALNAME__74_61_62_69_6E_64_65_78 : LocalName = LocalName :: pack_static (272u32) ; +pub const ATOM_LOCALNAME__70_6C_61_63_65_68_6F_6C_64_65_72 : LocalName = LocalName :: pack_static (273u32) ; +pub const ATOM_LOCALNAME__74_72_61_6E_73_70_6F_73_65 : LocalName = LocalName :: pack_static (274u32) ; +pub const ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_75_6E_69_74_73 : LocalName = LocalName :: pack_static (275u32) ; +pub const ATOM_LOCALNAME__66_65_44_72_6F_70_53_68_61_64_6F_77 : LocalName = LocalName :: pack_static (276u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_72_6F_6C_65 : LocalName = LocalName :: pack_static (277u32) ; +pub const ATOM_LOCALNAME__65_64_67_65_4D_6F_64_65 : LocalName = LocalName :: pack_static (278u32) ; +pub const ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_54_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (279u32) ; +pub const ATOM_LOCALNAME__69_6E_74_65_67_65_72_73 : LocalName = LocalName :: pack_static (280u32) ; +pub const ATOM_LOCALNAME__73_74_64_64_65_76_69_61_74_69_6F_6E : LocalName = LocalName :: pack_static (281u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_2D_73_74_61_72_74 : LocalName = LocalName :: pack_static (282u32) ; +pub const ATOM_LOCALNAME__63_61_70_2D_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (283u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_74_79_70_65 : LocalName = LocalName :: pack_static (284u32) ; +pub const ATOM_LOCALNAME__75_6E_73_65_6C_65_63_74_61_62_6C_65 : LocalName = LocalName :: pack_static (285u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_73_74_79_6C_65_74_79_70_65 : LocalName = LocalName :: pack_static (286u32) ; +pub const ATOM_LOCALNAME__74_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (287u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6C_69_6E_65_6A_6F_69_6E : LocalName = LocalName :: pack_static (288u32) ; +pub const ATOM_LOCALNAME__69_6E_74_65_67_72_69_74_79 : LocalName = LocalName :: pack_static (289u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_61_74_61_73_65_74_63_68_61_6E_67_65_64 : LocalName = LocalName :: pack_static (290u32) ; +pub const ATOM_LOCALNAME__66_6F_72_65_69_67_6E_6F_62_6A_65_63_74 : LocalName = LocalName :: pack_static (291u32) ; +pub const ATOM_LOCALNAME__72_61_64_69_6F_67_72_6F_75_70 : LocalName = LocalName :: pack_static (292u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_65_64_69_74_61_62_6C_65 : LocalName = LocalName :: pack_static (293u32) ; +pub const ATOM_LOCALNAME__74_65_6D_70_6C_61_74_65 : LocalName = LocalName :: pack_static (294u32) ; +pub const ATOM_LOCALNAME__73_74_61_74_65_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (295u32) ; +pub const ATOM_LOCALNAME__70_61_74_68_6C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (296u32) ; +pub const ATOM_LOCALNAME__64_69_76_65_72_67_65_6E_63_65 : LocalName = LocalName :: pack_static (297u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_68_69_64_64_65_6E : LocalName = LocalName :: pack_static (298u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_6C_65_61_76_65 : LocalName = LocalName :: pack_static (299u32) ; +pub const ATOM_LOCALNAME__6D_61_6C_69_67_6E_67_72_6F_75_70 : LocalName = LocalName :: pack_static (300u32) ; +pub const ATOM_LOCALNAME__6F_75_74_65_72_70_72_6F_64_75_63_74 : LocalName = LocalName :: pack_static (301u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_68_61_6E_6E_65_6C : LocalName = LocalName :: pack_static (302u32) ; +pub const ATOM_LOCALNAME__73_79_73_74_65_6D_6C_61_6E_67_75_61_67_65 : LocalName = LocalName :: pack_static (303u32) ; +pub const ATOM_LOCALNAME__66_65_74_63_68_70_72_69_6F_72_69_74_79 : LocalName = LocalName :: pack_static (304u32) ; +pub const ATOM_LOCALNAME__70_6F_6C_79_6C_69_6E_65 : LocalName = LocalName :: pack_static (305u32) ; +pub const ATOM_LOCALNAME__6C_69_67_68_74_69_6E_67_2D_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (306u32) ; +pub const ATOM_LOCALNAME__70_72_6F_70_65_72_74_79 : LocalName = LocalName :: pack_static (307u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_43_6F_6C_6F_72 : LocalName = LocalName :: pack_static (308u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_64_72_6F_70 : LocalName = LocalName :: pack_static (309u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_2D_6D_69_6E : LocalName = LocalName :: pack_static (310u32) ; +pub const ATOM_LOCALNAME__73_70_65_63_69_66_69_63_61_74_69_6F_6E : LocalName = LocalName :: pack_static (311u32) ; +pub const ATOM_LOCALNAME__73_75_72_66_61_63_65_73_63_61_6C_65 : LocalName = LocalName :: pack_static (312u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_70_61_74_68 : LocalName = LocalName :: pack_static (313u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_55_6E_69_74_73 : LocalName = LocalName :: pack_static (314u32) ; +pub const ATOM_LOCALNAME__66_6C_6F_6F_64_2D_6F_70_61_63_69_74_79 : LocalName = LocalName :: pack_static (315u32) ; +pub const ATOM_LOCALNAME__72_65_66_65_72_72_65_72_70_6F_6C_69_63_79 : LocalName = LocalName :: pack_static (316u32) ; +pub const ATOM_LOCALNAME__66_61_63_74_6F_72_69_61_6C : LocalName = LocalName :: pack_static (317u32) ; +pub const ATOM_LOCALNAME__68_69_64_65_66_6F_63_75_73 : LocalName = LocalName :: pack_static (318u32) ; +pub const ATOM_LOCALNAME__73_74_69_74_63_68_54_69_6C_65_73 : LocalName = LocalName :: pack_static (319u32) ; +pub const ATOM_LOCALNAME__61_72_61_62_69_63_2D_66_6F_72_6D : LocalName = LocalName :: pack_static (320u32) ; +pub const ATOM_LOCALNAME__62_6C_6F_63_6B_71_75_6F_74_65 : LocalName = LocalName :: pack_static (321u32) ; +pub const ATOM_LOCALNAME__6D_6C_61_62_65_6C_65_64_74_72 : LocalName = LocalName :: pack_static (322u32) ; +pub const ATOM_LOCALNAME__6E_6F_76_61_6C_69_64_61_74_65 : LocalName = LocalName :: pack_static (323u32) ; +pub const ATOM_LOCALNAME__6F_6E_70_6F_70_73_74_61_74_65 : LocalName = LocalName :: pack_static (324u32) ; +pub const ATOM_LOCALNAME__6F_6E_65_72_72_6F_72_75_70_64_61_74_65 : LocalName = LocalName :: pack_static (325u32) ; +pub const ATOM_LOCALNAME__66_65_53_70_6F_74_4C_69_67_68_74 : LocalName = LocalName :: pack_static (326u32) ; +pub const ATOM_LOCALNAME__73_74_6F_70_2D_6F_70_61_63_69_74_79 : LocalName = LocalName :: pack_static (327u32) ; +pub const ATOM_LOCALNAME__72_65_61_64_6F_6E_6C_79 : LocalName = LocalName :: pack_static (328u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_55_6E_69_74_73 : LocalName = LocalName :: pack_static (329u32) ; +pub const ATOM_LOCALNAME__6E_61_74_75_72_61_6C_6E_75_6D_62_65_72_73 : LocalName = LocalName :: pack_static (330u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_75_6E_69_74_73 : LocalName = LocalName :: pack_static (331u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_6D_69_6C_79 : LocalName = LocalName :: pack_static (332u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_75_6E_69_74_73 : LocalName = LocalName :: pack_static (333u32) ; +pub const ATOM_LOCALNAME__6F_72_69_65_6E_74_61_74_69_6F_6E : LocalName = LocalName :: pack_static (334u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (335u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_69_6E_64_65_78_74_65_78_74 : LocalName = LocalName :: pack_static (336u32) ; +pub const ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_54_79_70_65 : LocalName = LocalName :: pack_static (337u32) ; +pub const ATOM_LOCALNAME__61_63_63_65_73_73_6B_65_79 : LocalName = LocalName :: pack_static (338u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_50_61_74_68_55_6E_69_74_73 : LocalName = LocalName :: pack_static (339u32) ; +pub const ATOM_LOCALNAME__6B_65_79_53_70_6C_69_6E_65_73 : LocalName = LocalName :: pack_static (340u32) ; +pub const ATOM_LOCALNAME__6F_6E_73_74_6F_72_61_67_65 : LocalName = LocalName :: pack_static (341u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_73_74_79_6C_65 : LocalName = LocalName :: pack_static (342u32) ; +pub const ATOM_LOCALNAME__66_65_64_69_73_70_6C_61_63_65_6D_65_6E_74_6D_61_70 : LocalName = LocalName :: pack_static (343u32) ; +pub const ATOM_LOCALNAME__73_65_70_61_72_61_74_6F_72_73 : LocalName = LocalName :: pack_static (344u32) ; +pub const ATOM_LOCALNAME__76_65_72_79_74_68_69_6E_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (345u32) ; +pub const ATOM_LOCALNAME__70_72_69_6D_69_74_69_76_65_55_6E_69_74_73 : LocalName = LocalName :: pack_static (346u32) ; +pub const ATOM_LOCALNAME__73_75_72_66_61_63_65_53_63_61_6C_65 : LocalName = LocalName :: pack_static (347u32) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_61_63_74_69_6F_6E : LocalName = LocalName :: pack_static (348u32) ; +pub const ATOM_LOCALNAME__76_65_72_79_74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (349u32) ; +pub const ATOM_LOCALNAME__63_61_6C_63_4D_6F_64_65 : LocalName = LocalName :: pack_static (350u32) ; +pub const ATOM_LOCALNAME__78_6D_6C_3A_6C_61_6E_67 : LocalName = LocalName :: pack_static (351u32) ; +pub const ATOM_LOCALNAME__66_65_64_69_73_74_61_6E_74_6C_69_67_68_74 : LocalName = LocalName :: pack_static (352u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_73_74_79_6C_65 : LocalName = LocalName :: pack_static (353u32) ; +pub const ATOM_LOCALNAME__6F_76_65_72_6C_69_6E_65_2D_74_68_69_63_6B_6E_65_73_73 : LocalName = LocalName :: pack_static (354u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_6F_75_6E_63_65 : LocalName = LocalName :: pack_static (355u32) ; +pub const ATOM_LOCALNAME__62_65_76_65_6C_6C_65_64 : LocalName = LocalName :: pack_static (356u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6F_75_74 : LocalName = LocalName :: pack_static (357u32) ; +pub const ATOM_LOCALNAME__65_78_70_6F_6E_65_6E_74 : LocalName = LocalName :: pack_static (358u32) ; +pub const ATOM_LOCALNAME__70_72_65_66_65_74_63_68 : LocalName = LocalName :: pack_static (359u32) ; +pub const ATOM_LOCALNAME__74_61_62_6C_65_76_61_6C_75_65_73 : LocalName = LocalName :: pack_static (360u32) ; +pub const ATOM_LOCALNAME__69_74_65_6D_73_63_6F_70_65 : LocalName = LocalName :: pack_static (361u32) ; +pub const ATOM_LOCALNAME__6D_61_6E_69_66_65_73_74 : LocalName = LocalName :: pack_static (362u32) ; +pub const ATOM_LOCALNAME__6E_6F_6D_6F_64_75_6C_65 : LocalName = LocalName :: pack_static (363u32) ; +pub const ATOM_LOCALNAME__6D_61_74_68_76_61_72_69_61_6E_74 : LocalName = LocalName :: pack_static (364u32) ; +pub const ATOM_LOCALNAME__76_2D_61_6C_70_68_61_62_65_74_69_63 : LocalName = LocalName :: pack_static (365u32) ; +pub const ATOM_LOCALNAME__73_63_72_6F_6C_6C_69_6E_67 : LocalName = LocalName :: pack_static (366u32) ; +pub const ATOM_LOCALNAME__6B_65_79_73_70_6C_69_6E_65_73 : LocalName = LocalName :: pack_static (367u32) ; +pub const ATOM_LOCALNAME__76_61_72_69_61_6E_63_65 : LocalName = LocalName :: pack_static (368u32) ; +pub const ATOM_LOCALNAME__66_65_4D_6F_72_70_68_6F_6C_6F_67_79 : LocalName = LocalName :: pack_static (369u32) ; +pub const ATOM_LOCALNAME__70_72_65_73_65_72_76_65_41_6C_70_68_61 : LocalName = LocalName :: pack_static (370u32) ; +pub const ATOM_LOCALNAME__76_69_65_77_54_61_72_67_65_74 : LocalName = LocalName :: pack_static (371u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6F_72_69_65_6E_74_61_74_69_6F_6E : LocalName = LocalName :: pack_static (372u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_63_6F_75_6E_74 : LocalName = LocalName :: pack_static (373u32) ; +pub const ATOM_LOCALNAME__6F_6E_6C_61_6E_67_75_61_67_65_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (374u32) ; +pub const ATOM_LOCALNAME__6F_6E_63_6F_6E_74_72_6F_6C_73_65_6C_65_63_74 : LocalName = LocalName :: pack_static (375u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_75_70 : LocalName = LocalName :: pack_static (376u32) ; +pub const ATOM_LOCALNAME__69_6E_70_75_74_6D_6F_64_65 : LocalName = LocalName :: pack_static (377u32) ; +pub const ATOM_LOCALNAME__6E_6F_74_73_75_62_73_65_74 : LocalName = LocalName :: pack_static (378u32) ; +pub const ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_2D_73_72_63 : LocalName = LocalName :: pack_static (379u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_65_61_64_6F_6E_6C_79 : LocalName = LocalName :: pack_static (380u32) ; +pub const ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_65_78_70_6F_6E_65_6E_74 : LocalName = LocalName :: pack_static (381u32) ; +pub const ATOM_LOCALNAME__6D_75_6C_74_69_70_6C_65 : LocalName = LocalName :: pack_static (382u32) ; +pub const ATOM_LOCALNAME__6F_6E_75_6E_6C_6F_61_64 : LocalName = LocalName :: pack_static (383u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_69_6E_64_65_78 : LocalName = LocalName :: pack_static (384u32) ; +pub const ATOM_LOCALNAME__72_65_76_65_72_73_65_64 : LocalName = LocalName :: pack_static (385u32) ; +pub const ATOM_LOCALNAME__6F_6E_6F_66_66_6C_69_6E_65 : LocalName = LocalName :: pack_static (386u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_69_6E_64_65_78_74_65_78_74 : LocalName = LocalName :: pack_static (387u32) ; +pub const ATOM_LOCALNAME__65_78_74_65_72_6E_61_6C_72_65_73_6F_75_72_63_65_73_72_65_71_75_69_72_65_64 : LocalName = LocalName :: pack_static (388u32) ; +pub const ATOM_LOCALNAME__64_61_74_61_74_65_6D_70_6C_61_74_65 : LocalName = LocalName :: pack_static (389u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_73_69_7A_65 : LocalName = LocalName :: pack_static (390u32) ; +pub const ATOM_LOCALNAME__69_6D_61_67_65_2D_72_65_6E_64_65_72_69_6E_67 : LocalName = LocalName :: pack_static (391u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_66_6F_6E_74 : LocalName = LocalName :: pack_static (392u32) ; +pub const ATOM_LOCALNAME__66_69_6C_6C_2D_6F_70_61_63_69_74_79 : LocalName = LocalName :: pack_static (393u32) ; +pub const ATOM_LOCALNAME__72_61_64_69_61_6C_67_72_61_64_69_65_6E_74 : LocalName = LocalName :: pack_static (394u32) ; +pub const ATOM_LOCALNAME__66_72_61_6D_65_62_6F_72_64_65_72 : LocalName = LocalName :: pack_static (395u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_64_61_73_68_61_72_72_61_79 : LocalName = LocalName :: pack_static (396u32) ; +pub const ATOM_LOCALNAME__65_6E_63_6F_64_69_6E_67 : LocalName = LocalName :: pack_static (397u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_74_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (398u32) ; +pub const ATOM_LOCALNAME__6D_6F_76_61_62_6C_65_6C_69_6D_69_74_73 : LocalName = LocalName :: pack_static (399u32) ; +pub const ATOM_LOCALNAME__66_69_6C_74_65_72_72_65_73 : LocalName = LocalName :: pack_static (400u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_73_74_72_65_74_63_68 : LocalName = LocalName :: pack_static (401u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_50_61_74_68 : LocalName = LocalName :: pack_static (402u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_73_68_6F_77 : LocalName = LocalName :: pack_static (403u32) ; +pub const ATOM_LOCALNAME__6E_6F_74_61_6E_75_6D_62_65_72 : LocalName = LocalName :: pack_static (404u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_65_6E_74_65_72 : LocalName = LocalName :: pack_static (405u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_72_6F_70_65_66_66_65_63_74 : LocalName = LocalName :: pack_static (406u32) ; +pub const ATOM_LOCALNAME__70_72_6F_67_72_65_73_73 : LocalName = LocalName :: pack_static (407u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_61_74_61_61_76_61_69_6C_61_62_6C_65 : LocalName = LocalName :: pack_static (408u32) ; +pub const ATOM_LOCALNAME__76_61_6C_75_65_74_79_70_65 : LocalName = LocalName :: pack_static (409u32) ; +pub const ATOM_LOCALNAME__6E_6F_66_72_61_6D_65_73 : LocalName = LocalName :: pack_static (410u32) ; +pub const ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_45_78_70_6F_6E_65_6E_74 : LocalName = LocalName :: pack_static (411u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_2D_72_65_6E_64_65_72_69_6E_67 : LocalName = LocalName :: pack_static (412u32) ; +pub const ATOM_LOCALNAME__6F_74_68_65_72_77_69_73_65 : LocalName = LocalName :: pack_static (413u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_6C_69_6E_65 : LocalName = LocalName :: pack_static (414u32) ; +pub const ATOM_LOCALNAME__66_72_61_6D_65_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (415u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_74_69_74_6C_65 : LocalName = LocalName :: pack_static (416u32) ; +pub const ATOM_LOCALNAME__66_65_4F_66_66_73_65_74 : LocalName = LocalName :: pack_static (417u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_73_65_63_72_65_74 : LocalName = LocalName :: pack_static (418u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6E_6F_77 : LocalName = LocalName :: pack_static (419u32) ; +pub const ATOM_LOCALNAME__65_6D_70_74_79_73_65_74 : LocalName = LocalName :: pack_static (420u32) ; +pub const ATOM_LOCALNAME__64_65_74_65_72_6D_69_6E_61_6E_74 : LocalName = LocalName :: pack_static (421u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_6C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (422u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_76_61_72_69_61_6E_74 : LocalName = LocalName :: pack_static (423u32) ; +pub const ATOM_LOCALNAME__68_6F_72_69_7A_2D_6F_72_69_67_69_6E_2D_78 : LocalName = LocalName :: pack_static (424u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_62_72_61_69_6C_6C_65_72_6F_6C_65_64_65_73_63_72_69_70_74_69_6F_6E : LocalName = LocalName :: pack_static (425u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_6F_63_75_73_6F_75_74 : LocalName = LocalName :: pack_static (426u32) ; +pub const ATOM_LOCALNAME__6D_65_6E_75_69_74_65_6D : LocalName = LocalName :: pack_static (427u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_65_6E_64 : LocalName = LocalName :: pack_static (428u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_6C_69_6E_65_2D_73_68_69_66_74 : LocalName = LocalName :: pack_static (429u32) ; +pub const ATOM_LOCALNAME__66_65_43_6F_6D_70_6F_73_69_74_65 : LocalName = LocalName :: pack_static (430u32) ; +pub const ATOM_LOCALNAME__70_61_74_68_4C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (431u32) ; +pub const ATOM_LOCALNAME__73_74_61_72_74_4F_66_66_73_65_74 : LocalName = LocalName :: pack_static (432u32) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68_2D_6F_72_69_65_6E_74_61_74_69_6F_6E_2D_76_65_72_74_69_63_61_6C : LocalName = LocalName :: pack_static (433u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_50_61_74_68 : LocalName = LocalName :: pack_static (434u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_65_61_64_79_73_74_61_74_65_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (435u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6F_70_61_63_69_74_79 : LocalName = LocalName :: pack_static (436u32) ; +pub const ATOM_LOCALNAME__61_63_63_75_6D_75_6C_61_74_65 : LocalName = LocalName :: pack_static (437u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_75_70_64_61_74_65 : LocalName = LocalName :: pack_static (438u32) ; +pub const ATOM_LOCALNAME__73_68_61_70_65_2D_72_65_6E_64_65_72_69_6E_67 : LocalName = LocalName :: pack_static (439u32) ; +pub const ATOM_LOCALNAME__66_69_67_63_61_70_74_69_6F_6E : LocalName = LocalName :: pack_static (440u32) ; +pub const ATOM_LOCALNAME__74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (441u32) ; +pub const ATOM_LOCALNAME__6D_69_6E_6C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (442u32) ; +pub const ATOM_LOCALNAME__72_65_71_75_69_72_65_64_65_78_74_65_6E_73_69_6F_6E_73 : LocalName = LocalName :: pack_static (443u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_2D_74_65_6D_70_6C_61_74_65 : LocalName = LocalName :: pack_static (444u32) ; +pub const ATOM_LOCALNAME__76_65_72_74_2D_6F_72_69_67_69_6E_2D_78 : LocalName = LocalName :: pack_static (445u32) ; +pub const ATOM_LOCALNAME__6C_69_6E_65_61_72_67_72_61_64_69_65_6E_74 : LocalName = LocalName :: pack_static (446u32) ; +pub const ATOM_LOCALNAME__64_6F_77_6E_6C_6F_61_64 : LocalName = LocalName :: pack_static (447u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_76_65_73_74_61_72_74 : LocalName = LocalName :: pack_static (448u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_74_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (449u32) ; +pub const ATOM_LOCALNAME__73_75_70_65_72_73_63_72_69_70_74_73_68_69_66_74 : LocalName = LocalName :: pack_static (450u32) ; +pub const ATOM_LOCALNAME__65_78_74_65_72_6E_61_6C_52_65_73_6F_75_72_63_65_73_52_65_71_75_69_72_65_64 : LocalName = LocalName :: pack_static (451u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (452u32) ; +pub const ATOM_LOCALNAME__70_61_6E_6F_73_65_2D_31 : LocalName = LocalName :: pack_static (453u32) ; +pub const ATOM_LOCALNAME__66_69_6C_74_65_72_52_65_73 : LocalName = LocalName :: pack_static (454u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_63_6F_75_6E_74 : LocalName = LocalName :: pack_static (455u32) ; +pub const ATOM_LOCALNAME__6D_69_73_73_69_6E_67_2D_67_6C_79_70_68 : LocalName = LocalName :: pack_static (456u32) ; +pub const ATOM_LOCALNAME__63_61_72_74_65_73_69_61_6E_70_72_6F_64_75_63_74 : LocalName = LocalName :: pack_static (457u32) ; +pub const ATOM_LOCALNAME__66_65_6D_65_72_67_65_6E_6F_64_65 : LocalName = LocalName :: pack_static (458u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_6F_76_65_72 : LocalName = LocalName :: pack_static (459u32) ; +pub const ATOM_LOCALNAME__66_65_73_70_65_63_75_6C_61_72_6C_69_67_68_74_69_6E_67 : LocalName = LocalName :: pack_static (460u32) ; +pub const ATOM_LOCALNAME__6D_70_68_61_6E_74_6F_6D : LocalName = LocalName :: pack_static (461u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_61_63_74_69_76_65_64_65_73_63_65_6E_64_61_6E_74 : LocalName = LocalName :: pack_static (462u32) ; +pub const ATOM_LOCALNAME__65_78_70_6F_6E_65_6E_74_69_61_6C_65 : LocalName = LocalName :: pack_static (463u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_69_6E_76_61_6C_69_64 : LocalName = LocalName :: pack_static (464u32) ; +pub const ATOM_LOCALNAME__72_65_71_75_69_72_65_64_66_65_61_74_75_72_65_73 : LocalName = LocalName :: pack_static (465u32) ; +pub const ATOM_LOCALNAME__61_64_64_69_74_69_76_65 : LocalName = LocalName :: pack_static (466u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_61_63_74_69_76_61_74_65 : LocalName = LocalName :: pack_static (467u32) ; +pub const ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68_69_74_65_6D : LocalName = LocalName :: pack_static (468u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_63_6F_75_6E_74 : LocalName = LocalName :: pack_static (469u32) ; +pub const ATOM_LOCALNAME__72_61_74_69_6F_6E_61_6C_73 : LocalName = LocalName :: pack_static (470u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6C_69_6E_65_63_61_70 : LocalName = LocalName :: pack_static (471u32) ; +pub const ATOM_LOCALNAME__61_6E_6E_6F_74_61_74_69_6F_6E : LocalName = LocalName :: pack_static (472u32) ; +pub const ATOM_LOCALNAME__75_6E_69_74_73_2D_70_65_72_2D_65_6D : LocalName = LocalName :: pack_static (473u32) ; +pub const ATOM_LOCALNAME__74_61_62_6C_65_56_61_6C_75_65_73 : LocalName = LocalName :: pack_static (474u32) ; +pub const ATOM_LOCALNAME__6D_6D_75_6C_74_69_73_63_72_69_70_74_73 : LocalName = LocalName :: pack_static (475u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6F_77_6E_73 : LocalName = LocalName :: pack_static (476u32) ; +pub const ATOM_LOCALNAME__69_64_65_6F_67_72_61_70_68_69_63 : LocalName = LocalName :: pack_static (477u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_2D_61_6E_63_68_6F_72 : LocalName = LocalName :: pack_static (478u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_73_6F_72_74 : LocalName = LocalName :: pack_static (479u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_61_74_61_74_79_70_65 : LocalName = LocalName :: pack_static (480u32) ; +pub const ATOM_LOCALNAME__69_72_72_65_6C_65_76_61_6E_74 : LocalName = LocalName :: pack_static (481u32) ; +pub const ATOM_LOCALNAME__70_72_65_73_65_72_76_65_41_73_70_65_63_74_52_61_74_69_6F : LocalName = LocalName :: pack_static (482u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_57_69_64_74_68 : LocalName = LocalName :: pack_static (483u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_75_6D_6E_61_6C_69_67_6E : LocalName = LocalName :: pack_static (484u32) ; +pub const ATOM_LOCALNAME__6E_6F_74_70_72_73_75_62_73_65_74 : LocalName = LocalName :: pack_static (485u32) ; +pub const ATOM_LOCALNAME__6C_61_6E_67_75_61_67_65 : LocalName = LocalName :: pack_static (486u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_63_6F_70_79 : LocalName = LocalName :: pack_static (487u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_69_6C_74_65_72_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (488u32) ; +pub const ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68_64_65_66 : LocalName = LocalName :: pack_static (489u32) ; +pub const ATOM_LOCALNAME__66_65_50_6F_69_6E_74_4C_69_67_68_74 : LocalName = LocalName :: pack_static (490u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_65_72_2D_65_76_65_6E_74_73 : LocalName = LocalName :: pack_static (491u32) ; +pub const ATOM_LOCALNAME__66_65_44_69_73_70_6C_61_63_65_6D_65_6E_74_4D_61_70 : LocalName = LocalName :: pack_static (492u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_61_74_61_73_65_74_63_6F_6D_70_6C_65_74_65 : LocalName = LocalName :: pack_static (493u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_73_70_61_6E : LocalName = LocalName :: pack_static (494u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_75_6D_6E_73_70_61_6E : LocalName = LocalName :: pack_static (495u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_64_61_73_68_6F_66_66_73_65_74 : LocalName = LocalName :: pack_static (496u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_65_71_75_69_72_65_64 : LocalName = LocalName :: pack_static (497u32) ; +pub const ATOM_LOCALNAME__6F_63_63_75_72_72_65_6E_63_65 : LocalName = LocalName :: pack_static (498u32) ; +pub const ATOM_LOCALNAME__6D_75_6E_64_65_72_6F_76_65_72 : LocalName = LocalName :: pack_static (499u32) ; +pub const ATOM_LOCALNAME__6C_69_6E_65_74_68_69_63_6B_6E_65_73_73 : LocalName = LocalName :: pack_static (500u32) ; +pub const ATOM_LOCALNAME__66_65_4D_65_72_67_65_4E_6F_64_65 : LocalName = LocalName :: pack_static (501u32) ; +pub const ATOM_LOCALNAME__6D_65_6E_63_6C_6F_73_65 : LocalName = LocalName :: pack_static (502u32) ; +pub const ATOM_LOCALNAME__61_6C_69_67_6E_6D_65_6E_74_73_63_6F_70_65 : LocalName = LocalName :: pack_static (503u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_77_69_64_74_68 : LocalName = LocalName :: pack_static (504u32) ; +pub const ATOM_LOCALNAME__61_63_63_65_6E_74_75_6E_64_65_72 : LocalName = LocalName :: pack_static (505u32) ; +pub const ATOM_LOCALNAME__66_65_6F_66_66_73_65_74 : LocalName = LocalName :: pack_static (506u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_75_6D_6E_77_69_64_74_68 : LocalName = LocalName :: pack_static (507u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_61_72_65_61 : LocalName = LocalName :: pack_static (508u32) ; +pub const ATOM_LOCALNAME__66_65_63_6F_6D_70_6F_73_69_74_65 : LocalName = LocalName :: pack_static (509u32) ; +pub const ATOM_LOCALNAME__69_74_65_6D_70_72_6F_70 : LocalName = LocalName :: pack_static (510u32) ; +pub const ATOM_LOCALNAME__69_6E_74_65_72_73_65_63_74 : LocalName = LocalName :: pack_static (511u32) ; +pub const ATOM_LOCALNAME__73_65_6D_61_6E_74_69_63_73 : LocalName = LocalName :: pack_static (512u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_73_69_7A_65_2D_61_64_6A_75_73_74 : LocalName = LocalName :: pack_static (513u32) ; +pub const ATOM_LOCALNAME__77_6F_72_64_2D_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (514u32) ; +pub const ATOM_LOCALNAME__6F_6E_63_65_6C_6C_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (515u32) ; +pub const ATOM_LOCALNAME__63_72_6F_73_73_6F_72_69_67_69_6E : LocalName = LocalName :: pack_static (516u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_73_74_61_72_74 : LocalName = LocalName :: pack_static (517u32) ; +pub const ATOM_LOCALNAME__66_6C_6F_6F_64_2D_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (518u32) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68_2D_6E_61_6D_65 : LocalName = LocalName :: pack_static (519u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_78 : LocalName = LocalName :: pack_static (520u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_4C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (521u32) ; +pub const ATOM_LOCALNAME__65_75_6C_65_72_67_61_6D_6D_61 : LocalName = LocalName :: pack_static (522u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_65_74_61_69_6C_73 : LocalName = LocalName :: pack_static (523u32) ; +pub const ATOM_LOCALNAME__74_72_61_6E_73_6C_61_74_65 : LocalName = LocalName :: pack_static (524u32) ; +pub const ATOM_LOCALNAME__66_69_6C_74_65_72_75_6E_69_74_73 : LocalName = LocalName :: pack_static (525u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_73_63_72_69_70_74_74_79_70_65 : LocalName = LocalName :: pack_static (526u32) ; +pub const ATOM_LOCALNAME__6D_61_74_68_65_6D_61_74_69_63_61_6C : LocalName = LocalName :: pack_static (527u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_6F_77_65_6E_74_65_72 : LocalName = LocalName :: pack_static (528u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_67_72_61_62 : LocalName = LocalName :: pack_static (529u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_6F_63_75_73_69_6E : LocalName = LocalName :: pack_static (530u32) ; +pub const ATOM_LOCALNAME__6F_6E_70_72_6F_70_65_72_74_79_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (531u32) ; +pub const ATOM_LOCALNAME__7A_6F_6F_6D_61_6E_64_70_61_6E : LocalName = LocalName :: pack_static (532u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_61_63_74_75_61_74_65 : LocalName = LocalName :: pack_static (533u32) ; +pub const ATOM_LOCALNAME__75_6E_69_63_6F_64_65_2D_62_69_64_69 : LocalName = LocalName :: pack_static (534u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_65_73_73_61_67_65 : LocalName = LocalName :: pack_static (535u32) ; +pub const ATOM_LOCALNAME__66_65_73_70_6F_74_6C_69_67_68_74 : LocalName = LocalName :: pack_static (536u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_2D_70_61_74_68 : LocalName = LocalName :: pack_static (537u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_77_68_65_65_6C : LocalName = LocalName :: pack_static (538u32) ; +pub const ATOM_LOCALNAME__6D_61_72_67_69_6E_77_69_64_74_68 : LocalName = LocalName :: pack_static (539u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_65_72_72_6F_72_6D_65_73_73_61_67_65 : LocalName = LocalName :: pack_static (540u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_46_72_65_71_75_65_6E_63_79 : LocalName = LocalName :: pack_static (541u32) ; +pub const ATOM_LOCALNAME__73_63_72_69_70_74_6D_69_6E_73_69_7A_65 : LocalName = LocalName :: pack_static (542u32) ; +pub const ATOM_LOCALNAME__73_79_73_74_65_6D_4C_61_6E_67_75_61_67_65 : LocalName = LocalName :: pack_static (543u32) ; +pub const ATOM_LOCALNAME__63_6F_64_65_74_79_70_65 : LocalName = LocalName :: pack_static (544u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_2D_64_65_63_6F_72_61_74_69_6F_6E : LocalName = LocalName :: pack_static (545u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_65_6E_74_65_72 : LocalName = LocalName :: pack_static (546u32) ; +pub const ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_43_6F_6E_73_74_61_6E_74 : LocalName = LocalName :: pack_static (547u32) ; +pub const ATOM_LOCALNAME__66_65_54_75_72_62_75_6C_65_6E_63_65 : LocalName = LocalName :: pack_static (548u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_73_69_7A_65 : LocalName = LocalName :: pack_static (549u32) ; +pub const ATOM_LOCALNAME__61_63_63_65_70_74_2D_63_68_61_72_73_65_74 : LocalName = LocalName :: pack_static (550u32) ; +pub const ATOM_LOCALNAME__64_72_61_67_67_61_62_6C_65 : LocalName = LocalName :: pack_static (551u32) ; +pub const ATOM_LOCALNAME__6D_61_73_6B_63_6F_6E_74_65_6E_74_75_6E_69_74_73 : LocalName = LocalName :: pack_static (552u32) ; +pub const ATOM_LOCALNAME__6F_6E_6C_6F_73_65_63_61_70_74_75_72_65 : LocalName = LocalName :: pack_static (553u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_53_63_72_69_70_74_54_79_70_65 : LocalName = LocalName :: pack_static (554u32) ; +pub const ATOM_LOCALNAME__72_6F_77_6C_69_6E_65_73 : LocalName = LocalName :: pack_static (555u32) ; +pub const ATOM_LOCALNAME__72_61_64_69_61_6C_47_72_61_64_69_65_6E_74 : LocalName = LocalName :: pack_static (556u32) ; +pub const ATOM_LOCALNAME__79_43_68_61_6E_6E_65_6C_53_65_6C_65_63_74_6F_72 : LocalName = LocalName :: pack_static (557u32) ; +pub const ATOM_LOCALNAME__78_6D_6C_3A_73_70_61_63_65 : LocalName = LocalName :: pack_static (558u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6C_69_76_65 : LocalName = LocalName :: pack_static (559u32) ; +pub const ATOM_LOCALNAME__67_72_6F_75_70_61_6C_69_67_6E : LocalName = LocalName :: pack_static (560u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_65_70_65_61_74 : LocalName = LocalName :: pack_static (561u32) ; +pub const ATOM_LOCALNAME__6F_6E_70_61_67_65_73_68_6F_77 : LocalName = LocalName :: pack_static (562u32) ; +pub const ATOM_LOCALNAME__76_65_63_74_6F_72_70_72_6F_64_75_63_74 : LocalName = LocalName :: pack_static (563u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_6F_6C_65_64_65_73_63_72_69_70_74_69_6F_6E : LocalName = LocalName :: pack_static (564u32) ; +pub const ATOM_LOCALNAME__65_71_75_61_6C_63_6F_6C_75_6D_6E_73 : LocalName = LocalName :: pack_static (565u32) ; +pub const ATOM_LOCALNAME__66_61_63_74_6F_72_6F_66 : LocalName = LocalName :: pack_static (566u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_76_65_65_6E_64 : LocalName = LocalName :: pack_static (567u32) ; +pub const ATOM_LOCALNAME__6F_6E_6B_65_79_70_72_65_73_73 : LocalName = LocalName :: pack_static (568u32) ; +pub const ATOM_LOCALNAME__6F_70_65_72_61_74_6F_72 : LocalName = LocalName :: pack_static (569u32) ; +pub const ATOM_LOCALNAME__6B_65_72_6E_65_6C_55_6E_69_74_4C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (570u32) ; +pub const ATOM_LOCALNAME__6F_6E_63_6F_6E_74_65_78_74_6D_65_6E_75 : LocalName = LocalName :: pack_static (571u32) ; +pub const ATOM_LOCALNAME__6F_6E_61_63_74_69_76_61_74_65 : LocalName = LocalName :: pack_static (572u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6C_65_76_65_6C : LocalName = LocalName :: pack_static (573u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_59 : LocalName = LocalName :: pack_static (574u32) ; +pub const ATOM_LOCALNAME__6D_65_64_69_75_6D_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (575u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_4D_6F_74_69_6F_6E : LocalName = LocalName :: pack_static (576u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_70_72_6F_66_69_6C_65 : LocalName = LocalName :: pack_static (577u32) ; +pub const ATOM_LOCALNAME__76_65_72_79_76_65_72_79_74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (578u32) ; +pub const ATOM_LOCALNAME__61_6C_70_68_61_62_65_74_69_63 : LocalName = LocalName :: pack_static (579u32) ; +pub const ATOM_LOCALNAME__6B_65_79_70_6F_69_6E_74_73 : LocalName = LocalName :: pack_static (580u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_65_6E_64 : LocalName = LocalName :: pack_static (581u32) ; +pub const ATOM_LOCALNAME__6C_61_70_6C_61_63_69_61_6E : LocalName = LocalName :: pack_static (582u32) ; +pub const ATOM_LOCALNAME__6B_65_72_6E_65_6C_4D_61_74_72_69_78 : LocalName = LocalName :: pack_static (583u32) ; +pub const ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68_49_74_65_6D : LocalName = LocalName :: pack_static (584u32) ; +pub const ATOM_LOCALNAME__66_65_67_61_75_73_73_69_61_6E_62_6C_75_72 : LocalName = LocalName :: pack_static (585u32) ; +pub const ATOM_LOCALNAME__68_6F_72_69_7A_2D_6F_72_69_67_69_6E_2D_79 : LocalName = LocalName :: pack_static (586u32) ; +pub const ATOM_LOCALNAME__69_6D_61_67_69_6E_61_72_79 : LocalName = LocalName :: pack_static (587u32) ; +pub const ATOM_LOCALNAME__66_65_63_6F_6D_70_6F_6E_65_6E_74_74_72_61_6E_73_66_65_72 : LocalName = LocalName :: pack_static (588u32) ; +pub const ATOM_LOCALNAME__6D_65_74_61_64_61_74_61 : LocalName = LocalName :: pack_static (589u32) ; +pub const ATOM_LOCALNAME__72_65_71_75_69_72_65_64_45_78_74_65_6E_73_69_6F_6E_73 : LocalName = LocalName :: pack_static (590u32) ; +pub const ATOM_LOCALNAME__6F_6E_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (591u32) ; +pub const ATOM_LOCALNAME__6C_65_6E_67_74_68_41_64_6A_75_73_74 : LocalName = LocalName :: pack_static (592u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_43_6F_6E_74_65_6E_74_55_6E_69_74_73 : LocalName = LocalName :: pack_static (593u32) ; +pub const ATOM_LOCALNAME__6D_61_72_67_69_6E_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (594u32) ; +pub const ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_6E_61_6D_65 : LocalName = LocalName :: pack_static (595u32) ; +pub const ATOM_LOCALNAME__79_63_68_61_6E_6E_65_6C_73_65_6C_65_63_74_6F_72 : LocalName = LocalName :: pack_static (596u32) ; +pub const ATOM_LOCALNAME__6B_65_79_54_69_6D_65_73 : LocalName = LocalName :: pack_static (597u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_44_75_72 : LocalName = LocalName :: pack_static (598u32) ; +pub const ATOM_LOCALNAME__6C_69_6E_65_62_72_65_61_6B : LocalName = LocalName :: pack_static (599u32) ; +pub const ATOM_LOCALNAME__2A : LocalName = LocalName :: pack_inline (10752u64 , 1u8) ; +pub const ATOM_LOCALNAME__61 : LocalName = LocalName :: pack_inline (24832u64 , 1u8) ; +pub const ATOM_LOCALNAME__61_62_62_72 : LocalName = LocalName :: pack_inline (491276886272u64 , 4u8) ; +pub const ATOM_LOCALNAME__61_62_73 : LocalName = LocalName :: pack_inline (1935827200u64 , 3u8) ; +pub const ATOM_LOCALNAME__61_63_63_65_6E_74 : LocalName = LocalName :: pack_inline (32772479036645632u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_63_63_65_70_74 : LocalName = LocalName :: pack_inline (32774678059901184u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_63_72_6F_6E_79_6D : LocalName = LocalName :: pack_inline (7888457647255675136u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_63_74_69_6F_6E : LocalName = LocalName :: pack_inline (31084746153091328u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_63_74_69_76_65 : LocalName = LocalName :: pack_inline (28559167944089856u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_63_74_75_61_74_65 : LocalName = LocalName :: pack_inline (7310575252220895488u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_64_64_72_65_73_73 : LocalName = LocalName :: pack_inline (8319104478668415232u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_6C_69_67_6E : LocalName = LocalName :: pack_inline (121390429397248u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_6C_69_6E_6B : LocalName = LocalName :: pack_inline (118121959284992u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_6C_74 : LocalName = LocalName :: pack_inline (1953259776u64 , 3u8) ; +pub const ATOM_LOCALNAME__61_6C_74_69_6D_67 : LocalName = LocalName :: pack_inline (29112222293451008u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_6C_74_74_65_78_74 : LocalName = LocalName :: pack_inline (8392569456448790784u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_6E_64 : LocalName = LocalName :: pack_inline (1684955392u64 , 3u8) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65 : LocalName = LocalName :: pack_inline (7310575217677328640u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_70_70_6C_65_74 : LocalName = LocalName :: pack_inline (32762613715722496u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_70_70_6C_79 : LocalName = LocalName :: pack_inline (133506649841920u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_70_70_72_6F_78 : LocalName = LocalName :: pack_inline (33899534508646656u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_6F_73 : LocalName = LocalName :: pack_inline (32492094982611200u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_6F_73_68 : LocalName = LocalName :: pack_inline (7526481874927116544u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_6F_74 : LocalName = LocalName :: pack_inline (32773569959321856u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_6F_74_68 : LocalName = LocalName :: pack_inline (7526763349903827200u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_73_63 : LocalName = LocalName :: pack_inline (27992893401751808u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_73_63_68 : LocalName = LocalName :: pack_inline (7521982673346257152u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_68_69_76_65 : LocalName = LocalName :: pack_inline (7311146942148534528u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_72_6F_6C_65 : LocalName = LocalName :: pack_inline (7308338832400867584u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_73_65_63 : LocalName = LocalName :: pack_inline (27977568958439680u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_73_65_63_68 : LocalName = LocalName :: pack_inline (7521967348902945024u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_73_69_6E : LocalName = LocalName :: pack_inline (31078191748768000u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_73_69_6E_68 : LocalName = LocalName :: pack_inline (7525067971693273344u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_74_61_6E : LocalName = LocalName :: pack_inline (31069399950713088u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_74_61_6E_68 : LocalName = LocalName :: pack_inline (7525059179895218432u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_65_61 : LocalName = LocalName :: pack_inline (418313822464u64 , 4u8) ; +pub const ATOM_LOCALNAME__61_72_67 : LocalName = LocalName :: pack_inline (1735549184u64 , 3u8) ; +pub const ATOM_LOCALNAME__61_72_74_69_63_6C_65 : LocalName = LocalName :: pack_inline (7308325599891841280u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_73_63_65_6E_74 : LocalName = LocalName :: pack_inline (32772479037694208u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_73_69_64_65 : LocalName = LocalName :: pack_inline (111481940304128u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_73_79_6E_63 : LocalName = LocalName :: pack_inline (109326135156992u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_75_64_69_6F : LocalName = LocalName :: pack_inline (122498447663360u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_78_69_73 : LocalName = LocalName :: pack_inline (495690735872u64 , 4u8) ; +pub const ATOM_LOCALNAME__61_7A_69_6D_75_74_68 : LocalName = LocalName :: pack_inline (7526769990024454400u64 , 7u8) ; +pub const ATOM_LOCALNAME__62 : LocalName = LocalName :: pack_inline (25088u64 , 1u8) ; +pub const ATOM_LOCALNAME__62_61_73_65 : LocalName = LocalName :: pack_inline (435727458816u64 , 4u8) ; +pub const ATOM_LOCALNAME__62_62_6F_78 : LocalName = LocalName :: pack_inline (517264794112u64 , 4u8) ; +pub const ATOM_LOCALNAME__62_64_69 : LocalName = LocalName :: pack_inline (1768186368u64 , 3u8) ; +pub const ATOM_LOCALNAME__62_64_6F : LocalName = LocalName :: pack_inline (1868849664u64 , 3u8) ; +pub const ATOM_LOCALNAME__62_65_67_69_6E : LocalName = LocalName :: pack_inline (121398985318912u64 , 5u8) ; +pub const ATOM_LOCALNAME__62_67_63_6F_6C_6F_72 : LocalName = LocalName :: pack_inline (8245928668403556864u64 , 7u8) ; +pub const ATOM_LOCALNAME__62_67_73_6F_75_6E_64 : LocalName = LocalName :: pack_inline (7236850772768940544u64 , 7u8) ; +pub const ATOM_LOCALNAME__62_69_61_73 : LocalName = LocalName :: pack_inline (495555535360u64 , 4u8) ; +pub const ATOM_LOCALNAME__62_69_67 : LocalName = LocalName :: pack_inline (1734959616u64 , 3u8) ; +pub const ATOM_LOCALNAME__62_6C_69_6E_6B : LocalName = LocalName :: pack_inline (118121959285248u64 , 5u8) ; +pub const ATOM_LOCALNAME__62_6F_64_79 : LocalName = LocalName :: pack_inline (521376064000u64 , 4u8) ; +pub const ATOM_LOCALNAME__62_6F_72_64_65_72 : LocalName = LocalName :: pack_inline (32199629436051968u64 , 6u8) ; +pub const ATOM_LOCALNAME__62_72 : LocalName = LocalName :: pack_inline (7496192u64 , 2u8) ; +pub const ATOM_LOCALNAME__62_75_74_74_6F_6E : LocalName = LocalName :: pack_inline (31084793398911488u64 , 6u8) ; +pub const ATOM_LOCALNAME__62_76_61_72 : LocalName = LocalName :: pack_inline (491261420032u64 , 4u8) ; +pub const ATOM_LOCALNAME__62_79 : LocalName = LocalName :: pack_inline (7954944u64 , 2u8) ; +pub const ATOM_LOCALNAME__63_61_6E_76_61_73 : LocalName = LocalName :: pack_inline (32476783607636736u64 , 6u8) ; +pub const ATOM_LOCALNAME__63_61_70_74_69_6F_6E : LocalName = LocalName :: pack_inline (7957695015409509120u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_61_72_64 : LocalName = LocalName :: pack_inline (431415714560u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_65_69_6C_69_6E_67 : LocalName = LocalName :: pack_inline (7453010347690386176u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_65_6E_74_65_72 : LocalName = LocalName :: pack_inline (32199698087764736u64 , 6u8) ; +pub const ATOM_LOCALNAME__63_68_61_72 : LocalName = LocalName :: pack_inline (491260502784u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_68_61_72_6F_66_66 : LocalName = LocalName :: pack_inline (7378707576544322304u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_68_61_72_73_65_74 : LocalName = LocalName :: pack_inline (8387236816145113856u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_68_65_63_6B_65_64 : LocalName = LocalName :: pack_inline (7234306451087844096u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_69 : LocalName = LocalName :: pack_inline (6906624u64 , 2u8) ; +pub const ATOM_LOCALNAME__63_69_72_63_6C_65 : LocalName = LocalName :: pack_inline (28548147024847616u64 , 6u8) ; +pub const ATOM_LOCALNAME__63_69_74_65 : LocalName = LocalName :: pack_inline (435744760576u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_6C_61_73_73 : LocalName = LocalName :: pack_inline (126939392926464u64 , 5u8) ; +pub const ATOM_LOCALNAME__63_6C_61_73_73_69_64 : LocalName = LocalName :: pack_inline (7235441215740338944u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6C_65_61_72 : LocalName = LocalName :: pack_inline (125762638996224u64 , 5u8) ; +pub const ATOM_LOCALNAME__63_6C_69_70 : LocalName = LocalName :: pack_inline (482805048064u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_6C_6F_73_65 : LocalName = LocalName :: pack_inline (111546465018624u64 , 5u8) ; +pub const ATOM_LOCALNAME__63_6C_6F_73_75_72_65 : LocalName = LocalName :: pack_inline (7310034283826799360u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6E : LocalName = LocalName :: pack_inline (7234304u64 , 2u8) ; +pub const ATOM_LOCALNAME__63_6F_64_65 : LocalName = LocalName :: pack_inline (435476718336u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_6F_6C : LocalName = LocalName :: pack_inline (1819239168u64 , 3u8) ; +pub const ATOM_LOCALNAME__63_6F_6C_6F_72 : LocalName = LocalName :: pack_inline (125822886175488u64 , 5u8) ; +pub const ATOM_LOCALNAME__63_6F_6C_73 : LocalName = LocalName :: pack_inline (495740478208u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_6F_6C_73_70_61_6E : LocalName = LocalName :: pack_inline (7953762057955795712u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6F_6D_70_61_63_74 : LocalName = LocalName :: pack_inline (8386654066594243328u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6F_6D_70_6F_73_65 : LocalName = LocalName :: pack_inline (7310309148815483648u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74 : LocalName = LocalName :: pack_inline (8389754706581218048u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6F_6F_72_64_73 : LocalName = LocalName :: pack_inline (32480064980345600u64 , 6u8) ; +pub const ATOM_LOCALNAME__63_6F_73 : LocalName = LocalName :: pack_inline (1936679680u64 , 3u8) ; +pub const ATOM_LOCALNAME__63_6F_73_68 : LocalName = LocalName :: pack_inline (448613278464u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_6F_74 : LocalName = LocalName :: pack_inline (1953456896u64 , 3u8) ; +pub const ATOM_LOCALNAME__63_6F_74_68 : LocalName = LocalName :: pack_inline (448630055680u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_73_63 : LocalName = LocalName :: pack_inline (1668506368u64 , 3u8) ; +pub const ATOM_LOCALNAME__63_73_63_68 : LocalName = LocalName :: pack_inline (448345105152u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_73_79_6D_62_6F_6C : LocalName = LocalName :: pack_inline (7813572100839662336u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_75_72_6C : LocalName = LocalName :: pack_inline (465776763648u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_75_72_73_6F_72 : LocalName = LocalName :: pack_inline (32210688977232640u64 , 6u8) ; +pub const ATOM_LOCALNAME__63_78 : LocalName = LocalName :: pack_inline (7889664u64 , 2u8) ; +pub const ATOM_LOCALNAME__63_79 : LocalName = LocalName :: pack_inline (7955200u64 , 2u8) ; +pub const ATOM_LOCALNAME__64 : LocalName = LocalName :: pack_inline (25600u64 , 1u8) ; +pub const ATOM_LOCALNAME__64_61_74_61 : LocalName = LocalName :: pack_inline (418564367360u64 , 4u8) ; +pub const ATOM_LOCALNAME__64_61_74_61_66_6C_64 : LocalName = LocalName :: pack_inline (7236271270027944960u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_61_74_61_73_72_63 : LocalName = LocalName :: pack_inline (7165916819501442048u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_64 : LocalName = LocalName :: pack_inline (6579200u64 , 2u8) ; +pub const ATOM_LOCALNAME__64_65_63_6C_61_72_65 : LocalName = LocalName :: pack_inline (7310012263327687680u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_65_66_61_75_6C_74 : LocalName = LocalName :: pack_inline (8389209267074589696u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_65_66_65_72 : LocalName = LocalName :: pack_inline (125779835184128u64 , 5u8) ; +pub const ATOM_LOCALNAME__64_65_66_73 : LocalName = LocalName :: pack_inline (495639159808u64 , 4u8) ; +pub const ATOM_LOCALNAME__64_65_67_72_65_65 : LocalName = LocalName :: pack_inline (28540514683151360u64 , 6u8) ; +pub const ATOM_LOCALNAME__64_65_6C : LocalName = LocalName :: pack_inline (1818584064u64 , 3u8) ; +pub const ATOM_LOCALNAME__64_65_70_74_68 : LocalName = LocalName :: pack_inline (114849311187968u64 , 5u8) ; +pub const ATOM_LOCALNAME__64_65_73_63 : LocalName = LocalName :: pack_inline (427137786880u64 , 4u8) ; +pub const ATOM_LOCALNAME__64_65_73_63_65_6E_74 : LocalName = LocalName :: pack_inline (8389754633650004992u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_65_74_61_69_6C_73 : LocalName = LocalName :: pack_inline (8317138479132009472u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_66_6E : LocalName = LocalName :: pack_inline (1852204032u64 , 3u8) ; +pub const ATOM_LOCALNAME__64_69_61_6C_6F_67 : LocalName = LocalName :: pack_inline (29114433882645504u64 , 6u8) ; +pub const ATOM_LOCALNAME__64_69_66_66 : LocalName = LocalName :: pack_inline (439804847104u64 , 4u8) ; +pub const ATOM_LOCALNAME__64_69_72 : LocalName = LocalName :: pack_inline (1919509504u64 , 3u8) ; +pub const ATOM_LOCALNAME__64_69_72_6E_61_6D_65 : LocalName = LocalName :: pack_inline (7308604897285989376u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_69_73_63_61_72_64 : LocalName = LocalName :: pack_inline (7237954630903751680u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_69_73_70_6C_61_79 : LocalName = LocalName :: pack_inline (8746391181558637568u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_69_76 : LocalName = LocalName :: pack_inline (1986618368u64 , 3u8) ; +pub const ATOM_LOCALNAME__64_69_76_69_64_65 : LocalName = LocalName :: pack_inline (28539376768738304u64 , 6u8) ; +pub const ATOM_LOCALNAME__64_69_76_69_73_6F_72 : LocalName = LocalName :: pack_inline (8245936339534046208u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_6C : LocalName = LocalName :: pack_inline (7103488u64 , 2u8) ; +pub const ATOM_LOCALNAME__64_6F_6D_61_69_6E : LocalName = LocalName :: pack_inline (31078114606932992u64 , 6u8) ; +pub const ATOM_LOCALNAME__64_74 : LocalName = LocalName :: pack_inline (7627776u64 , 2u8) ; +pub const ATOM_LOCALNAME__64_75_72 : LocalName = LocalName :: pack_inline (1920295936u64 , 3u8) ; +pub const ATOM_LOCALNAME__64_78 : LocalName = LocalName :: pack_inline (7889920u64 , 2u8) ; +pub const ATOM_LOCALNAME__64_79 : LocalName = LocalName :: pack_inline (7955456u64 , 2u8) ; +pub const ATOM_LOCALNAME__65_64_67_65 : LocalName = LocalName :: pack_inline (435526329600u64 , 4u8) ; +pub const ATOM_LOCALNAME__65_6C_6C_69_70_73_65 : LocalName = LocalName :: pack_inline (7310310218245367040u64 , 7u8) ; +pub const ATOM_LOCALNAME__65_6D : LocalName = LocalName :: pack_inline (7169280u64 , 2u8) ; +pub const ATOM_LOCALNAME__65_6D_62_65_64 : LocalName = LocalName :: pack_inline (110386605810944u64 , 5u8) ; +pub const ATOM_LOCALNAME__65_6E_63_74_79_70_65 : LocalName = LocalName :: pack_inline (7309475736013661440u64 , 7u8) ; +pub const ATOM_LOCALNAME__65_6E_64 : LocalName = LocalName :: pack_inline (1684956416u64 , 3u8) ; +pub const ATOM_LOCALNAME__65_71 : LocalName = LocalName :: pack_inline (7431424u64 , 2u8) ; +pub const ATOM_LOCALNAME__65_76_65_6E_74 : LocalName = LocalName :: pack_inline (128017497482496u64 , 5u8) ; +pub const ATOM_LOCALNAME__65_78_69_73_74_73 : LocalName = LocalName :: pack_inline (32497661361284352u64 , 6u8) ; +pub const ATOM_LOCALNAME__65_78_70 : LocalName = LocalName :: pack_inline (1886938368u64 , 3u8) ; +pub const ATOM_LOCALNAME__66_61_63_65 : LocalName = LocalName :: pack_inline (435459024384u64 , 4u8) ; +pub const ATOM_LOCALNAME__66_61_6C_73_65 : LocalName = LocalName :: pack_inline (111546413966848u64 , 5u8) ; +pub const ATOM_LOCALNAME__66_65_42_6C_65_6E_64 : LocalName = LocalName :: pack_inline (7236833166875780608u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_46_6C_6F_6F_64 : LocalName = LocalName :: pack_inline (7237125637035877888u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_46_75_6E_63_41 : LocalName = LocalName :: pack_inline (4711731085130950144u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_46_75_6E_63_42 : LocalName = LocalName :: pack_inline (4783788679168878080u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_46_75_6E_63_47 : LocalName = LocalName :: pack_inline (5144076649358517760u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_46_75_6E_63_52 : LocalName = LocalName :: pack_inline (5936710183775725056u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_49_6D_61_67_65 : LocalName = LocalName :: pack_inline (7306916042442630656u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_4D_65_72_67_65 : LocalName = LocalName :: pack_inline (7306934699847673344u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_54_69_6C_65 : LocalName = LocalName :: pack_inline (28548172291073536u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_65_62_6C_65_6E_64 : LocalName = LocalName :: pack_inline (7236833167412651520u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_66_6C_6F_6F_64 : LocalName = LocalName :: pack_inline (7237125637572748800u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_66_75_6E_63_61 : LocalName = LocalName :: pack_inline (7017574094881515008u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_66_75_6E_63_62 : LocalName = LocalName :: pack_inline (7089631688919442944u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_66_75_6E_63_67 : LocalName = LocalName :: pack_inline (7449919659109082624u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_66_75_6E_63_72 : LocalName = LocalName :: pack_inline (8242553193526289920u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_69_6D_61_67_65 : LocalName = LocalName :: pack_inline (7306916042979501568u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_6D_65_72_67_65 : LocalName = LocalName :: pack_inline (7306934700384544256u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_6E_63_65 : LocalName = LocalName :: pack_inline (111477728306688u64 , 5u8) ; +pub const ATOM_LOCALNAME__66_65_74_63_68 : LocalName = LocalName :: pack_inline (114776363853312u64 , 5u8) ; +pub const ATOM_LOCALNAME__66_65_74_69_6C_65 : LocalName = LocalName :: pack_inline (28548172827944448u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_69_67_75_72_65 : LocalName = LocalName :: pack_inline (28554821219476992u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_69_6C_6C : LocalName = LocalName :: pack_inline (465675314688u64 , 4u8) ; +pub const ATOM_LOCALNAME__66_69_6C_74_65_72 : LocalName = LocalName :: pack_inline (32199698054473216u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_6C_6F_6F_72 : LocalName = LocalName :: pack_inline (125822936311296u64 , 5u8) ; +pub const ATOM_LOCALNAME__66_6E : LocalName = LocalName :: pack_inline (7235072u64 , 2u8) ; +pub const ATOM_LOCALNAME__66_6F_6E_74 : LocalName = LocalName :: pack_inline (500069000704u64 , 4u8) ; +pub const ATOM_LOCALNAME__66_6F_6F_74_65_72 : LocalName = LocalName :: pack_inline (32199698105198080u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_6F_72 : LocalName = LocalName :: pack_inline (1919903232u64 , 3u8) ; +pub const ATOM_LOCALNAME__66_6F_72_61_6C_6C : LocalName = LocalName :: pack_inline (30518463272281600u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_6F_72_6D : LocalName = LocalName :: pack_inline (470071338496u64 , 4u8) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_61_74 : LocalName = LocalName :: pack_inline (32758219997668864u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_72_61_6D_65 : LocalName = LocalName :: pack_inline (111520460727808u64 , 5u8) ; +pub const ATOM_LOCALNAME__66_72_6F_6D : LocalName = LocalName :: pack_inline (470021203456u64 , 4u8) ; +pub const ATOM_LOCALNAME__66_78 : LocalName = LocalName :: pack_inline (7890432u64 , 2u8) ; +pub const ATOM_LOCALNAME__66_79 : LocalName = LocalName :: pack_inline (7955968u64 , 2u8) ; +pub const ATOM_LOCALNAME__67 : LocalName = LocalName :: pack_inline (26368u64 , 1u8) ; +pub const ATOM_LOCALNAME__67_31 : LocalName = LocalName :: pack_inline (3237632u64 , 2u8) ; +pub const ATOM_LOCALNAME__67_32 : LocalName = LocalName :: pack_inline (3303168u64 , 2u8) ; +pub const ATOM_LOCALNAME__67_63_64 : LocalName = LocalName :: pack_inline (1684236032u64 , 3u8) ; +pub const ATOM_LOCALNAME__67_65_71 : LocalName = LocalName :: pack_inline (1902470912u64 , 3u8) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68 : LocalName = LocalName :: pack_inline (114832282773248u64 , 5u8) ; +pub const ATOM_LOCALNAME__67_72_61_64 : LocalName = LocalName :: pack_inline (431131617024u64 , 4u8) ; +pub const ATOM_LOCALNAME__67_74 : LocalName = LocalName :: pack_inline (7628544u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_31 : LocalName = LocalName :: pack_inline (3237888u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_32 : LocalName = LocalName :: pack_inline (3303424u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_33 : LocalName = LocalName :: pack_inline (3368960u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_34 : LocalName = LocalName :: pack_inline (3434496u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_35 : LocalName = LocalName :: pack_inline (3500032u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_36 : LocalName = LocalName :: pack_inline (3565568u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_61_6E_64_6C_65_72 : LocalName = LocalName :: pack_inline (8243113871575967744u64 , 7u8) ; +pub const ATOM_LOCALNAME__68_61_6E_67_69_6E_67 : LocalName = LocalName :: pack_inline (7453010326299174912u64 , 7u8) ; +pub const ATOM_LOCALNAME__68_65_61_64 : LocalName = LocalName :: pack_inline (431130765312u64 , 4u8) ; +pub const ATOM_LOCALNAME__68_65_61_64_65_72 : LocalName = LocalName :: pack_inline (32199629150185472u64 , 6u8) ; +pub const ATOM_LOCALNAME__68_65_61_64_65_72_73 : LocalName = LocalName :: pack_inline (8318822943511898112u64 , 7u8) ; +pub const ATOM_LOCALNAME__68_65_69_67_68_74 : LocalName = LocalName :: pack_inline (32765890657609728u64 , 6u8) ; +pub const ATOM_LOCALNAME__68_67_72_6F_75_70 : LocalName = LocalName :: pack_inline (31654318912792576u64 , 6u8) ; +pub const ATOM_LOCALNAME__68_69_64_64_65_6E : LocalName = LocalName :: pack_inline (31073729293936640u64 , 6u8) ; +pub const ATOM_LOCALNAME__68_69_67_68 : LocalName = LocalName :: pack_inline (448411559936u64 , 4u8) ; +pub const ATOM_LOCALNAME__68_6B_65_72_6E : LocalName = LocalName :: pack_inline (121437606864896u64 , 5u8) ; +pub const ATOM_LOCALNAME__68_72 : LocalName = LocalName :: pack_inline (7497728u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_72_65_66 : LocalName = LocalName :: pack_inline (439788660736u64 , 4u8) ; +pub const ATOM_LOCALNAME__68_73_70_61_63_65 : LocalName = LocalName :: pack_inline (28538242797365248u64 , 6u8) ; +pub const ATOM_LOCALNAME__68_74_6D_6C : LocalName = LocalName :: pack_inline (465692813312u64 , 4u8) ; +pub const ATOM_LOCALNAME__69 : LocalName = LocalName :: pack_inline (26880u64 , 1u8) ; +pub const ATOM_LOCALNAME__69_63_6F_6E : LocalName = LocalName :: pack_inline (474315188480u64 , 4u8) ; +pub const ATOM_LOCALNAME__69_64 : LocalName = LocalName :: pack_inline (6580480u64 , 2u8) ; +pub const ATOM_LOCALNAME__69_64_65_6E_74 : LocalName = LocalName :: pack_inline (128017496303872u64 , 5u8) ; +pub const ATOM_LOCALNAME__69_66_72_61_6D_65 : LocalName = LocalName :: pack_inline (28549237946345728u64 , 6u8) ; +pub const ATOM_LOCALNAME__69_6D_61_67_65 : LocalName = LocalName :: pack_inline (111494690597120u64 , 5u8) ; +pub const ATOM_LOCALNAME__69_6D_67 : LocalName = LocalName :: pack_inline (1735223552u64 , 3u8) ; +pub const ATOM_LOCALNAME__69_6D_70_6C_69_65_73 : LocalName = LocalName :: pack_inline (8315168201473091840u64 , 7u8) ; +pub const ATOM_LOCALNAME__69_6E : LocalName = LocalName :: pack_inline (7235840u64 , 2u8) ; +pub const ATOM_LOCALNAME__69_6E_32 : LocalName = LocalName :: pack_inline (846096640u64 , 3u8) ; +pub const ATOM_LOCALNAME__69_6E_64_65_78 : LocalName = LocalName :: pack_inline (132376871987456u64 , 5u8) ; +pub const ATOM_LOCALNAME__69_6E_70_75_74 : LocalName = LocalName :: pack_inline (128047746279680u64 , 5u8) ; +pub const ATOM_LOCALNAME__69_6E_73 : LocalName = LocalName :: pack_inline (1936615680u64 , 3u8) ; +pub const ATOM_LOCALNAME__69_6E_74 : LocalName = LocalName :: pack_inline (1953392896u64 , 3u8) ; +pub const ATOM_LOCALNAME__69_6E_76_65_72_73_65 : LocalName = LocalName :: pack_inline (7310312400256657664u64 , 7u8) ; +pub const ATOM_LOCALNAME__69_73_69_6E_64_65_78 : LocalName = LocalName :: pack_inline (8675450682577479936u64 , 7u8) ; +pub const ATOM_LOCALNAME__69_73_6D_61_70 : LocalName = LocalName :: pack_inline (123563750418688u64 , 5u8) ; +pub const ATOM_LOCALNAME__69_74_65_6D_69_64 : LocalName = LocalName :: pack_inline (28263416245545216u64 , 6u8) ; +pub const ATOM_LOCALNAME__69_74_65_6D_72_65_66 : LocalName = LocalName :: pack_inline (7378429378695555328u64 , 7u8) ; +pub const ATOM_LOCALNAME__6B : LocalName = LocalName :: pack_inline (27392u64 , 1u8) ; +pub const ATOM_LOCALNAME__6B_31 : LocalName = LocalName :: pack_inline (3238656u64 , 2u8) ; +pub const ATOM_LOCALNAME__6B_32 : LocalName = LocalName :: pack_inline (3304192u64 , 2u8) ; +pub const ATOM_LOCALNAME__6B_33 : LocalName = LocalName :: pack_inline (3369728u64 , 2u8) ; +pub const ATOM_LOCALNAME__6B_34 : LocalName = LocalName :: pack_inline (3435264u64 , 2u8) ; +pub const ATOM_LOCALNAME__6B_62_64 : LocalName = LocalName :: pack_inline (1684171520u64 , 3u8) ; +pub const ATOM_LOCALNAME__6B_65_72_6E_69_6E_67 : LocalName = LocalName :: pack_inline (7453010356431317760u64 , 7u8) ; +pub const ATOM_LOCALNAME__6B_65_79_67_65_6E : LocalName = LocalName :: pack_inline (31073742530898688u64 , 6u8) ; +pub const ATOM_LOCALNAME__6B_69_6E_64 : LocalName = LocalName :: pack_inline (431349132032u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_61_62_65_6C : LocalName = LocalName :: pack_inline (119182698048512u64 , 5u8) ; +pub const ATOM_LOCALNAME__6C_61_6D_62_64_61 : LocalName = LocalName :: pack_inline (27413446645607424u64 , 6u8) ; +pub const ATOM_LOCALNAME__6C_61_6E_67 : LocalName = LocalName :: pack_inline (444233509888u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_61_72_67_65_6F_70 : LocalName = LocalName :: pack_inline (8101805749637835776u64 , 7u8) ; +pub const ATOM_LOCALNAME__6C_63_6D : LocalName = LocalName :: pack_inline (1835232256u64 , 3u8) ; +pub const ATOM_LOCALNAME__6C_65_67_65_6E_64 : LocalName = LocalName :: pack_inline (28268879476517888u64 , 6u8) ; +pub const ATOM_LOCALNAME__6C_65_71 : LocalName = LocalName :: pack_inline (1902472192u64 , 3u8) ; +pub const ATOM_LOCALNAME__6C_69 : LocalName = LocalName :: pack_inline (6908928u64 , 2u8) ; +pub const ATOM_LOCALNAME__6C_69_6D_69_74 : LocalName = LocalName :: pack_inline (127996156013568u64 , 5u8) ; +pub const ATOM_LOCALNAME__6C_69_6E_65 : LocalName = LocalName :: pack_inline (435644099584u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_69_6E_6B : LocalName = LocalName :: pack_inline (461413903360u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_69_73_74 : LocalName = LocalName :: pack_inline (500152495104u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_69_73_74_69_6E_67 : LocalName = LocalName :: pack_inline (7453010382218161152u64 , 7u8) ; +pub const ATOM_LOCALNAME__6C_6E : LocalName = LocalName :: pack_inline (7236608u64 , 2u8) ; +pub const ATOM_LOCALNAME__6C_6F_61_64_69_6E_67 : LocalName = LocalName :: pack_inline (7453010313197087744u64 , 7u8) ; +pub const ATOM_LOCALNAME__6C_6F_63_61_6C : LocalName = LocalName :: pack_inline (119165535874048u64 , 5u8) ; +pub const ATOM_LOCALNAME__6C_6F_67 : LocalName = LocalName :: pack_inline (1735355392u64 , 3u8) ; +pub const ATOM_LOCALNAME__6C_6F_67_62_61_73_65 : LocalName = LocalName :: pack_inline (7310293695422491648u64 , 7u8) ; +pub const ATOM_LOCALNAME__6C_6F_6F_70 : LocalName = LocalName :: pack_inline (482905910272u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_6F_77 : LocalName = LocalName :: pack_inline (2003790848u64 , 3u8) ; +pub const ATOM_LOCALNAME__6C_6F_77_73_72_63 : LocalName = LocalName :: pack_inline (27991862944951296u64 , 6u8) ; +pub const ATOM_LOCALNAME__6C_71_75_6F_74_65 : LocalName = LocalName :: pack_inline (28556994708335616u64 , 6u8) ; +pub const ATOM_LOCALNAME__6C_73_70_61_63_65 : LocalName = LocalName :: pack_inline (28538242797366272u64 , 6u8) ; +pub const ATOM_LOCALNAME__6C_74 : LocalName = LocalName :: pack_inline (7629824u64 , 2u8) ; +pub const ATOM_LOCALNAME__6D_61_63_72_6F_73 : LocalName = LocalName :: pack_inline (32492159406009600u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_61_63_74_69_6F_6E : LocalName = LocalName :: pack_inline (7957695015191407872u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_61_69_6E : LocalName = LocalName :: pack_inline (474214395136u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_61_70 : LocalName = LocalName :: pack_inline (1885433088u64 , 3u8) ; +pub const ATOM_LOCALNAME__6D_61_72_6B : LocalName = LocalName :: pack_inline (461480488192u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72 : LocalName = LocalName :: pack_inline (32199659499908352u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_61_72_71_75_65_65 : LocalName = LocalName :: pack_inline (7306375100589239552u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_61_73_6B : LocalName = LocalName :: pack_inline (461497265408u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_61_74_68 : LocalName = LocalName :: pack_inline (448629140736u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_61_74_72_69_78 : LocalName = LocalName :: pack_inline (33892937505008896u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_61_78 : LocalName = LocalName :: pack_inline (2019650816u64 , 3u8) ; +pub const ATOM_LOCALNAME__6D_61_78_73_69_7A_65 : LocalName = LocalName :: pack_inline (7312272889651227904u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_65_61_6E : LocalName = LocalName :: pack_inline (474080439552u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_65_64_69_61 : LocalName = LocalName :: pack_inline (107105283828992u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_65_64_69_61_6E : LocalName = LocalName :: pack_inline (31069352722001152u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_65_6E_75 : LocalName = LocalName :: pack_inline (504363314432u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_65_72_72_6F_72 : LocalName = LocalName :: pack_inline (32210684681219328u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_65_74_61 : LocalName = LocalName :: pack_inline (418564631808u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_65_74_65_72 : LocalName = LocalName :: pack_inline (125780070067456u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_65_74_68_6F_64 : LocalName = LocalName :: pack_inline (28269992091151616u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_66_65_6E_63_65_64 : LocalName = LocalName :: pack_inline (7234297702239333632u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_66_72_61_63 : LocalName = LocalName :: pack_inline (109270182292736u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_67_6C_79_70_68 : LocalName = LocalName :: pack_inline (29397064389979392u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_69 : LocalName = LocalName :: pack_inline (6909184u64 , 2u8) ; +pub const ATOM_LOCALNAME__6D_69_6E : LocalName = LocalName :: pack_inline (1852402944u64 , 3u8) ; +pub const ATOM_LOCALNAME__6D_69_6E_73_69_7A_65 : LocalName = LocalName :: pack_inline (7312272889483980032u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_69_6E_75_73 : LocalName = LocalName :: pack_inline (126948200770816u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_6E : LocalName = LocalName :: pack_inline (7236864u64 , 2u8) ; +pub const ATOM_LOCALNAME__6D_6F : LocalName = LocalName :: pack_inline (7302400u64 , 2u8) ; +pub const ATOM_LOCALNAME__6D_6F_64_65 : LocalName = LocalName :: pack_inline (435476720896u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_6F_6D_65_6E_74 : LocalName = LocalName :: pack_inline (32772479205207296u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_6F_76_65_72 : LocalName = LocalName :: pack_inline (125780104277248u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_70_61_64_64_65_64 : LocalName = LocalName :: pack_inline (7234298758734834944u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_70_61_74_68 : LocalName = LocalName :: pack_inline (114849060252928u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_72_6F_6F_74 : LocalName = LocalName :: pack_inline (128021959961856u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_72_6F_77 : LocalName = LocalName :: pack_inline (512970878208u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_73 : LocalName = LocalName :: pack_inline (7564544u64 , 2u8) ; +pub const ATOM_LOCALNAME__6D_73_70_61_63_65 : LocalName = LocalName :: pack_inline (28538242797366528u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_73_71_72_74 : LocalName = LocalName :: pack_inline (128034878483712u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_73_74_79_6C_65 : LocalName = LocalName :: pack_inline (28548241548340480u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_73_75_62 : LocalName = LocalName :: pack_inline (422877293824u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_73_75_62_73_75_70 : LocalName = LocalName :: pack_inline (8103509971237563648u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_73_75_70 : LocalName = LocalName :: pack_inline (483006835968u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_74_61_62_6C_65 : LocalName = LocalName :: pack_inline (28548142445391104u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_74_64 : LocalName = LocalName :: pack_inline (1685351680u64 , 3u8) ; +pub const ATOM_LOCALNAME__6D_74_65_78_74 : LocalName = LocalName :: pack_inline (128060447026432u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_74_72 : LocalName = LocalName :: pack_inline (1920232704u64 , 3u8) ; +pub const ATOM_LOCALNAME__6D_75_6E_64_65_72 : LocalName = LocalName :: pack_inline (32199629369339136u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_75_74_65_64 : LocalName = LocalName :: pack_inline (110386908327168u64 , 5u8) ; +pub const ATOM_LOCALNAME__6E_61_6D_65 : LocalName = LocalName :: pack_inline (435626798592u64 , 4u8) ; +pub const ATOM_LOCALNAME__6E_61_72_67_73 : LocalName = LocalName :: pack_inline (126888137813504u64 , 5u8) ; +pub const ATOM_LOCALNAME__6E_61_76 : LocalName = LocalName :: pack_inline (1986096640u64 , 3u8) ; +pub const ATOM_LOCALNAME__6E_65_71 : LocalName = LocalName :: pack_inline (1902472704u64 , 3u8) ; +pub const ATOM_LOCALNAME__6E_65_73_74 : LocalName = LocalName :: pack_inline (500152233472u64 , 4u8) ; +pub const ATOM_LOCALNAME__6E_65_78_74_69_64 : LocalName = LocalName :: pack_inline (28263446628101632u64 , 6u8) ; +pub const ATOM_LOCALNAME__6E_6F_62_72 : LocalName = LocalName :: pack_inline (491277741568u64 , 4u8) ; +pub const ATOM_LOCALNAME__6E_6F_65_6D_62_65_64 : LocalName = LocalName :: pack_inline (7234296598433328640u64 , 7u8) ; +pub const ATOM_LOCALNAME__6E_6F_68_72_65_66 : LocalName = LocalName :: pack_inline (28821989677297152u64 , 6u8) ; +pub const ATOM_LOCALNAME__6E_6F_6E_63_65 : LocalName = LocalName :: pack_inline (111477728964096u64 , 5u8) ; +pub const ATOM_LOCALNAME__6E_6F_6E_65 : LocalName = LocalName :: pack_inline (435644493312u64 , 4u8) ; +pub const ATOM_LOCALNAME__6E_6F_73_68_61_64_65 : LocalName = LocalName :: pack_inline (7306071596742962688u64 , 7u8) ; +pub const ATOM_LOCALNAME__6E_6F_74 : LocalName = LocalName :: pack_inline (1953459712u64 , 3u8) ; +pub const ATOM_LOCALNAME__6E_6F_74_69_6E : LocalName = LocalName :: pack_inline (121399204081152u64 , 5u8) ; +pub const ATOM_LOCALNAME__6E_6F_77_72_61_70 : LocalName = LocalName :: pack_inline (31632341649550848u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_62_6A_65_63_74 : LocalName = LocalName :: pack_inline (32760384526118656u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_66_66_73_65_74 : LocalName = LocalName :: pack_inline (32762643612069632u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6C : LocalName = LocalName :: pack_inline (7106304u64 , 2u8) ; +pub const ATOM_LOCALNAME__6F_6E_61_62_6F_72_74 : LocalName = LocalName :: pack_inline (8390891524076760832u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_67_69_6E : LocalName = LocalName :: pack_inline (7956003901867454208u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_62_6C_75_72 : LocalName = LocalName :: pack_inline (32217255713337088u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_63_6C_69_63_6B : LocalName = LocalName :: pack_inline (7738144498998210304u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_63_6F_70_79 : LocalName = LocalName :: pack_inline (34182095893851904u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_63_75_74 : LocalName = LocalName :: pack_inline (128047528177408u64 , 5u8) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67 : LocalName = LocalName :: pack_inline (29099066540322560u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_6F_70 : LocalName = LocalName :: pack_inline (31647734493507328u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_65_6E_64 : LocalName = LocalName :: pack_inline (110425310916352u64 , 5u8) ; +pub const ATOM_LOCALNAME__6F_6E_65_72_72_6F_72 : LocalName = LocalName :: pack_inline (8245935278392241920u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_66_6F_63_75_73 : LocalName = LocalName :: pack_inline (8319665216747892480u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_68_65_6C_70 : LocalName = LocalName :: pack_inline (31644380191158016u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_69_6E_70_75_74 : LocalName = LocalName :: pack_inline (8391737100192345856u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_6B_65_79_75_70 : LocalName = LocalName :: pack_inline (8103516581024132864u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_6C_6F_61_64 : LocalName = LocalName :: pack_inline (28254628859506432u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_76_65 : LocalName = LocalName :: pack_inline (28559193597177600u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_70_61_73_74_65 : LocalName = LocalName :: pack_inline (7310594957464465152u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_72_65_73_65_74 : LocalName = LocalName :: pack_inline (8387236760596147968u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_73_74_61_72_74 : LocalName = LocalName :: pack_inline (8390876208525373184u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_73_74_6F_70 : LocalName = LocalName :: pack_inline (31647743335100160u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_7A_6F_6F_6D : LocalName = LocalName :: pack_inline (30803297047572224u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_70_61_63_69_74_79 : LocalName = LocalName :: pack_inline (8751735851445153536u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_70_65_6E : LocalName = LocalName :: pack_inline (474148269824u64 , 4u8) ; +pub const ATOM_LOCALNAME__6F_70_74_69_6D_75_6D : LocalName = LocalName :: pack_inline (7887330622101810944u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_70_74_69_6F_6E : LocalName = LocalName :: pack_inline (31084746153946880u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_72 : LocalName = LocalName :: pack_inline (7499520u64 , 2u8) ; +pub const ATOM_LOCALNAME__6F_72_64_65_72 : LocalName = LocalName :: pack_inline (125779802484480u64 , 5u8) ; +pub const ATOM_LOCALNAME__6F_72_69_65_6E_74 : LocalName = LocalName :: pack_inline (32772479138295552u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_72_69_67_69_6E : LocalName = LocalName :: pack_inline (31078140309827328u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_74_68_65_72 : LocalName = LocalName :: pack_inline (125779869724416u64 , 5u8) ; +pub const ATOM_LOCALNAME__6F_75_74_70_75_74 : LocalName = LocalName :: pack_inline (32780223149076224u64 , 6u8) ; +pub const ATOM_LOCALNAME__70 : LocalName = LocalName :: pack_inline (28672u64 , 1u8) ; +pub const ATOM_LOCALNAME__70_61_72_61_6D : LocalName = LocalName :: pack_inline (120265298243584u64 , 5u8) ; +pub const ATOM_LOCALNAME__70_61_72_73_65 : LocalName = LocalName :: pack_inline (111546514632704u64 , 5u8) ; +pub const ATOM_LOCALNAME__70_61_74_68 : LocalName = LocalName :: pack_inline (448629141504u64 , 4u8) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E : LocalName = LocalName :: pack_inline (7958535042360242176u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_69 : LocalName = LocalName :: pack_inline (6909952u64 , 2u8) ; +pub const ATOM_LOCALNAME__70_69_63_74_75_72_65 : LocalName = LocalName :: pack_inline (7310034287920246784u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_69_65_63_65 : LocalName = LocalName :: pack_inline (111477577576448u64 , 5u8) ; +pub const ATOM_LOCALNAME__70_69_6E_67 : LocalName = LocalName :: pack_inline (444234035200u64 , 4u8) ; +pub const ATOM_LOCALNAME__70_6C_75_73 : LocalName = LocalName :: pack_inline (495891279872u64 , 4u8) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73 : LocalName = LocalName :: pack_inline (32497639885860864u64 , 6u8) ; +pub const ATOM_LOCALNAME__70_6F_6C_79_67_6F_6E : LocalName = LocalName :: pack_inline (7957692837794902016u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_6F_73_74_65_72 : LocalName = LocalName :: pack_inline (32199698172309504u64 , 6u8) ; +pub const ATOM_LOCALNAME__70_6F_77_65_72 : LocalName = LocalName :: pack_inline (125780121055232u64 , 5u8) ; +pub const ATOM_LOCALNAME__70_72_65 : LocalName = LocalName :: pack_inline (1701998592u64 , 3u8) ; +pub const ATOM_LOCALNAME__70_72_65_6C_6F_61_64 : LocalName = LocalName :: pack_inline (7233184987882876928u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_72_69_6D_65_73 : LocalName = LocalName :: pack_inline (32481142916673536u64 , 6u8) ; +pub const ATOM_LOCALNAME__70_72_6F_64_75_63_74 : LocalName = LocalName :: pack_inline (8386676005320945664u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_72_6F_66_69_6C_65 : LocalName = LocalName :: pack_inline (7308332183992823808u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_72_6F_6D_70_74 : LocalName = LocalName :: pack_inline (32774712621953024u64 , 6u8) ; +pub const ATOM_LOCALNAME__71 : LocalName = LocalName :: pack_inline (28928u64 , 1u8) ; +pub const ATOM_LOCALNAME__72 : LocalName = LocalName :: pack_inline (29184u64 , 1u8) ; +pub const ATOM_LOCALNAME__72_61_64_69_75_73 : LocalName = LocalName :: pack_inline (32498717837849088u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_62 : LocalName = LocalName :: pack_inline (6451712u64 , 2u8) ; +pub const ATOM_LOCALNAME__72_65_61_6C : LocalName = LocalName :: pack_inline (465490506240u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_61_6C_73 : LocalName = LocalName :: pack_inline (126909327700480u64 , 5u8) ; +pub const ATOM_LOCALNAME__72_65_63_74 : LocalName = LocalName :: pack_inline (499883799040u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_66_58 : LocalName = LocalName :: pack_inline (379675046400u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_66_59 : LocalName = LocalName :: pack_inline (383970013696u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_66_78 : LocalName = LocalName :: pack_inline (517113999872u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_66_79 : LocalName = LocalName :: pack_inline (521408967168u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_6C : LocalName = LocalName :: pack_inline (1818587648u64 , 3u8) ; +pub const ATOM_LOCALNAME__72_65_6C_6E : LocalName = LocalName :: pack_inline (474264990208u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_6D : LocalName = LocalName :: pack_inline (1835364864u64 , 3u8) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74 : LocalName = LocalName :: pack_inline (32758185603723776u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_65_70_6C_61_63_65 : LocalName = LocalName :: pack_inline (7305790138895135232u64 , 7u8) ; +pub const ATOM_LOCALNAME__72_65_73_74_61_72_74 : LocalName = LocalName :: pack_inline (8390876208524784128u64 , 7u8) ; +pub const ATOM_LOCALNAME__72_65_73_75_6C_74 : LocalName = LocalName :: pack_inline (32770349001437696u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_65_76 : LocalName = LocalName :: pack_inline (1986359808u64 , 3u8) ; +pub const ATOM_LOCALNAME__72_6F_6C_65 : LocalName = LocalName :: pack_inline (435610939904u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_6F_6F_74 : LocalName = LocalName :: pack_inline (500085780992u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_6F_74_61_74_65 : LocalName = LocalName :: pack_inline (28556934561886720u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_6F_77_73 : LocalName = LocalName :: pack_inline (495925031424u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_6F_77_73_70_61_6E : LocalName = LocalName :: pack_inline (7953762058140348928u64 , 7u8) ; +pub const ATOM_LOCALNAME__72_70 : LocalName = LocalName :: pack_inline (7369216u64 , 2u8) ; +pub const ATOM_LOCALNAME__72_71_75_6F_74_65 : LocalName = LocalName :: pack_inline (28556994708337152u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_73_70_61_63_65 : LocalName = LocalName :: pack_inline (28538242797367808u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_74 : LocalName = LocalName :: pack_inline (7631360u64 , 2u8) ; +pub const ATOM_LOCALNAME__72_74_63 : LocalName = LocalName :: pack_inline (1668575744u64 , 3u8) ; +pub const ATOM_LOCALNAME__72_75_62_79 : LocalName = LocalName :: pack_inline (521342906880u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_75_6C_65 : LocalName = LocalName :: pack_inline (435611333120u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_75_6C_65_73 : LocalName = LocalName :: pack_inline (126879448527360u64 , 5u8) ; +pub const ATOM_LOCALNAME__72_78 : LocalName = LocalName :: pack_inline (7893504u64 , 2u8) ; +pub const ATOM_LOCALNAME__72_79 : LocalName = LocalName :: pack_inline (7959040u64 , 2u8) ; +pub const ATOM_LOCALNAME__73 : LocalName = LocalName :: pack_inline (29440u64 , 1u8) ; +pub const ATOM_LOCALNAME__73_61_6D_70 : LocalName = LocalName :: pack_inline (482871440128u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_61_6E_64_62_6F_78 : LocalName = LocalName :: pack_inline (8678263190454366976u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_63_61_6C_65 : LocalName = LocalName :: pack_inline (111516164780800u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_63_68_65_6D_65 : LocalName = LocalName :: pack_inline (28549254958248704u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_63_6F_70_65 : LocalName = LocalName :: pack_inline (111533579531008u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_63_6F_70_65_64 : LocalName = LocalName :: pack_inline (28259031250596608u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_63_72_69_70_74 : LocalName = LocalName :: pack_inline (32774695491433216u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_64_65_76 : LocalName = LocalName :: pack_inline (508507222784u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_65_61_72_63_68 : LocalName = LocalName :: pack_inline (29382740489368320u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_65_63 : LocalName = LocalName :: pack_inline (1667592960u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_65_63_68 : LocalName = LocalName :: pack_inline (448344191744u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_65_63_74_69_6F_6E : LocalName = LocalName :: pack_inline (7957695015191671552u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_65_65_64 : LocalName = LocalName :: pack_inline (431197876992u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_65_6C_65_63_74 : LocalName = LocalName :: pack_inline (32760384559870720u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_65_70 : LocalName = LocalName :: pack_inline (1885696768u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_65_74 : LocalName = LocalName :: pack_inline (1952805632u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_65_74_64_69_66_66 : LocalName = LocalName :: pack_inline (7378700919663588096u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_68_61_70_65 : LocalName = LocalName :: pack_inline (111533344977664u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_68_6F_77 : LocalName = LocalName :: pack_inline (512970224384u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_69_6E : LocalName = LocalName :: pack_inline (1852404480u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_69_6E_68 : LocalName = LocalName :: pack_inline (448529003264u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_69_7A_65 : LocalName = LocalName :: pack_inline (435845427968u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_69_7A_65_73 : LocalName = LocalName :: pack_inline (126879682622208u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_6C_6F_70_65 : LocalName = LocalName :: pack_inline (111533580120832u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_6C_6F_74 : LocalName = LocalName :: pack_inline (500085584640u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_6D_61_6C_6C : LocalName = LocalName :: pack_inline (119212746830592u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_6F_75_72_63_65 : LocalName = LocalName :: pack_inline (28538315895436032u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_70_61_63_65 : LocalName = LocalName :: pack_inline (111477510927104u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_70_61_63_65_72 : LocalName = LocalName :: pack_inline (32199624855941888u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_inline (7453010308902187776u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_70_61_6E : LocalName = LocalName :: pack_inline (474081161984u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_70_65_65_64 : LocalName = LocalName :: pack_inline (110386656342784u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_72_63 : LocalName = LocalName :: pack_inline (1668444928u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_72_63_64_6F_63 : LocalName = LocalName :: pack_inline (27988499650212608u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_72_63_6C_61_6E_67 : LocalName = LocalName :: pack_inline (7453001551497556736u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_72_63_73_65_74 : LocalName = LocalName :: pack_inline (32762643562525440u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_74_61_6E_64_62_79 : LocalName = LocalName :: pack_inline (8746663851551126272u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_74_61_72_74 : LocalName = LocalName :: pack_inline (128034610115328u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_74_65_6D_68 : LocalName = LocalName :: pack_inline (114819062854400u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_74_65_6D_76 : LocalName = LocalName :: pack_inline (130212225643264u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_74_65_70 : LocalName = LocalName :: pack_inline (482738467584u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_74_6F_70 : LocalName = LocalName :: pack_inline (482906239744u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_74_72_69_6B_65 : LocalName = LocalName :: pack_inline (28547073283748608u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_74_72_69_6E_67 : LocalName = LocalName :: pack_inline (29113321772053248u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65 : LocalName = LocalName :: pack_inline (28547099053552384u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6E_67 : LocalName = LocalName :: pack_inline (29113347541857024u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_74_79_6C_65 : LocalName = LocalName :: pack_inline (111516568548096u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_75_62 : LocalName = LocalName :: pack_inline (1651864320u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_75_62_73_65_74 : LocalName = LocalName :: pack_inline (32762643545944832u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_75_6D : LocalName = LocalName :: pack_inline (1836413696u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_75_6D_6D_61_72_79 : LocalName = LocalName :: pack_inline (8751164148550038272u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_75_70 : LocalName = LocalName :: pack_inline (1886745344u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_76_67 : LocalName = LocalName :: pack_inline (1735815936u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_77_69_74_63_68 : LocalName = LocalName :: pack_inline (29382749214700288u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_79_6D_62_6F_6C : LocalName = LocalName :: pack_inline (30521766018904832u64 , 6u8) ; +pub const ATOM_LOCALNAME__74_61_62_6C_65 : LocalName = LocalName :: pack_inline (111516181427200u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_61_6E : LocalName = LocalName :: pack_inline (1851880448u64 , 3u8) ; +pub const ATOM_LOCALNAME__74_61_6E_68 : LocalName = LocalName :: pack_inline (448528479232u64 , 4u8) ; +pub const ATOM_LOCALNAME__74_61_72_67_65_74 : LocalName = LocalName :: pack_inline (32762592273462272u64 , 6u8) ; +pub const ATOM_LOCALNAME__74_61_72_67_65_74_58 : LocalName = LocalName :: pack_inline (6373830867611120640u64 , 7u8) ; +pub const ATOM_LOCALNAME__74_61_72_67_65_74_59 : LocalName = LocalName :: pack_inline (6445888461649048576u64 , 7u8) ; +pub const ATOM_LOCALNAME__74_61_72_67_65_74_78 : LocalName = LocalName :: pack_inline (8679673876824814592u64 , 7u8) ; +pub const ATOM_LOCALNAME__74_61_72_67_65_74_79 : LocalName = LocalName :: pack_inline (8751731470862742528u64 , 7u8) ; +pub const ATOM_LOCALNAME__74_62_6F_64_79 : LocalName = LocalName :: pack_inline (133472272413696u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_62_72_65_61_6B : LocalName = LocalName :: pack_inline (30224910846686208u64 , 6u8) ; +pub const ATOM_LOCALNAME__74_64 : LocalName = LocalName :: pack_inline (6583296u64 , 2u8) ; +pub const ATOM_LOCALNAME__74_65_6E_64_73_74_6F : LocalName = LocalName :: pack_inline (8031170910694503424u64 , 7u8) ; +pub const ATOM_LOCALNAME__74_65_78_74 : LocalName = LocalName :: pack_inline (500236121088u64 , 4u8) ; +pub const ATOM_LOCALNAME__74_66_6F_6F_74 : LocalName = LocalName :: pack_inline (128021959177216u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_68 : LocalName = LocalName :: pack_inline (6845440u64 , 2u8) ; +pub const ATOM_LOCALNAME__74_68_65_61_64 : LocalName = LocalName :: pack_inline (110369475949568u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_69_6D_65 : LocalName = LocalName :: pack_inline (435627324416u64 , 4u8) ; +pub const ATOM_LOCALNAME__74_69_6D_65_73 : LocalName = LocalName :: pack_inline (126879464518656u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_69_74_6C_65 : LocalName = LocalName :: pack_inline (111516483941376u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_6F : LocalName = LocalName :: pack_inline (7304192u64 , 2u8) ; +pub const ATOM_LOCALNAME__74_6F_67_67_6C_65 : LocalName = LocalName :: pack_inline (28548164020564992u64 , 6u8) ; +pub const ATOM_LOCALNAME__74_72 : LocalName = LocalName :: pack_inline (7500800u64 , 2u8) ; +pub const ATOM_LOCALNAME__74_72_61_63_6B : LocalName = LocalName :: pack_inline (118074580825088u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_72_65_66 : LocalName = LocalName :: pack_inline (439788663808u64 , 4u8) ; +pub const ATOM_LOCALNAME__74_72_75_65 : LocalName = LocalName :: pack_inline (435762131968u64 , 4u8) ; +pub const ATOM_LOCALNAME__74_73_70_61_6E : LocalName = LocalName :: pack_inline (121364777497600u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_74 : LocalName = LocalName :: pack_inline (7631872u64 , 2u8) ; +pub const ATOM_LOCALNAME__74_79_70_65 : LocalName = LocalName :: pack_inline (435678704640u64 , 4u8) ; +pub const ATOM_LOCALNAME__75 : LocalName = LocalName :: pack_inline (29952u64 , 1u8) ; +pub const ATOM_LOCALNAME__75_31 : LocalName = LocalName :: pack_inline (3241216u64 , 2u8) ; +pub const ATOM_LOCALNAME__75_32 : LocalName = LocalName :: pack_inline (3306752u64 , 2u8) ; +pub const ATOM_LOCALNAME__75_6C : LocalName = LocalName :: pack_inline (7107840u64 , 2u8) ; +pub const ATOM_LOCALNAME__75_6E_69_63_6F_64_65 : LocalName = LocalName :: pack_inline (7306086968263079168u64 , 7u8) ; +pub const ATOM_LOCALNAME__75_6E_69_6F_6E : LocalName = LocalName :: pack_inline (121424789271808u64 , 5u8) ; +pub const ATOM_LOCALNAME__75_70_6C_69_6D_69_74 : LocalName = LocalName :: pack_inline (8388356080512562432u64 , 7u8) ; +pub const ATOM_LOCALNAME__75_73_65 : LocalName = LocalName :: pack_inline (1702065408u64 , 3u8) ; +pub const ATOM_LOCALNAME__75_73_65_6D_61_70 : LocalName = LocalName :: pack_inline (31632319872988416u64 , 6u8) ; +pub const ATOM_LOCALNAME__76_61_6C_69_67_6E : LocalName = LocalName :: pack_inline (31075949925725696u64 , 6u8) ; +pub const ATOM_LOCALNAME__76_61_6C_75_65 : LocalName = LocalName :: pack_inline (111555003905536u64 , 5u8) ; +pub const ATOM_LOCALNAME__76_61_6C_75_65_73 : LocalName = LocalName :: pack_inline (32481177325630976u64 , 6u8) ; +pub const ATOM_LOCALNAME__76_61_72 : LocalName = LocalName :: pack_inline (1918989824u64 , 3u8) ; +pub const ATOM_LOCALNAME__76_65_63_74_6F_72 : LocalName = LocalName :: pack_inline (32210693019497984u64 , 6u8) ; +pub const ATOM_LOCALNAME__76_65_72_73_69_6F_6E : LocalName = LocalName :: pack_inline (7957695011148363264u64 , 7u8) ; +pub const ATOM_LOCALNAME__76_69_64_65_6F : LocalName = LocalName :: pack_inline (122481267013120u64 , 5u8) ; +pub const ATOM_LOCALNAME__76_69_65_77 : LocalName = LocalName :: pack_inline (512802518528u64 , 4u8) ; +pub const ATOM_LOCALNAME__76_69_65_77_42_6F_78 : LocalName = LocalName :: pack_inline (8678228087536186880u64 , 7u8) ; +pub const ATOM_LOCALNAME__76_69_65_77_62_6F_78 : LocalName = LocalName :: pack_inline (8678263271908275712u64 , 7u8) ; +pub const ATOM_LOCALNAME__76_6B_65_72_6E : LocalName = LocalName :: pack_inline (121437606868480u64 , 5u8) ; +pub const ATOM_LOCALNAME__76_6C_69_6E_6B : LocalName = LocalName :: pack_inline (118121959290368u64 , 5u8) ; +pub const ATOM_LOCALNAME__76_73_70_61_63_65 : LocalName = LocalName :: pack_inline (28538242797368832u64 , 6u8) ; +pub const ATOM_LOCALNAME__77_62_72 : LocalName = LocalName :: pack_inline (1919055616u64 , 3u8) ; +pub const ATOM_LOCALNAME__77_68_65_6E : LocalName = LocalName :: pack_inline (474147747584u64 , 4u8) ; +pub const ATOM_LOCALNAME__77_69_64_74_68 : LocalName = LocalName :: pack_inline (114849110128384u64 , 5u8) ; +pub const ATOM_LOCALNAME__77_69_64_74_68_73 : LocalName = LocalName :: pack_inline (32484471431853824u64 , 6u8) ; +pub const ATOM_LOCALNAME__77_72_61_70 : LocalName = LocalName :: pack_inline (482671228672u64 , 4u8) ; +pub const ATOM_LOCALNAME__78 : LocalName = LocalName :: pack_inline (30720u64 , 1u8) ; +pub const ATOM_LOCALNAME__78_31 : LocalName = LocalName :: pack_inline (3241984u64 , 2u8) ; +pub const ATOM_LOCALNAME__78_32 : LocalName = LocalName :: pack_inline (3307520u64 , 2u8) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B : LocalName = LocalName :: pack_inline (118121959290880u64 , 5u8) ; +pub const ATOM_LOCALNAME__78_6D_6C_6E_73 : LocalName = LocalName :: pack_inline (126918102710272u64 , 5u8) ; +pub const ATOM_LOCALNAME__78_6D_70 : LocalName = LocalName :: pack_inline (1886222336u64 , 3u8) ; +pub const ATOM_LOCALNAME__78_6F_72 : LocalName = LocalName :: pack_inline (1919907840u64 , 3u8) ; +pub const ATOM_LOCALNAME__78_72_65_66 : LocalName = LocalName :: pack_inline (439788664832u64 , 4u8) ; +pub const ATOM_LOCALNAME__79 : LocalName = LocalName :: pack_inline (30976u64 , 1u8) ; +pub const ATOM_LOCALNAME__79_31 : LocalName = LocalName :: pack_inline (3242240u64 , 2u8) ; +pub const ATOM_LOCALNAME__79_32 : LocalName = LocalName :: pack_inline (3307776u64 , 2u8) ; +pub const ATOM_LOCALNAME__7A : LocalName = LocalName :: pack_inline (31232u64 , 1u8) ; +# [doc = "Takes a local name as a string and returns its key in the string cache."] # [macro_export] macro_rules ! local_name { ("columnspacing") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_75_6D_6E_73_70_61_63_69_6E_67 } ; +("kernelunitlength") => { $ crate :: ATOM_LOCALNAME__6B_65_72_6E_65_6C_75_6E_69_74_6C_65_6E_67_74_68 } ; +("color-interpolation") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_6F_72_2D_69_6E_74_65_72_70_6F_6C_61_74_69_6F_6E } ; +("complexes") => { $ crate :: ATOM_LOCALNAME__63_6F_6D_70_6C_65_78_65_73 } ; +("annotation-xml") => { $ crate :: ATOM_LOCALNAME__61_6E_6E_6F_74_61_74_69_6F_6E_2D_78_6D_6C } ; +("specularconstant") => { $ crate :: ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_63_6F_6E_73_74_61_6E_74 } ; +("mozbrowser") => { $ crate :: ATOM_LOCALNAME__6D_6F_7A_62_72_6F_77_73_65_72 } ; +("interval") => { $ crate :: ATOM_LOCALNAME__69_6E_74_65_72_76_61_6C } ; +("gradientUnits") => { $ crate :: ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_55_6E_69_74_73 } ; +("onmouseleave") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6C_65_61_76_65 } ; +("writing-mode") => { $ crate :: ATOM_LOCALNAME__77_72_69_74_69_6E_67_2D_6D_6F_64_65 } ; +("aria-valuemax") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6D_61_78 } ; +("animateTransform") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_54_72_61_6E_73_66_6F_72_6D } ; +("definitionURL") => { $ crate :: ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_55_52_4C } ; +("background") => { $ crate :: ATOM_LOCALNAME__62_61_63_6B_67_72_6F_75_6E_64 } ; +("aria-templateid") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_74_65_6D_70_6C_61_74_65_69_64 } ; +("feGaussianBlur") => { $ crate :: ATOM_LOCALNAME__66_65_47_61_75_73_73_69_61_6E_42_6C_75_72 } ; +("subscriptshift") => { $ crate :: ATOM_LOCALNAME__73_75_62_73_63_72_69_70_74_73_68_69_66_74 } ; +("xmlns:xlink") => { $ crate :: ATOM_LOCALNAME__78_6D_6C_6E_73_3A_78_6C_69_6E_6B } ; +("fieldset") => { $ crate :: ATOM_LOCALNAME__66_69_65_6C_64_73_65_74 } ; +("spreadmethod") => { $ crate :: ATOM_LOCALNAME__73_70_72_65_61_64_6D_65_74_68_6F_64 } ; +("formtarget") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_74_61_72_67_65_74 } ; +("feDiffuseLighting") => { $ crate :: ATOM_LOCALNAME__66_65_44_69_66_66_75_73_65_4C_69_67_68_74_69_6E_67 } ; +("feturbulence") => { $ crate :: ATOM_LOCALNAME__66_65_74_75_72_62_75_6C_65_6E_63_65 } ; +("onbeforeeditfocus") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_65_64_69_74_66_6F_63_75_73 } ; +("colgroup") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_67_72_6F_75_70 } ; +("mathbackground") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68_62_61_63_6B_67_72_6F_75_6E_64 } ; +("onkeydown") => { $ crate :: ATOM_LOCALNAME__6F_6E_6B_65_79_64_6F_77_6E } ; +("feColorMatrix") => { $ crate :: ATOM_LOCALNAME__66_65_43_6F_6C_6F_72_4D_61_74_72_69_78 } ; +("startoffset") => { $ crate :: ATOM_LOCALNAME__73_74_61_72_74_6F_66_66_73_65_74 } ; +("autofocus") => { $ crate :: ATOM_LOCALNAME__61_75_74_6F_66_6F_63_75_73 } ; +("contextmenu") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_78_74_6D_65_6E_75 } ; +("longdesc") => { $ crate :: ATOM_LOCALNAME__6C_6F_6E_67_64_65_73_63 } ; +("aria-relevant") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_65_6C_65_76_61_6E_74 } ; +("onbeforeprint") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_70_72_69_6E_74 } ; +("fill-rule") => { $ crate :: ATOM_LOCALNAME__66_69_6C_6C_2D_72_75_6C_65 } ; +("hreflang") => { $ crate :: ATOM_LOCALNAME__68_72_65_66_6C_61_6E_67 } ; +("domainofapplication") => { $ crate :: ATOM_LOCALNAME__64_6F_6D_61_69_6E_6F_66_61_70_70_6C_69_63_61_74_69_6F_6E } ; +("keytimes") => { $ crate :: ATOM_LOCALNAME__6B_65_79_74_69_6D_65_73 } ; +("numoctaves") => { $ crate :: ATOM_LOCALNAME__6E_75_6D_6F_63_74_61_76_65_73 } ; +("partialdiff") => { $ crate :: ATOM_LOCALNAME__70_61_72_74_69_61_6C_64_69_66_66 } ; +("aria-describedby") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_65_73_63_72_69_62_65_64_62_79 } ; +("color-interpolation-filters") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_6F_72_2D_69_6E_74_65_72_70_6F_6C_61_74_69_6F_6E_2D_66_69_6C_74_65_72_73 } ; +("preserveaspectratio") => { $ crate :: ATOM_LOCALNAME__70_72_65_73_65_72_76_65_61_73_70_65_63_74_72_61_74_69_6F } ; +("actiontype") => { $ crate :: ATOM_LOCALNAME__61_63_74_69_6F_6E_74_79_70_65 } ; +("quotient") => { $ crate :: ATOM_LOCALNAME__71_75_6F_74_69_65_6E_74 } ; +("notation") => { $ crate :: ATOM_LOCALNAME__6E_6F_74_61_74_69_6F_6E } ; +("autocomplete") => { $ crate :: ATOM_LOCALNAME__61_75_74_6F_63_6F_6D_70_6C_65_74_65 } ; +("contentStyleType") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_53_74_79_6C_65_54_79_70_65 } ; +("strikethrough-thickness") => { $ crate :: ATOM_LOCALNAME__73_74_72_69_6B_65_74_68_72_6F_75_67_68_2D_74_68_69_63_6B_6E_65_73_73 } ; +("stop-color") => { $ crate :: ATOM_LOCALNAME__73_74_6F_70_2D_63_6F_6C_6F_72 } ; +("itemtype") => { $ crate :: ATOM_LOCALNAME__69_74_65_6D_74_79_70_65 } ; +("fepointlight") => { $ crate :: ATOM_LOCALNAME__66_65_70_6F_69_6E_74_6C_69_67_68_74 } ; +("formmethod") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_6D_65_74_68_6F_64 } ; +("seamless") => { $ crate :: ATOM_LOCALNAME__73_65_61_6D_6C_65_73_73 } ; +("plaintext") => { $ crate :: ATOM_LOCALNAME__70_6C_61_69_6E_74_65_78_74 } ; +("aria-modal") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6D_6F_64_61_6C } ; +("required") => { $ crate :: ATOM_LOCALNAME__72_65_71_75_69_72_65_64 } ; +("numOctaves") => { $ crate :: ATOM_LOCALNAME__6E_75_6D_4F_63_74_61_76_65_73 } ; +("maxlength") => { $ crate :: ATOM_LOCALNAME__6D_61_78_6C_65_6E_67_74_68 } ; +("piecewise") => { $ crate :: ATOM_LOCALNAME__70_69_65_63_65_77_69_73_65 } ; +("cellspacing") => { $ crate :: ATOM_LOCALNAME__63_65_6C_6C_73_70_61_63_69_6E_67 } ; +("xChannelSelector") => { $ crate :: ATOM_LOCALNAME__78_43_68_61_6E_6E_65_6C_53_65_6C_65_63_74_6F_72 } ; +("momentabout") => { $ crate :: ATOM_LOCALNAME__6D_6F_6D_65_6E_74_61_62_6F_75_74 } ; +("onfinish") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_69_6E_69_73_68 } ; +("kernelmatrix") => { $ crate :: ATOM_LOCALNAME__6B_65_72_6E_65_6C_6D_61_74_72_69_78 } ; +("color-profile") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_6F_72_2D_70_72_6F_66_69_6C_65 } ; +("fedropshadow") => { $ crate :: ATOM_LOCALNAME__66_65_64_72_6F_70_73_68_61_64_6F_77 } ; +("aria-haspopup") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_68_61_73_70_6F_70_75_70 } ; +("pointsatz") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_7A } ; +("decoding") => { $ crate :: ATOM_LOCALNAME__64_65_63_6F_64_69_6E_67 } ; +("linearGradient") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65_61_72_47_72_61_64_69_65_6E_74 } ; +("columnlines") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_75_6D_6E_6C_69_6E_65_73 } ; +("onmousemove") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6D_6F_76_65 } ; +("codomain") => { $ crate :: ATOM_LOCALNAME__63_6F_64_6F_6D_61_69_6E } ; +("prsubset") => { $ crate :: ATOM_LOCALNAME__70_72_73_75_62_73_65_74 } ; +("alignment-baseline") => { $ crate :: ATOM_LOCALNAME__61_6C_69_67_6E_6D_65_6E_74_2D_62_61_73_65_6C_69_6E_65 } ; +("intercept") => { $ crate :: ATOM_LOCALNAME__69_6E_74_65_72_63_65_70_74 } ; +("font-face-src") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_73_72_63 } ; +("aria-multiselectable") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6D_75_6C_74_69_73_65_6C_65_63_74_61_62_6C_65 } ; +("keyPoints") => { $ crate :: ATOM_LOCALNAME__6B_65_79_50_6F_69_6E_74_73 } ; +("diffuseconstant") => { $ crate :: ATOM_LOCALNAME__64_69_66_66_75_73_65_63_6F_6E_73_74_61_6E_74 } ; +("xlink:arcrole") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_61_72_63_72_6F_6C_65 } ; +("onafterupdate") => { $ crate :: ATOM_LOCALNAME__6F_6E_61_66_74_65_72_75_70_64_61_74_65 } ; +("foreignObject") => { $ crate :: ATOM_LOCALNAME__66_6F_72_65_69_67_6E_4F_62_6A_65_63_74 } ; +("autosubmit") => { $ crate :: ATOM_LOCALNAME__61_75_74_6F_73_75_62_6D_69_74 } ; +("scrolldelay") => { $ crate :: ATOM_LOCALNAME__73_63_72_6F_6C_6C_64_65_6C_61_79 } ; +("stretchy") => { $ crate :: ATOM_LOCALNAME__73_74_72_65_74_63_68_79 } ; +("font-weight") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_77_65_69_67_68_74 } ; +("onafterprint") => { $ crate :: ATOM_LOCALNAME__6F_6E_61_66_74_65_72_70_72_69_6E_74 } ; +("aria-pressed") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_70_72_65_73_73_65_64 } ; +("line-height") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65_2D_68_65_69_67_68_74 } ; +("basefrequency") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_66_72_65_71_75_65_6E_63_79 } ; +("aria-description") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_65_73_63_72_69_70_74_69_6F_6E } ; +("onhashchange") => { $ crate :: ATOM_LOCALNAME__6F_6E_68_61_73_68_63_68_61_6E_67_65 } ; +("displaystyle") => { $ crate :: ATOM_LOCALNAME__64_69_73_70_6C_61_79_73_74_79_6C_65 } ; +("v-hanging") => { $ crate :: ATOM_LOCALNAME__76_2D_68_61_6E_67_69_6E_67 } ; +("patterncontentunits") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_63_6F_6E_74_65_6E_74_75_6E_69_74_73 } ; +("http-equiv") => { $ crate :: ATOM_LOCALNAME__68_74_74_70_2D_65_71_75_69_76 } ; +("animation") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_69_6F_6E } ; +("vert-adv-y") => { $ crate :: ATOM_LOCALNAME__76_65_72_74_2D_61_64_76_2D_79 } ; +("onrowsdelete") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_6F_77_73_64_65_6C_65_74_65 } ; +("aria-labelledby") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6C_61_62_65_6C_6C_65_64_62_79 } ; +("unicode-range") => { $ crate :: ATOM_LOCALNAME__75_6E_69_63_6F_64_65_2D_72_61_6E_67_65 } ; +("listener") => { $ crate :: ATOM_LOCALNAME__6C_69_73_74_65_6E_65_72 } ; +("accent-height") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_6E_74_2D_68_65_69_67_68_74 } ; +("dominant-baseline") => { $ crate :: ATOM_LOCALNAME__64_6F_6D_69_6E_61_6E_74_2D_62_61_73_65_6C_69_6E_65 } ; +("datetime") => { $ crate :: ATOM_LOCALNAME__64_61_74_65_74_69_6D_65 } ; +("aria-colspan") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_73_70_61_6E } ; +("conjugate") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_6A_75_67_61_74_65 } ; +("onmousedown") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_64_6F_77_6E } ; +("equalrows") => { $ crate :: ATOM_LOCALNAME__65_71_75_61_6C_72_6F_77_73 } ; +("stitchtiles") => { $ crate :: ATOM_LOCALNAME__73_74_69_74_63_68_74_69_6C_65_73 } ; +("edgemode") => { $ crate :: ATOM_LOCALNAME__65_64_67_65_6D_6F_64_65 } ; +("aria-autocomplete") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_61_75_74_6F_63_6F_6D_70_6C_65_74_65 } ; +("aria-atomic") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_61_74_6F_6D_69_63 } ; +("mathsize") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68_73_69_7A_65 } ; +("glyphref") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68_72_65_66 } ; +("maskunits") => { $ crate :: ATOM_LOCALNAME__6D_61_73_6B_75_6E_69_74_73 } ; +("clippathunits") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_70_61_74_68_75_6E_69_74_73 } ; +("aria-checked") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_68_65_63_6B_65_64 } ; +("enable-background") => { $ crate :: ATOM_LOCALNAME__65_6E_61_62_6C_65_2D_62_61_63_6B_67_72_6F_75_6E_64 } ; +("onbeforecut") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_63_75_74 } ; +("onmouseover") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6F_76_65_72 } ; +("pointsAtX") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_58 } ; +("ondblclick") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_62_6C_63_6C_69_63_6B } ; +("xchannelselector") => { $ crate :: ATOM_LOCALNAME__78_63_68_61_6E_6E_65_6C_73_65_6C_65_63_74_6F_72 } ; +("symmetric") => { $ crate :: ATOM_LOCALNAME__73_79_6D_6D_65_74_72_69_63 } ; +("fediffuselighting") => { $ crate :: ATOM_LOCALNAME__66_65_64_69_66_66_75_73_65_6C_69_67_68_74_69_6E_67 } ; +("aria-multiline") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6D_75_6C_74_69_6C_69_6E_65 } ; +("oninvalid") => { $ crate :: ATOM_LOCALNAME__6F_6E_69_6E_76_61_6C_69_64 } ; +("markerHeight") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_48_65_69_67_68_74 } ; +("repeatdur") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_64_75_72 } ; +("vert-origin-y") => { $ crate :: ATOM_LOCALNAME__76_65_72_74_2D_6F_72_69_67_69_6E_2D_79 } ; +("requiredFeatures") => { $ crate :: ATOM_LOCALNAME__72_65_71_75_69_72_65_64_46_65_61_74_75_72_65_73 } ; +("elevation") => { $ crate :: ATOM_LOCALNAME__65_6C_65_76_61_74_69_6F_6E } ; +("viewtarget") => { $ crate :: ATOM_LOCALNAME__76_69_65_77_74_61_72_67_65_74 } ; +("aria-label") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6C_61_62_65_6C } ; +("solidcolor") => { $ crate :: ATOM_LOCALNAME__73_6F_6C_69_64_63_6F_6C_6F_72 } ; +("onforminput") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_6F_72_6D_69_6E_70_75_74 } ; +("textpath") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_70_61_74_68 } ; +("spellcheck") => { $ crate :: ATOM_LOCALNAME__73_70_65_6C_6C_63_68_65_63_6B } ; +("patternTransform") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_54_72_61_6E_73_66_6F_72_6D } ; +("aria-disabled") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_69_73_61_62_6C_65_64 } ; +("font-face-format") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_66_6F_72_6D_61_74 } ; +("autoplay") => { $ crate :: ATOM_LOCALNAME__61_75_74_6F_70_6C_61_79 } ; +("altGlyph") => { $ crate :: ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68 } ; +("imaginaryi") => { $ crate :: ATOM_LOCALNAME__69_6D_61_67_69_6E_61_72_79_69 } ; +("dataformatas") => { $ crate :: ATOM_LOCALNAME__64_61_74_61_66_6F_72_6D_61_74_61_73 } ; +("femorphology") => { $ crate :: ATOM_LOCALNAME__66_65_6D_6F_72_70_68_6F_6C_6F_67_79 } ; +("x-height") => { $ crate :: ATOM_LOCALNAME__78_2D_68_65_69_67_68_74 } ; +("onbefordeactivate") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_64_65_61_63_74_69_76_61_74_65 } ; +("zoomAndPan") => { $ crate :: ATOM_LOCALNAME__7A_6F_6F_6D_41_6E_64_50_61_6E } ; +("letter-spacing") => { $ crate :: ATOM_LOCALNAME__6C_65_74_74_65_72_2D_73_70_61_63_69_6E_67 } ; +("aria-expanded") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_65_78_70_61_6E_64_65_64 } ; +("aria-braillelabel") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_62_72_61_69_6C_6C_65_6C_61_62_65_6C } ; +("mathcolor") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68_63_6F_6C_6F_72 } ; +("equivalent") => { $ crate :: ATOM_LOCALNAME__65_71_75_69_76_61_6C_65_6E_74 } ; +("fontfamily") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_66_61_6D_69_6C_79 } ; +("scriptlevel") => { $ crate :: ATOM_LOCALNAME__73_63_72_69_70_74_6C_65_76_65_6C } ; +("rowspacing") => { $ crate :: ATOM_LOCALNAME__72_6F_77_73_70_61_63_69_6E_67 } ; +("maskUnits") => { $ crate :: ATOM_LOCALNAME__6D_61_73_6B_55_6E_69_74_73 } ; +("glyphRef") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68_52_65_66 } ; +("glyph-orientation-horizontal") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68_2D_6F_72_69_65_6E_74_61_74_69_6F_6E_2D_68_6F_72_69_7A_6F_6E_74_61_6C } ; +("multicol") => { $ crate :: ATOM_LOCALNAME__6D_75_6C_74_69_63_6F_6C } ; +("maskContentUnits") => { $ crate :: ATOM_LOCALNAME__6D_61_73_6B_43_6F_6E_74_65_6E_74_55_6E_69_74_73 } ; +("thinmathspace") => { $ crate :: ATOM_LOCALNAME__74_68_69_6E_6D_61_74_68_73_70_61_63_65 } ; +("condition") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_64_69_74_69_6F_6E } ; +("formnovalidate") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_6E_6F_76_61_6C_69_64_61_74_65 } ; +("attributeName") => { $ crate :: ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_4E_61_6D_65 } ; +("cellpadding") => { $ crate :: ATOM_LOCALNAME__63_65_6C_6C_70_61_64_64_69_6E_67 } ; +("stroke-miterlimit") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6D_69_74_65_72_6C_69_6D_69_74 } ; +("altglyph") => { $ crate :: ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68 } ; +("selector") => { $ crate :: ATOM_LOCALNAME__73_65_6C_65_63_74_6F_72 } ; +("onbeforeunload") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_75_6E_6C_6F_61_64 } ; +("lowlimit") => { $ crate :: ATOM_LOCALNAME__6C_6F_77_6C_69_6D_69_74 } ; +("optgroup") => { $ crate :: ATOM_LOCALNAME__6F_70_74_67_72_6F_75_70 } ; +("feDistantLight") => { $ crate :: ATOM_LOCALNAME__66_65_44_69_73_74_61_6E_74_4C_69_67_68_74 } ; +("frameset") => { $ crate :: ATOM_LOCALNAME__66_72_61_6D_65_73_65_74 } ; +("underline-thickness") => { $ crate :: ATOM_LOCALNAME__75_6E_64_65_72_6C_69_6E_65_2D_74_68_69_63_6B_6E_65_73_73 } ; +("strikethrough-position") => { $ crate :: ATOM_LOCALNAME__73_74_72_69_6B_65_74_68_72_6F_75_67_68_2D_70_6F_73_69_74_69_6F_6E } ; +("onrowsinserted") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_6F_77_73_69_6E_73_65_72_74_65_64 } ; +("definitionurl") => { $ crate :: ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_75_72_6C } ; +("fontweight") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_77_65_69_67_68_74 } ; +("aria-placeholder") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_70_6C_61_63_65_68_6F_6C_64_65_72 } ; +("marker-start") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_73_74_61_72_74 } ; +("ononline") => { $ crate :: ATOM_LOCALNAME__6F_6E_6F_6E_6C_69_6E_65 } ; +("xml:base") => { $ crate :: ATOM_LOCALNAME__78_6D_6C_3A_62_61_73_65 } ; +("allowfullscreen") => { $ crate :: ATOM_LOCALNAME__61_6C_6C_6F_77_66_75_6C_6C_73_63_72_65_65_6E } ; +("noresize") => { $ crate :: ATOM_LOCALNAME__6E_6F_72_65_73_69_7A_65 } ; +("spreadMethod") => { $ crate :: ATOM_LOCALNAME__73_70_72_65_61_64_4D_65_74_68_6F_64 } ; +("feConvolveMatrix") => { $ crate :: ATOM_LOCALNAME__66_65_43_6F_6E_76_6F_6C_76_65_4D_61_74_72_69_78 } ; +("limitingConeAngle") => { $ crate :: ATOM_LOCALNAME__6C_69_6D_69_74_69_6E_67_43_6F_6E_65_41_6E_67_6C_65 } ; +("attributetype") => { $ crate :: ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_74_79_70_65 } ; +("selection") => { $ crate :: ATOM_LOCALNAME__73_65_6C_65_63_74_69_6F_6E } ; +("repeat-max") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_2D_6D_61_78 } ; +("font-face-name") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_6E_61_6D_65 } ; +("controllerchange") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_72_6F_6C_6C_65_72_63_68_61_6E_67_65 } ; +("aria-selected") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_73_65_6C_65_63_74_65_64 } ; +("formenctype") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_65_6E_63_74_79_70_65 } ; +("datalist") => { $ crate :: ATOM_LOCALNAME__64_61_74_61_6C_69_73_74 } ; +("rowalign") => { $ crate :: ATOM_LOCALNAME__72_6F_77_61_6C_69_67_6E } ; +("scalarproduct") => { $ crate :: ATOM_LOCALNAME__73_63_61_6C_61_72_70_72_6F_64_75_63_74 } ; +("limitingconeangle") => { $ crate :: ATOM_LOCALNAME__6C_69_6D_69_74_69_6E_67_63_6F_6E_65_61_6E_67_6C_65 } ; +("mprescripts") => { $ crate :: ATOM_LOCALNAME__6D_70_72_65_73_63_72_69_70_74_73 } ; +("aria-valuetext") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_74_65_78_74 } ; +("disabled") => { $ crate :: ATOM_LOCALNAME__64_69_73_61_62_6C_65_64 } ; +("stroke-width") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_77_69_64_74_68 } ; +("noscript") => { $ crate :: ATOM_LOCALNAME__6E_6F_73_63_72_69_70_74 } ; +("onresize") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_65_73_69_7A_65 } ; +("filterUnits") => { $ crate :: ATOM_LOCALNAME__66_69_6C_74_65_72_55_6E_69_74_73 } ; +("aria-setsize") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_73_65_74_73_69_7A_65 } ; +("onbeforepaste") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_70_61_73_74_65 } ; +("aria-busy") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_62_75_73_79 } ; +("aria-controls") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6E_74_72_6F_6C_73 } ; +("malignmark") => { $ crate :: ATOM_LOCALNAME__6D_61_6C_69_67_6E_6D_61_72_6B } ; +("aria-keyshortcuts") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6B_65_79_73_68_6F_72_74_63_75_74_73 } ; +("calcmode") => { $ crate :: ATOM_LOCALNAME__63_61_6C_63_6D_6F_64_65 } ; +("marker-mid") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_6D_69_64 } ; +("onformchange") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_6F_72_6D_63_68_61_6E_67_65 } ; +("aria-flowto") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_66_6C_6F_77_74_6F } ; +("animatemotion") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_6D_6F_74_69_6F_6E } ; +("amplitude") => { $ crate :: ATOM_LOCALNAME__61_6D_70_6C_69_74_75_64_65 } ; +("aria-valuemin") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6D_69_6E } ; +("aria-posinset") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_70_6F_73_69_6E_73_65_74 } ; +("lengthadjust") => { $ crate :: ATOM_LOCALNAME__6C_65_6E_67_74_68_61_64_6A_75_73_74 } ; +("diffuseConstant") => { $ crate :: ATOM_LOCALNAME__64_69_66_66_75_73_65_43_6F_6E_73_74_61_6E_74 } ; +("baseProfile") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_50_72_6F_66_69_6C_65 } ; +("color-rendering") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_6F_72_2D_72_65_6E_64_65_72_69_6E_67 } ; +("altGlyphDef") => { $ crate :: ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68_44_65_66 } ; +("primitiveunits") => { $ crate :: ATOM_LOCALNAME__70_72_69_6D_69_74_69_76_65_75_6E_69_74_73 } ; +("preservealpha") => { $ crate :: ATOM_LOCALNAME__70_72_65_73_65_72_76_65_61_6C_70_68_61 } ; +("aria-rowindex") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_69_6E_64_65_78 } ; +("ondeactivate") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_65_61_63_74_69_76_61_74_65 } ; +("font-face-uri") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_75_72_69 } ; +("feSpecularLighting") => { $ crate :: ATOM_LOCALNAME__66_65_53_70_65_63_75_6C_61_72_4C_69_67_68_74_69_6E_67 } ; +("v-ideographic") => { $ crate :: ATOM_LOCALNAME__76_2D_69_64_65_6F_67_72_61_70_68_69_63 } ; +("stdDeviation") => { $ crate :: ATOM_LOCALNAME__73_74_64_44_65_76_69_61_74_69_6F_6E } ; +("onsubmit") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_75_62_6D_69_74 } ; +("scriptsizemultiplier") => { $ crate :: ATOM_LOCALNAME__73_63_72_69_70_74_73_69_7A_65_6D_75_6C_74_69_70_6C_69_65_72 } ; +("onrowexit") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_6F_77_65_78_69_74 } ; +("font-face") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65 } ; +("gradienttransform") => { $ crate :: ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_74_72_61_6E_73_66_6F_72_6D } ; +("veryverythinmathspace") => { $ crate :: ATOM_LOCALNAME__76_65_72_79_76_65_72_79_74_68_69_6E_6D_61_74_68_73_70_61_63_65 } ; +("onselect") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_65_6C_65_63_74 } ; +("clip-rule") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_2D_72_75_6C_65 } ; +("codebase") => { $ crate :: ATOM_LOCALNAME__63_6F_64_65_62_61_73_65 } ; +("underline-position") => { $ crate :: ATOM_LOCALNAME__75_6E_64_65_72_6C_69_6E_65_2D_70_6F_73_69_74_69_6F_6E } ; +("v-mathematical") => { $ crate :: ATOM_LOCALNAME__76_2D_6D_61_74_68_65_6D_61_74_69_63_61_6C } ; +("separator") => { $ crate :: ATOM_LOCALNAME__73_65_70_61_72_61_74_6F_72 } ; +("matrixrow") => { $ crate :: ATOM_LOCALNAME__6D_61_74_72_69_78_72_6F_77 } ; +("selected") => { $ crate :: ATOM_LOCALNAME__73_65_6C_65_63_74_65_64 } ; +("xlink:href") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_68_72_65_66 } ; +("horiz-adv-x") => { $ crate :: ATOM_LOCALNAME__68_6F_72_69_7A_2D_61_64_76_2D_78 } ; +("controls") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_72_6F_6C_73 } ; +("aria-current") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_75_72_72_65_6E_74 } ; +("onscroll") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_63_72_6F_6C_6C } ; +("pointsAtZ") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_5A } ; +("overflow") => { $ crate :: ATOM_LOCALNAME__6F_76_65_72_66_6C_6F_77 } ; +("") => { $ crate :: ATOM_LOCALNAME_ } ; +("onpagehide") => { $ crate :: ATOM_LOCALNAME__6F_6E_70_61_67_65_68_69_64_65 } ; +("visibility") => { $ crate :: ATOM_LOCALNAME__76_69_73_69_62_69_6C_69_74_79 } ; +("feComponentTransfer") => { $ crate :: ATOM_LOCALNAME__66_65_43_6F_6D_70_6F_6E_65_6E_74_54_72_61_6E_73_66_65_72 } ; +("overline-position") => { $ crate :: ATOM_LOCALNAME__6F_76_65_72_6C_69_6E_65_2D_70_6F_73_69_74_69_6F_6E } ; +("rendering-intent") => { $ crate :: ATOM_LOCALNAME__72_65_6E_64_65_72_69_6E_67_2D_69_6E_74_65_6E_74 } ; +("infinity") => { $ crate :: ATOM_LOCALNAME__69_6E_66_69_6E_69_74_79 } ; +("feconvolvematrix") => { $ crate :: ATOM_LOCALNAME__66_65_63_6F_6E_76_6F_6C_76_65_6D_61_74_72_69_78 } ; +("repeatCount") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_43_6F_75_6E_74 } ; +("onselectstart") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_65_6C_65_63_74_73_74_61_72_74 } ; +("pointsaty") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_79 } ; +("direction") => { $ crate :: ATOM_LOCALNAME__64_69_72_65_63_74_69_6F_6E } ; +("fecolormatrix") => { $ crate :: ATOM_LOCALNAME__66_65_63_6F_6C_6F_72_6D_61_74_72_69_78 } ; +("tabindex") => { $ crate :: ATOM_LOCALNAME__74_61_62_69_6E_64_65_78 } ; +("placeholder") => { $ crate :: ATOM_LOCALNAME__70_6C_61_63_65_68_6F_6C_64_65_72 } ; +("transpose") => { $ crate :: ATOM_LOCALNAME__74_72_61_6E_73_70_6F_73_65 } ; +("gradientunits") => { $ crate :: ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_75_6E_69_74_73 } ; +("feDropShadow") => { $ crate :: ATOM_LOCALNAME__66_65_44_72_6F_70_53_68_61_64_6F_77 } ; +("xlink:role") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_72_6F_6C_65 } ; +("edgeMode") => { $ crate :: ATOM_LOCALNAME__65_64_67_65_4D_6F_64_65 } ; +("gradientTransform") => { $ crate :: ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_54_72_61_6E_73_66_6F_72_6D } ; +("integers") => { $ crate :: ATOM_LOCALNAME__69_6E_74_65_67_65_72_73 } ; +("stddeviation") => { $ crate :: ATOM_LOCALNAME__73_74_64_64_65_76_69_61_74_69_6F_6E } ; +("repeat-start") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_2D_73_74_61_72_74 } ; +("cap-height") => { $ crate :: ATOM_LOCALNAME__63_61_70_2D_68_65_69_67_68_74 } ; +("xlink:type") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_74_79_70_65 } ; +("unselectable") => { $ crate :: ATOM_LOCALNAME__75_6E_73_65_6C_65_63_74_61_62_6C_65 } ; +("contentstyletype") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_73_74_79_6C_65_74_79_70_65 } ; +("transform") => { $ crate :: ATOM_LOCALNAME__74_72_61_6E_73_66_6F_72_6D } ; +("stroke-linejoin") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6C_69_6E_65_6A_6F_69_6E } ; +("integrity") => { $ crate :: ATOM_LOCALNAME__69_6E_74_65_67_72_69_74_79 } ; +("ondatasetchanged") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_61_74_61_73_65_74_63_68_61_6E_67_65_64 } ; +("foreignobject") => { $ crate :: ATOM_LOCALNAME__66_6F_72_65_69_67_6E_6F_62_6A_65_63_74 } ; +("radiogroup") => { $ crate :: ATOM_LOCALNAME__72_61_64_69_6F_67_72_6F_75_70 } ; +("contenteditable") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_65_64_69_74_61_62_6C_65 } ; +("template") => { $ crate :: ATOM_LOCALNAME__74_65_6D_70_6C_61_74_65 } ; +("statechange") => { $ crate :: ATOM_LOCALNAME__73_74_61_74_65_63_68_61_6E_67_65 } ; +("pathlength") => { $ crate :: ATOM_LOCALNAME__70_61_74_68_6C_65_6E_67_74_68 } ; +("divergence") => { $ crate :: ATOM_LOCALNAME__64_69_76_65_72_67_65_6E_63_65 } ; +("aria-hidden") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_68_69_64_64_65_6E } ; +("ondragleave") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_6C_65_61_76_65 } ; +("maligngroup") => { $ crate :: ATOM_LOCALNAME__6D_61_6C_69_67_6E_67_72_6F_75_70 } ; +("outerproduct") => { $ crate :: ATOM_LOCALNAME__6F_75_74_65_72_70_72_6F_64_75_63_74 } ; +("aria-channel") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_68_61_6E_6E_65_6C } ; +("systemlanguage") => { $ crate :: ATOM_LOCALNAME__73_79_73_74_65_6D_6C_61_6E_67_75_61_67_65 } ; +("fetchpriority") => { $ crate :: ATOM_LOCALNAME__66_65_74_63_68_70_72_69_6F_72_69_74_79 } ; +("polyline") => { $ crate :: ATOM_LOCALNAME__70_6F_6C_79_6C_69_6E_65 } ; +("lighting-color") => { $ crate :: ATOM_LOCALNAME__6C_69_67_68_74_69_6E_67_2D_63_6F_6C_6F_72 } ; +("property") => { $ crate :: ATOM_LOCALNAME__70_72_6F_70_65_72_74_79 } ; +("animateColor") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_43_6F_6C_6F_72 } ; +("ondragdrop") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_64_72_6F_70 } ; +("repeat-min") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_2D_6D_69_6E } ; +("specification") => { $ crate :: ATOM_LOCALNAME__73_70_65_63_69_66_69_63_61_74_69_6F_6E } ; +("surfacescale") => { $ crate :: ATOM_LOCALNAME__73_75_72_66_61_63_65_73_63_61_6C_65 } ; +("clippath") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_70_61_74_68 } ; +("patternUnits") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_55_6E_69_74_73 } ; +("flood-opacity") => { $ crate :: ATOM_LOCALNAME__66_6C_6F_6F_64_2D_6F_70_61_63_69_74_79 } ; +("referrerpolicy") => { $ crate :: ATOM_LOCALNAME__72_65_66_65_72_72_65_72_70_6F_6C_69_63_79 } ; +("factorial") => { $ crate :: ATOM_LOCALNAME__66_61_63_74_6F_72_69_61_6C } ; +("hidefocus") => { $ crate :: ATOM_LOCALNAME__68_69_64_65_66_6F_63_75_73 } ; +("stitchTiles") => { $ crate :: ATOM_LOCALNAME__73_74_69_74_63_68_54_69_6C_65_73 } ; +("arabic-form") => { $ crate :: ATOM_LOCALNAME__61_72_61_62_69_63_2D_66_6F_72_6D } ; +("blockquote") => { $ crate :: ATOM_LOCALNAME__62_6C_6F_63_6B_71_75_6F_74_65 } ; +("mlabeledtr") => { $ crate :: ATOM_LOCALNAME__6D_6C_61_62_65_6C_65_64_74_72 } ; +("novalidate") => { $ crate :: ATOM_LOCALNAME__6E_6F_76_61_6C_69_64_61_74_65 } ; +("onpopstate") => { $ crate :: ATOM_LOCALNAME__6F_6E_70_6F_70_73_74_61_74_65 } ; +("onerrorupdate") => { $ crate :: ATOM_LOCALNAME__6F_6E_65_72_72_6F_72_75_70_64_61_74_65 } ; +("feSpotLight") => { $ crate :: ATOM_LOCALNAME__66_65_53_70_6F_74_4C_69_67_68_74 } ; +("stop-opacity") => { $ crate :: ATOM_LOCALNAME__73_74_6F_70_2D_6F_70_61_63_69_74_79 } ; +("readonly") => { $ crate :: ATOM_LOCALNAME__72_65_61_64_6F_6E_6C_79 } ; +("markerUnits") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_55_6E_69_74_73 } ; +("naturalnumbers") => { $ crate :: ATOM_LOCALNAME__6E_61_74_75_72_61_6C_6E_75_6D_62_65_72_73 } ; +("markerunits") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_75_6E_69_74_73 } ; +("font-family") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_6D_69_6C_79 } ; +("patternunits") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_75_6E_69_74_73 } ; +("orientation") => { $ crate :: ATOM_LOCALNAME__6F_72_69_65_6E_74_61_74_69_6F_6E } ; +("markerheight") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_68_65_69_67_68_74 } ; +("aria-colindextext") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_69_6E_64_65_78_74_65_78_74 } ; +("attributeType") => { $ crate :: ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_54_79_70_65 } ; +("accesskey") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_73_73_6B_65_79 } ; +("clipPathUnits") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_50_61_74_68_55_6E_69_74_73 } ; +("keySplines") => { $ crate :: ATOM_LOCALNAME__6B_65_79_53_70_6C_69_6E_65_73 } ; +("onstorage") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_74_6F_72_61_67_65 } ; +("font-style") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_73_74_79_6C_65 } ; +("fedisplacementmap") => { $ crate :: ATOM_LOCALNAME__66_65_64_69_73_70_6C_61_63_65_6D_65_6E_74_6D_61_70 } ; +("separators") => { $ crate :: ATOM_LOCALNAME__73_65_70_61_72_61_74_6F_72_73 } ; +("verythinmathspace") => { $ crate :: ATOM_LOCALNAME__76_65_72_79_74_68_69_6E_6D_61_74_68_73_70_61_63_65 } ; +("primitiveUnits") => { $ crate :: ATOM_LOCALNAME__70_72_69_6D_69_74_69_76_65_55_6E_69_74_73 } ; +("surfaceScale") => { $ crate :: ATOM_LOCALNAME__73_75_72_66_61_63_65_53_63_61_6C_65 } ; +("formaction") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_61_63_74_69_6F_6E } ; +("verythickmathspace") => { $ crate :: ATOM_LOCALNAME__76_65_72_79_74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 } ; +("calcMode") => { $ crate :: ATOM_LOCALNAME__63_61_6C_63_4D_6F_64_65 } ; +("xml:lang") => { $ crate :: ATOM_LOCALNAME__78_6D_6C_3A_6C_61_6E_67 } ; +("fedistantlight") => { $ crate :: ATOM_LOCALNAME__66_65_64_69_73_74_61_6E_74_6C_69_67_68_74 } ; +("fontstyle") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_73_74_79_6C_65 } ; +("overline-thickness") => { $ crate :: ATOM_LOCALNAME__6F_76_65_72_6C_69_6E_65_2D_74_68_69_63_6B_6E_65_73_73 } ; +("onbounce") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_6F_75_6E_63_65 } ; +("bevelled") => { $ crate :: ATOM_LOCALNAME__62_65_76_65_6C_6C_65_64 } ; +("onmouseout") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6F_75_74 } ; +("exponent") => { $ crate :: ATOM_LOCALNAME__65_78_70_6F_6E_65_6E_74 } ; +("prefetch") => { $ crate :: ATOM_LOCALNAME__70_72_65_66_65_74_63_68 } ; +("tablevalues") => { $ crate :: ATOM_LOCALNAME__74_61_62_6C_65_76_61_6C_75_65_73 } ; +("itemscope") => { $ crate :: ATOM_LOCALNAME__69_74_65_6D_73_63_6F_70_65 } ; +("manifest") => { $ crate :: ATOM_LOCALNAME__6D_61_6E_69_66_65_73_74 } ; +("nomodule") => { $ crate :: ATOM_LOCALNAME__6E_6F_6D_6F_64_75_6C_65 } ; +("mathvariant") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68_76_61_72_69_61_6E_74 } ; +("v-alphabetic") => { $ crate :: ATOM_LOCALNAME__76_2D_61_6C_70_68_61_62_65_74_69_63 } ; +("scrolling") => { $ crate :: ATOM_LOCALNAME__73_63_72_6F_6C_6C_69_6E_67 } ; +("keysplines") => { $ crate :: ATOM_LOCALNAME__6B_65_79_73_70_6C_69_6E_65_73 } ; +("variance") => { $ crate :: ATOM_LOCALNAME__76_61_72_69_61_6E_63_65 } ; +("feMorphology") => { $ crate :: ATOM_LOCALNAME__66_65_4D_6F_72_70_68_6F_6C_6F_67_79 } ; +("preserveAlpha") => { $ crate :: ATOM_LOCALNAME__70_72_65_73_65_72_76_65_41_6C_70_68_61 } ; +("viewTarget") => { $ crate :: ATOM_LOCALNAME__76_69_65_77_54_61_72_67_65_74 } ; +("aria-orientation") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6F_72_69_65_6E_74_61_74_69_6F_6E } ; +("aria-rowcount") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_63_6F_75_6E_74 } ; +("onlanguagechange") => { $ crate :: ATOM_LOCALNAME__6F_6E_6C_61_6E_67_75_61_67_65_63_68_61_6E_67_65 } ; +("oncontrolselect") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_6F_6E_74_72_6F_6C_73_65_6C_65_63_74 } ; +("onmouseup") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_75_70 } ; +("inputmode") => { $ crate :: ATOM_LOCALNAME__69_6E_70_75_74_6D_6F_64_65 } ; +("notsubset") => { $ crate :: ATOM_LOCALNAME__6E_6F_74_73_75_62_73_65_74 } ; +("definition-src") => { $ crate :: ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_2D_73_72_63 } ; +("aria-readonly") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_65_61_64_6F_6E_6C_79 } ; +("specularexponent") => { $ crate :: ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_65_78_70_6F_6E_65_6E_74 } ; +("multiple") => { $ crate :: ATOM_LOCALNAME__6D_75_6C_74_69_70_6C_65 } ; +("onunload") => { $ crate :: ATOM_LOCALNAME__6F_6E_75_6E_6C_6F_61_64 } ; +("aria-colindex") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_69_6E_64_65_78 } ; +("reversed") => { $ crate :: ATOM_LOCALNAME__72_65_76_65_72_73_65_64 } ; +("onoffline") => { $ crate :: ATOM_LOCALNAME__6F_6E_6F_66_66_6C_69_6E_65 } ; +("aria-rowindextext") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_69_6E_64_65_78_74_65_78_74 } ; +("externalresourcesrequired") => { $ crate :: ATOM_LOCALNAME__65_78_74_65_72_6E_61_6C_72_65_73_6F_75_72_63_65_73_72_65_71_75_69_72_65_64 } ; +("datatemplate") => { $ crate :: ATOM_LOCALNAME__64_61_74_61_74_65_6D_70_6C_61_74_65 } ; +("fontsize") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_73_69_7A_65 } ; +("image-rendering") => { $ crate :: ATOM_LOCALNAME__69_6D_61_67_65_2D_72_65_6E_64_65_72_69_6E_67 } ; +("basefont") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_66_6F_6E_74 } ; +("fill-opacity") => { $ crate :: ATOM_LOCALNAME__66_69_6C_6C_2D_6F_70_61_63_69_74_79 } ; +("radialgradient") => { $ crate :: ATOM_LOCALNAME__72_61_64_69_61_6C_67_72_61_64_69_65_6E_74 } ; +("frameborder") => { $ crate :: ATOM_LOCALNAME__66_72_61_6D_65_62_6F_72_64_65_72 } ; +("stroke-dasharray") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_64_61_73_68_61_72_72_61_79 } ; +("encoding") => { $ crate :: ATOM_LOCALNAME__65_6E_63_6F_64_69_6E_67 } ; +("animatetransform") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_74_72_61_6E_73_66_6F_72_6D } ; +("movablelimits") => { $ crate :: ATOM_LOCALNAME__6D_6F_76_61_62_6C_65_6C_69_6D_69_74_73 } ; +("filterres") => { $ crate :: ATOM_LOCALNAME__66_69_6C_74_65_72_72_65_73 } ; +("font-stretch") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_73_74_72_65_74_63_68 } ; +("clipPath") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_50_61_74_68 } ; +("xlink:show") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_73_68_6F_77 } ; +("notanumber") => { $ crate :: ATOM_LOCALNAME__6E_6F_74_61_6E_75_6D_62_65_72 } ; +("onmouseenter") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_65_6E_74_65_72 } ; +("aria-dropeffect") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_72_6F_70_65_66_66_65_63_74 } ; +("progress") => { $ crate :: ATOM_LOCALNAME__70_72_6F_67_72_65_73_73 } ; +("ondataavailable") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_61_74_61_61_76_61_69_6C_61_62_6C_65 } ; +("valuetype") => { $ crate :: ATOM_LOCALNAME__76_61_6C_75_65_74_79_70_65 } ; +("noframes") => { $ crate :: ATOM_LOCALNAME__6E_6F_66_72_61_6D_65_73 } ; +("specularExponent") => { $ crate :: ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_45_78_70_6F_6E_65_6E_74 } ; +("text-rendering") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_2D_72_65_6E_64_65_72_69_6E_67 } ; +("otherwise") => { $ crate :: ATOM_LOCALNAME__6F_74_68_65_72_77_69_73_65 } ; +("baseline") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_6C_69_6E_65 } ; +("framespacing") => { $ crate :: ATOM_LOCALNAME__66_72_61_6D_65_73_70_61_63_69_6E_67 } ; +("xlink:title") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_74_69_74_6C_65 } ; +("feOffset") => { $ crate :: ATOM_LOCALNAME__66_65_4F_66_66_73_65_74 } ; +("aria-secret") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_73_65_63_72_65_74 } ; +("aria-valuenow") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6E_6F_77 } ; +("emptyset") => { $ crate :: ATOM_LOCALNAME__65_6D_70_74_79_73_65_74 } ; +("determinant") => { $ crate :: ATOM_LOCALNAME__64_65_74_65_72_6D_69_6E_61_6E_74 } ; +("textlength") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_6C_65_6E_67_74_68 } ; +("font-variant") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_76_61_72_69_61_6E_74 } ; +("horiz-origin-x") => { $ crate :: ATOM_LOCALNAME__68_6F_72_69_7A_2D_6F_72_69_67_69_6E_2D_78 } ; +("aria-brailleroledescription") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_62_72_61_69_6C_6C_65_72_6F_6C_65_64_65_73_63_72_69_70_74_69_6F_6E } ; +("onfocusout") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_6F_63_75_73_6F_75_74 } ; +("menuitem") => { $ crate :: ATOM_LOCALNAME__6D_65_6E_75_69_74_65_6D } ; +("ondragend") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_65_6E_64 } ; +("baseline-shift") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_6C_69_6E_65_2D_73_68_69_66_74 } ; +("feComposite") => { $ crate :: ATOM_LOCALNAME__66_65_43_6F_6D_70_6F_73_69_74_65 } ; +("pathLength") => { $ crate :: ATOM_LOCALNAME__70_61_74_68_4C_65_6E_67_74_68 } ; +("startOffset") => { $ crate :: ATOM_LOCALNAME__73_74_61_72_74_4F_66_66_73_65_74 } ; +("glyph-orientation-vertical") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68_2D_6F_72_69_65_6E_74_61_74_69_6F_6E_2D_76_65_72_74_69_63_61_6C } ; +("textPath") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_50_61_74_68 } ; +("onreadystatechange") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_65_61_64_79_73_74_61_74_65_63_68_61_6E_67_65 } ; +("stroke-opacity") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6F_70_61_63_69_74_79 } ; +("accumulate") => { $ crate :: ATOM_LOCALNAME__61_63_63_75_6D_75_6C_61_74_65 } ; +("onbeforeupdate") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_75_70_64_61_74_65 } ; +("shape-rendering") => { $ crate :: ATOM_LOCALNAME__73_68_61_70_65_2D_72_65_6E_64_65_72_69_6E_67 } ; +("figcaption") => { $ crate :: ATOM_LOCALNAME__66_69_67_63_61_70_74_69_6F_6E } ; +("thickmathspace") => { $ crate :: ATOM_LOCALNAME__74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 } ; +("minlength") => { $ crate :: ATOM_LOCALNAME__6D_69_6E_6C_65_6E_67_74_68 } ; +("requiredextensions") => { $ crate :: ATOM_LOCALNAME__72_65_71_75_69_72_65_64_65_78_74_65_6E_73_69_6F_6E_73 } ; +("repeat-template") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_2D_74_65_6D_70_6C_61_74_65 } ; +("vert-origin-x") => { $ crate :: ATOM_LOCALNAME__76_65_72_74_2D_6F_72_69_67_69_6E_2D_78 } ; +("lineargradient") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65_61_72_67_72_61_64_69_65_6E_74 } ; +("download") => { $ crate :: ATOM_LOCALNAME__64_6F_77_6E_6C_6F_61_64 } ; +("onmovestart") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_76_65_73_74_61_72_74 } ; +("patterntransform") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_74_72_61_6E_73_66_6F_72_6D } ; +("superscriptshift") => { $ crate :: ATOM_LOCALNAME__73_75_70_65_72_73_63_72_69_70_74_73_68_69_66_74 } ; +("externalResourcesRequired") => { $ crate :: ATOM_LOCALNAME__65_78_74_65_72_6E_61_6C_52_65_73_6F_75_72_63_65_73_52_65_71_75_69_72_65_64 } ; +("animatecolor") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_63_6F_6C_6F_72 } ; +("panose-1") => { $ crate :: ATOM_LOCALNAME__70_61_6E_6F_73_65_2D_31 } ; +("filterRes") => { $ crate :: ATOM_LOCALNAME__66_69_6C_74_65_72_52_65_73 } ; +("aria-colcount") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_63_6F_75_6E_74 } ; +("missing-glyph") => { $ crate :: ATOM_LOCALNAME__6D_69_73_73_69_6E_67_2D_67_6C_79_70_68 } ; +("cartesianproduct") => { $ crate :: ATOM_LOCALNAME__63_61_72_74_65_73_69_61_6E_70_72_6F_64_75_63_74 } ; +("femergenode") => { $ crate :: ATOM_LOCALNAME__66_65_6D_65_72_67_65_6E_6F_64_65 } ; +("ondragover") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_6F_76_65_72 } ; +("fespecularlighting") => { $ crate :: ATOM_LOCALNAME__66_65_73_70_65_63_75_6C_61_72_6C_69_67_68_74_69_6E_67 } ; +("mphantom") => { $ crate :: ATOM_LOCALNAME__6D_70_68_61_6E_74_6F_6D } ; +("aria-activedescendant") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_61_63_74_69_76_65_64_65_73_63_65_6E_64_61_6E_74 } ; +("exponentiale") => { $ crate :: ATOM_LOCALNAME__65_78_70_6F_6E_65_6E_74_69_61_6C_65 } ; +("aria-invalid") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_69_6E_76_61_6C_69_64 } ; +("requiredfeatures") => { $ crate :: ATOM_LOCALNAME__72_65_71_75_69_72_65_64_66_65_61_74_75_72_65_73 } ; +("additive") => { $ crate :: ATOM_LOCALNAME__61_64_64_69_74_69_76_65 } ; +("onbeforeactivate") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_61_63_74_69_76_61_74_65 } ; +("altglyphitem") => { $ crate :: ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68_69_74_65_6D } ; +("repeatcount") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_63_6F_75_6E_74 } ; +("rationals") => { $ crate :: ATOM_LOCALNAME__72_61_74_69_6F_6E_61_6C_73 } ; +("stroke-linecap") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6C_69_6E_65_63_61_70 } ; +("annotation") => { $ crate :: ATOM_LOCALNAME__61_6E_6E_6F_74_61_74_69_6F_6E } ; +("units-per-em") => { $ crate :: ATOM_LOCALNAME__75_6E_69_74_73_2D_70_65_72_2D_65_6D } ; +("tableValues") => { $ crate :: ATOM_LOCALNAME__74_61_62_6C_65_56_61_6C_75_65_73 } ; +("mmultiscripts") => { $ crate :: ATOM_LOCALNAME__6D_6D_75_6C_74_69_73_63_72_69_70_74_73 } ; +("aria-owns") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6F_77_6E_73 } ; +("ideographic") => { $ crate :: ATOM_LOCALNAME__69_64_65_6F_67_72_61_70_68_69_63 } ; +("text-anchor") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_2D_61_6E_63_68_6F_72 } ; +("aria-sort") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_73_6F_72_74 } ; +("aria-datatype") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_61_74_61_74_79_70_65 } ; +("irrelevant") => { $ crate :: ATOM_LOCALNAME__69_72_72_65_6C_65_76_61_6E_74 } ; +("preserveAspectRatio") => { $ crate :: ATOM_LOCALNAME__70_72_65_73_65_72_76_65_41_73_70_65_63_74_52_61_74_69_6F } ; +("markerWidth") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_57_69_64_74_68 } ; +("columnalign") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_75_6D_6E_61_6C_69_67_6E } ; +("notprsubset") => { $ crate :: ATOM_LOCALNAME__6E_6F_74_70_72_73_75_62_73_65_74 } ; +("language") => { $ crate :: ATOM_LOCALNAME__6C_61_6E_67_75_61_67_65 } ; +("onbeforecopy") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_63_6F_70_79 } ; +("onfilterchange") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_69_6C_74_65_72_63_68_61_6E_67_65 } ; +("altglyphdef") => { $ crate :: ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68_64_65_66 } ; +("fePointLight") => { $ crate :: ATOM_LOCALNAME__66_65_50_6F_69_6E_74_4C_69_67_68_74 } ; +("pointer-events") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_65_72_2D_65_76_65_6E_74_73 } ; +("feDisplacementMap") => { $ crate :: ATOM_LOCALNAME__66_65_44_69_73_70_6C_61_63_65_6D_65_6E_74_4D_61_70 } ; +("ondatasetcomplete") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_61_74_61_73_65_74_63_6F_6D_70_6C_65_74_65 } ; +("aria-rowspan") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_73_70_61_6E } ; +("columnspan") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_75_6D_6E_73_70_61_6E } ; +("stroke-dashoffset") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_64_61_73_68_6F_66_66_73_65_74 } ; +("aria-required") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_65_71_75_69_72_65_64 } ; +("occurrence") => { $ crate :: ATOM_LOCALNAME__6F_63_63_75_72_72_65_6E_63_65 } ; +("munderover") => { $ crate :: ATOM_LOCALNAME__6D_75_6E_64_65_72_6F_76_65_72 } ; +("linethickness") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65_74_68_69_63_6B_6E_65_73_73 } ; +("feMergeNode") => { $ crate :: ATOM_LOCALNAME__66_65_4D_65_72_67_65_4E_6F_64_65 } ; +("menclose") => { $ crate :: ATOM_LOCALNAME__6D_65_6E_63_6C_6F_73_65 } ; +("alignmentscope") => { $ crate :: ATOM_LOCALNAME__61_6C_69_67_6E_6D_65_6E_74_73_63_6F_70_65 } ; +("markerwidth") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_77_69_64_74_68 } ; +("accentunder") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_6E_74_75_6E_64_65_72 } ; +("feoffset") => { $ crate :: ATOM_LOCALNAME__66_65_6F_66_66_73_65_74 } ; +("columnwidth") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_75_6D_6E_77_69_64_74_68 } ; +("textarea") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_61_72_65_61 } ; +("fecomposite") => { $ crate :: ATOM_LOCALNAME__66_65_63_6F_6D_70_6F_73_69_74_65 } ; +("itemprop") => { $ crate :: ATOM_LOCALNAME__69_74_65_6D_70_72_6F_70 } ; +("intersect") => { $ crate :: ATOM_LOCALNAME__69_6E_74_65_72_73_65_63_74 } ; +("semantics") => { $ crate :: ATOM_LOCALNAME__73_65_6D_61_6E_74_69_63_73 } ; +("font-size-adjust") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_73_69_7A_65_2D_61_64_6A_75_73_74 } ; +("word-spacing") => { $ crate :: ATOM_LOCALNAME__77_6F_72_64_2D_73_70_61_63_69_6E_67 } ; +("oncellchange") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_65_6C_6C_63_68_61_6E_67_65 } ; +("crossorigin") => { $ crate :: ATOM_LOCALNAME__63_72_6F_73_73_6F_72_69_67_69_6E } ; +("ondragstart") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_73_74_61_72_74 } ; +("flood-color") => { $ crate :: ATOM_LOCALNAME__66_6C_6F_6F_64_2D_63_6F_6C_6F_72 } ; +("glyph-name") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68_2D_6E_61_6D_65 } ; +("pointsatx") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_78 } ; +("textLength") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_4C_65_6E_67_74_68 } ; +("eulergamma") => { $ crate :: ATOM_LOCALNAME__65_75_6C_65_72_67_61_6D_6D_61 } ; +("aria-details") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_65_74_61_69_6C_73 } ; +("translate") => { $ crate :: ATOM_LOCALNAME__74_72_61_6E_73_6C_61_74_65 } ; +("filterunits") => { $ crate :: ATOM_LOCALNAME__66_69_6C_74_65_72_75_6E_69_74_73 } ; +("contentscripttype") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_73_63_72_69_70_74_74_79_70_65 } ; +("mathematical") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68_65_6D_61_74_69_63_61_6C } ; +("onrowenter") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_6F_77_65_6E_74_65_72 } ; +("aria-grab") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_67_72_61_62 } ; +("onfocusin") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_6F_63_75_73_69_6E } ; +("onpropertychange") => { $ crate :: ATOM_LOCALNAME__6F_6E_70_72_6F_70_65_72_74_79_63_68_61_6E_67_65 } ; +("zoomandpan") => { $ crate :: ATOM_LOCALNAME__7A_6F_6F_6D_61_6E_64_70_61_6E } ; +("xlink:actuate") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_61_63_74_75_61_74_65 } ; +("unicode-bidi") => { $ crate :: ATOM_LOCALNAME__75_6E_69_63_6F_64_65_2D_62_69_64_69 } ; +("onmessage") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_65_73_73_61_67_65 } ; +("fespotlight") => { $ crate :: ATOM_LOCALNAME__66_65_73_70_6F_74_6C_69_67_68_74 } ; +("clip-path") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_2D_70_61_74_68 } ; +("onmousewheel") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_77_68_65_65_6C } ; +("marginwidth") => { $ crate :: ATOM_LOCALNAME__6D_61_72_67_69_6E_77_69_64_74_68 } ; +("aria-errormessage") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_65_72_72_6F_72_6D_65_73_73_61_67_65 } ; +("baseFrequency") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_46_72_65_71_75_65_6E_63_79 } ; +("scriptminsize") => { $ crate :: ATOM_LOCALNAME__73_63_72_69_70_74_6D_69_6E_73_69_7A_65 } ; +("systemLanguage") => { $ crate :: ATOM_LOCALNAME__73_79_73_74_65_6D_4C_61_6E_67_75_61_67_65 } ; +("codetype") => { $ crate :: ATOM_LOCALNAME__63_6F_64_65_74_79_70_65 } ; +("text-decoration") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_2D_64_65_63_6F_72_61_74_69_6F_6E } ; +("ondragenter") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_65_6E_74_65_72 } ; +("specularConstant") => { $ crate :: ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_43_6F_6E_73_74_61_6E_74 } ; +("feTurbulence") => { $ crate :: ATOM_LOCALNAME__66_65_54_75_72_62_75_6C_65_6E_63_65 } ; +("font-size") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_73_69_7A_65 } ; +("accept-charset") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_70_74_2D_63_68_61_72_73_65_74 } ; +("draggable") => { $ crate :: ATOM_LOCALNAME__64_72_61_67_67_61_62_6C_65 } ; +("maskcontentunits") => { $ crate :: ATOM_LOCALNAME__6D_61_73_6B_63_6F_6E_74_65_6E_74_75_6E_69_74_73 } ; +("onlosecapture") => { $ crate :: ATOM_LOCALNAME__6F_6E_6C_6F_73_65_63_61_70_74_75_72_65 } ; +("contentScriptType") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_53_63_72_69_70_74_54_79_70_65 } ; +("rowlines") => { $ crate :: ATOM_LOCALNAME__72_6F_77_6C_69_6E_65_73 } ; +("radialGradient") => { $ crate :: ATOM_LOCALNAME__72_61_64_69_61_6C_47_72_61_64_69_65_6E_74 } ; +("yChannelSelector") => { $ crate :: ATOM_LOCALNAME__79_43_68_61_6E_6E_65_6C_53_65_6C_65_63_74_6F_72 } ; +("xml:space") => { $ crate :: ATOM_LOCALNAME__78_6D_6C_3A_73_70_61_63_65 } ; +("aria-live") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6C_69_76_65 } ; +("groupalign") => { $ crate :: ATOM_LOCALNAME__67_72_6F_75_70_61_6C_69_67_6E } ; +("onrepeat") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_65_70_65_61_74 } ; +("onpageshow") => { $ crate :: ATOM_LOCALNAME__6F_6E_70_61_67_65_73_68_6F_77 } ; +("vectorproduct") => { $ crate :: ATOM_LOCALNAME__76_65_63_74_6F_72_70_72_6F_64_75_63_74 } ; +("aria-roledescription") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_6F_6C_65_64_65_73_63_72_69_70_74_69_6F_6E } ; +("equalcolumns") => { $ crate :: ATOM_LOCALNAME__65_71_75_61_6C_63_6F_6C_75_6D_6E_73 } ; +("factorof") => { $ crate :: ATOM_LOCALNAME__66_61_63_74_6F_72_6F_66 } ; +("onmoveend") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_76_65_65_6E_64 } ; +("onkeypress") => { $ crate :: ATOM_LOCALNAME__6F_6E_6B_65_79_70_72_65_73_73 } ; +("operator") => { $ crate :: ATOM_LOCALNAME__6F_70_65_72_61_74_6F_72 } ; +("kernelUnitLength") => { $ crate :: ATOM_LOCALNAME__6B_65_72_6E_65_6C_55_6E_69_74_4C_65_6E_67_74_68 } ; +("oncontextmenu") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_6F_6E_74_65_78_74_6D_65_6E_75 } ; +("onactivate") => { $ crate :: ATOM_LOCALNAME__6F_6E_61_63_74_69_76_61_74_65 } ; +("aria-level") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6C_65_76_65_6C } ; +("pointsAtY") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_59 } ; +("mediummathspace") => { $ crate :: ATOM_LOCALNAME__6D_65_64_69_75_6D_6D_61_74_68_73_70_61_63_65 } ; +("animateMotion") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_4D_6F_74_69_6F_6E } ; +("baseprofile") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_70_72_6F_66_69_6C_65 } ; +("veryverythickmathspace") => { $ crate :: ATOM_LOCALNAME__76_65_72_79_76_65_72_79_74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 } ; +("alphabetic") => { $ crate :: ATOM_LOCALNAME__61_6C_70_68_61_62_65_74_69_63 } ; +("keypoints") => { $ crate :: ATOM_LOCALNAME__6B_65_79_70_6F_69_6E_74_73 } ; +("marker-end") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_65_6E_64 } ; +("laplacian") => { $ crate :: ATOM_LOCALNAME__6C_61_70_6C_61_63_69_61_6E } ; +("kernelMatrix") => { $ crate :: ATOM_LOCALNAME__6B_65_72_6E_65_6C_4D_61_74_72_69_78 } ; +("altGlyphItem") => { $ crate :: ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68_49_74_65_6D } ; +("fegaussianblur") => { $ crate :: ATOM_LOCALNAME__66_65_67_61_75_73_73_69_61_6E_62_6C_75_72 } ; +("horiz-origin-y") => { $ crate :: ATOM_LOCALNAME__68_6F_72_69_7A_2D_6F_72_69_67_69_6E_2D_79 } ; +("imaginary") => { $ crate :: ATOM_LOCALNAME__69_6D_61_67_69_6E_61_72_79 } ; +("fecomponenttransfer") => { $ crate :: ATOM_LOCALNAME__66_65_63_6F_6D_70_6F_6E_65_6E_74_74_72_61_6E_73_66_65_72 } ; +("metadata") => { $ crate :: ATOM_LOCALNAME__6D_65_74_61_64_61_74_61 } ; +("requiredExtensions") => { $ crate :: ATOM_LOCALNAME__72_65_71_75_69_72_65_64_45_78_74_65_6E_73_69_6F_6E_73 } ; +("onchange") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_68_61_6E_67_65 } ; +("lengthAdjust") => { $ crate :: ATOM_LOCALNAME__6C_65_6E_67_74_68_41_64_6A_75_73_74 } ; +("patternContentUnits") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_43_6F_6E_74_65_6E_74_55_6E_69_74_73 } ; +("marginheight") => { $ crate :: ATOM_LOCALNAME__6D_61_72_67_69_6E_68_65_69_67_68_74 } ; +("attributename") => { $ crate :: ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_6E_61_6D_65 } ; +("ychannelselector") => { $ crate :: ATOM_LOCALNAME__79_63_68_61_6E_6E_65_6C_73_65_6C_65_63_74_6F_72 } ; +("keyTimes") => { $ crate :: ATOM_LOCALNAME__6B_65_79_54_69_6D_65_73 } ; +("repeatDur") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_44_75_72 } ; +("linebreak") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65_62_72_65_61_6B } ; +("*") => { $ crate :: ATOM_LOCALNAME__2A } ; +("a") => { $ crate :: ATOM_LOCALNAME__61 } ; +("abbr") => { $ crate :: ATOM_LOCALNAME__61_62_62_72 } ; +("abs") => { $ crate :: ATOM_LOCALNAME__61_62_73 } ; +("accent") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_6E_74 } ; +("accept") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_70_74 } ; +("acronym") => { $ crate :: ATOM_LOCALNAME__61_63_72_6F_6E_79_6D } ; +("action") => { $ crate :: ATOM_LOCALNAME__61_63_74_69_6F_6E } ; +("active") => { $ crate :: ATOM_LOCALNAME__61_63_74_69_76_65 } ; +("actuate") => { $ crate :: ATOM_LOCALNAME__61_63_74_75_61_74_65 } ; +("address") => { $ crate :: ATOM_LOCALNAME__61_64_64_72_65_73_73 } ; +("align") => { $ crate :: ATOM_LOCALNAME__61_6C_69_67_6E } ; +("alink") => { $ crate :: ATOM_LOCALNAME__61_6C_69_6E_6B } ; +("alt") => { $ crate :: ATOM_LOCALNAME__61_6C_74 } ; +("altimg") => { $ crate :: ATOM_LOCALNAME__61_6C_74_69_6D_67 } ; +("alttext") => { $ crate :: ATOM_LOCALNAME__61_6C_74_74_65_78_74 } ; +("and") => { $ crate :: ATOM_LOCALNAME__61_6E_64 } ; +("animate") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65 } ; +("applet") => { $ crate :: ATOM_LOCALNAME__61_70_70_6C_65_74 } ; +("apply") => { $ crate :: ATOM_LOCALNAME__61_70_70_6C_79 } ; +("approx") => { $ crate :: ATOM_LOCALNAME__61_70_70_72_6F_78 } ; +("arccos") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_6F_73 } ; +("arccosh") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_6F_73_68 } ; +("arccot") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_6F_74 } ; +("arccoth") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_6F_74_68 } ; +("arccsc") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_73_63 } ; +("arccsch") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_73_63_68 } ; +("archive") => { $ crate :: ATOM_LOCALNAME__61_72_63_68_69_76_65 } ; +("arcrole") => { $ crate :: ATOM_LOCALNAME__61_72_63_72_6F_6C_65 } ; +("arcsec") => { $ crate :: ATOM_LOCALNAME__61_72_63_73_65_63 } ; +("arcsech") => { $ crate :: ATOM_LOCALNAME__61_72_63_73_65_63_68 } ; +("arcsin") => { $ crate :: ATOM_LOCALNAME__61_72_63_73_69_6E } ; +("arcsinh") => { $ crate :: ATOM_LOCALNAME__61_72_63_73_69_6E_68 } ; +("arctan") => { $ crate :: ATOM_LOCALNAME__61_72_63_74_61_6E } ; +("arctanh") => { $ crate :: ATOM_LOCALNAME__61_72_63_74_61_6E_68 } ; +("area") => { $ crate :: ATOM_LOCALNAME__61_72_65_61 } ; +("arg") => { $ crate :: ATOM_LOCALNAME__61_72_67 } ; +("article") => { $ crate :: ATOM_LOCALNAME__61_72_74_69_63_6C_65 } ; +("ascent") => { $ crate :: ATOM_LOCALNAME__61_73_63_65_6E_74 } ; +("aside") => { $ crate :: ATOM_LOCALNAME__61_73_69_64_65 } ; +("async") => { $ crate :: ATOM_LOCALNAME__61_73_79_6E_63 } ; +("audio") => { $ crate :: ATOM_LOCALNAME__61_75_64_69_6F } ; +("axis") => { $ crate :: ATOM_LOCALNAME__61_78_69_73 } ; +("azimuth") => { $ crate :: ATOM_LOCALNAME__61_7A_69_6D_75_74_68 } ; +("b") => { $ crate :: ATOM_LOCALNAME__62 } ; +("base") => { $ crate :: ATOM_LOCALNAME__62_61_73_65 } ; +("bbox") => { $ crate :: ATOM_LOCALNAME__62_62_6F_78 } ; +("bdi") => { $ crate :: ATOM_LOCALNAME__62_64_69 } ; +("bdo") => { $ crate :: ATOM_LOCALNAME__62_64_6F } ; +("begin") => { $ crate :: ATOM_LOCALNAME__62_65_67_69_6E } ; +("bgcolor") => { $ crate :: ATOM_LOCALNAME__62_67_63_6F_6C_6F_72 } ; +("bgsound") => { $ crate :: ATOM_LOCALNAME__62_67_73_6F_75_6E_64 } ; +("bias") => { $ crate :: ATOM_LOCALNAME__62_69_61_73 } ; +("big") => { $ crate :: ATOM_LOCALNAME__62_69_67 } ; +("blink") => { $ crate :: ATOM_LOCALNAME__62_6C_69_6E_6B } ; +("body") => { $ crate :: ATOM_LOCALNAME__62_6F_64_79 } ; +("border") => { $ crate :: ATOM_LOCALNAME__62_6F_72_64_65_72 } ; +("br") => { $ crate :: ATOM_LOCALNAME__62_72 } ; +("button") => { $ crate :: ATOM_LOCALNAME__62_75_74_74_6F_6E } ; +("bvar") => { $ crate :: ATOM_LOCALNAME__62_76_61_72 } ; +("by") => { $ crate :: ATOM_LOCALNAME__62_79 } ; +("canvas") => { $ crate :: ATOM_LOCALNAME__63_61_6E_76_61_73 } ; +("caption") => { $ crate :: ATOM_LOCALNAME__63_61_70_74_69_6F_6E } ; +("card") => { $ crate :: ATOM_LOCALNAME__63_61_72_64 } ; +("ceiling") => { $ crate :: ATOM_LOCALNAME__63_65_69_6C_69_6E_67 } ; +("center") => { $ crate :: ATOM_LOCALNAME__63_65_6E_74_65_72 } ; +("char") => { $ crate :: ATOM_LOCALNAME__63_68_61_72 } ; +("charoff") => { $ crate :: ATOM_LOCALNAME__63_68_61_72_6F_66_66 } ; +("charset") => { $ crate :: ATOM_LOCALNAME__63_68_61_72_73_65_74 } ; +("checked") => { $ crate :: ATOM_LOCALNAME__63_68_65_63_6B_65_64 } ; +("ci") => { $ crate :: ATOM_LOCALNAME__63_69 } ; +("circle") => { $ crate :: ATOM_LOCALNAME__63_69_72_63_6C_65 } ; +("cite") => { $ crate :: ATOM_LOCALNAME__63_69_74_65 } ; +("class") => { $ crate :: ATOM_LOCALNAME__63_6C_61_73_73 } ; +("classid") => { $ crate :: ATOM_LOCALNAME__63_6C_61_73_73_69_64 } ; +("clear") => { $ crate :: ATOM_LOCALNAME__63_6C_65_61_72 } ; +("clip") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70 } ; +("close") => { $ crate :: ATOM_LOCALNAME__63_6C_6F_73_65 } ; +("closure") => { $ crate :: ATOM_LOCALNAME__63_6C_6F_73_75_72_65 } ; +("cn") => { $ crate :: ATOM_LOCALNAME__63_6E } ; +("code") => { $ crate :: ATOM_LOCALNAME__63_6F_64_65 } ; +("col") => { $ crate :: ATOM_LOCALNAME__63_6F_6C } ; +("color") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_6F_72 } ; +("cols") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_73 } ; +("colspan") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_73_70_61_6E } ; +("compact") => { $ crate :: ATOM_LOCALNAME__63_6F_6D_70_61_63_74 } ; +("compose") => { $ crate :: ATOM_LOCALNAME__63_6F_6D_70_6F_73_65 } ; +("content") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74 } ; +("coords") => { $ crate :: ATOM_LOCALNAME__63_6F_6F_72_64_73 } ; +("cos") => { $ crate :: ATOM_LOCALNAME__63_6F_73 } ; +("cosh") => { $ crate :: ATOM_LOCALNAME__63_6F_73_68 } ; +("cot") => { $ crate :: ATOM_LOCALNAME__63_6F_74 } ; +("coth") => { $ crate :: ATOM_LOCALNAME__63_6F_74_68 } ; +("csc") => { $ crate :: ATOM_LOCALNAME__63_73_63 } ; +("csch") => { $ crate :: ATOM_LOCALNAME__63_73_63_68 } ; +("csymbol") => { $ crate :: ATOM_LOCALNAME__63_73_79_6D_62_6F_6C } ; +("curl") => { $ crate :: ATOM_LOCALNAME__63_75_72_6C } ; +("cursor") => { $ crate :: ATOM_LOCALNAME__63_75_72_73_6F_72 } ; +("cx") => { $ crate :: ATOM_LOCALNAME__63_78 } ; +("cy") => { $ crate :: ATOM_LOCALNAME__63_79 } ; +("d") => { $ crate :: ATOM_LOCALNAME__64 } ; +("data") => { $ crate :: ATOM_LOCALNAME__64_61_74_61 } ; +("datafld") => { $ crate :: ATOM_LOCALNAME__64_61_74_61_66_6C_64 } ; +("datasrc") => { $ crate :: ATOM_LOCALNAME__64_61_74_61_73_72_63 } ; +("dd") => { $ crate :: ATOM_LOCALNAME__64_64 } ; +("declare") => { $ crate :: ATOM_LOCALNAME__64_65_63_6C_61_72_65 } ; +("default") => { $ crate :: ATOM_LOCALNAME__64_65_66_61_75_6C_74 } ; +("defer") => { $ crate :: ATOM_LOCALNAME__64_65_66_65_72 } ; +("defs") => { $ crate :: ATOM_LOCALNAME__64_65_66_73 } ; +("degree") => { $ crate :: ATOM_LOCALNAME__64_65_67_72_65_65 } ; +("del") => { $ crate :: ATOM_LOCALNAME__64_65_6C } ; +("depth") => { $ crate :: ATOM_LOCALNAME__64_65_70_74_68 } ; +("desc") => { $ crate :: ATOM_LOCALNAME__64_65_73_63 } ; +("descent") => { $ crate :: ATOM_LOCALNAME__64_65_73_63_65_6E_74 } ; +("details") => { $ crate :: ATOM_LOCALNAME__64_65_74_61_69_6C_73 } ; +("dfn") => { $ crate :: ATOM_LOCALNAME__64_66_6E } ; +("dialog") => { $ crate :: ATOM_LOCALNAME__64_69_61_6C_6F_67 } ; +("diff") => { $ crate :: ATOM_LOCALNAME__64_69_66_66 } ; +("dir") => { $ crate :: ATOM_LOCALNAME__64_69_72 } ; +("dirname") => { $ crate :: ATOM_LOCALNAME__64_69_72_6E_61_6D_65 } ; +("discard") => { $ crate :: ATOM_LOCALNAME__64_69_73_63_61_72_64 } ; +("display") => { $ crate :: ATOM_LOCALNAME__64_69_73_70_6C_61_79 } ; +("div") => { $ crate :: ATOM_LOCALNAME__64_69_76 } ; +("divide") => { $ crate :: ATOM_LOCALNAME__64_69_76_69_64_65 } ; +("divisor") => { $ crate :: ATOM_LOCALNAME__64_69_76_69_73_6F_72 } ; +("dl") => { $ crate :: ATOM_LOCALNAME__64_6C } ; +("domain") => { $ crate :: ATOM_LOCALNAME__64_6F_6D_61_69_6E } ; +("dt") => { $ crate :: ATOM_LOCALNAME__64_74 } ; +("dur") => { $ crate :: ATOM_LOCALNAME__64_75_72 } ; +("dx") => { $ crate :: ATOM_LOCALNAME__64_78 } ; +("dy") => { $ crate :: ATOM_LOCALNAME__64_79 } ; +("edge") => { $ crate :: ATOM_LOCALNAME__65_64_67_65 } ; +("ellipse") => { $ crate :: ATOM_LOCALNAME__65_6C_6C_69_70_73_65 } ; +("em") => { $ crate :: ATOM_LOCALNAME__65_6D } ; +("embed") => { $ crate :: ATOM_LOCALNAME__65_6D_62_65_64 } ; +("enctype") => { $ crate :: ATOM_LOCALNAME__65_6E_63_74_79_70_65 } ; +("end") => { $ crate :: ATOM_LOCALNAME__65_6E_64 } ; +("eq") => { $ crate :: ATOM_LOCALNAME__65_71 } ; +("event") => { $ crate :: ATOM_LOCALNAME__65_76_65_6E_74 } ; +("exists") => { $ crate :: ATOM_LOCALNAME__65_78_69_73_74_73 } ; +("exp") => { $ crate :: ATOM_LOCALNAME__65_78_70 } ; +("face") => { $ crate :: ATOM_LOCALNAME__66_61_63_65 } ; +("false") => { $ crate :: ATOM_LOCALNAME__66_61_6C_73_65 } ; +("feBlend") => { $ crate :: ATOM_LOCALNAME__66_65_42_6C_65_6E_64 } ; +("feFlood") => { $ crate :: ATOM_LOCALNAME__66_65_46_6C_6F_6F_64 } ; +("feFuncA") => { $ crate :: ATOM_LOCALNAME__66_65_46_75_6E_63_41 } ; +("feFuncB") => { $ crate :: ATOM_LOCALNAME__66_65_46_75_6E_63_42 } ; +("feFuncG") => { $ crate :: ATOM_LOCALNAME__66_65_46_75_6E_63_47 } ; +("feFuncR") => { $ crate :: ATOM_LOCALNAME__66_65_46_75_6E_63_52 } ; +("feImage") => { $ crate :: ATOM_LOCALNAME__66_65_49_6D_61_67_65 } ; +("feMerge") => { $ crate :: ATOM_LOCALNAME__66_65_4D_65_72_67_65 } ; +("feTile") => { $ crate :: ATOM_LOCALNAME__66_65_54_69_6C_65 } ; +("feblend") => { $ crate :: ATOM_LOCALNAME__66_65_62_6C_65_6E_64 } ; +("feflood") => { $ crate :: ATOM_LOCALNAME__66_65_66_6C_6F_6F_64 } ; +("fefunca") => { $ crate :: ATOM_LOCALNAME__66_65_66_75_6E_63_61 } ; +("fefuncb") => { $ crate :: ATOM_LOCALNAME__66_65_66_75_6E_63_62 } ; +("fefuncg") => { $ crate :: ATOM_LOCALNAME__66_65_66_75_6E_63_67 } ; +("fefuncr") => { $ crate :: ATOM_LOCALNAME__66_65_66_75_6E_63_72 } ; +("feimage") => { $ crate :: ATOM_LOCALNAME__66_65_69_6D_61_67_65 } ; +("femerge") => { $ crate :: ATOM_LOCALNAME__66_65_6D_65_72_67_65 } ; +("fence") => { $ crate :: ATOM_LOCALNAME__66_65_6E_63_65 } ; +("fetch") => { $ crate :: ATOM_LOCALNAME__66_65_74_63_68 } ; +("fetile") => { $ crate :: ATOM_LOCALNAME__66_65_74_69_6C_65 } ; +("figure") => { $ crate :: ATOM_LOCALNAME__66_69_67_75_72_65 } ; +("fill") => { $ crate :: ATOM_LOCALNAME__66_69_6C_6C } ; +("filter") => { $ crate :: ATOM_LOCALNAME__66_69_6C_74_65_72 } ; +("floor") => { $ crate :: ATOM_LOCALNAME__66_6C_6F_6F_72 } ; +("fn") => { $ crate :: ATOM_LOCALNAME__66_6E } ; +("font") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74 } ; +("footer") => { $ crate :: ATOM_LOCALNAME__66_6F_6F_74_65_72 } ; +("for") => { $ crate :: ATOM_LOCALNAME__66_6F_72 } ; +("forall") => { $ crate :: ATOM_LOCALNAME__66_6F_72_61_6C_6C } ; +("form") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D } ; +("format") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_61_74 } ; +("frame") => { $ crate :: ATOM_LOCALNAME__66_72_61_6D_65 } ; +("from") => { $ crate :: ATOM_LOCALNAME__66_72_6F_6D } ; +("fx") => { $ crate :: ATOM_LOCALNAME__66_78 } ; +("fy") => { $ crate :: ATOM_LOCALNAME__66_79 } ; +("g") => { $ crate :: ATOM_LOCALNAME__67 } ; +("g1") => { $ crate :: ATOM_LOCALNAME__67_31 } ; +("g2") => { $ crate :: ATOM_LOCALNAME__67_32 } ; +("gcd") => { $ crate :: ATOM_LOCALNAME__67_63_64 } ; +("geq") => { $ crate :: ATOM_LOCALNAME__67_65_71 } ; +("glyph") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68 } ; +("grad") => { $ crate :: ATOM_LOCALNAME__67_72_61_64 } ; +("gt") => { $ crate :: ATOM_LOCALNAME__67_74 } ; +("h1") => { $ crate :: ATOM_LOCALNAME__68_31 } ; +("h2") => { $ crate :: ATOM_LOCALNAME__68_32 } ; +("h3") => { $ crate :: ATOM_LOCALNAME__68_33 } ; +("h4") => { $ crate :: ATOM_LOCALNAME__68_34 } ; +("h5") => { $ crate :: ATOM_LOCALNAME__68_35 } ; +("h6") => { $ crate :: ATOM_LOCALNAME__68_36 } ; +("handler") => { $ crate :: ATOM_LOCALNAME__68_61_6E_64_6C_65_72 } ; +("hanging") => { $ crate :: ATOM_LOCALNAME__68_61_6E_67_69_6E_67 } ; +("head") => { $ crate :: ATOM_LOCALNAME__68_65_61_64 } ; +("header") => { $ crate :: ATOM_LOCALNAME__68_65_61_64_65_72 } ; +("headers") => { $ crate :: ATOM_LOCALNAME__68_65_61_64_65_72_73 } ; +("height") => { $ crate :: ATOM_LOCALNAME__68_65_69_67_68_74 } ; +("hgroup") => { $ crate :: ATOM_LOCALNAME__68_67_72_6F_75_70 } ; +("hidden") => { $ crate :: ATOM_LOCALNAME__68_69_64_64_65_6E } ; +("high") => { $ crate :: ATOM_LOCALNAME__68_69_67_68 } ; +("hkern") => { $ crate :: ATOM_LOCALNAME__68_6B_65_72_6E } ; +("hr") => { $ crate :: ATOM_LOCALNAME__68_72 } ; +("href") => { $ crate :: ATOM_LOCALNAME__68_72_65_66 } ; +("hspace") => { $ crate :: ATOM_LOCALNAME__68_73_70_61_63_65 } ; +("html") => { $ crate :: ATOM_LOCALNAME__68_74_6D_6C } ; +("i") => { $ crate :: ATOM_LOCALNAME__69 } ; +("icon") => { $ crate :: ATOM_LOCALNAME__69_63_6F_6E } ; +("id") => { $ crate :: ATOM_LOCALNAME__69_64 } ; +("ident") => { $ crate :: ATOM_LOCALNAME__69_64_65_6E_74 } ; +("iframe") => { $ crate :: ATOM_LOCALNAME__69_66_72_61_6D_65 } ; +("image") => { $ crate :: ATOM_LOCALNAME__69_6D_61_67_65 } ; +("img") => { $ crate :: ATOM_LOCALNAME__69_6D_67 } ; +("implies") => { $ crate :: ATOM_LOCALNAME__69_6D_70_6C_69_65_73 } ; +("in") => { $ crate :: ATOM_LOCALNAME__69_6E } ; +("in2") => { $ crate :: ATOM_LOCALNAME__69_6E_32 } ; +("index") => { $ crate :: ATOM_LOCALNAME__69_6E_64_65_78 } ; +("input") => { $ crate :: ATOM_LOCALNAME__69_6E_70_75_74 } ; +("ins") => { $ crate :: ATOM_LOCALNAME__69_6E_73 } ; +("int") => { $ crate :: ATOM_LOCALNAME__69_6E_74 } ; +("inverse") => { $ crate :: ATOM_LOCALNAME__69_6E_76_65_72_73_65 } ; +("isindex") => { $ crate :: ATOM_LOCALNAME__69_73_69_6E_64_65_78 } ; +("ismap") => { $ crate :: ATOM_LOCALNAME__69_73_6D_61_70 } ; +("itemid") => { $ crate :: ATOM_LOCALNAME__69_74_65_6D_69_64 } ; +("itemref") => { $ crate :: ATOM_LOCALNAME__69_74_65_6D_72_65_66 } ; +("k") => { $ crate :: ATOM_LOCALNAME__6B } ; +("k1") => { $ crate :: ATOM_LOCALNAME__6B_31 } ; +("k2") => { $ crate :: ATOM_LOCALNAME__6B_32 } ; +("k3") => { $ crate :: ATOM_LOCALNAME__6B_33 } ; +("k4") => { $ crate :: ATOM_LOCALNAME__6B_34 } ; +("kbd") => { $ crate :: ATOM_LOCALNAME__6B_62_64 } ; +("kerning") => { $ crate :: ATOM_LOCALNAME__6B_65_72_6E_69_6E_67 } ; +("keygen") => { $ crate :: ATOM_LOCALNAME__6B_65_79_67_65_6E } ; +("kind") => { $ crate :: ATOM_LOCALNAME__6B_69_6E_64 } ; +("label") => { $ crate :: ATOM_LOCALNAME__6C_61_62_65_6C } ; +("lambda") => { $ crate :: ATOM_LOCALNAME__6C_61_6D_62_64_61 } ; +("lang") => { $ crate :: ATOM_LOCALNAME__6C_61_6E_67 } ; +("largeop") => { $ crate :: ATOM_LOCALNAME__6C_61_72_67_65_6F_70 } ; +("lcm") => { $ crate :: ATOM_LOCALNAME__6C_63_6D } ; +("legend") => { $ crate :: ATOM_LOCALNAME__6C_65_67_65_6E_64 } ; +("leq") => { $ crate :: ATOM_LOCALNAME__6C_65_71 } ; +("li") => { $ crate :: ATOM_LOCALNAME__6C_69 } ; +("limit") => { $ crate :: ATOM_LOCALNAME__6C_69_6D_69_74 } ; +("line") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65 } ; +("link") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_6B } ; +("list") => { $ crate :: ATOM_LOCALNAME__6C_69_73_74 } ; +("listing") => { $ crate :: ATOM_LOCALNAME__6C_69_73_74_69_6E_67 } ; +("ln") => { $ crate :: ATOM_LOCALNAME__6C_6E } ; +("loading") => { $ crate :: ATOM_LOCALNAME__6C_6F_61_64_69_6E_67 } ; +("local") => { $ crate :: ATOM_LOCALNAME__6C_6F_63_61_6C } ; +("log") => { $ crate :: ATOM_LOCALNAME__6C_6F_67 } ; +("logbase") => { $ crate :: ATOM_LOCALNAME__6C_6F_67_62_61_73_65 } ; +("loop") => { $ crate :: ATOM_LOCALNAME__6C_6F_6F_70 } ; +("low") => { $ crate :: ATOM_LOCALNAME__6C_6F_77 } ; +("lowsrc") => { $ crate :: ATOM_LOCALNAME__6C_6F_77_73_72_63 } ; +("lquote") => { $ crate :: ATOM_LOCALNAME__6C_71_75_6F_74_65 } ; +("lspace") => { $ crate :: ATOM_LOCALNAME__6C_73_70_61_63_65 } ; +("lt") => { $ crate :: ATOM_LOCALNAME__6C_74 } ; +("macros") => { $ crate :: ATOM_LOCALNAME__6D_61_63_72_6F_73 } ; +("maction") => { $ crate :: ATOM_LOCALNAME__6D_61_63_74_69_6F_6E } ; +("main") => { $ crate :: ATOM_LOCALNAME__6D_61_69_6E } ; +("map") => { $ crate :: ATOM_LOCALNAME__6D_61_70 } ; +("mark") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B } ; +("marker") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72 } ; +("marquee") => { $ crate :: ATOM_LOCALNAME__6D_61_72_71_75_65_65 } ; +("mask") => { $ crate :: ATOM_LOCALNAME__6D_61_73_6B } ; +("math") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68 } ; +("matrix") => { $ crate :: ATOM_LOCALNAME__6D_61_74_72_69_78 } ; +("max") => { $ crate :: ATOM_LOCALNAME__6D_61_78 } ; +("maxsize") => { $ crate :: ATOM_LOCALNAME__6D_61_78_73_69_7A_65 } ; +("mean") => { $ crate :: ATOM_LOCALNAME__6D_65_61_6E } ; +("media") => { $ crate :: ATOM_LOCALNAME__6D_65_64_69_61 } ; +("median") => { $ crate :: ATOM_LOCALNAME__6D_65_64_69_61_6E } ; +("menu") => { $ crate :: ATOM_LOCALNAME__6D_65_6E_75 } ; +("merror") => { $ crate :: ATOM_LOCALNAME__6D_65_72_72_6F_72 } ; +("meta") => { $ crate :: ATOM_LOCALNAME__6D_65_74_61 } ; +("meter") => { $ crate :: ATOM_LOCALNAME__6D_65_74_65_72 } ; +("method") => { $ crate :: ATOM_LOCALNAME__6D_65_74_68_6F_64 } ; +("mfenced") => { $ crate :: ATOM_LOCALNAME__6D_66_65_6E_63_65_64 } ; +("mfrac") => { $ crate :: ATOM_LOCALNAME__6D_66_72_61_63 } ; +("mglyph") => { $ crate :: ATOM_LOCALNAME__6D_67_6C_79_70_68 } ; +("mi") => { $ crate :: ATOM_LOCALNAME__6D_69 } ; +("min") => { $ crate :: ATOM_LOCALNAME__6D_69_6E } ; +("minsize") => { $ crate :: ATOM_LOCALNAME__6D_69_6E_73_69_7A_65 } ; +("minus") => { $ crate :: ATOM_LOCALNAME__6D_69_6E_75_73 } ; +("mn") => { $ crate :: ATOM_LOCALNAME__6D_6E } ; +("mo") => { $ crate :: ATOM_LOCALNAME__6D_6F } ; +("mode") => { $ crate :: ATOM_LOCALNAME__6D_6F_64_65 } ; +("moment") => { $ crate :: ATOM_LOCALNAME__6D_6F_6D_65_6E_74 } ; +("mover") => { $ crate :: ATOM_LOCALNAME__6D_6F_76_65_72 } ; +("mpadded") => { $ crate :: ATOM_LOCALNAME__6D_70_61_64_64_65_64 } ; +("mpath") => { $ crate :: ATOM_LOCALNAME__6D_70_61_74_68 } ; +("mroot") => { $ crate :: ATOM_LOCALNAME__6D_72_6F_6F_74 } ; +("mrow") => { $ crate :: ATOM_LOCALNAME__6D_72_6F_77 } ; +("ms") => { $ crate :: ATOM_LOCALNAME__6D_73 } ; +("mspace") => { $ crate :: ATOM_LOCALNAME__6D_73_70_61_63_65 } ; +("msqrt") => { $ crate :: ATOM_LOCALNAME__6D_73_71_72_74 } ; +("mstyle") => { $ crate :: ATOM_LOCALNAME__6D_73_74_79_6C_65 } ; +("msub") => { $ crate :: ATOM_LOCALNAME__6D_73_75_62 } ; +("msubsup") => { $ crate :: ATOM_LOCALNAME__6D_73_75_62_73_75_70 } ; +("msup") => { $ crate :: ATOM_LOCALNAME__6D_73_75_70 } ; +("mtable") => { $ crate :: ATOM_LOCALNAME__6D_74_61_62_6C_65 } ; +("mtd") => { $ crate :: ATOM_LOCALNAME__6D_74_64 } ; +("mtext") => { $ crate :: ATOM_LOCALNAME__6D_74_65_78_74 } ; +("mtr") => { $ crate :: ATOM_LOCALNAME__6D_74_72 } ; +("munder") => { $ crate :: ATOM_LOCALNAME__6D_75_6E_64_65_72 } ; +("muted") => { $ crate :: ATOM_LOCALNAME__6D_75_74_65_64 } ; +("name") => { $ crate :: ATOM_LOCALNAME__6E_61_6D_65 } ; +("nargs") => { $ crate :: ATOM_LOCALNAME__6E_61_72_67_73 } ; +("nav") => { $ crate :: ATOM_LOCALNAME__6E_61_76 } ; +("neq") => { $ crate :: ATOM_LOCALNAME__6E_65_71 } ; +("nest") => { $ crate :: ATOM_LOCALNAME__6E_65_73_74 } ; +("nextid") => { $ crate :: ATOM_LOCALNAME__6E_65_78_74_69_64 } ; +("nobr") => { $ crate :: ATOM_LOCALNAME__6E_6F_62_72 } ; +("noembed") => { $ crate :: ATOM_LOCALNAME__6E_6F_65_6D_62_65_64 } ; +("nohref") => { $ crate :: ATOM_LOCALNAME__6E_6F_68_72_65_66 } ; +("nonce") => { $ crate :: ATOM_LOCALNAME__6E_6F_6E_63_65 } ; +("none") => { $ crate :: ATOM_LOCALNAME__6E_6F_6E_65 } ; +("noshade") => { $ crate :: ATOM_LOCALNAME__6E_6F_73_68_61_64_65 } ; +("not") => { $ crate :: ATOM_LOCALNAME__6E_6F_74 } ; +("notin") => { $ crate :: ATOM_LOCALNAME__6E_6F_74_69_6E } ; +("nowrap") => { $ crate :: ATOM_LOCALNAME__6E_6F_77_72_61_70 } ; +("object") => { $ crate :: ATOM_LOCALNAME__6F_62_6A_65_63_74 } ; +("offset") => { $ crate :: ATOM_LOCALNAME__6F_66_66_73_65_74 } ; +("ol") => { $ crate :: ATOM_LOCALNAME__6F_6C } ; +("onabort") => { $ crate :: ATOM_LOCALNAME__6F_6E_61_62_6F_72_74 } ; +("onbegin") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_67_69_6E } ; +("onblur") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_6C_75_72 } ; +("onclick") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_6C_69_63_6B } ; +("oncopy") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_6F_70_79 } ; +("oncut") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_75_74 } ; +("ondrag") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67 } ; +("ondrop") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_6F_70 } ; +("onend") => { $ crate :: ATOM_LOCALNAME__6F_6E_65_6E_64 } ; +("onerror") => { $ crate :: ATOM_LOCALNAME__6F_6E_65_72_72_6F_72 } ; +("onfocus") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_6F_63_75_73 } ; +("onhelp") => { $ crate :: ATOM_LOCALNAME__6F_6E_68_65_6C_70 } ; +("oninput") => { $ crate :: ATOM_LOCALNAME__6F_6E_69_6E_70_75_74 } ; +("onkeyup") => { $ crate :: ATOM_LOCALNAME__6F_6E_6B_65_79_75_70 } ; +("onload") => { $ crate :: ATOM_LOCALNAME__6F_6E_6C_6F_61_64 } ; +("onmove") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_76_65 } ; +("onpaste") => { $ crate :: ATOM_LOCALNAME__6F_6E_70_61_73_74_65 } ; +("onreset") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_65_73_65_74 } ; +("onstart") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_74_61_72_74 } ; +("onstop") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_74_6F_70 } ; +("onzoom") => { $ crate :: ATOM_LOCALNAME__6F_6E_7A_6F_6F_6D } ; +("opacity") => { $ crate :: ATOM_LOCALNAME__6F_70_61_63_69_74_79 } ; +("open") => { $ crate :: ATOM_LOCALNAME__6F_70_65_6E } ; +("optimum") => { $ crate :: ATOM_LOCALNAME__6F_70_74_69_6D_75_6D } ; +("option") => { $ crate :: ATOM_LOCALNAME__6F_70_74_69_6F_6E } ; +("or") => { $ crate :: ATOM_LOCALNAME__6F_72 } ; +("order") => { $ crate :: ATOM_LOCALNAME__6F_72_64_65_72 } ; +("orient") => { $ crate :: ATOM_LOCALNAME__6F_72_69_65_6E_74 } ; +("origin") => { $ crate :: ATOM_LOCALNAME__6F_72_69_67_69_6E } ; +("other") => { $ crate :: ATOM_LOCALNAME__6F_74_68_65_72 } ; +("output") => { $ crate :: ATOM_LOCALNAME__6F_75_74_70_75_74 } ; +("p") => { $ crate :: ATOM_LOCALNAME__70 } ; +("param") => { $ crate :: ATOM_LOCALNAME__70_61_72_61_6D } ; +("parse") => { $ crate :: ATOM_LOCALNAME__70_61_72_73_65 } ; +("path") => { $ crate :: ATOM_LOCALNAME__70_61_74_68 } ; +("pattern") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E } ; +("pi") => { $ crate :: ATOM_LOCALNAME__70_69 } ; +("picture") => { $ crate :: ATOM_LOCALNAME__70_69_63_74_75_72_65 } ; +("piece") => { $ crate :: ATOM_LOCALNAME__70_69_65_63_65 } ; +("ping") => { $ crate :: ATOM_LOCALNAME__70_69_6E_67 } ; +("plus") => { $ crate :: ATOM_LOCALNAME__70_6C_75_73 } ; +("points") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73 } ; +("polygon") => { $ crate :: ATOM_LOCALNAME__70_6F_6C_79_67_6F_6E } ; +("poster") => { $ crate :: ATOM_LOCALNAME__70_6F_73_74_65_72 } ; +("power") => { $ crate :: ATOM_LOCALNAME__70_6F_77_65_72 } ; +("pre") => { $ crate :: ATOM_LOCALNAME__70_72_65 } ; +("preload") => { $ crate :: ATOM_LOCALNAME__70_72_65_6C_6F_61_64 } ; +("primes") => { $ crate :: ATOM_LOCALNAME__70_72_69_6D_65_73 } ; +("product") => { $ crate :: ATOM_LOCALNAME__70_72_6F_64_75_63_74 } ; +("profile") => { $ crate :: ATOM_LOCALNAME__70_72_6F_66_69_6C_65 } ; +("prompt") => { $ crate :: ATOM_LOCALNAME__70_72_6F_6D_70_74 } ; +("q") => { $ crate :: ATOM_LOCALNAME__71 } ; +("r") => { $ crate :: ATOM_LOCALNAME__72 } ; +("radius") => { $ crate :: ATOM_LOCALNAME__72_61_64_69_75_73 } ; +("rb") => { $ crate :: ATOM_LOCALNAME__72_62 } ; +("real") => { $ crate :: ATOM_LOCALNAME__72_65_61_6C } ; +("reals") => { $ crate :: ATOM_LOCALNAME__72_65_61_6C_73 } ; +("rect") => { $ crate :: ATOM_LOCALNAME__72_65_63_74 } ; +("refX") => { $ crate :: ATOM_LOCALNAME__72_65_66_58 } ; +("refY") => { $ crate :: ATOM_LOCALNAME__72_65_66_59 } ; +("refx") => { $ crate :: ATOM_LOCALNAME__72_65_66_78 } ; +("refy") => { $ crate :: ATOM_LOCALNAME__72_65_66_79 } ; +("rel") => { $ crate :: ATOM_LOCALNAME__72_65_6C } ; +("reln") => { $ crate :: ATOM_LOCALNAME__72_65_6C_6E } ; +("rem") => { $ crate :: ATOM_LOCALNAME__72_65_6D } ; +("repeat") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74 } ; +("replace") => { $ crate :: ATOM_LOCALNAME__72_65_70_6C_61_63_65 } ; +("restart") => { $ crate :: ATOM_LOCALNAME__72_65_73_74_61_72_74 } ; +("result") => { $ crate :: ATOM_LOCALNAME__72_65_73_75_6C_74 } ; +("rev") => { $ crate :: ATOM_LOCALNAME__72_65_76 } ; +("role") => { $ crate :: ATOM_LOCALNAME__72_6F_6C_65 } ; +("root") => { $ crate :: ATOM_LOCALNAME__72_6F_6F_74 } ; +("rotate") => { $ crate :: ATOM_LOCALNAME__72_6F_74_61_74_65 } ; +("rows") => { $ crate :: ATOM_LOCALNAME__72_6F_77_73 } ; +("rowspan") => { $ crate :: ATOM_LOCALNAME__72_6F_77_73_70_61_6E } ; +("rp") => { $ crate :: ATOM_LOCALNAME__72_70 } ; +("rquote") => { $ crate :: ATOM_LOCALNAME__72_71_75_6F_74_65 } ; +("rspace") => { $ crate :: ATOM_LOCALNAME__72_73_70_61_63_65 } ; +("rt") => { $ crate :: ATOM_LOCALNAME__72_74 } ; +("rtc") => { $ crate :: ATOM_LOCALNAME__72_74_63 } ; +("ruby") => { $ crate :: ATOM_LOCALNAME__72_75_62_79 } ; +("rule") => { $ crate :: ATOM_LOCALNAME__72_75_6C_65 } ; +("rules") => { $ crate :: ATOM_LOCALNAME__72_75_6C_65_73 } ; +("rx") => { $ crate :: ATOM_LOCALNAME__72_78 } ; +("ry") => { $ crate :: ATOM_LOCALNAME__72_79 } ; +("s") => { $ crate :: ATOM_LOCALNAME__73 } ; +("samp") => { $ crate :: ATOM_LOCALNAME__73_61_6D_70 } ; +("sandbox") => { $ crate :: ATOM_LOCALNAME__73_61_6E_64_62_6F_78 } ; +("scale") => { $ crate :: ATOM_LOCALNAME__73_63_61_6C_65 } ; +("scheme") => { $ crate :: ATOM_LOCALNAME__73_63_68_65_6D_65 } ; +("scope") => { $ crate :: ATOM_LOCALNAME__73_63_6F_70_65 } ; +("scoped") => { $ crate :: ATOM_LOCALNAME__73_63_6F_70_65_64 } ; +("script") => { $ crate :: ATOM_LOCALNAME__73_63_72_69_70_74 } ; +("sdev") => { $ crate :: ATOM_LOCALNAME__73_64_65_76 } ; +("search") => { $ crate :: ATOM_LOCALNAME__73_65_61_72_63_68 } ; +("sec") => { $ crate :: ATOM_LOCALNAME__73_65_63 } ; +("sech") => { $ crate :: ATOM_LOCALNAME__73_65_63_68 } ; +("section") => { $ crate :: ATOM_LOCALNAME__73_65_63_74_69_6F_6E } ; +("seed") => { $ crate :: ATOM_LOCALNAME__73_65_65_64 } ; +("select") => { $ crate :: ATOM_LOCALNAME__73_65_6C_65_63_74 } ; +("sep") => { $ crate :: ATOM_LOCALNAME__73_65_70 } ; +("set") => { $ crate :: ATOM_LOCALNAME__73_65_74 } ; +("setdiff") => { $ crate :: ATOM_LOCALNAME__73_65_74_64_69_66_66 } ; +("shape") => { $ crate :: ATOM_LOCALNAME__73_68_61_70_65 } ; +("show") => { $ crate :: ATOM_LOCALNAME__73_68_6F_77 } ; +("sin") => { $ crate :: ATOM_LOCALNAME__73_69_6E } ; +("sinh") => { $ crate :: ATOM_LOCALNAME__73_69_6E_68 } ; +("size") => { $ crate :: ATOM_LOCALNAME__73_69_7A_65 } ; +("sizes") => { $ crate :: ATOM_LOCALNAME__73_69_7A_65_73 } ; +("slope") => { $ crate :: ATOM_LOCALNAME__73_6C_6F_70_65 } ; +("slot") => { $ crate :: ATOM_LOCALNAME__73_6C_6F_74 } ; +("small") => { $ crate :: ATOM_LOCALNAME__73_6D_61_6C_6C } ; +("source") => { $ crate :: ATOM_LOCALNAME__73_6F_75_72_63_65 } ; +("space") => { $ crate :: ATOM_LOCALNAME__73_70_61_63_65 } ; +("spacer") => { $ crate :: ATOM_LOCALNAME__73_70_61_63_65_72 } ; +("spacing") => { $ crate :: ATOM_LOCALNAME__73_70_61_63_69_6E_67 } ; +("span") => { $ crate :: ATOM_LOCALNAME__73_70_61_6E } ; +("speed") => { $ crate :: ATOM_LOCALNAME__73_70_65_65_64 } ; +("src") => { $ crate :: ATOM_LOCALNAME__73_72_63 } ; +("srcdoc") => { $ crate :: ATOM_LOCALNAME__73_72_63_64_6F_63 } ; +("srclang") => { $ crate :: ATOM_LOCALNAME__73_72_63_6C_61_6E_67 } ; +("srcset") => { $ crate :: ATOM_LOCALNAME__73_72_63_73_65_74 } ; +("standby") => { $ crate :: ATOM_LOCALNAME__73_74_61_6E_64_62_79 } ; +("start") => { $ crate :: ATOM_LOCALNAME__73_74_61_72_74 } ; +("stemh") => { $ crate :: ATOM_LOCALNAME__73_74_65_6D_68 } ; +("stemv") => { $ crate :: ATOM_LOCALNAME__73_74_65_6D_76 } ; +("step") => { $ crate :: ATOM_LOCALNAME__73_74_65_70 } ; +("stop") => { $ crate :: ATOM_LOCALNAME__73_74_6F_70 } ; +("strike") => { $ crate :: ATOM_LOCALNAME__73_74_72_69_6B_65 } ; +("string") => { $ crate :: ATOM_LOCALNAME__73_74_72_69_6E_67 } ; +("stroke") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65 } ; +("strong") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6E_67 } ; +("style") => { $ crate :: ATOM_LOCALNAME__73_74_79_6C_65 } ; +("sub") => { $ crate :: ATOM_LOCALNAME__73_75_62 } ; +("subset") => { $ crate :: ATOM_LOCALNAME__73_75_62_73_65_74 } ; +("sum") => { $ crate :: ATOM_LOCALNAME__73_75_6D } ; +("summary") => { $ crate :: ATOM_LOCALNAME__73_75_6D_6D_61_72_79 } ; +("sup") => { $ crate :: ATOM_LOCALNAME__73_75_70 } ; +("svg") => { $ crate :: ATOM_LOCALNAME__73_76_67 } ; +("switch") => { $ crate :: ATOM_LOCALNAME__73_77_69_74_63_68 } ; +("symbol") => { $ crate :: ATOM_LOCALNAME__73_79_6D_62_6F_6C } ; +("table") => { $ crate :: ATOM_LOCALNAME__74_61_62_6C_65 } ; +("tan") => { $ crate :: ATOM_LOCALNAME__74_61_6E } ; +("tanh") => { $ crate :: ATOM_LOCALNAME__74_61_6E_68 } ; +("target") => { $ crate :: ATOM_LOCALNAME__74_61_72_67_65_74 } ; +("targetX") => { $ crate :: ATOM_LOCALNAME__74_61_72_67_65_74_58 } ; +("targetY") => { $ crate :: ATOM_LOCALNAME__74_61_72_67_65_74_59 } ; +("targetx") => { $ crate :: ATOM_LOCALNAME__74_61_72_67_65_74_78 } ; +("targety") => { $ crate :: ATOM_LOCALNAME__74_61_72_67_65_74_79 } ; +("tbody") => { $ crate :: ATOM_LOCALNAME__74_62_6F_64_79 } ; +("tbreak") => { $ crate :: ATOM_LOCALNAME__74_62_72_65_61_6B } ; +("td") => { $ crate :: ATOM_LOCALNAME__74_64 } ; +("tendsto") => { $ crate :: ATOM_LOCALNAME__74_65_6E_64_73_74_6F } ; +("text") => { $ crate :: ATOM_LOCALNAME__74_65_78_74 } ; +("tfoot") => { $ crate :: ATOM_LOCALNAME__74_66_6F_6F_74 } ; +("th") => { $ crate :: ATOM_LOCALNAME__74_68 } ; +("thead") => { $ crate :: ATOM_LOCALNAME__74_68_65_61_64 } ; +("time") => { $ crate :: ATOM_LOCALNAME__74_69_6D_65 } ; +("times") => { $ crate :: ATOM_LOCALNAME__74_69_6D_65_73 } ; +("title") => { $ crate :: ATOM_LOCALNAME__74_69_74_6C_65 } ; +("to") => { $ crate :: ATOM_LOCALNAME__74_6F } ; +("toggle") => { $ crate :: ATOM_LOCALNAME__74_6F_67_67_6C_65 } ; +("tr") => { $ crate :: ATOM_LOCALNAME__74_72 } ; +("track") => { $ crate :: ATOM_LOCALNAME__74_72_61_63_6B } ; +("tref") => { $ crate :: ATOM_LOCALNAME__74_72_65_66 } ; +("true") => { $ crate :: ATOM_LOCALNAME__74_72_75_65 } ; +("tspan") => { $ crate :: ATOM_LOCALNAME__74_73_70_61_6E } ; +("tt") => { $ crate :: ATOM_LOCALNAME__74_74 } ; +("type") => { $ crate :: ATOM_LOCALNAME__74_79_70_65 } ; +("u") => { $ crate :: ATOM_LOCALNAME__75 } ; +("u1") => { $ crate :: ATOM_LOCALNAME__75_31 } ; +("u2") => { $ crate :: ATOM_LOCALNAME__75_32 } ; +("ul") => { $ crate :: ATOM_LOCALNAME__75_6C } ; +("unicode") => { $ crate :: ATOM_LOCALNAME__75_6E_69_63_6F_64_65 } ; +("union") => { $ crate :: ATOM_LOCALNAME__75_6E_69_6F_6E } ; +("uplimit") => { $ crate :: ATOM_LOCALNAME__75_70_6C_69_6D_69_74 } ; +("use") => { $ crate :: ATOM_LOCALNAME__75_73_65 } ; +("usemap") => { $ crate :: ATOM_LOCALNAME__75_73_65_6D_61_70 } ; +("valign") => { $ crate :: ATOM_LOCALNAME__76_61_6C_69_67_6E } ; +("value") => { $ crate :: ATOM_LOCALNAME__76_61_6C_75_65 } ; +("values") => { $ crate :: ATOM_LOCALNAME__76_61_6C_75_65_73 } ; +("var") => { $ crate :: ATOM_LOCALNAME__76_61_72 } ; +("vector") => { $ crate :: ATOM_LOCALNAME__76_65_63_74_6F_72 } ; +("version") => { $ crate :: ATOM_LOCALNAME__76_65_72_73_69_6F_6E } ; +("video") => { $ crate :: ATOM_LOCALNAME__76_69_64_65_6F } ; +("view") => { $ crate :: ATOM_LOCALNAME__76_69_65_77 } ; +("viewBox") => { $ crate :: ATOM_LOCALNAME__76_69_65_77_42_6F_78 } ; +("viewbox") => { $ crate :: ATOM_LOCALNAME__76_69_65_77_62_6F_78 } ; +("vkern") => { $ crate :: ATOM_LOCALNAME__76_6B_65_72_6E } ; +("vlink") => { $ crate :: ATOM_LOCALNAME__76_6C_69_6E_6B } ; +("vspace") => { $ crate :: ATOM_LOCALNAME__76_73_70_61_63_65 } ; +("wbr") => { $ crate :: ATOM_LOCALNAME__77_62_72 } ; +("when") => { $ crate :: ATOM_LOCALNAME__77_68_65_6E } ; +("width") => { $ crate :: ATOM_LOCALNAME__77_69_64_74_68 } ; +("widths") => { $ crate :: ATOM_LOCALNAME__77_69_64_74_68_73 } ; +("wrap") => { $ crate :: ATOM_LOCALNAME__77_72_61_70 } ; +("x") => { $ crate :: ATOM_LOCALNAME__78 } ; +("x1") => { $ crate :: ATOM_LOCALNAME__78_31 } ; +("x2") => { $ crate :: ATOM_LOCALNAME__78_32 } ; +("xlink") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B } ; +("xmlns") => { $ crate :: ATOM_LOCALNAME__78_6D_6C_6E_73 } ; +("xmp") => { $ crate :: ATOM_LOCALNAME__78_6D_70 } ; +("xor") => { $ crate :: ATOM_LOCALNAME__78_6F_72 } ; +("xref") => { $ crate :: ATOM_LOCALNAME__78_72_65_66 } ; +("y") => { $ crate :: ATOM_LOCALNAME__79 } ; +("y1") => { $ crate :: ATOM_LOCALNAME__79_31 } ; +("y2") => { $ crate :: ATOM_LOCALNAME__79_32 } ; +("z") => { $ crate :: ATOM_LOCALNAME__7A } ; +}pub type Prefix = :: string_cache :: Atom < PrefixStaticSet > ; +# [derive (PartialEq , Eq , PartialOrd , Ord)] pub struct PrefixStaticSet ; +impl :: string_cache :: StaticAtomSet for PrefixStaticSet { fn get () -> & 'static :: string_cache :: PhfStrSet { static SET : :: string_cache :: PhfStrSet = :: string_cache :: PhfStrSet { key : 12913932095322966823u64 , disps : & [(0u32 , 0u32)] , atoms : & [""] , hashes : & [4082073077u32] } ; +& SET } fn empty_string_index () -> u32 { 0u32 } } pub const ATOM_PREFIX_ : Prefix = Prefix :: pack_static (0u32) ; +pub const ATOM_PREFIX__2A : Prefix = Prefix :: pack_inline (10752u64 , 1u8) ; +pub const ATOM_PREFIX__68_74_6D_6C : Prefix = Prefix :: pack_inline (465692813312u64 , 4u8) ; +pub const ATOM_PREFIX__6D_61_74_68_6D_6C : Prefix = Prefix :: pack_inline (30519592881319168u64 , 6u8) ; +pub const ATOM_PREFIX__73_76_67 : Prefix = Prefix :: pack_inline (1735815936u64 , 3u8) ; +pub const ATOM_PREFIX__78_6C_69_6E_6B : Prefix = Prefix :: pack_inline (118121959290880u64 , 5u8) ; +pub const ATOM_PREFIX__78_6D_6C : Prefix = Prefix :: pack_inline (1819113472u64 , 3u8) ; +pub const ATOM_PREFIX__78_6D_6C_6E_73 : Prefix = Prefix :: pack_inline (126918102710272u64 , 5u8) ; +# [doc = "Takes a namespace prefix string and returns its key in a string cache."] # [macro_export] macro_rules ! namespace_prefix { ("") => { $ crate :: ATOM_PREFIX_ } ; +("*") => { $ crate :: ATOM_PREFIX__2A } ; +("html") => { $ crate :: ATOM_PREFIX__68_74_6D_6C } ; +("mathml") => { $ crate :: ATOM_PREFIX__6D_61_74_68_6D_6C } ; +("svg") => { $ crate :: ATOM_PREFIX__73_76_67 } ; +("xlink") => { $ crate :: ATOM_PREFIX__78_6C_69_6E_6B } ; +("xml") => { $ crate :: ATOM_PREFIX__78_6D_6C } ; +("xmlns") => { $ crate :: ATOM_PREFIX__78_6D_6C_6E_73 } ; +}pub type Namespace = :: string_cache :: Atom < NamespaceStaticSet > ; +# [derive (PartialEq , Eq , PartialOrd , Ord)] pub struct NamespaceStaticSet ; +impl :: string_cache :: StaticAtomSet for NamespaceStaticSet { fn get () -> & 'static :: string_cache :: PhfStrSet { static SET : :: string_cache :: PhfStrSet = :: string_cache :: PhfStrSet { key : 15467950696543387533u64 , disps : & [(1u32 , 0u32) , (1u32 , 4u32)] , atoms : & ["http://www.w3.org/1999/xhtml", +"http://www.w3.org/2000/svg", +"http://www.w3.org/XML/1998/namespace", +"http://www.w3.org/1998/Math/MathML", +"http://www.w3.org/1999/xlink", +"", +"http://www.w3.org/2000/xmlns/"] , hashes : & [1895391709u32 , 3069293938u32 , 2770585642u32 , 1216229735u32 , 2535599242u32 , 811901650u32 , 830072559u32] } ; +& SET } fn empty_string_index () -> u32 { 5u32 } } pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_39_2F_78_68_74_6D_6C : Namespace = Namespace :: pack_static (0u32) ; +pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_32_30_30_30_2F_73_76_67 : Namespace = Namespace :: pack_static (1u32) ; +pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_58_4D_4C_2F_31_39_39_38_2F_6E_61_6D_65_73_70_61_63_65 : Namespace = Namespace :: pack_static (2u32) ; +pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_38_2F_4D_61_74_68_2F_4D_61_74_68_4D_4C : Namespace = Namespace :: pack_static (3u32) ; +pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_39_2F_78_6C_69_6E_6B : Namespace = Namespace :: pack_static (4u32) ; +pub const ATOM_NAMESPACE_ : Namespace = Namespace :: pack_static (5u32) ; +pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_32_30_30_30_2F_78_6D_6C_6E_73_2F : Namespace = Namespace :: pack_static (6u32) ; +pub const ATOM_NAMESPACE__2A : Namespace = Namespace :: pack_inline (10752u64 , 1u8) ; +# [doc = "Takes a namespace url string and returns its key in a string cache."] # [macro_export] macro_rules ! namespace_url { ("http://www.w3.org/1999/xhtml") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_39_2F_78_68_74_6D_6C } ; +("http://www.w3.org/2000/svg") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_32_30_30_30_2F_73_76_67 } ; +("http://www.w3.org/XML/1998/namespace") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_58_4D_4C_2F_31_39_39_38_2F_6E_61_6D_65_73_70_61_63_65 } ; +("http://www.w3.org/1998/Math/MathML") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_38_2F_4D_61_74_68_2F_4D_61_74_68_4D_4C } ; +("http://www.w3.org/1999/xlink") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_39_2F_78_6C_69_6E_6B } ; +("") => { $ crate :: ATOM_NAMESPACE_ } ; +("http://www.w3.org/2000/xmlns/") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_32_30_30_30_2F_78_6D_6C_6E_73_2F } ; +("*") => { $ crate :: ATOM_NAMESPACE__2A } ; +} + /// Maps the input of [`namespace_prefix!`](macro.namespace_prefix.html) to + /// the output of [`namespace_url!`](macro.namespace_url.html). + /// + #[macro_export] macro_rules! ns { + +() => { namespace_url!("") }; +(*) => { namespace_url!("*") }; +(html) => { namespace_url!("http://www.w3.org/1999/xhtml") }; +(xml) => { namespace_url!("http://www.w3.org/XML/1998/namespace") }; +(xmlns) => { namespace_url!("http://www.w3.org/2000/xmlns/") }; +(xlink) => { namespace_url!("http://www.w3.org/1999/xlink") }; +(svg) => { namespace_url!("http://www.w3.org/2000/svg") }; +(mathml) => { namespace_url!("http://www.w3.org/1998/Math/MathML") }; +} diff --git a/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/out/named_entities.rs b/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/out/named_entities.rs new file mode 100644 index 0000000..5c967d5 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/out/named_entities.rs @@ -0,0 +1,11844 @@ + +/// A map of entity names to their codepoints. The second codepoint will +/// be 0 if the entity contains a single codepoint. Entities have their preceding '&' removed. +/// +/// # Examples +/// +/// ``` +/// use markup5ever::data::NAMED_ENTITIES; +/// +/// assert_eq!(NAMED_ENTITIES.get("gt;").unwrap(), &(62, 0)); +/// ``` + +pub static NAMED_ENTITIES: Map<&'static str, (u32, u32)> = ::phf::Map { + key: 12913932095322966823, + disps: &[ + (0, 147), + (0, 2), + (0, 236), + (0, 9), + (0, 66), + (0, 0), + (0, 38), + (0, 154), + (0, 0), + (0, 2), + (0, 777), + (0, 73), + (0, 65), + (0, 0), + (0, 1), + (0, 0), + (0, 24), + (0, 131), + (0, 0), + (0, 5), + (0, 0), + (0, 193), + (0, 25), + (0, 7), + (0, 442), + (0, 154), + (0, 240), + (0, 8), + (0, 6), + (0, 53), + (0, 17), + (0, 4), + (0, 35), + (0, 346), + (0, 91), + (0, 85), + (0, 89), + (0, 0), + (0, 787), + (0, 27), + (0, 1), + (0, 4), + (0, 7), + (0, 79), + (0, 7), + (0, 44), + (0, 82), + (0, 437), + (0, 4), + (0, 58), + (0, 3), + (0, 51), + (0, 1), + (0, 65), + (0, 249), + (0, 9), + (0, 1), + (0, 66), + (0, 30), + (0, 1244), + (0, 21), + (0, 1), + (0, 15), + (0, 510), + (0, 5), + (0, 0), + (0, 9), + (0, 0), + (0, 5), + (0, 86), + (0, 46), + (0, 118), + (0, 28), + (0, 30), + (0, 0), + (0, 0), + (0, 0), + (0, 1009), + (0, 1), + (0, 10), + (0, 259), + (0, 326), + (0, 29), + (0, 1), + (0, 0), + (0, 889), + (0, 9), + (0, 165), + (0, 73), + (0, 19), + (0, 69), + (0, 237), + (0, 6), + (0, 686), + (0, 2), + (0, 6), + (0, 83), + (0, 1955), + (0, 116), + (0, 161), + (0, 2), + (0, 88), + (0, 10), + (0, 1066), + (0, 1), + (0, 1414), + (0, 3), + (0, 57), + (0, 10), + (0, 9), + (0, 276), + (0, 464), + (0, 26), + (0, 458), + (0, 9), + (0, 699), + (0, 117), + (0, 1136), + (0, 26), + (0, 218), + (0, 31), + (0, 46), + (0, 261), + (0, 183), + (0, 319), + (0, 1553), + (0, 232), + (0, 1), + (0, 1279), + (0, 13), + (0, 8), + (0, 1), + (0, 1728), + (0, 600), + (0, 4), + (0, 584), + (0, 1), + (0, 146), + (0, 342), + (0, 1442), + (0, 223), + (0, 473), + (0, 230), + (0, 510), + (0, 19), + (0, 255), + (0, 90), + (0, 152), + (0, 1), + (0, 1773), + (0, 3333), + (0, 1), + (0, 1855), + (0, 30), + (0, 1151), + (0, 132), + (0, 980), + (0, 0), + (0, 11), + (0, 1021), + (0, 398), + (0, 2985), + (0, 936), + (0, 26), + (0, 1563), + (0, 15), + (0, 26), + (0, 2), + (0, 570), + (0, 868), + (0, 200), + (0, 302), + (0, 27), + (0, 686), + (0, 196), + (0, 16), + (0, 33), + (0, 19), + (0, 162), + (0, 11), + (0, 24), + (0, 8), + (0, 7), + (0, 83), + (0, 766), + (0, 8), + (0, 1639), + (0, 555), + (0, 191), + (0, 0), + (0, 4), + (0, 28), + (0, 32), + (0, 25), + (0, 564), + (0, 11), + (0, 3), + (0, 8), + (0, 25), + (0, 3), + (0, 225), + (0, 47), + (0, 274), + (0, 51), + (0, 60), + (0, 2), + (0, 142), + (0, 84), + (0, 1236), + (0, 374), + (0, 528), + (0, 742), + (0, 156), + (0, 1), + (0, 0), + (0, 148), + (0, 7), + (0, 1), + (0, 5), + (0, 174), + (0, 479), + (0, 465), + (0, 125), + (0, 94), + (0, 8), + (0, 63), + (0, 119), + (0, 844), + (0, 147), + (0, 1), + (0, 325), + (0, 224), + (0, 1), + (0, 757), + (0, 4), + (0, 2), + (0, 69), + (0, 17), + (0, 165), + (0, 118), + (0, 20), + (0, 88), + (0, 12), + (0, 184), + (0, 1), + (0, 349), + (0, 319), + (0, 22), + (0, 247), + (0, 15), + (0, 255), + (0, 0), + (0, 0), + (0, 4), + (0, 0), + (0, 1951), + (0, 18), + (0, 58), + (0, 620), + (0, 495), + (0, 5), + (0, 2), + (0, 1166), + (0, 2), + (0, 0), + (0, 29), + (0, 2), + (0, 51), + (0, 7), + (0, 1075), + (0, 48), + (0, 680), + (0, 2970), + (0, 1), + (0, 255), + (0, 16), + (0, 57), + (0, 13), + (0, 2), + (0, 364), + (0, 75), + (0, 1821), + (0, 1), + (0, 0), + (0, 2), + (0, 10), + (0, 372), + (0, 6), + (0, 123), + (0, 1753), + (0, 103), + (0, 2), + (0, 2), + (0, 441), + (0, 38), + (0, 3), + (0, 4), + (0, 79), + (0, 0), + (0, 1), + (0, 272), + (0, 3), + (0, 2), + (0, 0), + (0, 42), + (0, 522), + (0, 42), + (0, 462), + (0, 31), + (0, 3), + (0, 18), + (0, 88), + (0, 13), + (0, 47), + (0, 2005), + (0, 76), + (0, 88), + (0, 18), + (0, 36), + (0, 26), + (0, 29), + (0, 7), + (0, 47), + (0, 14), + (0, 46), + (0, 169), + (0, 205), + (0, 1), + (0, 100), + (0, 523), + (0, 93), + (0, 23), + (0, 6), + (0, 74), + (0, 1), + (0, 4), + (0, 4), + (0, 115), + (0, 6), + (0, 5511), + (0, 6), + (0, 815), + (0, 2), + (0, 123), + (0, 332), + (0, 693), + (0, 328), + (0, 752), + (0, 39), + (0, 13), + (0, 101), + (0, 0), + (0, 2031), + (0, 65), + (0, 842), + (0, 13), + (0, 5), + (0, 1114), + (0, 25), + (0, 167), + (0, 457), + (0, 828), + (0, 156), + (0, 2), + (0, 500), + (0, 0), + (0, 348), + (0, 0), + (0, 15), + (0, 4), + (0, 7), + (0, 0), + (0, 596), + (0, 531), + (0, 92), + (0, 79), + (0, 1122), + (0, 108), + (0, 44), + (0, 75), + (0, 225), + (0, 438), + (0, 37), + (0, 12), + (0, 1), + (0, 1095), + (0, 131), + (0, 36), + (0, 299), + (0, 784), + (0, 1576), + (0, 396), + (0, 6), + (0, 0), + (0, 219), + (0, 6), + (0, 233), + (0, 726), + (0, 22), + (0, 301), + (0, 28), + (0, 1363), + (0, 45), + (0, 1761), + (0, 0), + (0, 744), + (0, 25), + (0, 2), + (0, 10), + (0, 6), + (0, 2), + (0, 1417), + (0, 822), + (0, 101), + (0, 4), + (0, 60), + (0, 226), + (0, 28), + (0, 13), + (0, 598), + (0, 4), + (0, 75), + (0, 2555), + (0, 6), + (0, 0), + (0, 74), + (0, 256), + (0, 11), + (0, 0), + (0, 231), + (0, 0), + (0, 4), + (0, 409), + (0, 68), + (0, 19), + (0, 176), + (0, 1), + (0, 416), + (0, 903), + (0, 28), + (0, 4), + (0, 287), + (0, 1781), + (0, 2163), + (0, 19), + (0, 3), + (0, 173), + (0, 1), + (0, 195), + (0, 67), + (0, 14), + (0, 157), + (0, 1), + (0, 130), + (0, 44), + (0, 68), + (0, 19), + (0, 11), + (0, 14), + (0, 198), + (0, 2), + (0, 30), + (0, 457), + (0, 634), + (0, 365), + (0, 10), + (0, 68), + (0, 63), + (0, 850), + (0, 28), + (0, 57), + (0, 638), + (0, 33), + (0, 250), + (0, 228), + (0, 2719), + (0, 21), + (0, 1), + (0, 71), + (0, 0), + (0, 132), + (0, 551), + (0, 23), + (0, 0), + (0, 831), + (0, 3), + (0, 2), + (0, 0), + (0, 7), + (0, 4873), + (0, 285), + (0, 21), + (0, 232), + (0, 1950), + (0, 164), + (0, 33), + (0, 237), + (0, 0), + (0, 1755), + (0, 0), + (0, 1922), + (0, 80), + (0, 4), + (0, 319), + (0, 6), + (0, 65), + (0, 1664), + (0, 319), + (0, 176), + (0, 784), + (0, 4), + (0, 15), + (0, 15), + (0, 4), + (0, 1), + (0, 8), + (0, 1009), + (0, 123), + (0, 83), + (0, 0), + (0, 25), + (0, 66), + (0, 11), + (0, 18), + (0, 7), + (0, 136), + (0, 0), + (0, 6), + (0, 648), + (0, 424), + (0, 0), + (0, 100), + (0, 579), + (0, 74), + (0, 6), + (0, 188), + (0, 3469), + (0, 293), + (0, 1), + (0, 145), + (0, 87), + (0, 46), + (0, 1088), + (0, 45), + (0, 131), + (0, 2375), + (0, 87), + (0, 2), + (0, 0), + (0, 1), + (0, 0), + (0, 167), + (0, 29), + (0, 121), + (0, 249), + (0, 9), + (0, 260), + (0, 24), + (0, 143), + (0, 59), + (0, 321), + (0, 273), + (0, 86), + (0, 457), + (0, 1028), + (0, 1327), + (0, 1093), + (0, 53), + (0, 324), + (0, 17), + (0, 7), + (0, 441), + (0, 312), + (0, 701), + (0, 10), + (0, 473), + (0, 2398), + (0, 460), + (0, 0), + (0, 364), + (0, 394), + (0, 334), + (0, 156), + (0, 560), + (0, 366), + (0, 456), + (0, 609), + (0, 224), + (0, 51), + (0, 972), + (0, 48), + (0, 964), + (0, 0), + (0, 0), + (0, 1371), + (0, 104), + (0, 73), + (0, 463), + (0, 1), + (0, 24), + (0, 40), + (0, 2), + (0, 162), + (0, 1), + (0, 49), + (0, 0), + (0, 0), + (0, 352), + (0, 243), + (0, 679), + (0, 64), + (0, 473), + (0, 95), + (0, 215), + (0, 312), + (0, 141), + (0, 4), + (0, 1024), + (0, 0), + (0, 1211), + (0, 11), + (0, 8), + (0, 25), + (0, 194), + (0, 261), + (0, 25), + (0, 145), + (0, 69), + (0, 125), + (0, 1), + (0, 2), + (0, 198), + (0, 180), + (0, 350), + (0, 1), + (0, 36), + (0, 340), + (0, 29), + (0, 99), + (0, 868), + (0, 0), + (0, 542), + (0, 255), + (0, 273), + (0, 12), + (0, 975), + (0, 3664), + (0, 206), + (0, 240), + (0, 2), + (0, 838), + (0, 316), + (0, 107), + (0, 1), + (0, 53), + (0, 62), + (0, 3), + (0, 1500), + (0, 1009), + (0, 145), + (0, 243), + (0, 1418), + (0, 6), + (0, 51), + (0, 225), + (0, 85), + (0, 10), + (0, 1), + (0, 69), + (0, 36), + (0, 22), + (0, 3), + (0, 69), + (0, 8), + (0, 47), + (0, 1351), + (0, 283), + (0, 12), + (0, 226), + (0, 603), + (0, 62), + (0, 2070), + (0, 8), + (0, 2), + (0, 631), + (0, 276), + (0, 449), + (0, 115), + (0, 240), + (0, 27), + (0, 1106), + (0, 7), + (0, 1), + (0, 85), + (0, 0), + (0, 42), + (0, 7), + (0, 1), + (0, 1611), + (0, 17), + (0, 0), + (0, 1), + (0, 143), + (0, 257), + (0, 220), + (0, 397), + (0, 353), + (0, 1), + (0, 5), + (0, 935), + (0, 1), + (0, 9), + (0, 5), + (0, 53), + (0, 4), + (0, 2559), + (0, 37), + (0, 75), + (0, 540), + (0, 2488), + (0, 136), + (0, 236), + (0, 57), + (0, 12), + (0, 54), + (0, 14), + (0, 648), + (0, 4), + (0, 0), + (0, 9), + (0, 635), + (0, 0), + (0, 357), + (0, 115), + (0, 91), + (0, 7), + (0, 221), + (0, 892), + (0, 2383), + (0, 551), + (0, 29), + (0, 18), + (0, 1416), + (0, 2697), + (0, 69), + (0, 131), + (0, 97), + (0, 1671), + (0, 39), + (0, 0), + (0, 179), + (0, 0), + (0, 360), + (0, 144), + (0, 649), + (0, 1516), + (0, 163), + (0, 52), + (0, 5), + (0, 531), + (0, 1028), + (0, 121), + (0, 204), + (0, 364), + (0, 867), + (0, 123), + (0, 38), + (0, 8), + (0, 2334), + (0, 9), + (0, 34), + (0, 351), + (0, 166), + (0, 1), + (0, 902), + (0, 832), + (0, 117), + (0, 256), + (0, 41), + (0, 4846), + (0, 444), + (0, 225), + (0, 25), + (0, 0), + (0, 1963), + (0, 0), + (0, 1834), + (0, 90), + (0, 30), + (0, 1786), + (0, 6), + (0, 42), + (0, 284), + (0, 281), + (0, 192), + (0, 11), + (0, 187), + (0, 2), + (0, 7), + (0, 4), + (0, 33), + (0, 847), + (0, 1), + (0, 0), + (0, 223), + (0, 52), + (0, 979), + (0, 11), + (0, 6), + (0, 121), + (0, 337), + (0, 92), + (0, 49), + (0, 87), + (0, 596), + (0, 58), + (0, 0), + (0, 0), + (0, 30), + (0, 19), + (0, 4), + (0, 849), + (0, 0), + (0, 12), + (0, 145), + (0, 857), + (0, 1), + (0, 177), + (0, 45), + (0, 3), + (0, 18), + (0, 5), + (0, 59), + (0, 1254), + (0, 335), + (0, 16), + (0, 26), + (0, 15), + (0, 1733), + (0, 1), + (0, 0), + (0, 1006), + (0, 1001), + (0, 219), + (0, 12), + (0, 271), + (0, 5), + (0, 34), + (0, 7), + (0, 11), + (0, 1), + (0, 12), + (0, 102), + (0, 31), + (0, 65), + (0, 408), + (0, 12), + (0, 2), + (0, 88), + (0, 3280), + (0, 93), + (0, 4546), + (0, 1530), + (0, 14), + (0, 26), + (0, 34), + (0, 4), + (0, 1), + (0, 279), + (0, 696), + (0, 64), + (0, 221), + (0, 39), + (0, 71), + (0, 81), + (0, 0), + (0, 15), + (0, 210), + (0, 72), + (0, 696), + (0, 2337), + (0, 954), + (0, 170), + (0, 1415), + (0, 180), + (0, 2104), + (0, 4), + (0, 38), + (0, 2), + (0, 5), + (0, 14), + (0, 98), + (0, 1), + (0, 193), + (0, 188), + (0, 61), + (0, 91), + (0, 1085), + (0, 586), + (0, 20), + (0, 611), + (0, 33), + (0, 5063), + (0, 0), + (0, 3200), + (0, 22), + (0, 757), + (0, 51), + (0, 1), + (0, 6), + (0, 150), + (0, 7), + (0, 1), + (0, 51), + (0, 526), + (0, 30), + (0, 0), + (0, 193), + (0, 482), + (0, 38), + (0, 2391), + (0, 2), + (0, 27), + (0, 30), + (0, 35), + (0, 0), + (0, 0), + (0, 1), + (0, 131), + (0, 2952), + (0, 38), + (0, 215), + (0, 5), + (0, 0), + (0, 1659), + (0, 181), + (0, 39), + (0, 23), + (0, 14), + (0, 3862), + (0, 197), + (0, 1), + (0, 0), + (0, 2428), + (0, 239), + (0, 1), + (0, 0), + (0, 106), + (0, 0), + (0, 9), + (0, 0), + (0, 85), + (0, 867), + (0, 205), + (0, 138), + (0, 1413), + (0, 70), + (0, 498), + (0, 1), + (0, 2269), + (0, 16), + (0, 6), + (0, 0), + (0, 2), + (0, 30), + (0, 282), + (0, 566), + (0, 54), + (0, 54), + (0, 182), + (0, 131), + (0, 1240), + (0, 89), + (0, 15), + (0, 36), + (0, 450), + (0, 9), + (0, 79), + (0, 2435), + (0, 5), + (0, 1589), + (0, 2), + (0, 97), + (0, 962), + (0, 21), + (0, 36), + (0, 409), + (0, 537), + (0, 1068), + (0, 9), + (0, 126), + (0, 830), + (0, 1), + (0, 1392), + (0, 1), + (0, 55), + (0, 2), + (0, 1), + (0, 305), + (0, 3260), + (0, 427), + (0, 262), + (0, 5), + (0, 253), + (0, 879), + (0, 52), + (0, 160), + (0, 4056), + (0, 3806), + (0, 6), + (0, 1539), + (0, 9), + (0, 580), + (0, 198), + (0, 617), + (0, 65), + (0, 14), + (0, 2), + (0, 50), + (0, 0), + (0, 50), + (0, 32), + (0, 6), + (0, 1402), + (0, 1074), + (0, 4601), + (0, 230), + (0, 23), + (0, 40), + (0, 789), + (0, 938), + (0, 1555), + (0, 2), + (0, 594), + (0, 2), + (0, 14), + (0, 223), + (0, 8), + (0, 75), + (0, 1198), + (0, 136), + (0, 0), + (0, 3), + (0, 864), + (0, 137), + (0, 9290), + (0, 0), + (0, 209), + (0, 165), + (0, 836), + (0, 103), + (0, 720), + (0, 708), + (0, 2), + (0, 0), + (0, 150), + (0, 1021), + (0, 41), + (0, 3329), + (0, 1), + (0, 191), + (0, 1), + (0, 148), + (0, 27), + (0, 154), + (0, 1498), + (0, 733), + (0, 154), + (0, 1), + (0, 3982), + (0, 8095), + (0, 3), + (0, 67), + (0, 1001), + (0, 703), + (0, 756), + (0, 76), + (0, 34), + (0, 963), + (0, 1197), + (0, 0), + (0, 2), + (0, 121), + (0, 1062), + (0, 776), + (0, 145), + (0, 276), + (0, 0), + (0, 20), + (0, 5030), + (0, 100), + (0, 3104), + (0, 1), + (0, 1), + (0, 15), + (0, 0), + (0, 2313), + (0, 31), + (0, 5277), + (0, 11), + (0, 434), + (0, 112), + (0, 2), + (0, 635), + (0, 339), + (0, 1103), + (0, 23), + (0, 86), + (0, 1), + (0, 145), + (0, 61), + (0, 1242), + (0, 0), + (0, 0), + (0, 2), + (0, 4), + (0, 28), + (0, 7), + (0, 5580), + (0, 22), + (0, 1125), + (0, 20), + (0, 137), + (0, 3609), + (0, 131), + (0, 6), + (0, 0), + (0, 1289), + (0, 2), + (0, 1559), + (0, 598), + (0, 11), + (0, 1909), + (0, 1591), + (0, 22), + (0, 0), + (0, 23), + (0, 296), + (0, 19), + (0, 8441), + (0, 0), + (0, 9), + (0, 8), + (0, 2), + (0, 1993), + (0, 69), + (0, 19), + (0, 19), + (0, 5), + (0, 331), + (0, 16), + (0, 6), + (0, 3347), + (0, 49), + (0, 17), + (0, 1), + (0, 516), + (0, 156), + (0, 26), + (0, 501), + (0, 72), + (0, 106), + (0, 2), + (0, 336), + (0, 22), + (0, 0), + (0, 107), + (0, 939), + (0, 341), + (0, 19), + (0, 2877), + (0, 6), + (0, 177), + (0, 821), + (0, 1100), + (0, 194), + (0, 24), + (0, 599), + (0, 18), + (0, 21), + (0, 17), + (0, 42), + (0, 7), + (0, 86), + (0, 0), + (0, 238), + (0, 8), + (0, 5), + (0, 1), + (0, 68), + (0, 9193), + (0, 11), + (0, 6763), + (0, 158), + (0, 386), + (0, 4041), + (0, 63), + (0, 1819), + (0, 18), + (0, 0), + (0, 2036), + (0, 345), + (0, 2203), + (0, 113), + (0, 6), + (0, 371), + (0, 7), + (0, 194), + (0, 26), + (0, 3184), + (0, 185), + (0, 136), + (0, 35), + (0, 1883), + (0, 981), + (0, 1497), + (0, 140), + (0, 6), + (0, 0), + (0, 5), + (0, 4246), + (0, 121), + (0, 404), + (0, 398), + (0, 260), + (0, 368), + (0, 212), + (0, 2), + (0, 30), + (0, 45), + (0, 988), + (0, 82), + (0, 79), + (0, 1556), + (0, 5), + (0, 168), + (0, 0), + (0, 336), + (0, 1699), + (0, 141), + (0, 13), + (0, 0), + (0, 242), + (0, 40), + (0, 263), + (0, 6464), + (0, 1332), + (0, 4), + (0, 459), + (0, 7), + (0, 20), + (0, 1), + (0, 3523), + (0, 19), + (0, 0), + (0, 11), + (0, 8), + (0, 24), + (0, 608), + (0, 8), + (0, 50), + (0, 1), + (0, 2), + (0, 1723), + (0, 157), + (1, 108), + (0, 3), + (0, 0), + (0, 7122), + (0, 151), + (0, 4), + (0, 0), + (0, 1), + (0, 30), + (0, 5289), + (0, 2), + (0, 122), + (0, 66), + (0, 3), + (0, 7), + (0, 8258), + (0, 227), + (0, 3), + (0, 652), + (0, 574), + (0, 376), + (0, 522), + (0, 110), + (0, 1), + (0, 920), + (0, 2012), + (0, 4754), + (0, 412), + (0, 2774), + (0, 12), + (0, 1262), + (0, 144), + (0, 181), + (0, 94), + (0, 1903), + (0, 249), + (0, 8), + (0, 9), + (0, 96), + (0, 1323), + (0, 65), + (0, 20), + (0, 1270), + (0, 0), + (0, 1551), + (0, 13), + (0, 0), + (0, 5090), + (0, 2007), + (0, 6405), + (1, 891), + (0, 2327), + (0, 2029), + (0, 1078), + (0, 2), + (0, 3), + (0, 1), + (0, 661), + (0, 71), + (0, 43), + (0, 73), + (0, 12), + (0, 223), + (0, 90), + (0, 1360), + (0, 5), + (0, 329), + (0, 29), + (0, 398), + (0, 25), + (0, 14), + (0, 980), + (0, 271), + (0, 0), + (0, 466), + (0, 6142), + (0, 247), + (0, 172), + (0, 47), + (0, 38), + (0, 1576), + (0, 364), + (0, 4167), + (0, 3656), + (0, 3934), + (0, 721), + (0, 1329), + (0, 96), + (0, 625), + (0, 82), + (0, 72), + (0, 1763), + (0, 20), + (0, 947), + (0, 62), + (0, 478), + (0, 0), + (0, 1), + (0, 5), + (0, 1), + (0, 272), + (0, 1522), + (0, 857), + (0, 10), + (0, 4), + (0, 51), + (0, 252), + (0, 4), + (0, 90), + (0, 65), + (0, 1148), + (0, 990), + (0, 39), + (0, 6), + (0, 3926), + (0, 49), + (0, 1362), + (0, 9), + (0, 35), + (0, 0), + (0, 3880), + (0, 330), + (0, 32), + (0, 16), + (0, 5919), + (0, 22), + (0, 122), + (0, 3527), + (0, 16), + (0, 1085), + (0, 308), + (0, 134), + (0, 185), + (0, 138), + (0, 2443), + (0, 754), + (0, 506), + (0, 184), + (0, 6121), + (0, 1), + (0, 162), + (0, 17), + (0, 28), + (0, 17), + (0, 3843), + (0, 5), + (0, 158), + (0, 29), + (0, 42), + (0, 664), + (0, 388), + (0, 1209), + (0, 0), + (0, 1640), + (0, 58), + (0, 1), + (0, 18), + (0, 41), + (0, 7498), + (0, 7138), + (0, 5), + (0, 134), + (0, 9), + (0, 1), + (0, 207), + (0, 82), + (0, 7984), + (0, 42), + (0, 903), + (0, 258), + (0, 9392), + (0, 36), + (0, 46), + (0, 0), + (0, 228), + (0, 1633), + (0, 2445), + (0, 163), + (0, 885), + (0, 2340), + (0, 1173), + (0, 137), + (0, 5859), + (0, 202), + (0, 12), + (0, 1147), + (0, 3825), + (0, 525), + (0, 198), + (0, 182), + (0, 326), + (0, 210), + (0, 3107), + (0, 50), + (0, 257), + (0, 47), + (0, 832), + (0, 4166), + (0, 1592), + (0, 16), + (0, 10), + (1, 6970), + (0, 36), + (0, 16), + (0, 1), + (0, 9), + (0, 31), + (0, 4294), + (0, 4069), + (0, 28), + (0, 476), + (0, 2810), + (0, 403), + (0, 225), + (0, 583), + (0, 29), + (0, 261), + (0, 705), + (0, 5), + (0, 1938), + (0, 948), + (0, 7), + (0, 3653), + (0, 612), + (0, 7244), + (0, 29), + (0, 154), + (0, 111), + (0, 164), + (0, 61), + (0, 36), + (0, 226), + (0, 7905), + (0, 767), + (0, 0), + (0, 32), + (0, 6), + (0, 949), + (0, 2011), + (0, 25), + (0, 0), + (0, 27), + (0, 993), + (0, 108), + (0, 496), + (0, 2591), + (0, 2225), + (1, 1620), + (0, 182), + (0, 369), + (0, 2765), + (0, 165), + (0, 78), + (0, 313), + (0, 163), + (0, 26), + (0, 5609), + (0, 123), + (0, 8), + (0, 750), + (0, 3621), + (0, 272), + (0, 1), + (0, 0), + (0, 2785), + (0, 1), + (0, 9118), + (0, 1166), + (0, 1564), + (0, 0), + (0, 2468), + (0, 20), + (0, 4), + (0, 1506), + (1, 371), + (0, 533), + (0, 7), + (0, 38), + (0, 1051), + (0, 4), + (0, 7), + (0, 5), + (0, 1), + (0, 1177), + (0, 6404), + (0, 64), + (0, 51), + (0, 17), + (0, 4), + (0, 3), + (0, 0), + (0, 31), + (0, 367), + (0, 211), + (0, 1066), + (0, 693), + (0, 74), + (0, 1175), + (0, 25), + (0, 900), + (0, 1848), + (0, 19), + (0, 64), + (0, 18), + (0, 28), + (1, 4212), + (0, 1909), + (0, 1480), + (0, 176), + (0, 33), + (0, 0), + (0, 223), + (0, 2), + (0, 34), + (0, 444), + (0, 1564), + (0, 25), + (0, 1085), + (0, 808), + (0, 5), + (0, 0), + (0, 27), + (0, 6328), + (0, 9), + (0, 69), + (0, 282), + (0, 1832), + (1, 8685), + (0, 299), + (0, 6813), + (0, 4), + (0, 167), + (0, 348), + (0, 4403), + (1, 3801), + (0, 66), + (0, 6324), + (0, 1879), + (0, 33), + (0, 145), + (0, 180), + (0, 4675), + (0, 11), + (0, 0), + (0, 38), + (0, 1119), + (0, 100), + (0, 430), + (0, 843), + (0, 77), + (0, 8663), + (0, 7), + (0, 6805), + (1, 2379), + (0, 1556), + (0, 6029), + (0, 6596), + (0, 99), + (0, 6554), + (0, 1025), + (0, 1223), + (0, 58), + (0, 7), + (0, 737), + (0, 443), + (0, 407), + (0, 219), + (0, 2227), + (0, 2286), + (0, 4165), + (0, 54), + (0, 298), + (2, 3184), + (0, 185), + (0, 8251), + (0, 0), + (0, 33), + (0, 30), + (0, 2), + (0, 310), + (0, 802), + (0, 5196), + (0, 2985), + (0, 211), + (0, 66), + (0, 74), + (0, 97), + (0, 40), + (0, 1), + (0, 521), + (0, 8), + (0, 813), + (0, 974), + (0, 3396), + (1, 5828), + (0, 40), + (0, 277), + (0, 17), + (0, 597), + (0, 718), + (0, 280), + (0, 9), + (0, 4), + (0, 340), + (0, 0), + (0, 552), + (0, 1), + (0, 275), + (1, 5278), + (0, 58), + (0, 3), + (0, 5371), + (0, 1), + (0, 16), + (0, 162), + (1, 8009), + (0, 835), + (0, 4572), + (0, 242), + (0, 510), + (0, 1), + (0, 52), + (0, 57), + (0, 517), + (0, 4415), + (0, 16), + (0, 3225), + (0, 31), + (0, 99), + (0, 0), + (0, 146), + (0, 0), + (0, 161), + (0, 4), + (0, 4), + (0, 216), + (0, 0), + (0, 1160), + (0, 5675), + (0, 154), + (0, 112), + (0, 132), + (0, 2), + (0, 66), + (0, 53), + (0, 51), + (0, 0), + (0, 325), + (0, 2296), + (0, 109), + (0, 7514), + (0, 2850), + (0, 44), + (0, 1530), + (0, 248), + (0, 654), + (0, 44), + (0, 2282), + (0, 299), + (0, 2151), + (0, 2886), + (0, 114), + (0, 5823), + (0, 182), + (0, 872), + (0, 0), + (0, 3170), + (0, 0), + (0, 50), + (0, 71), + (0, 33), + (0, 11), + (0, 1), + (0, 1258), + (0, 14), + (0, 3255), + (0, 216), + (0, 6127), + (0, 2144), + (0, 0), + (0, 2588), + (0, 1169), + (0, 1311), + (0, 588), + (0, 5), + (0, 174), + (0, 1393), + (0, 63), + (0, 50), + (0, 3955), + (0, 473), + (0, 1519), + (0, 0), + (0, 327), + (0, 2475), + (0, 15), + (0, 0), + (2, 2826), + (0, 2896), + (0, 0), + (0, 7005), + (1, 2910), + (0, 217), + (0, 2121), + (0, 75), + (0, 336), + (0, 9830), + (1, 1127), + (0, 26), + (0, 250), + (0, 1550), + (0, 31), + (0, 170), + (0, 21), + (0, 3383), + (0, 3241), + (0, 8864), + (0, 426), + (0, 45), + (0, 5113), + (0, 622), + (0, 288), + (0, 3), + (0, 3236), + (0, 23), + (0, 3996), + (0, 2), + (0, 2), + (0, 584), + (0, 0), + (0, 4), + (0, 0), + (0, 6088), + (0, 5672), + (0, 3725), + (0, 1803), + (0, 230), + (0, 251), + (0, 725), + (0, 2059), + (0, 421), + (0, 86), + (0, 5), + (0, 6924), + (0, 28), + (0, 1440), + (0, 1976), + (0, 1836), + (0, 2), + (1, 1615), + (0, 4462), + (0, 4846), + (0, 5436), + (0, 123), + (1, 519), + (0, 87), + (0, 1595), + (0, 2401), + (0, 5), + (0, 0), + (1, 341), + (0, 4), + (0, 899), + (0, 1939), + (0, 2), + (0, 1105), + (0, 1273), + (0, 74), + (0, 56), + (0, 1685), + (0, 1154), + (0, 1130), + (0, 19), + (0, 5971), + (0, 2940), + (0, 8020), + (0, 0), + (0, 116), + (2, 5930), + (0, 41), + (0, 162), + (0, 57), + (0, 1375), + (0, 398), + (0, 4008), + (0, 9287), + (0, 817), + (0, 0), + (0, 2793), + (0, 556), + (0, 997), + (0, 282), + (0, 0), + (0, 553), + (0, 5742), + (0, 382), + (0, 6670), + (0, 5301), + (0, 0), + (2, 9658), + (0, 463), + (1, 2981), + (0, 3716), + (0, 4894), + (0, 35), + (1, 75), + (0, 86), + (0, 3384), + (0, 0), + (0, 73), + (0, 635), + (0, 2), + (0, 7793), + (1, 126), + (0, 21), + (0, 173), + (0, 505), + (0, 1558), + (0, 45), + (0, 3137), + (2, 9424), + (0, 4030), + (0, 1749), + (0, 172), + (0, 1309), + (0, 240), + (0, 735), + (0, 400), + (0, 4), + (0, 160), + (0, 0), + (0, 1), + (0, 105), + (0, 1), + (0, 5051), + (0, 365), + (0, 146), + (0, 30), + (0, 3), + (0, 470), + (0, 452), + (0, 1824), + (0, 1716), + (0, 15), + (0, 1028), + (0, 332), + (0, 3606), + (0, 19), + (0, 6), + (0, 405), + (0, 7770), + (0, 4300), + (0, 247), + (0, 7550), + (0, 6643), + (2, 1261), + (0, 7147), + (0, 30), + (0, 9), + (0, 223), + (0, 403), + (0, 372), + (3, 4276), + (0, 9288), + (0, 6212), + (0, 714), + (4, 6377), + (0, 4), + (0, 46), + (1, 8403), + (0, 142), + (0, 4462), + (0, 7581), + (0, 12), + (0, 0), + (0, 4864), + (0, 2961), + (0, 265), + (0, 19), + (0, 119), + (0, 5454), + (2, 2981), + (0, 3230), + (0, 3), + (0, 0), + (0, 6000), + (1, 9805), + (0, 354), + (0, 61), + (0, 8529), + (0, 0), + (0, 2076), + (0, 629), + (1, 1194), + (0, 3377), + (0, 0), + (0, 1956), + (0, 1749), + (3, 3998), + (0, 109), + (0, 16), + (0, 1467), + (0, 5195), + (0, 35), + (0, 9700), + (0, 4738), + ], + entries: &[ + ("blacktrianglel", (0, 0)), + ("sharp", (0, 0)), + ("bowtie", (0, 0)), + ("NotPrecedesSlantEqual;", (8928, 0)), + ("Aci", (0, 0)), + ("Atilde;", (195, 0)), + ("Zacute;", (377, 0)), + ("gvertn", (0, 0)), + ("ordm", (186, 0)), + ("LeftV", (0, 0)), + ("circlearrowl", (0, 0)), + ("updo", (0, 0)), + ("wcirc", (0, 0)), + ("gtlPar;", (10645, 0)), + ("leftharpoondow", (0, 0)), + ("NotGreaterLess", (0, 0)), + ("curlyeqpr", (0, 0)), + ("Downarrow", (0, 0)), + ("mdas", (0, 0)), + ("timesd;", (10800, 0)), + ("smash", (0, 0)), + ("VerticalL", (0, 0)), + ("LessSlantE", (0, 0)), + ("Lamb", (0, 0)), + ("prap;", (10935, 0)), + ("Updownarro", (0, 0)), + ("right", (0, 0)), + ("bull", (0, 0)), + ("plusdo", (0, 0)), + ("Iuk", (0, 0)), + ("xmap;", (10236, 0)), + ("We", (0, 0)), + ("iiiin", (0, 0)), + ("Rsh;", (8625, 0)), + ("sac", (0, 0)), + ("nVDash;", (8879, 0)), + ("ns", (0, 0)), + ("NotNestedGr", (0, 0)), + ("RightCe", (0, 0)), + ("lce", (0, 0)), + ("lb", (0, 0)), + ("dArr;", (8659, 0)), + ("Hfr;", (8460, 0)), + ("lnE", (0, 0)), + ("emsp14", (0, 0)), + ("Ubre", (0, 0)), + ("bumpE", (0, 0)), + ("DoubleDo", (0, 0)), + ("g", (0, 0)), + ("grave", (0, 0)), + ("DoubleDownAr", (0, 0)), + ("bigt", (0, 0)), + ("nbu", (0, 0)), + ("Becau", (0, 0)), + ("curvearrowright;", (8631, 0)), + ("RightDownVector", (0, 0)), + ("xwedge;", (8896, 0)), + ("CircleTi", (0, 0)), + ("dashv", (0, 0)), + ("CupCa", (0, 0)), + ("vpro", (0, 0)), + ("scsim", (0, 0)), + ("kgr", (0, 0)), + ("fpartint", (0, 0)), + ("ShortDo", (0, 0)), + ("iiot", (0, 0)), + ("escr", (0, 0)), + ("lmidot", (0, 0)), + ("na", (0, 0)), + ("bigcup;", (8899, 0)), + ("bn", (0, 0)), + ("gneq", (0, 0)), + ("rBar", (0, 0)), + ("preceq;", (10927, 0)), + ("MediumSp", (0, 0)), + ("Ha", (0, 0)), + ("xve", (0, 0)), + ("tce", (0, 0)), + ("bsim", (0, 0)), + ("NotGreaterSlantEq", (0, 0)), + ("LeftAngleBra", (0, 0)), + ("nat", (0, 0)), + ("Acirc", (194, 0)), + ("Kappa", (0, 0)), + ("Uscr", (0, 0)), + ("intca", (0, 0)), + ("cylct", (0, 0)), + ("blk14", (0, 0)), + ("vdash", (0, 0)), + ("Laplacetr", (0, 0)), + ("Imaginar", (0, 0)), + ("Uma", (0, 0)), + ("DoubleLongRightArrow", (0, 0)), + ("lurd", (0, 0)), + ("icirc", (238, 0)), + ("lsquor;", (8218, 0)), + ("Idot", (0, 0)), + ("LessFull", (0, 0)), + ("ShortRightAr", (0, 0)), + ("DownLeftTeeVe", (0, 0)), + ("iiiint;", (10764, 0)), + ("ods", (0, 0)), + ("cwcon", (0, 0)), + ("ruluha", (0, 0)), + ("leftrightsquiga", (0, 0)), + ("odash", (0, 0)), + ("gel", (0, 0)), + ("Bu", (0, 0)), + ("xscr;", (120013, 0)), + ("succn", (0, 0)), + ("capdot;", (10816, 0)), + ("rat", (0, 0)), + ("topfor", (0, 0)), + ("NestedG", (0, 0)), + ("ContourIn", (0, 0)), + ("EqualT", (0, 0)), + ("Gscr;", (119970, 0)), + ("UpperLeftAr", (0, 0)), + ("pc", (0, 0)), + ("drcro", (0, 0)), + ("Vsc", (0, 0)), + ("thetasy", (0, 0)), + ("Clockwise", (0, 0)), + ("bigvee;", (8897, 0)), + ("jopf;", (120155, 0)), + ("Hcir", (0, 0)), + ("sw", (0, 0)), + ("Upsilon", (0, 0)), + ("CounterClockwiseContourIntegral;", (8755, 0)), + ("plusdu", (0, 0)), + ("searr;", (8600, 0)), + ("mnplus;", (8723, 0)), + ("shchc", (0, 0)), + ("clubsuit", (0, 0)), + ("epars", (0, 0)), + ("SquareUni", (0, 0)), + ("NotSubs", (0, 0)), + ("nltr", (0, 0)), + ("curly", (0, 0)), + ("NotGreater", (0, 0)), + ("DoubleLe", (0, 0)), + ("DoubleLongLeftRigh", (0, 0)), + ("ori", (0, 0)), + ("LeftAngl", (0, 0)), + ("jma", (0, 0)), + ("SquareSubs", (0, 0)), + ("Or", (0, 0)), + ("gna", (0, 0)), + ("circledast", (0, 0)), + ("RightUpVe", (0, 0)), + ("leftt", (0, 0)), + ("EmptySmallS", (0, 0)), + ("natu", (0, 0)), + ("succe", (0, 0)), + ("downdownar", (0, 0)), + ("Ogr", (0, 0)), + ("GT", (62, 0)), + ("YAcy;", (1071, 0)), + ("lcedil", (0, 0)), + ("clu", (0, 0)), + ("sd", (0, 0)), + ("nprec;", (8832, 0)), + ("NotSucceedsEq", (0, 0)), + ("slar", (0, 0)), + ("LongLeftRightA", (0, 0)), + ("smt;", (10922, 0)), + ("UnionPlus", (0, 0)), + ("col", (0, 0)), + ("clubsu", (0, 0)), + ("ruluh", (0, 0)), + ("vprop;", (8733, 0)), + ("gtreqles", (0, 0)), + ("succcurl", (0, 0)), + ("dotminus;", (8760, 0)), + ("DoubleLeftTee", (0, 0)), + ("duhar;", (10607, 0)), + ("Suc", (0, 0)), + ("DiacriticalDoubleAc", (0, 0)), + ("eqcolon;", (8789, 0)), + ("upharpoo", (0, 0)), + ("looparrow", (0, 0)), + ("ycirc;", (375, 0)), + ("gtra", (0, 0)), + ("succnsim;", (8937, 0)), + ("LeftRightV", (0, 0)), + ("dag", (0, 0)), + ("NotLessSlantEqual", (0, 0)), + ("varsigm", (0, 0)), + ("m", (0, 0)), + ("ouml", (246, 0)), + ("hkse", (0, 0)), + ("NotEqualTilde", (0, 0)), + ("NotGreaterTi", (0, 0)), + ("approxe", (0, 0)), + ("LeftTeeVe", (0, 0)), + ("sem", (0, 0)), + ("ou", (0, 0)), + ("straight", (0, 0)), + ("scc", (0, 0)), + ("ReverseElem", (0, 0)), + ("curlyeqprec;", (8926, 0)), + ("efr;", (120098, 0)), + ("ropl", (0, 0)), + ("downarro", (0, 0)), + ("Tild", (0, 0)), + ("SquareSubsetEqual;", (8849, 0)), + ("NotV", (0, 0)), + ("Ea", (0, 0)), + ("Lopf", (0, 0)), + ("swarr;", (8601, 0)), + ("rtimes;", (8906, 0)), + ("h", (0, 0)), + ("ntlg;", (8824, 0)), + ("Omicron;", (927, 0)), + ("Map;", (10501, 0)), + ("Gce", (0, 0)), + ("ZeroWidthSpac", (0, 0)), + ("Topf;", (120139, 0)), + ("ic", (0, 0)), + ("uarr;", (8593, 0)), + ("util", (0, 0)), + ("frac13", (0, 0)), + ("Longleftrightarro", (0, 0)), + ("Ufr", (0, 0)), + ("infin", (0, 0)), + ("Eq", (0, 0)), + ("cudarrl;", (10552, 0)), + ("Beta", (0, 0)), + ("NotEl", (0, 0)), + ("KHcy;", (1061, 0)), + ("diamonds", (0, 0)), + ("cca", (0, 0)), + ("LessF", (0, 0)), + ("nshortparallel;", (8742, 0)), + ("vsc", (0, 0)), + ("OverParenthe", (0, 0)), + ("Diamond", (0, 0)), + ("RightTri", (0, 0)), + ("iscr", (0, 0)), + ("HumpEqu", (0, 0)), + ("centerdot;", (183, 0)), + ("DownArrowUpA", (0, 0)), + ("lagran;", (8466, 0)), + ("dotpl", (0, 0)), + ("ulcorne", (0, 0)), + ("UpperLeftArr", (0, 0)), + ("lAarr", (0, 0)), + ("lhb", (0, 0)), + ("supnE", (0, 0)), + ("Brev", (0, 0)), + ("ulco", (0, 0)), + ("ccap", (0, 0)), + ("OverBracket", (0, 0)), + ("lArr", (0, 0)), + ("supplus", (0, 0)), + ("expe", (0, 0)), + ("expecta", (0, 0)), + ("om", (0, 0)), + ("eg;", (10906, 0)), + ("Ici", (0, 0)), + ("leftthreetime", (0, 0)), + ("iprod", (0, 0)), + ("ssetmn;", (8726, 0)), + ("A", (0, 0)), + ("ntrianglelefteq;", (8940, 0)), + ("Laplac", (0, 0)), + ("smeparsl;", (10724, 0)), + ("RightT", (0, 0)), + ("rsq", (0, 0)), + ("LeftUpDownVector;", (10577, 0)), + ("Rcedil;", (342, 0)), + ("Iot", (0, 0)), + ("NotSucceeds;", (8833, 0)), + ("uum", (0, 0)), + ("Llef", (0, 0)), + ("NegativeThinS", (0, 0)), + ("fj", (0, 0)), + ("breve", (0, 0)), + ("tbr", (0, 0)), + ("bkarow;", (10509, 0)), + ("NotSquare", (0, 0)), + ("RightArrowBar;", (8677, 0)), + ("RightDownVecto", (0, 0)), + ("Fi", (0, 0)), + ("Kfr", (0, 0)), + ("rightarrow;", (8594, 0)), + ("UpEquilib", (0, 0)), + ("leftrightsqu", (0, 0)), + ("succcurlye", (0, 0)), + ("blacktrianglele", (0, 0)), + ("Lcedi", (0, 0)), + ("djcy", (0, 0)), + ("ndash", (0, 0)), + ("LeftUpDownV", (0, 0)), + ("LessSlantEqu", (0, 0)), + ("RightDownTe", (0, 0)), + ("Ycy", (0, 0)), + ("exc", (0, 0)), + ("lef", (0, 0)), + ("ratai", (0, 0)), + ("LessFullEqual", (0, 0)), + ("icirc;", (238, 0)), + ("Nf", (0, 0)), + ("NotLessGr", (0, 0)), + ("gtreq", (0, 0)), + ("nvDa", (0, 0)), + ("Gcirc", (0, 0)), + ("otil", (0, 0)), + ("Hf", (0, 0)), + ("LeftUpTe", (0, 0)), + ("ThinSpace;", (8201, 0)), + ("el;", (10905, 0)), + ("Qf", (0, 0)), + ("backprime", (0, 0)), + ("LeftTr", (0, 0)), + ("DownRig", (0, 0)), + ("xhArr;", (10234, 0)), + ("Rop", (0, 0)), + ("DownTeeArrow", (0, 0)), + ("lozeng", (0, 0)), + ("CloseCurlyDoubleQu", (0, 0)), + ("Kcy", (0, 0)), + ("gsc", (0, 0)), + ("ReverseEquilibriu", (0, 0)), + ("GreaterSla", (0, 0)), + ("larrsim", (0, 0)), + ("vangrt;", (10652, 0)), + ("Rcaro", (0, 0)), + ("nco", (0, 0)), + ("LessEqual", (0, 0)), + ("uHar;", (10595, 0)), + ("andd", (0, 0)), + ("hstrok;", (295, 0)), + ("hyb", (0, 0)), + ("PrecedesTild", (0, 0)), + ("rangle;", (10217, 0)), + ("ContourIntegr", (0, 0)), + ("RBarr", (0, 0)), + ("Vscr", (0, 0)), + ("Negativ", (0, 0)), + ("Yo", (0, 0)), + ("cula", (0, 0)), + ("nGt", (0, 0)), + ("lesseqqg", (0, 0)), + ("rscr;", (120007, 0)), + ("nesim", (0, 0)), + ("LeftDownTeeVector;", (10593, 0)), + ("barv", (0, 0)), + ("succnapprox;", (10938, 0)), + ("lbrksld;", (10639, 0)), + ("triangl", (0, 0)), + ("CircleDo", (0, 0)), + ("xlarr", (0, 0)), + ("larrbf", (0, 0)), + ("larr", (0, 0)), + ("fal", (0, 0)), + ("Triple", (0, 0)), + ("opar", (0, 0)), + ("Uci", (0, 0)), + ("Roun", (0, 0)), + ("DoubleRightAr", (0, 0)), + ("planckh", (0, 0)), + ("EmptyVer", (0, 0)), + ("Prim", (0, 0)), + ("apo", (0, 0)), + ("RightTriangleEqua", (0, 0)), + ("blackt", (0, 0)), + ("Diac", (0, 0)), + ("UnderBracket", (0, 0)), + ("larrlp", (0, 0)), + ("Dot;", (168, 0)), + ("asympeq", (0, 0)), + ("mDDo", (0, 0)), + ("Uuml;", (220, 0)), + ("Tce", (0, 0)), + ("Integral", (0, 0)), + ("llcor", (0, 0)), + ("Prece", (0, 0)), + ("Part", (0, 0)), + ("herco", (0, 0)), + ("cacute", (0, 0)), + ("profli", (0, 0)), + ("of", (0, 0)), + ("uopf", (0, 0)), + ("Ti", (0, 0)), + ("edot;", (279, 0)), + ("drcor", (0, 0)), + ("RightArrowLeftArro", (0, 0)), + ("rightsquigarrow;", (8605, 0)), + ("upuparr", (0, 0)), + ("queste", (0, 0)), + ("Longleft", (0, 0)), + ("laemptyv", (0, 0)), + ("trie", (0, 0)), + ("hAr", (0, 0)), + ("xutr", (0, 0)), + ("siml;", (10909, 0)), + ("sup1", (185, 0)), + ("PrecedesSlan", (0, 0)), + ("Ntilde", (209, 0)), + ("uwa", (0, 0)), + ("frac34", (190, 0)), + ("boxVR;", (9568, 0)), + ("zig", (0, 0)), + ("dotsqua", (0, 0)), + ("dtr", (0, 0)), + ("Diacritic", (0, 0)), + ("gjcy;", (1107, 0)), + ("epsiv;", (1013, 0)), + ("IE", (0, 0)), + ("boxDR", (0, 0)), + ("fa", (0, 0)), + ("npara", (0, 0)), + ("frac45", (0, 0)), + ("pi;", (960, 0)), + ("cirmi", (0, 0)), + ("leftthreeti", (0, 0)), + ("bigotimes", (0, 0)), + ("bigsqc", (0, 0)), + ("xlarr;", (10229, 0)), + ("lhbl", (0, 0)), + ("ldc", (0, 0)), + ("ugrave;", (249, 0)), + ("NotHumpDownHump;", (8782, 824)), + ("Rho;", (929, 0)), + ("rarrs", (0, 0)), + ("NotLessS", (0, 0)), + ("inca", (0, 0)), + ("RoundImplies", (0, 0)), + ("FilledVerySmallS", (0, 0)), + ("esi", (0, 0)), + ("orslo", (0, 0)), + ("ddag", (0, 0)), + ("curre", (0, 0)), + ("uuarr;", (8648, 0)), + ("up", (0, 0)), + ("ccar", (0, 0)), + ("ri", (0, 0)), + ("lhard", (0, 0)), + ("nles", (0, 0)), + ("Utild", (0, 0)), + ("eqcirc;", (8790, 0)), + ("ltime", (0, 0)), + ("yacy;", (1103, 0)), + ("malt;", (10016, 0)), + ("aac", (0, 0)), + ("RoundImp", (0, 0)), + ("phmmat", (0, 0)), + ("RightDownTeeVect", (0, 0)), + ("cap;", (8745, 0)), + ("jm", (0, 0)), + ("looparrowle", (0, 0)), + ("profline;", (8978, 0)), + ("plus", (0, 0)), + ("straightepsi", (0, 0)), + ("RightCeili", (0, 0)), + ("awconin", (0, 0)), + ("mapstodown", (0, 0)), + ("triangleleft", (0, 0)), + ("gc", (0, 0)), + ("oo", (0, 0)), + ("zet", (0, 0)), + ("setmin", (0, 0)), + ("twix", (0, 0)), + ("mapstoleft", (0, 0)), + ("LowerLeftArrow", (0, 0)), + ("sqsub", (0, 0)), + ("iocy", (0, 0)), + ("imagpar", (0, 0)), + ("softcy", (0, 0)), + ("acd;", (8767, 0)), + ("Ium", (0, 0)), + ("DoubleLongRightArrow;", (10233, 0)), + ("Pri", (0, 0)), + ("tfr", (0, 0)), + ("DoubleLo", (0, 0)), + ("Tilde;", (8764, 0)), + ("Equal", (0, 0)), + ("Iu", (0, 0)), + ("Hs", (0, 0)), + ("nvl", (0, 0)), + ("ClockwiseContourIntegra", (0, 0)), + ("RightTriangleBar", (0, 0)), + ("downharpoonle", (0, 0)), + ("expec", (0, 0)), + ("bigotim", (0, 0)), + ("AMP;", (38, 0)), + ("boxH;", (9552, 0)), + ("Intersectio", (0, 0)), + ("aum", (0, 0)), + ("niv", (0, 0)), + ("nlefta", (0, 0)), + ("lesseq", (0, 0)), + ("mar", (0, 0)), + ("male", (0, 0)), + ("curlyeqpre", (0, 0)), + ("LowerRight", (0, 0)), + ("lon", (0, 0)), + ("Exponenti", (0, 0)), + ("nexist", (0, 0)), + ("siml", (0, 0)), + ("NotGreaterT", (0, 0)), + ("rfloor;", (8971, 0)), + ("Bsc", (0, 0)), + ("Otim", (0, 0)), + ("capbrcup", (0, 0)), + ("varkappa;", (1008, 0)), + ("circ", (0, 0)), + ("plan", (0, 0)), + ("Sacu", (0, 0)), + ("varsig", (0, 0)), + ("RoundImpli", (0, 0)), + ("jsercy;", (1112, 0)), + ("di", (0, 0)), + ("bepsi", (0, 0)), + ("hearts", (0, 0)), + ("nleqsla", (0, 0)), + ("RuleDel", (0, 0)), + ("boxhd", (0, 0)), + ("profl", (0, 0)), + ("downharpo", (0, 0)), + ("raemptyv;", (10675, 0)), + ("ominus", (0, 0)), + ("bsolb;", (10693, 0)), + ("straightepsilon;", (1013, 0)), + ("nsub", (0, 0)), + ("DoubleLongLeftArro", (0, 0)), + ("ensp", (0, 0)), + ("Aopf", (0, 0)), + ("gacute", (0, 0)), + ("Colone;", (10868, 0)), + ("zw", (0, 0)), + ("leftharpoo", (0, 0)), + ("UpArrowDownAr", (0, 0)), + ("IEcy", (0, 0)), + ("shortpar", (0, 0)), + ("nGtv;", (8811, 824)), + ("downh", (0, 0)), + ("commat;", (64, 0)), + ("ContourIntegral;", (8750, 0)), + ("eacut", (0, 0)), + ("gnapprox;", (10890, 0)), + ("breve;", (728, 0)), + ("iinf", (0, 0)), + ("hom", (0, 0)), + ("nlA", (0, 0)), + ("cupdo", (0, 0)), + ("ee", (0, 0)), + ("TScy;", (1062, 0)), + ("LeftDoubl", (0, 0)), + ("Succee", (0, 0)), + ("curlyv", (0, 0)), + ("rightarro", (0, 0)), + ("rbrace", (0, 0)), + ("NotGreaterFullE", (0, 0)), + ("quest;", (63, 0)), + ("cuvee", (0, 0)), + ("Cou", (0, 0)), + ("ReverseE", (0, 0)), + ("barwedg", (0, 0)), + ("succc", (0, 0)), + ("B", (0, 0)), + ("Uring", (0, 0)), + ("supne;", (8843, 0)), + ("capca", (0, 0)), + ("ohba", (0, 0)), + ("CloseCurlyQuote", (0, 0)), + ("nleqs", (0, 0)), + ("thksi", (0, 0)), + ("dol", (0, 0)), + ("ro", (0, 0)), + ("NotSucceedsSlantEqu", (0, 0)), + ("VerticalTi", (0, 0)), + ("LessGrea", (0, 0)), + ("copro", (0, 0)), + ("LessSlantEqual", (0, 0)), + ("upsilo", (0, 0)), + ("osol", (0, 0)), + ("peri", (0, 0)), + ("NotTildeE", (0, 0)), + ("varsupse", (0, 0)), + ("Eogon;", (280, 0)), + ("Ys", (0, 0)), + ("NotGreaterSlant", (0, 0)), + ("PrecedesEqual;", (10927, 0)), + ("FilledSmall", (0, 0)), + ("updownarrow;", (8597, 0)), + ("cupdot;", (8845, 0)), + ("Verb", (0, 0)), + ("subse", (0, 0)), + ("swar", (0, 0)), + ("pop", (0, 0)), + ("YAcy", (0, 0)), + ("PrecedesEqual", (0, 0)), + ("rHa", (0, 0)), + ("Bernoullis;", (8492, 0)), + ("DownRigh", (0, 0)), + ("circlearrowlef", (0, 0)), + ("hair", (0, 0)), + ("odi", (0, 0)), + ("NotTildeFullEqu", (0, 0)), + ("ntrianglele", (0, 0)), + ("Verbar;", (8214, 0)), + ("llcorner;", (8990, 0)), + ("AMP", (38, 0)), + ("hardc", (0, 0)), + ("LessFullEqu", (0, 0)), + ("ucy", (0, 0)), + ("rtri", (0, 0)), + ("Longleftarrow;", (10232, 0)), + ("SquareSupersetE", (0, 0)), + ("gesles;", (10900, 0)), + ("gg", (0, 0)), + ("Nscr;", (119977, 0)), + ("sqsubsete", (0, 0)), + ("twoheadrig", (0, 0)), + ("curvear", (0, 0)), + ("eqcirc", (0, 0)), + ("ClockwiseContourInt", (0, 0)), + ("Mop", (0, 0)), + ("pointint", (0, 0)), + ("NotTild", (0, 0)), + ("empt", (0, 0)), + ("Sma", (0, 0)), + ("aleph;", (8501, 0)), + ("copysr;", (8471, 0)), + ("la", (0, 0)), + ("lAa", (0, 0)), + ("Iop", (0, 0)), + ("CloseCurlyDoubleQuot", (0, 0)), + ("ltrie;", (8884, 0)), + ("rul", (0, 0)), + ("Umacr;", (362, 0)), + ("NJcy;", (1034, 0)), + ("NotSupersetEqual;", (8841, 0)), + ("rlar", (0, 0)), + ("NotPrecedesEqual", (0, 0)), + ("sopf;", (120164, 0)), + ("fork;", (8916, 0)), + ("Jopf;", (120129, 0)), + ("nsccue", (0, 0)), + ("leftrightarrow;", (8596, 0)), + ("ForAll", (0, 0)), + ("urin", (0, 0)), + ("nvap", (0, 0)), + ("squf;", (9642, 0)), + ("Gbreve", (0, 0)), + ("lmidot;", (320, 0)), + ("mapstoleft;", (8612, 0)), + ("er", (0, 0)), + ("LeftDownTeeVe", (0, 0)), + ("ominu", (0, 0)), + ("sharp;", (9839, 0)), + ("ccaps;", (10829, 0)), + ("Thet", (0, 0)), + ("Upsilo", (0, 0)), + ("rightharpoonup;", (8640, 0)), + ("spades;", (9824, 0)), + ("rightharpoond", (0, 0)), + ("SquareSubset;", (8847, 0)), + ("yscr;", (120014, 0)), + ("iac", (0, 0)), + ("permil", (0, 0)), + ("Rsh", (0, 0)), + ("rangd", (0, 0)), + ("els", (0, 0)), + ("cuepr", (0, 0)), + ("Ama", (0, 0)), + ("TripleDot;", (8411, 0)), + ("OpenCurlyDoubleQuote;", (8220, 0)), + ("gesl;", (8923, 65024)), + ("yci", (0, 0)), + ("nlAr", (0, 0)), + ("notnivc", (0, 0)), + ("gscr;", (8458, 0)), + ("NegativeMe", (0, 0)), + ("twi", (0, 0)), + ("lvertneqq", (0, 0)), + ("eth", (240, 0)), + ("Pi", (0, 0)), + ("MediumSpac", (0, 0)), + ("ultri", (0, 0)), + ("LongLeftA", (0, 0)), + ("SquareSupers", (0, 0)), + ("TildeT", (0, 0)), + ("FilledSmallSquare;", (9724, 0)), + ("nvrAr", (0, 0)), + ("nsho", (0, 0)), + ("RightAngl", (0, 0)), + ("dcy;", (1076, 0)), + ("RightVecto", (0, 0)), + ("szlig", (223, 0)), + ("NotSucce", (0, 0)), + ("lna", (0, 0)), + ("Not;", (10988, 0)), + ("InvisibleTimes", (0, 0)), + ("acir", (0, 0)), + ("uharr", (0, 0)), + ("RightFloor", (0, 0)), + ("npars", (0, 0)), + ("DownArro", (0, 0)), + ("squ", (0, 0)), + ("numer", (0, 0)), + ("Cc", (0, 0)), + ("succappr", (0, 0)), + ("cwco", (0, 0)), + ("dso", (0, 0)), + ("bu", (0, 0)), + ("Alph", (0, 0)), + ("UpTeeArrow;", (8613, 0)), + ("upharpoonrig", (0, 0)), + ("rarrt", (0, 0)), + ("expectati", (0, 0)), + ("easter", (0, 0)), + ("nsime", (0, 0)), + ("OpenC", (0, 0)), + ("lparl", (0, 0)), + ("LongRightA", (0, 0)), + ("NotGreate", (0, 0)), + ("LeftTria", (0, 0)), + ("sscr", (0, 0)), + ("drbkarow;", (10512, 0)), + ("Fscr;", (8497, 0)), + ("scap", (0, 0)), + ("minusdu", (0, 0)), + ("ycy", (0, 0)), + ("curlyve", (0, 0)), + ("trpezium", (0, 0)), + ("smtes", (0, 0)), + ("subr", (0, 0)), + ("For", (0, 0)), + ("dzcy;", (1119, 0)), + ("UpEquilibriu", (0, 0)), + ("order", (0, 0)), + ("iogon;", (303, 0)), + ("racute;", (341, 0)), + ("shortparallel", (0, 0)), + ("TildeFul", (0, 0)), + ("Ro", (0, 0)), + ("proflin", (0, 0)), + ("iukc", (0, 0)), + ("VeryThi", (0, 0)), + ("blo", (0, 0)), + ("Lmidot;", (319, 0)), + ("IJlig", (0, 0)), + ("LeftAng", (0, 0)), + ("circe", (0, 0)), + ("Ts", (0, 0)), + ("exponentiale;", (8519, 0)), + ("TildeFullE", (0, 0)), + ("angmsdab;", (10665, 0)), + ("Jo", (0, 0)), + ("Lscr;", (8466, 0)), + ("dis", (0, 0)), + ("Ut", (0, 0)), + ("odo", (0, 0)), + ("uwangle;", (10663, 0)), + ("apaci", (0, 0)), + ("comm", (0, 0)), + ("cirs", (0, 0)), + ("risin", (0, 0)), + ("NotSquareSupe", (0, 0)), + ("uparrow", (0, 0)), + ("UnderBracke", (0, 0)), + ("xlar", (0, 0)), + ("NotPrecedesEqual;", (10927, 824)), + ("Zscr;", (119989, 0)), + ("barwedge", (0, 0)), + ("Oop", (0, 0)), + ("bigsq", (0, 0)), + ("llcorn", (0, 0)), + ("backepsil", (0, 0)), + ("LJc", (0, 0)), + ("kh", (0, 0)), + ("varsupsetneq;", (8843, 65024)), + ("ve", (0, 0)), + ("omicron;", (959, 0)), + ("leftrightarro", (0, 0)), + ("leftrightarr", (0, 0)), + ("caret", (0, 0)), + ("topf", (0, 0)), + ("sdot", (0, 0)), + ("thickappr", (0, 0)), + ("radi", (0, 0)), + ("dopf;", (120149, 0)), + ("nex", (0, 0)), + ("copy", (169, 0)), + ("NotLessE", (0, 0)), + ("vltri", (0, 0)), + ("comma;", (44, 0)), + ("hoar", (0, 0)), + ("orig", (0, 0)), + ("nshortparal", (0, 0)), + ("rightsquiga", (0, 0)), + ("RightDown", (0, 0)), + ("ap", (0, 0)), + ("nltrie", (0, 0)), + ("HumpDow", (0, 0)), + ("straightph", (0, 0)), + ("circlearrowleft;", (8634, 0)), + ("tw", (0, 0)), + ("olci", (0, 0)), + ("phmm", (0, 0)), + ("SOFT", (0, 0)), + ("gopf", (0, 0)), + ("dotsquare", (0, 0)), + ("Bumpeq", (0, 0)), + ("erar", (0, 0)), + ("boxbo", (0, 0)), + ("nVDas", (0, 0)), + ("shch", (0, 0)), + ("OverBra", (0, 0)), + ("angmsdac", (0, 0)), + ("RightArrowLef", (0, 0)), + ("bigca", (0, 0)), + ("NotReverseElemen", (0, 0)), + ("perp", (0, 0)), + ("appr", (0, 0)), + ("js", (0, 0)), + ("profline", (0, 0)), + ("Wedge", (0, 0)), + ("LeftArrow;", (8592, 0)), + ("nwnear;", (10535, 0)), + ("eqvparsl", (0, 0)), + ("Vbar;", (10987, 0)), + ("lpa", (0, 0)), + ("searrow", (0, 0)), + ("DJ", (0, 0)), + ("nlarr;", (8602, 0)), + ("bigci", (0, 0)), + ("Clockwi", (0, 0)), + ("Sups", (0, 0)), + ("loarr", (0, 0)), + ("Cro", (0, 0)), + ("Beca", (0, 0)), + ("cirf", (0, 0)), + ("NotLeftTriangleEqu", (0, 0)), + ("vartriangl", (0, 0)), + ("real", (0, 0)), + ("ZeroWidthSp", (0, 0)), + ("lba", (0, 0)), + ("NotRightTriangleBar", (0, 0)), + ("oplus;", (8853, 0)), + ("times", (215, 0)), + ("rightr", (0, 0)), + ("leftri", (0, 0)), + ("Dcaron", (0, 0)), + ("rarrbfs;", (10528, 0)), + ("nLeftrightarr", (0, 0)), + ("ReverseUpE", (0, 0)), + ("DownLeftRightVector;", (10576, 0)), + ("pert", (0, 0)), + ("DoubleLongRightArro", (0, 0)), + ("iukcy;", (1110, 0)), + ("lowa", (0, 0)), + ("og", (0, 0)), + ("Cente", (0, 0)), + ("kcedil;", (311, 0)), + ("DoubleLongLeftRightArro", (0, 0)), + ("bnot", (0, 0)), + ("nrarrw;", (8605, 824)), + ("rfr;", (120111, 0)), + ("oti", (0, 0)), + ("Left", (0, 0)), + ("OverParenthesis;", (9180, 0)), + ("measuredangle", (0, 0)), + ("fpart", (0, 0)), + ("dotsquar", (0, 0)), + ("NotSquareSubsetEq", (0, 0)), + ("DiacriticalAcute", (0, 0)), + ("DS", (0, 0)), + ("downharpoonleft;", (8643, 0)), + ("harrcir", (0, 0)), + ("DownLeftRightVec", (0, 0)), + ("Egr", (0, 0)), + ("Jserc", (0, 0)), + ("ShortL", (0, 0)), + ("lessd", (0, 0)), + ("succcu", (0, 0)), + ("dotplu", (0, 0)), + ("PlusM", (0, 0)), + ("hyph", (0, 0)), + ("rightleftarrows;", (8644, 0)), + ("LeftTe", (0, 0)), + ("EmptySmallSqua", (0, 0)), + ("NotGreaterFullEq", (0, 0)), + ("cl", (0, 0)), + ("rppo", (0, 0)), + ("ldqu", (0, 0)), + ("DiacriticalDot", (0, 0)), + ("nvdas", (0, 0)), + ("LessTil", (0, 0)), + ("LowerRightArrow", (0, 0)), + ("dalet", (0, 0)), + ("Otilde", (213, 0)), + ("sh", (0, 0)), + ("lbrke;", (10635, 0)), + ("seArr;", (8664, 0)), + ("oma", (0, 0)), + ("gEl", (0, 0)), + ("NonBreakingSpace", (0, 0)), + ("LessEqualGreat", (0, 0)), + ("uhblk;", (9600, 0)), + ("timesba", (0, 0)), + ("bopf", (0, 0)), + ("CloseCu", (0, 0)), + ("curlyvee", (0, 0)), + ("thksim;", (8764, 0)), + ("boxvH;", (9578, 0)), + ("luruha", (0, 0)), + ("vns", (0, 0)), + ("Hopf;", (8461, 0)), + ("CloseCurlyDoub", (0, 0)), + ("Square;", (9633, 0)), + ("subs", (0, 0)), + ("fltn", (0, 0)), + ("diga", (0, 0)), + ("rfloo", (0, 0)), + ("nspar;", (8742, 0)), + ("rightleftar", (0, 0)), + ("precnapprox;", (10937, 0)), + ("leftharpo", (0, 0)), + ("nleq;", (8816, 0)), + ("boxVR", (0, 0)), + ("range", (0, 0)), + ("robrk", (0, 0)), + ("xup", (0, 0)), + ("vangrt", (0, 0)), + ("nLeftrightarro", (0, 0)), + ("var", (0, 0)), + ("nRi", (0, 0)), + ("gnE", (0, 0)), + ("cros", (0, 0)), + ("pla", (0, 0)), + ("RightF", (0, 0)), + ("DoubleUpDownArrow;", (8661, 0)), + ("trianglerighte", (0, 0)), + ("Sfr", (0, 0)), + ("copys", (0, 0)), + ("xcir", (0, 0)), + ("odbla", (0, 0)), + ("rHar", (0, 0)), + ("yuc", (0, 0)), + ("alefsy", (0, 0)), + ("bigwedge;", (8896, 0)), + ("olar", (0, 0)), + ("Igrave", (204, 0)), + ("EmptyVerySmallSquar", (0, 0)), + ("ContourInte", (0, 0)), + ("vartrianglerigh", (0, 0)), + ("NegativeThinSpac", (0, 0)), + ("twoheadrightarrow;", (8608, 0)), + ("subne", (0, 0)), + ("NegativeTh", (0, 0)), + ("lBarr", (0, 0)), + ("oeli", (0, 0)), + ("Iota", (0, 0)), + ("intcal;", (8890, 0)), + ("equals", (0, 0)), + ("frac2", (0, 0)), + ("abreve;", (259, 0)), + ("upharpoonri", (0, 0)), + ("DiacriticalDoub", (0, 0)), + ("pe", (0, 0)), + ("SquareSubsetEqua", (0, 0)), + ("Lambda;", (923, 0)), + ("Dashv;", (10980, 0)), + ("Za", (0, 0)), + ("NonBreak", (0, 0)), + ("LeftUpDownVe", (0, 0)), + ("setm", (0, 0)), + ("spadesu", (0, 0)), + ("Nacut", (0, 0)), + ("approx;", (8776, 0)), + ("parsl;", (11005, 0)), + ("leftrightharpoons", (0, 0)), + ("rarrap", (0, 0)), + ("NestedGreaterGreat", (0, 0)), + ("plusacir;", (10787, 0)), + ("CircleTimes", (0, 0)), + ("dwa", (0, 0)), + ("cul", (0, 0)), + ("SupersetEqua", (0, 0)), + ("downha", (0, 0)), + ("sqcaps;", (8851, 65024)), + ("Therefo", (0, 0)), + ("hookrightarrow;", (8618, 0)), + ("boxDL;", (9559, 0)), + ("complexes;", (8450, 0)), + ("dopf", (0, 0)), + ("nLeftrightarrow;", (8654, 0)), + ("leftthr", (0, 0)), + ("rulu", (0, 0)), + ("NotElemen", (0, 0)), + ("LessFullE", (0, 0)), + ("EmptySmallSq", (0, 0)), + ("rAtail;", (10524, 0)), + ("zigrar", (0, 0)), + ("DownArr", (0, 0)), + ("Yopf", (0, 0)), + ("boxtimes", (0, 0)), + ("Upsil", (0, 0)), + ("nrarrc;", (10547, 824)), + ("DownLe", (0, 0)), + ("Bopf", (0, 0)), + ("minusdu;", (10794, 0)), + ("TSHc", (0, 0)), + ("Gdot;", (288, 0)), + ("LessEqua", (0, 0)), + ("Re", (0, 0)), + ("icy;", (1080, 0)), + ("im", (0, 0)), + ("bumpE;", (10926, 0)), + ("Ema", (0, 0)), + ("or", (0, 0)), + ("djc", (0, 0)), + ("phmma", (0, 0)), + ("ocir", (0, 0)), + ("profsurf;", (8979, 0)), + ("looparrowleft;", (8619, 0)), + ("lefth", (0, 0)), + ("nabl", (0, 0)), + ("iq", (0, 0)), + ("emac", (0, 0)), + ("odot", (0, 0)), + ("RightAngleBracke", (0, 0)), + ("wcir", (0, 0)), + ("LeftTeeArro", (0, 0)), + ("oelig;", (339, 0)), + ("nlef", (0, 0)), + ("imagline;", (8464, 0)), + ("ssm", (0, 0)), + ("NotGrea", (0, 0)), + ("LowerLef", (0, 0)), + ("Lfr;", (120079, 0)), + ("DownRightVecto", (0, 0)), + ("longmaps", (0, 0)), + ("sol", (0, 0)), + ("exponential", (0, 0)), + ("barwedge;", (8965, 0)), + ("ltq", (0, 0)), + ("LongRightArr", (0, 0)), + ("aa", (0, 0)), + ("ofr;", (120108, 0)), + ("numsp;", (8199, 0)), + ("oscr", (0, 0)), + ("Iacut", (0, 0)), + ("lvertneq", (0, 0)), + ("udar", (0, 0)), + ("to", (0, 0)), + ("varsupsetn", (0, 0)), + ("racute", (0, 0)), + ("kfr;", (120104, 0)), + ("mid;", (8739, 0)), + ("npolint", (0, 0)), + ("ContourIntegra", (0, 0)), + ("rightthree", (0, 0)), + ("velli", (0, 0)), + ("ngeq", (0, 0)), + ("nums", (0, 0)), + ("upd", (0, 0)), + ("thor", (0, 0)), + ("rthree;", (8908, 0)), + ("Pf", (0, 0)), + ("mapstoup", (0, 0)), + ("NotGreaterSlantE", (0, 0)), + ("Poin", (0, 0)), + ("Laplacetrf", (0, 0)), + ("roa", (0, 0)), + ("precn", (0, 0)), + ("imaglin", (0, 0)), + ("hookl", (0, 0)), + ("Ccedil;", (199, 0)), + ("searhk;", (10533, 0)), + ("downharpoon", (0, 0)), + ("RightUpDownVe", (0, 0)), + ("cf", (0, 0)), + ("Efr", (0, 0)), + ("Rrightarrow;", (8667, 0)), + ("bigodo", (0, 0)), + ("Wcir", (0, 0)), + ("loang;", (10220, 0)), + ("rightsquig", (0, 0)), + ("langd", (0, 0)), + ("laem", (0, 0)), + ("nsqsu", (0, 0)), + ("smallsetminu", (0, 0)), + ("dl", (0, 0)), + ("DiacriticalD", (0, 0)), + ("DownLeftVe", (0, 0)), + ("DownLeftVectorBar;", (10582, 0)), + ("vzig", (0, 0)), + ("varnothing;", (8709, 0)), + ("Rri", (0, 0)), + ("NonBre", (0, 0)), + ("andv;", (10842, 0)), + ("NotLessSlantEqual;", (10877, 824)), + ("isindot", (0, 0)), + ("nspa", (0, 0)), + ("complemen", (0, 0)), + ("frac56;", (8538, 0)), + ("ReverseUpEqui", (0, 0)), + ("varsubs", (0, 0)), + ("sacut", (0, 0)), + ("bnequi", (0, 0)), + ("DownArrow", (0, 0)), + ("UpperRight", (0, 0)), + ("Jsercy", (0, 0)), + ("ac", (0, 0)), + ("lfi", (0, 0)), + ("natura", (0, 0)), + ("TildeEqua", (0, 0)), + ("UpArrowBar;", (10514, 0)), + ("uparr", (0, 0)), + ("Uogon;", (370, 0)), + ("pcy", (0, 0)), + ("Dcaron;", (270, 0)), + ("Cconint;", (8752, 0)), + ("LessFul", (0, 0)), + ("ReverseUpEq", (0, 0)), + ("cylc", (0, 0)), + ("DoubleLeftTee;", (10980, 0)), + ("oopf;", (120160, 0)), + ("nR", (0, 0)), + ("hami", (0, 0)), + ("nesea", (0, 0)), + ("mcy", (0, 0)), + ("boxm", (0, 0)), + ("RightTeeArro", (0, 0)), + ("varsubsetneqq", (0, 0)), + ("lthr", (0, 0)), + ("dharl", (0, 0)), + ("mD", (0, 0)), + ("OpenCurly", (0, 0)), + ("UpperLeftA", (0, 0)), + ("DownLeftRightVector", (0, 0)), + ("lneqq;", (8808, 0)), + ("rightsq", (0, 0)), + ("DotE", (0, 0)), + ("SquareIntersect", (0, 0)), + ("Succeeds;", (8827, 0)), + ("ReverseElemen", (0, 0)), + ("RightArrowLeftArr", (0, 0)), + ("gla", (0, 0)), + ("CircleM", (0, 0)), + ("VeryThinSpac", (0, 0)), + ("elin", (0, 0)), + ("xu", (0, 0)), + ("UpEquil", (0, 0)), + ("big", (0, 0)), + ("Bfr;", (120069, 0)), + ("Cross;", (10799, 0)), + ("gdo", (0, 0)), + ("ctdot", (0, 0)), + ("larrfs", (0, 0)), + ("vnsub;", (8834, 8402)), + ("leftharpoonu", (0, 0)), + ("cdot;", (267, 0)), + ("NotExist", (0, 0)), + ("NotCongru", (0, 0)), + ("lB", (0, 0)), + ("curlyvee;", (8910, 0)), + ("ShortLe", (0, 0)), + ("prece", (0, 0)), + ("Aring;", (197, 0)), + ("tar", (0, 0)), + ("Zdo", (0, 0)), + ("Bscr", (0, 0)), + ("upupar", (0, 0)), + ("NotSquareSuperset;", (8848, 824)), + ("origof", (0, 0)), + ("sset", (0, 0)), + ("Differential", (0, 0)), + ("NegativeThickSpace", (0, 0)), + ("CloseCurlyQuote;", (8217, 0)), + ("SquareIntersection", (0, 0)), + ("su", (0, 0)), + ("downarr", (0, 0)), + ("GreaterEq", (0, 0)), + ("leftrightharpo", (0, 0)), + ("LessFu", (0, 0)), + ("ecolon;", (8789, 0)), + ("LeftVe", (0, 0)), + ("ks", (0, 0)), + ("Theref", (0, 0)), + ("Sci", (0, 0)), + ("lrhar", (0, 0)), + ("ntilde;", (241, 0)), + ("iop", (0, 0)), + ("suphso", (0, 0)), + ("DoubleLongLeftRightArr", (0, 0)), + ("hyp", (0, 0)), + ("Ntild", (0, 0)), + ("rdldh", (0, 0)), + ("notni", (0, 0)), + ("rdca;", (10551, 0)), + ("Ccedi", (0, 0)), + ("leftarrow", (0, 0)), + ("Leftarrow", (0, 0)), + ("Dia", (0, 0)), + ("IOcy", (0, 0)), + ("Vcy;", (1042, 0)), + ("zd", (0, 0)), + ("QUOT;", (34, 0)), + ("YAc", (0, 0)), + ("angz", (0, 0)), + ("co", (0, 0)), + ("Lleftarro", (0, 0)), + ("odiv;", (10808, 0)), + ("Leftri", (0, 0)), + ("Horizo", (0, 0)), + ("Longlefta", (0, 0)), + ("LeftVecto", (0, 0)), + ("Nscr", (0, 0)), + ("Aa", (0, 0)), + ("RightUpVectorBar;", (10580, 0)), + ("Con", (0, 0)), + ("ldrdhar", (0, 0)), + ("Iuml", (207, 0)), + ("sacu", (0, 0)), + ("nLt", (0, 0)), + ("circlearr", (0, 0)), + ("AEli", (0, 0)), + ("Lacute", (0, 0)), + ("NotSuc", (0, 0)), + ("llarr", (0, 0)), + ("Negat", (0, 0)), + ("intercal", (0, 0)), + ("twoheadrighta", (0, 0)), + ("lefthar", (0, 0)), + ("middot", (183, 0)), + ("prc", (0, 0)), + ("Minu", (0, 0)), + ("tau", (0, 0)), + ("yacy", (0, 0)), + ("andand;", (10837, 0)), + ("LeftDownTeeVecto", (0, 0)), + ("ntriangl", (0, 0)), + ("scpolin", (0, 0)), + ("DownArrowUpArr", (0, 0)), + ("jmath;", (567, 0)), + ("ique", (0, 0)), + ("Ho", (0, 0)), + ("Ari", (0, 0)), + ("nscr;", (120003, 0)), + ("utilde;", (361, 0)), + ("succnsim", (0, 0)), + ("Bopf;", (120121, 0)), + ("InvisibleCo", (0, 0)), + ("barwe", (0, 0)), + ("lam", (0, 0)), + ("capcu", (0, 0)), + ("NotCu", (0, 0)), + ("rarrhk;", (8618, 0)), + ("bf", (0, 0)), + ("wfr;", (120116, 0)), + ("GreaterSl", (0, 0)), + ("wreat", (0, 0)), + ("leftthreetimes;", (8907, 0)), + ("a", (0, 0)), + ("mapsto", (0, 0)), + ("acute", (180, 0)), + ("mldr", (0, 0)), + ("VerticalLi", (0, 0)), + ("rnmid", (0, 0)), + ("Succ", (0, 0)), + ("LeftTriangle", (0, 0)), + ("dz", (0, 0)), + ("hy", (0, 0)), + ("LongLeftRig", (0, 0)), + ("LeftDoubleBrac", (0, 0)), + ("NonB", (0, 0)), + ("DownLeftTe", (0, 0)), + ("frac18;", (8539, 0)), + ("disi", (0, 0)), + ("Longleftrightarrow;", (10234, 0)), + ("lambda;", (955, 0)), + ("rBarr;", (10511, 0)), + ("boxt", (0, 0)), + ("nvle", (0, 0)), + ("ograv", (0, 0)), + ("poin", (0, 0)), + ("xlArr;", (10232, 0)), + ("rdquor;", (8221, 0)), + ("Iukcy", (0, 0)), + ("tp", (0, 0)), + ("ge;", (8805, 0)), + ("rceil;", (8969, 0)), + ("Lt;", (8810, 0)), + ("acirc;", (226, 0)), + ("bullet;", (8226, 0)), + ("sm", (0, 0)), + ("LJ", (0, 0)), + ("rightha", (0, 0)), + ("NotGreaterSlantEqual", (0, 0)), + ("hookleftarrow;", (8617, 0)), + ("qopf", (0, 0)), + ("ShortRightArrow", (0, 0)), + ("rppol", (0, 0)), + ("caps", (0, 0)), + ("quo", (0, 0)), + ("ycirc", (0, 0)), + ("digamm", (0, 0)), + ("LT", (60, 0)), + ("rlarr", (0, 0)), + ("Udblac", (0, 0)), + ("yen;", (165, 0)), + ("luruhar", (0, 0)), + ("ddarr", (0, 0)), + ("nexist;", (8708, 0)), + ("RoundImplie", (0, 0)), + ("rightharpoondo", (0, 0)), + ("nsqsupe;", (8931, 0)), + ("Minus", (0, 0)), + ("bigv", (0, 0)), + ("Backs", (0, 0)), + ("nleftrigh", (0, 0)), + ("plusa", (0, 0)), + ("rtr", (0, 0)), + ("NotLessG", (0, 0)), + ("Barw", (0, 0)), + ("ShortRightA", (0, 0)), + ("vrt", (0, 0)), + ("epl", (0, 0)), + ("lbra", (0, 0)), + ("nh", (0, 0)), + ("bigtriangledown", (0, 0)), + ("longmapst", (0, 0)), + ("LeftTriangleEqu", (0, 0)), + ("zac", (0, 0)), + ("bigtriangleup", (0, 0)), + ("lesdot;", (10879, 0)), + ("hai", (0, 0)), + ("llar", (0, 0)), + ("sma", (0, 0)), + ("fltns", (0, 0)), + ("Icirc", (206, 0)), + ("MediumSpa", (0, 0)), + ("cwconint;", (8754, 0)), + ("blacklo", (0, 0)), + ("Cl", (0, 0)), + ("ncedil;", (326, 0)), + ("lopf", (0, 0)), + ("Is", (0, 0)), + ("eqslan", (0, 0)), + ("ohbar", (0, 0)), + ("xodot;", (10752, 0)), + ("rarrb", (0, 0)), + ("supds", (0, 0)), + ("down", (0, 0)), + ("Differentia", (0, 0)), + ("nhA", (0, 0)), + ("LeftCeiling", (0, 0)), + ("measure", (0, 0)), + ("NotLessSlantE", (0, 0)), + ("supseteq", (0, 0)), + ("Ecir", (0, 0)), + ("Afr;", (120068, 0)), + ("barve", (0, 0)), + ("LeftDoubleBracket", (0, 0)), + ("downdowna", (0, 0)), + ("planckh;", (8462, 0)), + ("Aogon", (0, 0)), + ("plusb;", (8862, 0)), + ("center", (0, 0)), + ("PrecedesEqu", (0, 0)), + ("rsh;", (8625, 0)), + ("Mellin", (0, 0)), + ("SubsetEqu", (0, 0)), + ("gve", (0, 0)), + ("LeftArrowRightArrow", (0, 0)), + ("Ar", (0, 0)), + ("loang", (0, 0)), + ("supmul", (0, 0)), + ("Horizontal", (0, 0)), + ("Cac", (0, 0)), + ("supe;", (8839, 0)), + ("LeftRightArrow", (0, 0)), + ("gbreve;", (287, 0)), + ("LeftVect", (0, 0)), + ("micro;", (181, 0)), + ("fl", (0, 0)), + ("RightCeiling", (0, 0)), + ("em", (0, 0)), + ("Rca", (0, 0)), + ("OpenCurlyDoubl", (0, 0)), + ("bcong;", (8780, 0)), + ("HorizontalLin", (0, 0)), + ("nvHa", (0, 0)), + ("CloseCurlyDoubleQuo", (0, 0)), + ("rAr", (0, 0)), + ("RightDownVectorB", (0, 0)), + ("NotNestedGreaterGr", (0, 0)), + ("rightthreetime", (0, 0)), + ("nlArr;", (8653, 0)), + ("DownArrowUpAr", (0, 0)), + ("Iti", (0, 0)), + ("nsupseteqq", (0, 0)), + ("nrarr;", (8603, 0)), + ("lesdoto;", (10881, 0)), + ("angmsdah;", (10671, 0)), + ("OverPare", (0, 0)), + ("kfr", (0, 0)), + ("lsi", (0, 0)), + ("Be", (0, 0)), + ("ReverseU", (0, 0)), + ("low", (0, 0)), + ("asympeq;", (8781, 0)), + ("leftarrowtail", (0, 0)), + ("andv", (0, 0)), + ("iquest;", (191, 0)), + ("heartsuit", (0, 0)), + ("blacktrian", (0, 0)), + ("UnderBrack", (0, 0)), + ("vert", (0, 0)), + ("quat", (0, 0)), + ("cir", (0, 0)), + ("wf", (0, 0)), + ("downdownarrows", (0, 0)), + ("smallset", (0, 0)), + ("sccue", (0, 0)), + ("RightTriangleEqual;", (8885, 0)), + ("quaternio", (0, 0)), + ("DownRightTeeVecto", (0, 0)), + ("eqv", (0, 0)), + ("npreceq", (0, 0)), + ("Zac", (0, 0)), + ("oli", (0, 0)), + ("parsim", (0, 0)), + ("supdsub", (0, 0)), + ("equiv;", (8801, 0)), + ("ola", (0, 0)), + ("dtdot;", (8945, 0)), + ("raempt", (0, 0)), + ("LeftAngle", (0, 0)), + ("nshort", (0, 0)), + ("Rarrtl", (0, 0)), + ("frac4", (0, 0)), + ("ltrP", (0, 0)), + ("curvearrow", (0, 0)), + ("mdash", (0, 0)), + ("nearhk", (0, 0)), + ("suplar", (0, 0)), + ("GreaterEqualLes", (0, 0)), + ("kjcy", (0, 0)), + ("vartheta;", (977, 0)), + ("llco", (0, 0)), + ("boxHU;", (9577, 0)), + ("rightthr", (0, 0)), + ("nharr", (0, 0)), + ("para", (182, 0)), + ("W", (0, 0)), + ("andslope", (0, 0)), + ("sqsupsete", (0, 0)), + ("CircleMinus;", (8854, 0)), + ("nexi", (0, 0)), + ("Hilber", (0, 0)), + ("iex", (0, 0)), + ("UnionPlu", (0, 0)), + ("Bumpe", (0, 0)), + ("acu", (0, 0)), + ("cw", (0, 0)), + ("Eop", (0, 0)), + ("bigupl", (0, 0)), + ("mapstodown;", (8615, 0)), + ("hslash", (0, 0)), + ("Congruent", (0, 0)), + ("nGg", (0, 0)), + ("supE;", (10950, 0)), + ("parsl", (0, 0)), + ("lsa", (0, 0)), + ("spadesuit;", (9824, 0)), + ("ju", (0, 0)), + ("Juk", (0, 0)), + ("cwint;", (8753, 0)), + ("Equilibrium;", (8652, 0)), + ("Lon", (0, 0)), + ("NotNestedLe", (0, 0)), + ("succsim", (0, 0)), + ("varr", (0, 0)), + ("rbrke", (0, 0)), + ("Precedes", (0, 0)), + ("angmsd;", (8737, 0)), + ("lth", (0, 0)), + ("dal", (0, 0)), + ("GJc", (0, 0)), + ("ldrushar", (0, 0)), + ("Upsi;", (978, 0)), + ("nLtv", (0, 0)), + ("rationa", (0, 0)), + ("downharpoonr", (0, 0)), + ("DoubleDownArrow", (0, 0)), + ("urcorner", (0, 0)), + ("tscy;", (1094, 0)), + ("upharpoonleft;", (8639, 0)), + ("vBarv", (0, 0)), + ("square;", (9633, 0)), + ("HumpEqua", (0, 0)), + ("jcy;", (1081, 0)), + ("gtlPar", (0, 0)), + ("nsucceq", (0, 0)), + ("sacute;", (347, 0)), + ("eta;", (951, 0)), + ("bop", (0, 0)), + ("PrecedesSlantEqual;", (8828, 0)), + ("VerticalB", (0, 0)), + ("NotSucceedsSlantEq", (0, 0)), + ("vsupnE;", (10956, 65024)), + ("hoa", (0, 0)), + ("ea", (0, 0)), + ("leftrighth", (0, 0)), + ("LT;", (60, 0)), + ("divo", (0, 0)), + ("sra", (0, 0)), + ("DownLeftR", (0, 0)), + ("lopa", (0, 0)), + ("Esim;", (10867, 0)), + ("rhov", (0, 0)), + ("xha", (0, 0)), + ("NotNestedLessLess", (0, 0)), + ("DoubleLongLeftRightAr", (0, 0)), + ("kcy", (0, 0)), + ("Zop", (0, 0)), + ("nvdash;", (8876, 0)), + ("NonBreakin", (0, 0)), + ("NotLeftTriangleE", (0, 0)), + ("subedot", (0, 0)), + ("LeftDouble", (0, 0)), + ("hba", (0, 0)), + ("DoubleUpArr", (0, 0)), + ("D", (0, 0)), + ("bull;", (8226, 0)), + ("EmptySmallSqu", (0, 0)), + ("Rule", (0, 0)), + ("RightTeeV", (0, 0)), + ("Imag", (0, 0)), + ("Sh", (0, 0)), + ("lesdo", (0, 0)), + ("EmptyVery", (0, 0)), + ("nla", (0, 0)), + ("nv", (0, 0)), + ("botto", (0, 0)), + ("NotEle", (0, 0)), + ("InvisibleComm", (0, 0)), + ("cen", (0, 0)), + ("QU", (0, 0)), + ("llt", (0, 0)), + ("boxhu", (0, 0)), + ("psi", (0, 0)), + ("LongLeftArr", (0, 0)), + ("NotSucceedsEqual;", (10928, 824)), + ("bempt", (0, 0)), + ("mcom", (0, 0)), + ("p", (0, 0)), + ("Abrev", (0, 0)), + ("Longl", (0, 0)), + ("ClockwiseContour", (0, 0)), + ("NotSucceedsTi", (0, 0)), + ("curlyeqsuc", (0, 0)), + ("rpargt", (0, 0)), + ("lacut", (0, 0)), + ("TildeFullEqual;", (8773, 0)), + ("NotRightTri", (0, 0)), + ("rsaqu", (0, 0)), + ("shortparall", (0, 0)), + ("homt", (0, 0)), + ("nvg", (0, 0)), + ("rlhar", (0, 0)), + ("nr", (0, 0)), + ("bprime;", (8245, 0)), + ("zeta;", (950, 0)), + ("LeftTriangleBa", (0, 0)), + ("supsetn", (0, 0)), + ("kgreen;", (312, 0)), + ("uua", (0, 0)), + ("exi", (0, 0)), + ("LongLeftRightArro", (0, 0)), + ("dzc", (0, 0)), + ("Pcy;", (1055, 0)), + ("SquareSupersetEq", (0, 0)), + ("rba", (0, 0)), + ("Clockwis", (0, 0)), + ("DJc", (0, 0)), + ("fpartint;", (10765, 0)), + ("gesles", (0, 0)), + ("CloseCurly", (0, 0)), + ("lowbar;", (95, 0)), + ("toea", (0, 0)), + ("OverParenthesis", (0, 0)), + ("measu", (0, 0)), + ("inodo", (0, 0)), + ("jop", (0, 0)), + ("Psi", (0, 0)), + ("Yscr", (0, 0)), + ("RightUpVect", (0, 0)), + ("NotGreaterGreat", (0, 0)), + ("acy;", (1072, 0)), + ("ulcor", (0, 0)), + ("gla;", (10917, 0)), + ("emacr", (0, 0)), + ("nsupe", (0, 0)), + ("lltri;", (9722, 0)), + ("COPY;", (169, 0)), + ("NotSucceedsSl", (0, 0)), + ("lagran", (0, 0)), + ("thetav", (0, 0)), + ("boxVL", (0, 0)), + ("risingdo", (0, 0)), + ("NotSucceedsTil", (0, 0)), + ("blan", (0, 0)), + ("NotTildeFullEqual", (0, 0)), + ("DoubleLongLef", (0, 0)), + ("top", (0, 0)), + ("tin", (0, 0)), + ("olcross", (0, 0)), + ("intege", (0, 0)), + ("YIcy", (0, 0)), + ("dw", (0, 0)), + ("nleftrightar", (0, 0)), + ("doteq", (0, 0)), + ("S", (0, 0)), + ("egs", (0, 0)), + ("jmat", (0, 0)), + ("vdas", (0, 0)), + ("vsup", (0, 0)), + ("DZcy;", (1039, 0)), + ("rational", (0, 0)), + ("rthr", (0, 0)), + ("imagpart", (0, 0)), + ("RightUpDownVect", (0, 0)), + ("GreaterGrea", (0, 0)), + ("Uri", (0, 0)), + ("blacktriang", (0, 0)), + ("GreaterSlantE", (0, 0)), + ("ncy", (0, 0)), + ("colone;", (8788, 0)), + ("rpargt;", (10644, 0)), + ("lH", (0, 0)), + ("lgE", (0, 0)), + ("ari", (0, 0)), + ("Vf", (0, 0)), + ("Oma", (0, 0)), + ("lAtail;", (10523, 0)), + ("escr;", (8495, 0)), + ("cylcty", (0, 0)), + ("Updownarr", (0, 0)), + ("spades", (0, 0)), + ("DDotrahd;", (10513, 0)), + ("AEl", (0, 0)), + ("fem", (0, 0)), + ("image;", (8465, 0)), + ("CapitalDifferential", (0, 0)), + ("leftrightsquig", (0, 0)), + ("prurel", (0, 0)), + ("fallin", (0, 0)), + ("agr", (0, 0)), + ("DoubleUpA", (0, 0)), + ("uhar", (0, 0)), + ("DownLeftVectorB", (0, 0)), + ("RightAngleBrac", (0, 0)), + ("dsol;", (10742, 0)), + ("vcy;", (1074, 0)), + ("NestedGr", (0, 0)), + ("lopar", (0, 0)), + ("Lmid", (0, 0)), + ("aeli", (0, 0)), + ("nsubset;", (8834, 8402)), + ("LeftRightArr", (0, 0)), + ("longlef", (0, 0)), + ("leftleft", (0, 0)), + ("NewLin", (0, 0)), + ("dash;", (8208, 0)), + ("Udbl", (0, 0)), + ("thickappro", (0, 0)), + ("LeftUpV", (0, 0)), + ("awconint", (0, 0)), + ("DoubleLeftArr", (0, 0)), + ("qfr", (0, 0)), + ("DoubleVert", (0, 0)), + ("rob", (0, 0)), + ("hArr;", (8660, 0)), + ("backepsilo", (0, 0)), + ("DSc", (0, 0)), + ("RightVe", (0, 0)), + ("ba", (0, 0)), + ("bigcup", (0, 0)), + ("lv", (0, 0)), + ("Rev", (0, 0)), + ("fltns;", (9649, 0)), + ("lAtail", (0, 0)), + ("OElig", (0, 0)), + ("looparrowlef", (0, 0)), + ("swarr", (0, 0)), + ("olt;", (10688, 0)), + ("Zc", (0, 0)), + ("rightlefta", (0, 0)), + ("OEl", (0, 0)), + ("triangleright;", (9657, 0)), + ("cupbrca", (0, 0)), + ("square", (0, 0)), + ("Cr", (0, 0)), + ("longleftrig", (0, 0)), + ("lced", (0, 0)), + ("As", (0, 0)), + ("eacute", (233, 0)), + ("backsimeq;", (8909, 0)), + ("rightharp", (0, 0)), + ("not;", (172, 0)), + ("ord", (0, 0)), + ("Gbreve;", (286, 0)), + ("lve", (0, 0)), + ("rarrb;", (8677, 0)), + ("hairsp", (0, 0)), + ("Pi;", (928, 0)), + ("ltc", (0, 0)), + ("Dcar", (0, 0)), + ("nvlA", (0, 0)), + ("Dag", (0, 0)), + ("Imacr;", (298, 0)), + ("fi", (0, 0)), + ("leftarrowtai", (0, 0)), + ("Ascr", (0, 0)), + ("midast;", (42, 0)), + ("aogo", (0, 0)), + ("AElig", (198, 0)), + ("RightArrowL", (0, 0)), + ("oh", (0, 0)), + ("I", (0, 0)), + ("DiacriticalG", (0, 0)), + ("NestedLessLess;", (8810, 0)), + ("Int;", (8748, 0)), + ("capdo", (0, 0)), + ("straighte", (0, 0)), + ("NotExis", (0, 0)), + ("CupC", (0, 0)), + ("napprox", (0, 0)), + ("NotSquareSubsetEqual;", (8930, 0)), + ("ssmi", (0, 0)), + ("loti", (0, 0)), + ("SucceedsEqu", (0, 0)), + ("hf", (0, 0)), + ("Dash", (0, 0)), + ("lceil;", (8968, 0)), + ("sim", (0, 0)), + ("tcar", (0, 0)), + ("ccaps", (0, 0)), + ("frac12;", (189, 0)), + ("ufr", (0, 0)), + ("iff", (0, 0)), + ("noti", (0, 0)), + ("Das", (0, 0)), + ("Tfr", (0, 0)), + ("apE;", (10864, 0)), + ("equa", (0, 0)), + ("leftleftarr", (0, 0)), + ("NewL", (0, 0)), + ("ShortRi", (0, 0)), + ("ddagge", (0, 0)), + ("diamondsu", (0, 0)), + ("Ya", (0, 0)), + ("ul", (0, 0)), + ("LongRightArrow", (0, 0)), + ("Hilbe", (0, 0)), + ("ntgl;", (8825, 0)), + ("DoubleLeftRigh", (0, 0)), + ("sstarf", (0, 0)), + ("blank", (0, 0)), + ("vopf;", (120167, 0)), + ("uhbl", (0, 0)), + ("NotLessEqual", (0, 0)), + ("NotElem", (0, 0)), + ("NotLeftTria", (0, 0)), + ("DoubleContou", (0, 0)), + ("vopf", (0, 0)), + ("Xo", (0, 0)), + ("lmoust", (0, 0)), + ("NestedGreaterGrea", (0, 0)), + ("nt", (0, 0)), + ("NegativeV", (0, 0)), + ("ShortUpArr", (0, 0)), + ("alep", (0, 0)), + ("uopf;", (120166, 0)), + ("LeftDoubleBrack", (0, 0)), + ("ngE", (0, 0)), + ("NJc", (0, 0)), + ("Precede", (0, 0)), + ("hybull", (0, 0)), + ("hybu", (0, 0)), + ("vartrianglele", (0, 0)), + ("DoubleLeftRightArr", (0, 0)), + ("Ccaron;", (268, 0)), + ("range;", (10661, 0)), + ("angle", (0, 0)), + ("Cco", (0, 0)), + ("SucceedsEqua", (0, 0)), + ("nisd;", (8954, 0)), + ("NotSubset", (0, 0)), + ("rcedi", (0, 0)), + ("kjcy;", (1116, 0)), + ("Wedge;", (8896, 0)), + ("nleftarrow;", (8602, 0)), + ("there4", (0, 0)), + ("Iogon;", (302, 0)), + ("minusb", (0, 0)), + ("longl", (0, 0)), + ("NotSupersetEqua", (0, 0)), + ("trianglele", (0, 0)), + ("hel", (0, 0)), + ("ltrPar;", (10646, 0)), + ("NotGreaterFullEqua", (0, 0)), + ("CloseCur", (0, 0)), + ("aelig", (230, 0)), + ("ltrie", (0, 0)), + ("tstrok;", (359, 0)), + ("fopf", (0, 0)), + ("upharpoonl", (0, 0)), + ("tshc", (0, 0)), + ("imo", (0, 0)), + ("rthree", (0, 0)), + ("iinfin", (0, 0)), + ("Longleftri", (0, 0)), + ("oda", (0, 0)), + ("EmptyVerySma", (0, 0)), + ("lang;", (10216, 0)), + ("rbbrk;", (10099, 0)), + ("nbump", (0, 0)), + ("Wscr", (0, 0)), + ("LeftRightA", (0, 0)), + ("sesw", (0, 0)), + ("oint", (0, 0)), + ("pm;", (177, 0)), + ("nparal", (0, 0)), + ("subsup;", (10963, 0)), + ("Tced", (0, 0)), + ("xnis", (0, 0)), + ("lst", (0, 0)), + ("utdot;", (8944, 0)), + ("Yfr", (0, 0)), + ("NegativeThin", (0, 0)), + ("orv", (0, 0)), + ("Mu;", (924, 0)), + ("agrave", (224, 0)), + ("del", (0, 0)), + ("GreaterEqualL", (0, 0)), + ("dwangl", (0, 0)), + ("approx", (0, 0)), + ("ClockwiseC", (0, 0)), + ("Dsc", (0, 0)), + ("doublebarwedg", (0, 0)), + ("DownArrowU", (0, 0)), + ("lrtri", (0, 0)), + ("NegativeVeryThinSpace;", (8203, 0)), + ("bump;", (8782, 0)), + ("bigcirc", (0, 0)), + ("divideontime", (0, 0)), + ("uph", (0, 0)), + ("upharpoonleft", (0, 0)), + ("bigwed", (0, 0)), + ("GreaterLess", (0, 0)), + ("Invisible", (0, 0)), + ("RightTee", (0, 0)), + ("measuredan", (0, 0)), + ("DoubleLef", (0, 0)), + ("NestedGre", (0, 0)), + ("eDDot;", (10871, 0)), + ("Ccirc;", (264, 0)), + ("RightUpD", (0, 0)), + ("Sig", (0, 0)), + ("Scedi", (0, 0)), + ("NotNestedGrea", (0, 0)), + ("cwconi", (0, 0)), + ("DoubleContourInteg", (0, 0)), + ("curvearrowri", (0, 0)), + ("lfr;", (120105, 0)), + ("olin", (0, 0)), + ("vlt", (0, 0)), + ("RuleDela", (0, 0)), + ("imof;", (8887, 0)), + ("RightTeeVect", (0, 0)), + ("Mu", (0, 0)), + ("gescc", (0, 0)), + ("NotSuperset;", (8835, 8402)), + ("curlyeqsu", (0, 0)), + ("Element", (0, 0)), + ("ut", (0, 0)), + ("boxminu", (0, 0)), + ("DoubleUpDownA", (0, 0)), + ("xoplus", (0, 0)), + ("varkapp", (0, 0)), + ("Clock", (0, 0)), + ("Superset", (0, 0)), + ("sha", (0, 0)), + ("cap", (0, 0)), + ("Ucy", (0, 0)), + ("neAr", (0, 0)), + ("isind", (0, 0)), + ("npolint;", (10772, 0)), + ("bemptyv", (0, 0)), + ("cuw", (0, 0)), + ("Leftarro", (0, 0)), + ("EmptyVerySmallSqu", (0, 0)), + ("Cu", (0, 0)), + ("squar", (0, 0)), + ("Bec", (0, 0)), + ("Longleftarrow", (0, 0)), + ("LeftTriangl", (0, 0)), + ("nva", (0, 0)), + ("odsold", (0, 0)), + ("straightepsil", (0, 0)), + ("circlearrowleft", (0, 0)), + ("Cros", (0, 0)), + ("OEli", (0, 0)), + ("boxUL", (0, 0)), + ("DoubleLongR", (0, 0)), + ("NotTildeT", (0, 0)), + ("boxVl;", (9570, 0)), + ("gE;", (8807, 0)), + ("ThickSpac", (0, 0)), + ("NotL", (0, 0)), + ("longri", (0, 0)), + ("eas", (0, 0)), + ("ThickSpace", (0, 0)), + ("Rfr", (0, 0)), + ("Prod", (0, 0)), + ("pr;", (8826, 0)), + ("dot;", (729, 0)), + ("duarr;", (8693, 0)), + ("T", (0, 0)), + ("hbar", (0, 0)), + ("ange", (0, 0)), + ("duarr", (0, 0)), + ("ufish", (0, 0)), + ("Del;", (8711, 0)), + ("xv", (0, 0)), + ("SucceedsSlant", (0, 0)), + ("ofcir;", (10687, 0)), + ("forall;", (8704, 0)), + ("reals;", (8477, 0)), + ("afr;", (120094, 0)), + ("rightrigh", (0, 0)), + ("cirfni", (0, 0)), + ("rfisht;", (10621, 0)), + ("nacut", (0, 0)), + ("Sa", (0, 0)), + ("VeryThin", (0, 0)), + ("emp", (0, 0)), + ("angrtvbd", (0, 0)), + ("iot", (0, 0)), + ("cup;", (8746, 0)), + ("ngsim;", (8821, 0)), + ("latail", (0, 0)), + ("dtd", (0, 0)), + ("neA", (0, 0)), + ("NotSupersetEqual", (0, 0)), + ("Lang", (0, 0)), + ("Exp", (0, 0)), + ("supedot;", (10948, 0)), + ("SquareSupe", (0, 0)), + ("eta", (0, 0)), + ("slarr;", (8592, 0)), + ("xdtr", (0, 0)), + ("euro;", (8364, 0)), + ("nvrA", (0, 0)), + ("NotSuccee", (0, 0)), + ("mnplus", (0, 0)), + ("emptyset", (0, 0)), + ("gopf;", (120152, 0)), + ("profsu", (0, 0)), + ("RightDoubleBra", (0, 0)), + ("angmsdab", (0, 0)), + ("Leftrightar", (0, 0)), + ("zcaron;", (382, 0)), + ("timesb;", (8864, 0)), + ("curlywedg", (0, 0)), + ("QUO", (0, 0)), + ("NotReverse", (0, 0)), + ("ogra", (0, 0)), + ("hstr", (0, 0)), + ("NotNe", (0, 0)), + ("l", (0, 0)), + ("nab", (0, 0)), + ("bepsi;", (1014, 0)), + ("upar", (0, 0)), + ("Subse", (0, 0)), + ("rs", (0, 0)), + ("Congruent;", (8801, 0)), + ("NotGreaterLes", (0, 0)), + ("juk", (0, 0)), + ("Cfr;", (8493, 0)), + ("nleftrightarrow;", (8622, 0)), + ("gel;", (8923, 0)), + ("Leftrig", (0, 0)), + ("Uarroci", (0, 0)), + ("fnof", (0, 0)), + ("angmsdaf;", (10669, 0)), + ("YUc", (0, 0)), + ("Tcedi", (0, 0)), + ("les", (0, 0)), + ("loze", (0, 0)), + ("lesseqqgtr", (0, 0)), + ("percnt;", (37, 0)), + ("bne;", (61, 8421)), + ("nrightarrow", (0, 0)), + ("piv;", (982, 0)), + ("lsim;", (8818, 0)), + ("COP", (0, 0)), + ("blacksquar", (0, 0)), + ("DoubleVertica", (0, 0)), + ("Reverse", (0, 0)), + ("vsupne", (0, 0)), + ("It", (0, 0)), + ("Popf;", (8473, 0)), + ("GreaterGr", (0, 0)), + ("bbrk;", (9141, 0)), + ("Pl", (0, 0)), + ("NotCupCa", (0, 0)), + ("simd", (0, 0)), + ("boxtim", (0, 0)), + ("GreaterSlantEqu", (0, 0)), + ("GreaterLes", (0, 0)), + ("LessEqualG", (0, 0)), + ("ntrianglerighteq", (0, 0)), + ("ho", (0, 0)), + ("HumpEqual", (0, 0)), + ("hookleftarro", (0, 0)), + ("smid", (0, 0)), + ("shchcy;", (1097, 0)), + ("rbra", (0, 0)), + ("LeftArrowRig", (0, 0)), + ("Doub", (0, 0)), + ("bernou;", (8492, 0)), + ("Vdas", (0, 0)), + ("dote", (0, 0)), + ("eac", (0, 0)), + ("gneqq", (0, 0)), + ("ApplyFunc", (0, 0)), + ("rationals;", (8474, 0)), + ("kapp", (0, 0)), + ("NotG", (0, 0)), + ("ag", (0, 0)), + ("supplu", (0, 0)), + ("sec", (0, 0)), + ("Expone", (0, 0)), + ("ctdo", (0, 0)), + ("pound", (163, 0)), + ("NotGreaterGreater;", (8811, 824)), + ("simplu", (0, 0)), + ("Exi", (0, 0)), + ("st", (0, 0)), + ("kopf;", (120156, 0)), + ("zwnj;", (8204, 0)), + ("UnionPlus;", (8846, 0)), + ("ntriangleri", (0, 0)), + ("xdtri", (0, 0)), + ("supmult", (0, 0)), + ("The", (0, 0)), + ("blacklozenge", (0, 0)), + ("ngeqsl", (0, 0)), + ("iio", (0, 0)), + ("fallingdotseq;", (8786, 0)), + ("Co", (0, 0)), + ("bcong", (0, 0)), + ("lvertneqq;", (8808, 65024)), + ("LeftUpTeeVec", (0, 0)), + ("triangledow", (0, 0)), + ("Uparrow;", (8657, 0)), + ("varep", (0, 0)), + ("R", (0, 0)), + ("alefsym", (0, 0)), + ("RBar", (0, 0)), + ("lceil", (0, 0)), + ("DownRightVector", (0, 0)), + ("suph", (0, 0)), + ("DownAr", (0, 0)), + ("ZeroWidth", (0, 0)), + ("NotRi", (0, 0)), + ("precsim", (0, 0)), + ("xop", (0, 0)), + ("Mfr", (0, 0)), + ("pluss", (0, 0)), + ("ogt;", (10689, 0)), + ("gtlP", (0, 0)), + ("nwArr;", (8662, 0)), + ("rarrl", (0, 0)), + ("larrp", (0, 0)), + ("ShortRigh", (0, 0)), + ("lneqq", (0, 0)), + ("Cconint", (0, 0)), + ("CounterClockwi", (0, 0)), + ("inodot;", (305, 0)), + ("planc", (0, 0)), + ("nsupseteqq;", (10950, 824)), + ("Updownarrow;", (8661, 0)), + ("DD;", (8517, 0)), + ("black", (0, 0)), + ("gtcir;", (10874, 0)), + ("righta", (0, 0)), + ("Uum", (0, 0)), + ("NotLess;", (8814, 0)), + ("pu", (0, 0)), + ("SquareIntersecti", (0, 0)), + ("rarr;", (8594, 0)), + ("capand", (0, 0)), + ("nrtri;", (8939, 0)), + ("LeftUpDownVect", (0, 0)), + ("trade;", (8482, 0)), + ("Eacut", (0, 0)), + ("sqsups", (0, 0)), + ("CircleD", (0, 0)), + ("rsaquo;", (8250, 0)), + ("sum", (0, 0)), + ("vell", (0, 0)), + ("ZeroWid", (0, 0)), + ("hscr", (0, 0)), + ("Subset", (0, 0)), + ("Gcirc;", (284, 0)), + ("awconi", (0, 0)), + ("VDas", (0, 0)), + ("Ouml", (214, 0)), + ("Im", (0, 0)), + ("sdo", (0, 0)), + ("Ecirc", (202, 0)), + ("supsetneqq;", (10956, 0)), + ("Scar", (0, 0)), + ("kgreen", (0, 0)), + ("ncaron;", (328, 0)), + ("doublebarwedge", (0, 0)), + ("femal", (0, 0)), + ("gammad;", (989, 0)), + ("dlcorn", (0, 0)), + ("twoh", (0, 0)), + ("RuleDelay", (0, 0)), + ("submul", (0, 0)), + ("mapsto;", (8614, 0)), + ("rtime", (0, 0)), + ("scar", (0, 0)), + ("Ecaron;", (282, 0)), + ("late;", (10925, 0)), + ("QUOT", (34, 0)), + ("aring", (229, 0)), + ("Rscr;", (8475, 0)), + ("Hstro", (0, 0)), + ("ZHcy", (0, 0)), + ("anda", (0, 0)), + ("Elem", (0, 0)), + ("nsucc", (0, 0)), + ("prna", (0, 0)), + ("NotHumpDownHum", (0, 0)), + ("succapp", (0, 0)), + ("DoubleVerticalBar", (0, 0)), + ("sigmav;", (962, 0)), + ("TRA", (0, 0)), + ("ofci", (0, 0)), + ("UpTee;", (8869, 0)), + ("zdo", (0, 0)), + ("NotDoubleVer", (0, 0)), + ("delta", (0, 0)), + ("rbrke;", (10636, 0)), + ("zopf", (0, 0)), + ("lesdotor;", (10883, 0)), + ("sig", (0, 0)), + ("epa", (0, 0)), + ("divideontimes;", (8903, 0)), + ("NotTilde;", (8769, 0)), + ("NotPrecedesSlantEq", (0, 0)), + ("Eo", (0, 0)), + ("UpDownA", (0, 0)), + ("frown;", (8994, 0)), + ("DotEqual", (0, 0)), + ("IO", (0, 0)), + ("iuml", (239, 0)), + ("lharul", (0, 0)), + ("falli", (0, 0)), + ("udhar;", (10606, 0)), + ("dfr;", (120097, 0)), + ("Qopf;", (8474, 0)), + ("frac14;", (188, 0)), + ("raemptyv", (0, 0)), + ("nprece", (0, 0)), + ("rdquor", (0, 0)), + ("vnsup;", (8835, 8402)), + ("iacu", (0, 0)), + ("longrightarrow", (0, 0)), + ("leftrightarrows", (0, 0)), + ("prop", (0, 0)), + ("orde", (0, 0)), + ("otimesa", (0, 0)), + ("suplarr;", (10619, 0)), + ("macr;", (175, 0)), + ("grav", (0, 0)), + ("napos", (0, 0)), + ("weierp;", (8472, 0)), + ("leftharpoon", (0, 0)), + ("RightTeeVec", (0, 0)), + ("GreaterEqualLe", (0, 0)), + ("SO", (0, 0)), + ("bdquo;", (8222, 0)), + ("NegativeMediumSpac", (0, 0)), + ("vscr", (0, 0)), + ("nop", (0, 0)), + ("nsups", (0, 0)), + ("boxhd;", (9516, 0)), + ("nea", (0, 0)), + ("Ne", (0, 0)), + ("EmptyVerySm", (0, 0)), + ("zh", (0, 0)), + ("Smal", (0, 0)), + ("oopf", (0, 0)), + ("hA", (0, 0)), + ("Au", (0, 0)), + ("apE", (0, 0)), + ("Eogo", (0, 0)), + ("int;", (8747, 0)), + ("Urin", (0, 0)), + ("fras", (0, 0)), + ("leftrightha", (0, 0)), + ("rtrie;", (8885, 0)), + ("nvsi", (0, 0)), + ("eogon;", (281, 0)), + ("OpenCurlyQuot", (0, 0)), + ("lscr", (0, 0)), + ("ufisht;", (10622, 0)), + ("Gbr", (0, 0)), + ("NotSquareSupersetEq", (0, 0)), + ("capcup;", (10823, 0)), + ("DoubleLeft", (0, 0)), + ("oplus", (0, 0)), + ("equivDD", (0, 0)), + ("LeftRightVec", (0, 0)), + ("dj", (0, 0)), + ("DownArrowUp", (0, 0)), + ("Epsilon;", (917, 0)), + ("Ubrev", (0, 0)), + ("RightDownVect", (0, 0)), + ("Lang;", (10218, 0)), + ("laq", (0, 0)), + ("Poincarep", (0, 0)), + ("vpr", (0, 0)), + ("straighteps", (0, 0)), + ("phi", (0, 0)), + ("quaternions;", (8461, 0)), + ("nsqsupe", (0, 0)), + ("RB", (0, 0)), + ("varnoth", (0, 0)), + ("realine", (0, 0)), + ("rB", (0, 0)), + ("curvea", (0, 0)), + ("UpperL", (0, 0)), + ("Io", (0, 0)), + ("RightUpTeeVector", (0, 0)), + ("NotRightTriangle", (0, 0)), + ("ltdo", (0, 0)), + ("nVd", (0, 0)), + ("bc", (0, 0)), + ("nshortpa", (0, 0)), + ("nu", (0, 0)), + ("midas", (0, 0)), + ("angmsd", (0, 0)), + ("cup", (0, 0)), + ("heartsu", (0, 0)), + ("Tstro", (0, 0)), + ("dfis", (0, 0)), + ("lesseqgtr;", (8922, 0)), + ("bnequiv;", (8801, 8421)), + ("rcub", (0, 0)), + ("orsl", (0, 0)), + ("Lstr", (0, 0)), + ("ForAl", (0, 0)), + ("downdo", (0, 0)), + ("npar;", (8742, 0)), + ("rx;", (8478, 0)), + ("curarr;", (8631, 0)), + ("Emacr", (0, 0)), + ("sigma", (0, 0)), + ("topc", (0, 0)), + ("Gcy;", (1043, 0)), + ("nLef", (0, 0)), + ("spad", (0, 0)), + ("NotRightTriangleEqu", (0, 0)), + ("gi", (0, 0)), + ("vfr", (0, 0)), + ("CounterClockwiseContou", (0, 0)), + ("lsc", (0, 0)), + ("downd", (0, 0)), + ("ap;", (8776, 0)), + ("ubrcy", (0, 0)), + ("piv", (0, 0)), + ("backpr", (0, 0)), + ("DiacriticalTil", (0, 0)), + ("Hori", (0, 0)), + ("supdsub;", (10968, 0)), + ("scns", (0, 0)), + ("precnsi", (0, 0)), + ("Horizonta", (0, 0)), + ("VerticalSeparat", (0, 0)), + ("angst", (0, 0)), + ("VeryThinS", (0, 0)), + ("uring", (0, 0)), + ("Itild", (0, 0)), + ("ShortDownArr", (0, 0)), + ("nd", (0, 0)), + ("Preced", (0, 0)), + ("glE", (0, 0)), + ("G", (0, 0)), + ("plustwo;", (10791, 0)), + ("notindo", (0, 0)), + ("CounterC", (0, 0)), + ("Iacute;", (205, 0)), + ("looparrowrigh", (0, 0)), + ("Hfr", (0, 0)), + ("isinE;", (8953, 0)), + ("gtques", (0, 0)), + ("Oscr", (0, 0)), + ("Ps", (0, 0)), + ("DoubleLeftArro", (0, 0)), + ("Ot", (0, 0)), + ("Qs", (0, 0)), + ("curarr", (0, 0)), + ("RightUpT", (0, 0)), + ("check;", (10003, 0)), + ("trpezi", (0, 0)), + ("bla", (0, 0)), + ("intcal", (0, 0)), + ("LeftUpVe", (0, 0)), + ("Fscr", (0, 0)), + ("uplu", (0, 0)), + ("npoli", (0, 0)), + ("lfisht;", (10620, 0)), + ("precc", (0, 0)), + ("lotime", (0, 0)), + ("nleftar", (0, 0)), + ("Tr", (0, 0)), + ("quot;", (34, 0)), + ("gimel;", (8503, 0)), + ("twoheadlefta", (0, 0)), + ("jcir", (0, 0)), + ("Dstr", (0, 0)), + ("Backslash;", (8726, 0)), + ("hookleftarrow", (0, 0)), + ("Oslash", (216, 0)), + ("orslop", (0, 0)), + ("Wfr;", (120090, 0)), + ("NestedLe", (0, 0)), + ("nvap;", (8781, 8402)), + ("Vopf", (0, 0)), + ("strns;", (175, 0)), + ("nLl;", (8920, 824)), + ("varkap", (0, 0)), + ("backp", (0, 0)), + ("ffilig", (0, 0)), + ("image", (0, 0)), + ("Zcaron;", (381, 0)), + ("OE", (0, 0)), + ("frown", (0, 0)), + ("Implies;", (8658, 0)), + ("dca", (0, 0)), + ("ApplyFunction", (0, 0)), + ("DoubleLongRig", (0, 0)), + ("oas", (0, 0)), + ("prs", (0, 0)), + ("HAR", (0, 0)), + ("SmallCirc", (0, 0)), + ("succnappro", (0, 0)), + ("Unde", (0, 0)), + ("RightDownTeeV", (0, 0)), + ("star;", (9734, 0)), + ("notinvb;", (8951, 0)), + ("nvlAr", (0, 0)), + ("NotRightTriangl", (0, 0)), + ("prure", (0, 0)), + ("DownRightT", (0, 0)), + ("P", (0, 0)), + ("subpl", (0, 0)), + ("Thic", (0, 0)), + ("TRADE", (0, 0)), + ("rH", (0, 0)), + ("elinter", (0, 0)), + ("M", (0, 0)), + ("boxvL", (0, 0)), + ("NotSubsetEq", (0, 0)), + ("lagr", (0, 0)), + ("vDa", (0, 0)), + ("itilde;", (297, 0)), + ("blacktrianglerig", (0, 0)), + ("agrave;", (224, 0)), + ("Lcy;", (1051, 0)), + ("apacir;", (10863, 0)), + ("sqsube;", (8849, 0)), + ("roan", (0, 0)), + ("ts", (0, 0)), + ("lesge", (0, 0)), + ("vartrianglerig", (0, 0)), + ("cemptyv;", (10674, 0)), + ("nscc", (0, 0)), + ("verb", (0, 0)), + ("ubrcy;", (1118, 0)), + ("dotminu", (0, 0)), + ("dstr", (0, 0)), + ("auml;", (228, 0)), + ("rtrif", (0, 0)), + ("NotGreaterG", (0, 0)), + ("nvltrie", (0, 0)), + ("Leftrightarrow;", (8660, 0)), + ("CHcy;", (1063, 0)), + ("curvearrowr", (0, 0)), + ("NotLessGreater;", (8824, 0)), + ("suppl", (0, 0)), + ("FilledSmallSquar", (0, 0)), + ("Horiz", (0, 0)), + ("CloseC", (0, 0)), + ("precappr", (0, 0)), + ("Atil", (0, 0)), + ("opl", (0, 0)), + ("nLeft", (0, 0)), + ("Ba", (0, 0)), + ("LeftVector", (0, 0)), + ("UpArrowB", (0, 0)), + ("InvisibleC", (0, 0)), + ("kgree", (0, 0)), + ("Dfr;", (120071, 0)), + ("bigcirc;", (9711, 0)), + ("NotCong", (0, 0)), + ("gesdotol", (0, 0)), + ("DownLeftRight", (0, 0)), + ("hcir", (0, 0)), + ("sqsubseteq;", (8849, 0)), + ("succnappr", (0, 0)), + ("rang;", (10217, 0)), + ("leg", (0, 0)), + ("Utilde", (0, 0)), + ("eqvparsl;", (10725, 0)), + ("LeftAngleBracket;", (10216, 0)), + ("pcy;", (1087, 0)), + ("RightDownVector;", (8642, 0)), + ("vartrianglel", (0, 0)), + ("HorizontalLine;", (9472, 0)), + ("downar", (0, 0)), + ("backepsilon;", (1014, 0)), + ("t", (0, 0)), + ("spadesuit", (0, 0)), + ("nsubE", (0, 0)), + ("rightt", (0, 0)), + ("LessTild", (0, 0)), + ("rightharpoondow", (0, 0)), + ("Umac", (0, 0)), + ("ange;", (10660, 0)), + ("circlearrowri", (0, 0)), + ("lrhar;", (8651, 0)), + ("NotEqualT", (0, 0)), + ("squ;", (9633, 0)), + ("tstrok", (0, 0)), + ("lmoustac", (0, 0)), + ("dcaron", (0, 0)), + ("succappro", (0, 0)), + ("gcirc;", (285, 0)), + ("RBarr;", (10512, 0)), + ("multimap;", (8888, 0)), + ("cempt", (0, 0)), + ("Right", (0, 0)), + ("Atilde", (195, 0)), + ("nvltr", (0, 0)), + ("NotLeftTrian", (0, 0)), + ("nV", (0, 0)), + ("Rarrtl;", (10518, 0)), + ("drco", (0, 0)), + ("GT;", (62, 0)), + ("Al", (0, 0)), + ("shortparal", (0, 0)), + ("ljc", (0, 0)), + ("sse", (0, 0)), + ("MinusP", (0, 0)), + ("Cayle", (0, 0)), + ("bigtriangledo", (0, 0)), + ("erDo", (0, 0)), + ("mcomm", (0, 0)), + ("intpr", (0, 0)), + ("Scirc", (0, 0)), + ("Kf", (0, 0)), + ("Coni", (0, 0)), + ("llha", (0, 0)), + ("xuplus", (0, 0)), + ("leftrightharpoons;", (8651, 0)), + ("dzigra", (0, 0)), + ("Lcedil;", (315, 0)), + ("diam;", (8900, 0)), + ("CircleTim", (0, 0)), + ("nwArr", (0, 0)), + ("pa", (0, 0)), + ("ordf;", (170, 0)), + ("tra", (0, 0)), + ("kce", (0, 0)), + ("ocirc;", (244, 0)), + ("Itil", (0, 0)), + ("Nfr;", (120081, 0)), + ("RightUpDownVector;", (10575, 0)), + ("cupcap;", (10822, 0)), + ("intpro", (0, 0)), + ("SubsetEqual;", (8838, 0)), + ("nleftri", (0, 0)), + ("easter;", (10862, 0)), + ("erDot", (0, 0)), + ("NotLeftTriangleEqua", (0, 0)), + ("betwe", (0, 0)), + ("cirmid;", (10991, 0)), + ("gtrar", (0, 0)), + ("SquareI", (0, 0)), + ("boxmi", (0, 0)), + ("realpart;", (8476, 0)), + ("varsups", (0, 0)), + ("hArr", (0, 0)), + ("NotNestedGreaterG", (0, 0)), + ("par;", (8741, 0)), + ("DoubleUpDo", (0, 0)), + ("zhc", (0, 0)), + ("DoubleContourInte", (0, 0)), + ("cop", (0, 0)), + ("xscr", (0, 0)), + ("nvgt;", (62, 8402)), + ("rightarr", (0, 0)), + ("xcap", (0, 0)), + ("blacktriangleleft;", (9666, 0)), + ("Ascr;", (119964, 0)), + ("pscr;", (120005, 0)), + ("straightepsilo", (0, 0)), + ("Upd", (0, 0)), + ("rnm", (0, 0)), + ("nright", (0, 0)), + ("NotNestedLessLe", (0, 0)), + ("cupc", (0, 0)), + ("rightthreet", (0, 0)), + ("ordf", (170, 0)), + ("notind", (0, 0)), + ("lBa", (0, 0)), + ("varsubsetne", (0, 0)), + ("Pr;", (10939, 0)), + ("Scaro", (0, 0)), + ("odot;", (8857, 0)), + ("OverPa", (0, 0)), + ("TSHcy", (0, 0)), + ("drcrop", (0, 0)), + ("Clos", (0, 0)), + ("UnderPar", (0, 0)), + ("dagge", (0, 0)), + ("nvsim", (0, 0)), + ("lowast;", (8727, 0)), + ("succa", (0, 0)), + ("ncup;", (10818, 0)), + ("v", (0, 0)), + ("backsime", (0, 0)), + ("frac25", (0, 0)), + ("backcong;", (8780, 0)), + ("DownRightTeeVe", (0, 0)), + ("Sc", (0, 0)), + ("odblac;", (337, 0)), + ("oslash", (248, 0)), + ("HumpDownHump;", (8782, 0)), + ("dHar;", (10597, 0)), + ("Circle", (0, 0)), + ("xcup", (0, 0)), + ("centerdo", (0, 0)), + ("yc", (0, 0)), + ("searhk", (0, 0)), + ("aw", (0, 0)), + ("Ograve;", (210, 0)), + ("HumpDo", (0, 0)), + ("nLe", (0, 0)), + ("DoubleUpArrow", (0, 0)), + ("DownRightVec", (0, 0)), + ("Nfr", (0, 0)), + ("lambd", (0, 0)), + ("Exis", (0, 0)), + ("CupCap;", (8781, 0)), + ("angl", (0, 0)), + ("trade", (0, 0)), + ("straightp", (0, 0)), + ("swarhk", (0, 0)), + ("llhard;", (10603, 0)), + ("fallingdotseq", (0, 0)), + ("roti", (0, 0)), + ("excl", (0, 0)), + ("NegativeMediumS", (0, 0)), + ("Righ", (0, 0)), + ("Uparro", (0, 0)), + ("Barwed;", (8966, 0)), + ("LeftDownTeeV", (0, 0)), + ("demptyv;", (10673, 0)), + ("udblac;", (369, 0)), + ("sub;", (8834, 0)), + ("urtr", (0, 0)), + ("vartriang", (0, 0)), + ("race;", (8765, 817)), + ("LeftRight", (0, 0)), + ("doubleb", (0, 0)), + ("Delt", (0, 0)), + ("DoubleRightA", (0, 0)), + ("RightDownVectorBar;", (10581, 0)), + ("DD", (0, 0)), + ("boxUL;", (9565, 0)), + ("uacut", (0, 0)), + ("NonBreaking", (0, 0)), + ("aacute", (225, 0)), + ("rarrfs;", (10526, 0)), + ("Prime;", (8243, 0)), + ("blk34", (0, 0)), + ("capcap;", (10827, 0)), + ("sext", (0, 0)), + ("cups;", (8746, 65024)), + ("LeftArrowBa", (0, 0)), + ("upharpoon", (0, 0)), + ("gl", (0, 0)), + ("ngs", (0, 0)), + ("lsh", (0, 0)), + ("NegativeThi", (0, 0)), + ("circledast;", (8859, 0)), + ("GreaterEqual", (0, 0)), + ("paral", (0, 0)), + ("Bernoul", (0, 0)), + ("Vert;", (8214, 0)), + ("swarh", (0, 0)), + ("spade", (0, 0)), + ("Aacute;", (193, 0)), + ("boxhU", (0, 0)), + ("LowerLeftAr", (0, 0)), + ("NotGreaterEq", (0, 0)), + ("csup;", (10960, 0)), + ("vee;", (8744, 0)), + ("DownTeeAr", (0, 0)), + ("Pr", (0, 0)), + ("gvertneqq;", (8809, 65024)), + ("NotPrecedesS", (0, 0)), + ("boxV", (0, 0)), + ("ngsim", (0, 0)), + ("NotGreaterF", (0, 0)), + ("vArr", (0, 0)), + ("origof;", (8886, 0)), + ("RightUpDown", (0, 0)), + ("DoubleCont", (0, 0)), + ("pitchfork;", (8916, 0)), + ("Iacu", (0, 0)), + ("rl", (0, 0)), + ("precneqq", (0, 0)), + ("larrlp;", (8619, 0)), + ("geqq", (0, 0)), + ("nb", (0, 0)), + ("simne;", (8774, 0)), + ("ldrdhar;", (10599, 0)), + ("nshortp", (0, 0)), + ("DownLeftVector", (0, 0)), + ("wp;", (8472, 0)), + ("LeftDownVectorBa", (0, 0)), + ("Cacute", (0, 0)), + ("swarhk;", (10534, 0)), + ("Rrightarr", (0, 0)), + ("NegativeMediumSp", (0, 0)), + ("Qscr", (0, 0)), + ("GJcy", (0, 0)), + ("imagpart;", (8465, 0)), + ("rmous", (0, 0)), + ("there4;", (8756, 0)), + ("larrb", (0, 0)), + ("angzar", (0, 0)), + ("me", (0, 0)), + ("Nacute", (0, 0)), + ("rbrkslu;", (10640, 0)), + ("RightUpTeeVec", (0, 0)), + ("EmptySmal", (0, 0)), + ("NotGreat", (0, 0)), + ("VerticalTild", (0, 0)), + ("pitchf", (0, 0)), + ("nexists", (0, 0)), + ("notinva;", (8713, 0)), + ("Conto", (0, 0)), + ("clubs", (0, 0)), + ("bigtriangleu", (0, 0)), + ("harrc", (0, 0)), + ("nwarr", (0, 0)), + ("wopf;", (120168, 0)), + ("downarrow;", (8595, 0)), + ("Partia", (0, 0)), + ("nvrArr", (0, 0)), + ("supse", (0, 0)), + ("And;", (10835, 0)), + ("thks", (0, 0)), + ("triangleq", (0, 0)), + ("Pc", (0, 0)), + ("GreaterTild", (0, 0)), + ("CounterClockwiseConto", (0, 0)), + ("szl", (0, 0)), + ("preccurlyeq", (0, 0)), + ("NotPrecedesSla", (0, 0)), + ("ac;", (8766, 0)), + ("lfloor", (0, 0)), + ("eplus", (0, 0)), + ("rbrace;", (125, 0)), + ("rarrap;", (10613, 0)), + ("awin", (0, 0)), + ("eqc", (0, 0)), + ("fscr;", (119995, 0)), + ("hairsp;", (8202, 0)), + ("searro", (0, 0)), + ("DoubleContourIntegra", (0, 0)), + ("VerticalSeparator", (0, 0)), + ("Cedil", (0, 0)), + ("smepars", (0, 0)), + ("LowerRig", (0, 0)), + ("NotPr", (0, 0)), + ("rha", (0, 0)), + ("boxhD;", (9573, 0)), + ("ems", (0, 0)), + ("efDot", (0, 0)), + ("shortmi", (0, 0)), + ("lmoustache", (0, 0)), + ("backs", (0, 0)), + ("rdldha", (0, 0)), + ("bsolhsub", (0, 0)), + ("mapstoup;", (8613, 0)), + ("fla", (0, 0)), + ("circledcir", (0, 0)), + ("uscr", (0, 0)), + ("bigopl", (0, 0)), + ("niv;", (8715, 0)), + ("RoundI", (0, 0)), + ("boxplus", (0, 0)), + ("dha", (0, 0)), + ("smtes;", (10924, 65024)), + ("vB", (0, 0)), + ("imagli", (0, 0)), + ("bfr;", (120095, 0)), + ("HilbertS", (0, 0)), + ("GreaterFullEqu", (0, 0)), + ("uri", (0, 0)), + ("circlearrow", (0, 0)), + ("Me", (0, 0)), + ("RightUpVector", (0, 0)), + ("njcy", (0, 0)), + ("Lcaron", (0, 0)), + ("ncaron", (0, 0)), + ("bigtri", (0, 0)), + ("nlsi", (0, 0)), + ("reg", (174, 0)), + ("lescc;", (10920, 0)), + ("gbrev", (0, 0)), + ("prnE;", (10933, 0)), + ("leq;", (8804, 0)), + ("Reve", (0, 0)), + ("cwconin", (0, 0)), + ("RightV", (0, 0)), + ("becaus;", (8757, 0)), + ("Racu", (0, 0)), + ("Ncedil;", (325, 0)), + ("SquareInte", (0, 0)), + ("hookrightarrow", (0, 0)), + ("qprim", (0, 0)), + ("Kced", (0, 0)), + ("nrtrie", (0, 0)), + ("lowast", (0, 0)), + ("ltquest;", (10875, 0)), + ("SucceedsTil", (0, 0)), + ("Amacr", (0, 0)), + ("Hilb", (0, 0)), + ("NotHumpDownH", (0, 0)), + ("sqsupse", (0, 0)), + ("bep", (0, 0)), + ("boxu", (0, 0)), + ("Ma", (0, 0)), + ("bem", (0, 0)), + ("ApplyFunctio", (0, 0)), + ("dagger;", (8224, 0)), + ("Colone", (0, 0)), + ("lesd", (0, 0)), + ("SubsetEq", (0, 0)), + ("khcy;", (1093, 0)), + ("nvrtr", (0, 0)), + ("Oopf;", (120134, 0)), + ("otimes;", (8855, 0)), + ("trianglelefteq;", (8884, 0)), + ("nVdash", (0, 0)), + ("profala", (0, 0)), + ("risingdotseq;", (8787, 0)), + ("NotReverseElement", (0, 0)), + ("nRighta", (0, 0)), + ("langle;", (10216, 0)), + ("Kc", (0, 0)), + ("numero;", (8470, 0)), + ("UpEquilibrium;", (10606, 0)), + ("DiacriticalDoubleA", (0, 0)), + ("Xs", (0, 0)), + ("lrc", (0, 0)), + ("Abre", (0, 0)), + ("iota;", (953, 0)), + ("Rcy", (0, 0)), + ("simlE;", (10911, 0)), + ("Os", (0, 0)), + ("ugr", (0, 0)), + ("PrecedesEqua", (0, 0)), + ("eo", (0, 0)), + ("kjc", (0, 0)), + ("SquareUnio", (0, 0)), + ("lacute", (0, 0)), + ("GreaterEqualLess", (0, 0)), + ("bec", (0, 0)), + ("backsim;", (8765, 0)), + ("DoubleLongLeftA", (0, 0)), + ("longmap", (0, 0)), + ("tho", (0, 0)), + ("ApplyFu", (0, 0)), + ("equ", (0, 0)), + ("Kopf", (0, 0)), + ("Agr", (0, 0)), + ("LongLeftArro", (0, 0)), + ("Scaron;", (352, 0)), + ("SquareSubsetEqual", (0, 0)), + ("frac18", (0, 0)), + ("succns", (0, 0)), + ("bigcap;", (8898, 0)), + ("plusdu;", (10789, 0)), + ("nsm", (0, 0)), + ("real;", (8476, 0)), + ("NJcy", (0, 0)), + ("blacklozen", (0, 0)), + ("ncaro", (0, 0)), + ("bkar", (0, 0)), + ("gtrap", (0, 0)), + ("rdq", (0, 0)), + ("SquareInt", (0, 0)), + ("rpar", (0, 0)), + ("VD", (0, 0)), + ("CapitalDiffere", (0, 0)), + ("Gam", (0, 0)), + ("geqslant", (0, 0)), + ("leq", (0, 0)), + ("dia", (0, 0)), + ("straightepsilon", (0, 0)), + ("ncap", (0, 0)), + ("vDash", (0, 0)), + ("ugrave", (249, 0)), + ("rightleftharpoons;", (8652, 0)), + ("approxeq", (0, 0)), + ("RightTriang", (0, 0)), + ("odiv", (0, 0)), + ("egsdo", (0, 0)), + ("Exist", (0, 0)), + ("RightTeeArr", (0, 0)), + ("Equilibriu", (0, 0)), + ("Qsc", (0, 0)), + ("rightleftharp", (0, 0)), + ("srar", (0, 0)), + ("gl;", (8823, 0)), + ("rmoust;", (9137, 0)), + ("Bern", (0, 0)), + ("hksearow", (0, 0)), + ("oacute", (243, 0)), + ("Xscr", (0, 0)), + ("gfr;", (120100, 0)), + ("bsime", (0, 0)), + ("ordero", (0, 0)), + ("uAr", (0, 0)), + ("UnderBrace", (0, 0)), + ("NotLes", (0, 0)), + ("lscr;", (120001, 0)), + ("ntrianglerigh", (0, 0)), + ("nleftright", (0, 0)), + ("rh", (0, 0)), + ("pra", (0, 0)), + ("SucceedsE", (0, 0)), + ("RightTriangleB", (0, 0)), + ("per", (0, 0)), + ("eqvpar", (0, 0)), + ("mlcp", (0, 0)), + ("NegativeVeryThi", (0, 0)), + ("TildeEqual", (0, 0)), + ("api", (0, 0)), + ("therefore;", (8756, 0)), + ("gdot;", (289, 0)), + ("ntrianglelefte", (0, 0)), + ("scpo", (0, 0)), + ("Ifr;", (8465, 0)), + ("Tst", (0, 0)), + ("Invisib", (0, 0)), + ("csu", (0, 0)), + ("RightD", (0, 0)), + ("Differe", (0, 0)), + ("nra", (0, 0)), + ("lesges;", (10899, 0)), + ("Psc", (0, 0)), + ("io", (0, 0)), + ("iprod;", (10812, 0)), + ("Int", (0, 0)), + ("DownLeftTeeVector;", (10590, 0)), + ("LeftDownVec", (0, 0)), + ("ml", (0, 0)), + ("DownLeftT", (0, 0)), + ("ReverseElement;", (8715, 0)), + ("lsim", (0, 0)), + ("nlar", (0, 0)), + ("CapitalDifferenti", (0, 0)), + ("Ua", (0, 0)), + ("uml", (168, 0)), + ("nmi", (0, 0)), + ("sce", (0, 0)), + ("Hacek;", (711, 0)), + ("Coun", (0, 0)), + ("poun", (0, 0)), + ("rhov;", (1009, 0)), + ("NotDoubleVe", (0, 0)), + ("UpTeeAr", (0, 0)), + ("larrf", (0, 0)), + ("Bump", (0, 0)), + ("nLeftarro", (0, 0)), + ("ddo", (0, 0)), + ("lflo", (0, 0)), + ("Wc", (0, 0)), + ("ovbar;", (9021, 0)), + ("starf", (0, 0)), + ("Wci", (0, 0)), + ("Longrightarr", (0, 0)), + ("looparr", (0, 0)), + ("Appl", (0, 0)), + ("ascr;", (119990, 0)), + ("NotNestedGreaterGreat", (0, 0)), + ("NotVertica", (0, 0)), + ("subset", (0, 0)), + ("npol", (0, 0)), + ("Ou", (0, 0)), + ("nsupseteq", (0, 0)), + ("Iscr;", (8464, 0)), + ("nscr", (0, 0)), + ("Q", (0, 0)), + ("lnap", (0, 0)), + ("sla", (0, 0)), + ("DiacriticalDoubleAcute", (0, 0)), + ("RightUpVectorB", (0, 0)), + ("NotPrecedesSlant", (0, 0)), + ("DoubleLongRightArr", (0, 0)), + ("LeftDownV", (0, 0)), + ("Ecirc;", (202, 0)), + ("lbrksld", (0, 0)), + ("NotGreaterLe", (0, 0)), + ("LongLeftRi", (0, 0)), + ("cyl", (0, 0)), + ("Longrightarro", (0, 0)), + ("DDotrahd", (0, 0)), + ("tscy", (0, 0)), + ("If", (0, 0)), + ("plustwo", (0, 0)), + ("rcu", (0, 0)), + ("ch", (0, 0)), + ("Diacritica", (0, 0)), + ("Hace", (0, 0)), + ("InvisibleT", (0, 0)), + ("Dfr", (0, 0)), + ("Yuml;", (376, 0)), + ("bcy", (0, 0)), + ("udhar", (0, 0)), + ("Propo", (0, 0)), + ("dashv;", (8867, 0)), + ("nprcue;", (8928, 0)), + ("Asc", (0, 0)), + ("commat", (0, 0)), + ("Grea", (0, 0)), + ("xvee;", (8897, 0)), + ("rbrksl", (0, 0)), + ("Tsc", (0, 0)), + ("ccupss", (0, 0)), + ("nesear", (0, 0)), + ("rightlefthar", (0, 0)), + ("DoubleLongRightAr", (0, 0)), + ("min", (0, 0)), + ("meas", (0, 0)), + ("npolin", (0, 0)), + ("swn", (0, 0)), + ("bd", (0, 0)), + ("nsuc", (0, 0)), + ("fra", (0, 0)), + ("dzigr", (0, 0)), + ("usc", (0, 0)), + ("risingdotse", (0, 0)), + ("ocirc", (244, 0)), + ("csup", (0, 0)), + ("tscr;", (120009, 0)), + ("hor", (0, 0)), + ("cuesc", (0, 0)), + ("cudarrr", (0, 0)), + ("boxDL", (0, 0)), + ("ncongdo", (0, 0)), + ("Mscr", (0, 0)), + ("DownLeftVec", (0, 0)), + ("Cay", (0, 0)), + ("cupb", (0, 0)), + ("checkma", (0, 0)), + ("gjc", (0, 0)), + ("lm", (0, 0)), + ("Gced", (0, 0)), + ("vee", (0, 0)), + ("xi", (0, 0)), + ("preccu", (0, 0)), + ("EmptyVerySmallS", (0, 0)), + ("Rightarrow", (0, 0)), + ("longleftr", (0, 0)), + ("ipro", (0, 0)), + ("frac23;", (8532, 0)), + ("lA", (0, 0)), + ("Cconin", (0, 0)), + ("Vba", (0, 0)), + ("ddar", (0, 0)), + ("mstpos;", (8766, 0)), + ("angsph;", (8738, 0)), + ("HARD", (0, 0)), + ("sup;", (8835, 0)), + ("HumpDown", (0, 0)), + ("Edot;", (278, 0)), + ("NotSucceedsTilde;", (8831, 824)), + ("Uog", (0, 0)), + ("NestedLessLe", (0, 0)), + ("Ocir", (0, 0)), + ("heart", (0, 0)), + ("Agrave;", (192, 0)), + ("SquareIntersection;", (8851, 0)), + ("uparro", (0, 0)), + ("strn", (0, 0)), + ("rsh", (0, 0)), + ("lHa", (0, 0)), + ("hci", (0, 0)), + ("bigotime", (0, 0)), + ("LessLe", (0, 0)), + ("Capit", (0, 0)), + ("Equ", (0, 0)), + ("nrt", (0, 0)), + ("Lam", (0, 0)), + ("centerdot", (0, 0)), + ("realpa", (0, 0)), + ("gammad", (0, 0)), + ("NotLessTi", (0, 0)), + ("OverBrace", (0, 0)), + ("vda", (0, 0)), + ("twoheadrightarr", (0, 0)), + ("ClockwiseContourInteg", (0, 0)), + ("dot", (0, 0)), + ("ii", (0, 0)), + ("curvearrowrigh", (0, 0)), + ("PrecedesSl", (0, 0)), + ("zi", (0, 0)), + ("tsh", (0, 0)), + ("vnsub", (0, 0)), + ("rb", (0, 0)), + ("lcub;", (123, 0)), + ("betwee", (0, 0)), + ("Super", (0, 0)), + ("NotGreaterTilde;", (8821, 0)), + ("dua", (0, 0)), + ("Great", (0, 0)), + ("NotS", (0, 0)), + ("nle", (0, 0)), + ("lharu", (0, 0)), + ("rin", (0, 0)), + ("Sacute;", (346, 0)), + ("rbrack;", (93, 0)), + ("DoubleDot;", (168, 0)), + ("Jcy;", (1049, 0)), + ("xsqcup;", (10758, 0)), + ("UpArrowDownArrow", (0, 0)), + ("Laplacet", (0, 0)), + ("Map", (0, 0)), + ("HARDc", (0, 0)), + ("bfr", (0, 0)), + ("preceq", (0, 0)), + ("rdsh", (0, 0)), + ("Mellintrf;", (8499, 0)), + ("LeftRightVector", (0, 0)), + ("Poinca", (0, 0)), + ("imp", (0, 0)), + ("varsubsetneqq;", (10955, 65024)), + ("nsupset;", (8835, 8402)), + ("exp", (0, 0)), + ("rmoust", (0, 0)), + ("NegativeVeryThinS", (0, 0)), + ("NotHumpEqual", (0, 0)), + ("rdquo;", (8221, 0)), + ("TildeEqu", (0, 0)), + ("sccue;", (8829, 0)), + ("ThinSpa", (0, 0)), + ("hairs", (0, 0)), + ("nes", (0, 0)), + ("Hat", (0, 0)), + ("Rcaron", (0, 0)), + ("TildeE", (0, 0)), + ("hslas", (0, 0)), + ("bcy;", (1073, 0)), + ("amalg", (0, 0)), + ("SquareSubse", (0, 0)), + ("NotGreater;", (8815, 0)), + ("bullet", (0, 0)), + ("otimesas;", (10806, 0)), + ("ed", (0, 0)), + ("NegativeVeryThinSpac", (0, 0)), + ("jukc", (0, 0)), + ("planck;", (8463, 0)), + ("VerticalLine", (0, 0)), + ("nvD", (0, 0)), + ("oel", (0, 0)), + ("nparall", (0, 0)), + ("qpr", (0, 0)), + ("capa", (0, 0)), + ("gtrd", (0, 0)), + ("nsupseteq;", (8841, 0)), + ("Conint;", (8751, 0)), + ("NonBr", (0, 0)), + ("twoheadrightar", (0, 0)), + ("Iuml;", (207, 0)), + ("rlarr;", (8644, 0)), + ("epar;", (8917, 0)), + ("LeftUpVectorBar;", (10584, 0)), + ("To", (0, 0)), + ("LessEqualGrea", (0, 0)), + ("jc", (0, 0)), + ("yacute", (253, 0)), + ("leftrightsquigar", (0, 0)), + ("targe", (0, 0)), + ("uArr", (0, 0)), + ("EmptyVerySmallSquare;", (9643, 0)), + ("Rang", (0, 0)), + ("uwangle", (0, 0)), + ("iopf", (0, 0)), + ("gtrappr", (0, 0)), + ("smte", (0, 0)), + ("hslash;", (8463, 0)), + ("Impli", (0, 0)), + ("nrig", (0, 0)), + ("imag", (0, 0)), + ("od", (0, 0)), + ("Thi", (0, 0)), + ("O", (0, 0)), + ("RightUpDownVector", (0, 0)), + ("vltri;", (8882, 0)), + ("ShortRight", (0, 0)), + ("ntr", (0, 0)), + ("ddotseq;", (10871, 0)), + ("LessLess", (0, 0)), + ("toea;", (10536, 0)), + ("macr", (175, 0)), + ("LeftUpVectorBa", (0, 0)), + ("tsc", (0, 0)), + ("ldru", (0, 0)), + ("simpl", (0, 0)), + ("bigtriangled", (0, 0)), + ("DownRightVect", (0, 0)), + ("zfr", (0, 0)), + ("CloseCurlyQu", (0, 0)), + ("bdqu", (0, 0)), + ("lessap", (0, 0)), + ("NegativeThinSpa", (0, 0)), + ("verba", (0, 0)), + ("gsi", (0, 0)), + ("ClockwiseContou", (0, 0)), + ("phone", (0, 0)), + ("Zopf;", (8484, 0)), + ("lbrke", (0, 0)), + ("wopf", (0, 0)), + ("clubs;", (9827, 0)), + ("parallel;", (8741, 0)), + ("mapstole", (0, 0)), + ("sfrown;", (8994, 0)), + ("rAar", (0, 0)), + ("lrhard;", (10605, 0)), + ("Nopf;", (8469, 0)), + ("rppolint", (0, 0)), + ("notniv", (0, 0)), + ("gtr", (0, 0)), + ("NotGre", (0, 0)), + ("ENG;", (330, 0)), + ("inter", (0, 0)), + ("Jcirc", (0, 0)), + ("Intersecti", (0, 0)), + ("bscr", (0, 0)), + ("order;", (8500, 0)), + ("fll", (0, 0)), + ("xc", (0, 0)), + ("supdo", (0, 0)), + ("DDotra", (0, 0)), + ("cylcty;", (9005, 0)), + ("DownRightTee", (0, 0)), + ("supseteq;", (8839, 0)), + ("gim", (0, 0)), + ("ctdot;", (8943, 0)), + ("mu;", (956, 0)), + ("part;", (8706, 0)), + ("Bc", (0, 0)), + ("npreceq;", (10927, 824)), + ("cupor;", (10821, 0)), + ("looparrowl", (0, 0)), + ("boxvR;", (9566, 0)), + ("doubl", (0, 0)), + ("ldquo;", (8220, 0)), + ("Ecy", (0, 0)), + ("minusb;", (8863, 0)), + ("RightUpDow", (0, 0)), + ("oin", (0, 0)), + ("lneq;", (10887, 0)), + ("DoubleLongLeftRi", (0, 0)), + ("awc", (0, 0)), + ("latail;", (10521, 0)), + ("blacktriangle", (0, 0)), + ("sfro", (0, 0)), + ("questeq;", (8799, 0)), + ("bigtria", (0, 0)), + ("ZeroWidthSpace", (0, 0)), + ("NotCupCap;", (8813, 0)), + ("urc", (0, 0)), + ("Hsc", (0, 0)), + ("llcorne", (0, 0)), + ("rscr", (0, 0)), + ("DoubleLeftT", (0, 0)), + ("LongRightArro", (0, 0)), + ("PlusMinus;", (177, 0)), + ("Lacu", (0, 0)), + ("SquareUnion", (0, 0)), + ("bne", (0, 0)), + ("Ccirc", (0, 0)), + ("FilledVerySmallSquare;", (9642, 0)), + ("rightrightarro", (0, 0)), + ("HARDcy;", (1066, 0)), + ("Barwe", (0, 0)), + ("Very", (0, 0)), + ("CircleDot;", (8857, 0)), + ("jo", (0, 0)), + ("lata", (0, 0)), + ("nge;", (8817, 0)), + ("imat", (0, 0)), + ("boxUR;", (9562, 0)), + ("DoubleContourIntegral", (0, 0)), + ("notin", (0, 0)), + ("curlyeqp", (0, 0)), + ("equi", (0, 0)), + ("npre;", (10927, 824)), + ("diamo", (0, 0)), + ("LeftDoub", (0, 0)), + ("Yu", (0, 0)), + ("leftarrowtail;", (8610, 0)), + ("CounterClockwiseContourInte", (0, 0)), + ("Ri", (0, 0)), + ("ThickSpace;", (8287, 8202)), + ("hscr;", (119997, 0)), + ("fcy;", (1092, 0)), + ("rang", (0, 0)), + ("longrigh", (0, 0)), + ("Ncaro", (0, 0)), + ("ses", (0, 0)), + ("LeftArrowRightArr", (0, 0)), + ("DoubleDown", (0, 0)), + ("lessgt", (0, 0)), + ("ReverseEquilibri", (0, 0)), + ("RightCei", (0, 0)), + ("fall", (0, 0)), + ("de", (0, 0)), + ("precnappr", (0, 0)), + ("NonBreaki", (0, 0)), + ("xoplus;", (10753, 0)), + ("jserc", (0, 0)), + ("updownar", (0, 0)), + ("N", (0, 0)), + ("frac38;", (8540, 0)), + ("Nes", (0, 0)), + ("subseteqq", (0, 0)), + ("NotLessTilde", (0, 0)), + ("NotHumpE", (0, 0)), + ("OverBa", (0, 0)), + ("Prop", (0, 0)), + ("bbrk", (0, 0)), + ("bno", (0, 0)), + ("nLt;", (8810, 8402)), + ("ltqu", (0, 0)), + ("looparrowrig", (0, 0)), + ("lsqb;", (91, 0)), + ("efDot;", (8786, 0)), + ("gamma", (0, 0)), + ("Rrightarro", (0, 0)), + ("longleft", (0, 0)), + ("TildeEq", (0, 0)), + ("mho;", (8487, 0)), + ("longrig", (0, 0)), + ("Kce", (0, 0)), + ("scnap", (0, 0)), + ("Scedil;", (350, 0)), + ("nVdas", (0, 0)), + ("Om", (0, 0)), + ("xwedg", (0, 0)), + ("vzigzag;", (10650, 0)), + ("Exists", (0, 0)), + ("rightleftharpo", (0, 0)), + ("gsiml;", (10896, 0)), + ("rsquor;", (8217, 0)), + ("LongLef", (0, 0)), + ("Capi", (0, 0)), + ("isinE", (0, 0)), + ("triangle;", (9653, 0)), + ("SucceedsSlantEqual", (0, 0)), + ("twoheadright", (0, 0)), + ("jcy", (0, 0)), + ("OverPar", (0, 0)), + ("Of", (0, 0)), + ("frac13;", (8531, 0)), + ("toe", (0, 0)), + ("lamb", (0, 0)), + ("nLeftri", (0, 0)), + ("stra", (0, 0)), + ("RightTe", (0, 0)), + ("rp", (0, 0)), + ("DownB", (0, 0)), + ("els;", (10901, 0)), + ("larrbfs", (0, 0)), + ("CH", (0, 0)), + ("bco", (0, 0)), + ("naturals", (0, 0)), + ("odsol", (0, 0)), + ("nsu", (0, 0)), + ("DiacriticalAcu", (0, 0)), + ("phi;", (966, 0)), + ("RuleDelaye", (0, 0)), + ("frac56", (0, 0)), + ("rtrilt", (0, 0)), + ("nsupE;", (10950, 824)), + ("doubleba", (0, 0)), + ("yac", (0, 0)), + ("curlywed", (0, 0)), + ("Hstrok;", (294, 0)), + ("cuda", (0, 0)), + ("capc", (0, 0)), + ("Kscr;", (119974, 0)), + ("seArr", (0, 0)), + ("LongRigh", (0, 0)), + ("larrl", (0, 0)), + ("ThinSp", (0, 0)), + ("scpol", (0, 0)), + ("raq", (0, 0)), + ("Tscr;", (119983, 0)), + ("rlm;", (8207, 0)), + ("xsqcup", (0, 0)), + ("varepsilo", (0, 0)), + ("RightUpDownVec", (0, 0)), + ("prn", (0, 0)), + ("NotRightTrian", (0, 0)), + ("Racute;", (340, 0)), + ("lacu", (0, 0)), + ("eg", (0, 0)), + ("scpolint;", (10771, 0)), + ("gbre", (0, 0)), + ("TScy", (0, 0)), + ("curvearrowleft;", (8630, 0)), + ("nedot", (0, 0)), + ("angzarr", (0, 0)), + ("Top", (0, 0)), + ("dolla", (0, 0)), + ("CapitalDifferent", (0, 0)), + ("amacr", (0, 0)), + ("ldquor;", (8222, 0)), + ("ecolo", (0, 0)), + ("notinE", (0, 0)), + ("Clo", (0, 0)), + ("nvinfi", (0, 0)), + ("succapprox", (0, 0)), + ("lesssim", (0, 0)), + ("para;", (182, 0)), + ("plankv;", (8463, 0)), + ("ClockwiseContourIn", (0, 0)), + ("nrarr", (0, 0)), + ("searh", (0, 0)), + ("precneq", (0, 0)), + ("ensp;", (8194, 0)), + ("RightC", (0, 0)), + ("Ce", (0, 0)), + ("rtriltri", (0, 0)), + ("LeftFlo", (0, 0)), + ("RightAngleBracket;", (10217, 0)), + ("boxdR", (0, 0)), + ("Contou", (0, 0)), + ("boxUR", (0, 0)), + ("Rarrt", (0, 0)), + ("FilledVerySmallSquar", (0, 0)), + ("Diacrit", (0, 0)), + ("NotLeftTriangleEq", (0, 0)), + ("dots", (0, 0)), + ("ijli", (0, 0)), + ("Od", (0, 0)), + ("ReverseUp", (0, 0)), + ("Colon", (0, 0)), + ("zc", (0, 0)), + ("DownLeftTeeVect", (0, 0)), + ("ecy;", (1101, 0)), + ("afr", (0, 0)), + ("emsp13", (0, 0)), + ("ulcrop;", (8975, 0)), + ("rarrw", (0, 0)), + ("nvsim;", (8764, 8402)), + ("rc", (0, 0)), + ("vartrian", (0, 0)), + ("dfish", (0, 0)), + ("acute;", (180, 0)), + ("edot", (0, 0)), + ("Vvda", (0, 0)), + ("RightUpVectorBa", (0, 0)), + ("LeftTee", (0, 0)), + ("notniva", (0, 0)), + ("Iota;", (921, 0)), + ("iocy;", (1105, 0)), + ("NotTildeTi", (0, 0)), + ("scnsim;", (8937, 0)), + ("PrecedesTilde;", (8830, 0)), + ("nsupe;", (8841, 0)), + ("bsim;", (8765, 0)), + ("se", (0, 0)), + ("asymp", (0, 0)), + ("EmptyVerySmallSq", (0, 0)), + ("omid;", (10678, 0)), + ("circledR", (0, 0)), + ("NotGreaterFull", (0, 0)), + ("acE", (0, 0)), + ("Congr", (0, 0)), + ("olarr;", (8634, 0)), + ("bigtrian", (0, 0)), + ("X", (0, 0)), + ("nl", (0, 0)), + ("lAarr;", (8666, 0)), + ("isinsv", (0, 0)), + ("SquareIntersec", (0, 0)), + ("udblac", (0, 0)), + ("Xfr", (0, 0)), + ("vBarv;", (10985, 0)), + ("capbrc", (0, 0)), + ("simrarr;", (10610, 0)), + ("prsim", (0, 0)), + ("CirclePlus", (0, 0)), + ("spadesui", (0, 0)), + ("varsigma;", (962, 0)), + ("TR", (0, 0)), + ("oper", (0, 0)), + ("diamondsuit;", (9830, 0)), + ("sqcap", (0, 0)), + ("ltl", (0, 0)), + ("NotRightTriang", (0, 0)), + ("ici", (0, 0)), + ("gtrappro", (0, 0)), + ("HorizontalL", (0, 0)), + ("boxHU", (0, 0)), + ("Imacr", (0, 0)), + ("rect;", (9645, 0)), + ("GJ", (0, 0)), + ("boxplu", (0, 0)), + ("circledd", (0, 0)), + ("gnsim", (0, 0)), + ("eque", (0, 0)), + ("boxHd", (0, 0)), + ("swAr", (0, 0)), + ("boxb", (0, 0)), + ("LessSlant", (0, 0)), + ("Ll;", (8920, 0)), + ("larr;", (8592, 0)), + ("Lowe", (0, 0)), + ("ma", (0, 0)), + ("vop", (0, 0)), + ("eog", (0, 0)), + ("Sac", (0, 0)), + ("nvrt", (0, 0)), + ("precnsim", (0, 0)), + ("fopf;", (120151, 0)), + ("loarr;", (8701, 0)), + ("lg;", (8822, 0)), + ("iiiint", (0, 0)), + ("approxeq;", (8778, 0)), + ("hookright", (0, 0)), + ("NotDoubl", (0, 0)), + ("nsc", (0, 0)), + ("Sscr;", (119982, 0)), + ("Diacriti", (0, 0)), + ("gtreqqless", (0, 0)), + ("NotGreaterSlan", (0, 0)), + ("icir", (0, 0)), + ("Sub", (0, 0)), + ("twoheadrightarrow", (0, 0)), + ("DoubleUpDown", (0, 0)), + ("NotSucceedsSlantE", (0, 0)), + ("subseteq", (0, 0)), + ("nsubE;", (10949, 824)), + ("rtri;", (9657, 0)), + ("LongLeft", (0, 0)), + ("Tca", (0, 0)), + ("vsupne;", (8843, 65024)), + ("Updow", (0, 0)), + ("xrArr;", (10233, 0)), + ("prec;", (8826, 0)), + ("efr", (0, 0)), + ("VerticalSeparator;", (10072, 0)), + ("OpenCurlyDoub", (0, 0)), + ("Qop", (0, 0)), + ("homtht", (0, 0)), + ("Ido", (0, 0)), + ("rightrig", (0, 0)), + ("andslo", (0, 0)), + ("lesc", (0, 0)), + ("Scy;", (1057, 0)), + ("LeftTriangleEq", (0, 0)), + ("simdot;", (10858, 0)), + ("ffllig", (0, 0)), + ("trim", (0, 0)), + ("larrtl", (0, 0)), + ("nri", (0, 0)), + ("GreaterSlantEqua", (0, 0)), + ("rightarrowta", (0, 0)), + ("nshortpar", (0, 0)), + ("ncedi", (0, 0)), + ("RightArrowLe", (0, 0)), + ("simdot", (0, 0)), + ("GreaterFu", (0, 0)), + ("RightUpTeeVector;", (10588, 0)), + ("gtrsim;", (8819, 0)), + ("lates;", (10925, 65024)), + ("NotTildeF", (0, 0)), + ("simra", (0, 0)), + ("zcaro", (0, 0)), + ("LeftTriangleE", (0, 0)), + ("DoubleVertical", (0, 0)), + ("awi", (0, 0)), + ("Ucir", (0, 0)), + ("qua", (0, 0)), + ("LessTilde;", (8818, 0)), + ("propto", (0, 0)), + ("precsi", (0, 0)), + ("compf", (0, 0)), + ("lsq", (0, 0)), + ("Wo", (0, 0)), + ("ltlarr", (0, 0)), + ("andand", (0, 0)), + ("LongRight", (0, 0)), + ("cire", (0, 0)), + ("DownTee", (0, 0)), + ("Jukcy", (0, 0)), + ("simr", (0, 0)), + ("infinti", (0, 0)), + ("upuparrow", (0, 0)), + ("SquareSubset", (0, 0)), + ("expon", (0, 0)), + ("DiacriticalT", (0, 0)), + ("apac", (0, 0)), + ("Superset;", (8835, 0)), + ("Iogon", (0, 0)), + ("NoBrea", (0, 0)), + ("circledc", (0, 0)), + ("LeftArrowRi", (0, 0)), + ("LongLeftRight", (0, 0)), + ("LeftUpDownVec", (0, 0)), + ("FilledSmallS", (0, 0)), + ("Vvdash", (0, 0)), + ("fflli", (0, 0)), + ("thkap;", (8776, 0)), + ("frac16;", (8537, 0)), + ("RightAr", (0, 0)), + ("DoubleRightArro", (0, 0)), + ("ur", (0, 0)), + ("DownLeftRig", (0, 0)), + ("DoubleLeftAr", (0, 0)), + ("rsaquo", (0, 0)), + ("succ;", (8827, 0)), + ("NotHumpDownHu", (0, 0)), + ("rightrightarrow", (0, 0)), + ("lrha", (0, 0)), + ("gap;", (10886, 0)), + ("Xf", (0, 0)), + ("bul", (0, 0)), + ("RuleDelayed;", (10740, 0)), + ("eparsl;", (10723, 0)), + ("gimel", (0, 0)), + ("telrec;", (8981, 0)), + ("lowas", (0, 0)), + ("PlusMinus", (0, 0)), + ("nleqq;", (8806, 824)), + ("precapprox;", (10935, 0)), + ("vartriangleright;", (8883, 0)), + ("uu", (0, 0)), + ("NegativeVeryThin", (0, 0)), + ("frac78;", (8542, 0)), + ("Iopf", (0, 0)), + ("LowerRightA", (0, 0)), + ("NotExi", (0, 0)), + ("xot", (0, 0)), + ("CapitalDifferentialD;", (8517, 0)), + ("lacute;", (314, 0)), + ("Cap;", (8914, 0)), + ("zeetrf", (0, 0)), + ("NotRevers", (0, 0)), + ("Ao", (0, 0)), + ("ulc", (0, 0)), + ("blacktrianglelef", (0, 0)), + ("eum", (0, 0)), + ("ltquest", (0, 0)), + ("mida", (0, 0)), + ("uda", (0, 0)), + ("DiacriticalDoubl", (0, 0)), + ("ltrif", (0, 0)), + ("rightharpoonu", (0, 0)), + ("OpenCurlyQu", (0, 0)), + ("Pcy", (0, 0)), + ("sdote", (0, 0)), + ("SubsetE", (0, 0)), + ("mst", (0, 0)), + ("NestedGreaterGreate", (0, 0)), + ("Ntil", (0, 0)), + ("Amac", (0, 0)), + ("nbumpe", (0, 0)), + ("Equa", (0, 0)), + ("eqsim", (0, 0)), + ("Cent", (0, 0)), + ("Aum", (0, 0)), + ("gnsim;", (8935, 0)), + ("Because", (0, 0)), + ("xotim", (0, 0)), + ("supset;", (8835, 0)), + ("simn", (0, 0)), + ("sqsubs", (0, 0)), + ("Equili", (0, 0)), + ("LeftArrowBar", (0, 0)), + ("nless", (0, 0)), + ("NotGreaterGreater", (0, 0)), + ("gvnE;", (8809, 65024)), + ("varth", (0, 0)), + ("veeeq;", (8794, 0)), + ("Dagge", (0, 0)), + ("bigtriangl", (0, 0)), + ("SuchThat", (0, 0)), + ("OverParenthesi", (0, 0)), + ("DoubleUp", (0, 0)), + ("cups", (0, 0)), + ("DScy;", (1029, 0)), + ("dAr", (0, 0)), + ("emsp13;", (8196, 0)), + ("Yacute", (221, 0)), + ("lsimg", (0, 0)), + ("mfr;", (120106, 0)), + ("nvin", (0, 0)), + ("osl", (0, 0)), + ("vnsup", (0, 0)), + ("RightArrowLeftAr", (0, 0)), + ("weier", (0, 0)), + ("zop", (0, 0)), + ("lessgtr", (0, 0)), + ("leftleftarro", (0, 0)), + ("lessa", (0, 0)), + ("varpi;", (982, 0)), + ("Gopf;", (120126, 0)), + ("OverBracket;", (9140, 0)), + ("isins;", (8948, 0)), + ("wedgeq;", (8793, 0)), + ("simplus", (0, 0)), + ("ufisht", (0, 0)), + ("lurds", (0, 0)), + ("verbar;", (124, 0)), + ("urco", (0, 0)), + ("Uuml", (220, 0)), + ("Cacut", (0, 0)), + ("NotSucceedsSlant", (0, 0)), + ("ReverseUpEquili", (0, 0)), + ("NotDoubleVert", (0, 0)), + ("sst", (0, 0)), + ("pertenk;", (8241, 0)), + ("blacksq", (0, 0)), + ("hal", (0, 0)), + ("NotNested", (0, 0)), + ("DiacriticalGrav", (0, 0)), + ("rharul;", (10604, 0)), + ("Cca", (0, 0)), + ("yuml", (255, 0)), + ("incare;", (8453, 0)), + ("varsubse", (0, 0)), + ("ru", (0, 0)), + ("vDas", (0, 0)), + ("ifr;", (120102, 0)), + ("LeftDoubleBracke", (0, 0)), + ("ThinSpace", (0, 0)), + ("supsetne", (0, 0)), + ("sqsupset", (0, 0)), + ("Uarrocir", (0, 0)), + ("nacute;", (324, 0)), + ("xsq", (0, 0)), + ("succnapp", (0, 0)), + ("topfork", (0, 0)), + ("tritim", (0, 0)), + ("nrtr", (0, 0)), + ("quot", (34, 0)), + ("ep", (0, 0)), + ("mho", (0, 0)), + ("Proportiona", (0, 0)), + ("NestedGreaterGre", (0, 0)), + ("DoubleCon", (0, 0)), + ("cire;", (8791, 0)), + ("RightTeeArrow", (0, 0)), + ("nedot;", (8784, 824)), + ("OpenCurlyDouble", (0, 0)), + ("NotGr", (0, 0)), + ("sea", (0, 0)), + ("geqq;", (8807, 0)), + ("um", (0, 0)), + ("rlh", (0, 0)), + ("jf", (0, 0)), + ("lc", (0, 0)), + ("das", (0, 0)), + ("swArr;", (8665, 0)), + ("DownLeftVectorBa", (0, 0)), + ("ssetmn", (0, 0)), + ("Eleme", (0, 0)), + ("upa", (0, 0)), + ("angsph", (0, 0)), + ("com", (0, 0)), + ("cirE;", (10691, 0)), + ("loan", (0, 0)), + ("Yacute;", (221, 0)), + ("dollar;", (36, 0)), + ("Contour", (0, 0)), + ("gvert", (0, 0)), + ("rceil", (0, 0)), + ("cuepr;", (8926, 0)), + ("La", (0, 0)), + ("CircleMi", (0, 0)), + ("DoubleLongLeftRight", (0, 0)), + ("nm", (0, 0)), + ("ltimes;", (8905, 0)), + ("UpperRigh", (0, 0)), + ("rae", (0, 0)), + ("Ocirc", (212, 0)), + ("gesl", (0, 0)), + ("pointi", (0, 0)), + ("rsqb;", (93, 0)), + ("ko", (0, 0)), + ("nhpar", (0, 0)), + ("scy", (0, 0)), + ("urcorner;", (8989, 0)), + ("ImaginaryI;", (8520, 0)), + ("Equil", (0, 0)), + ("vert;", (124, 0)), + ("leftlef", (0, 0)), + ("boxVH;", (9580, 0)), + ("yscr", (0, 0)), + ("uacute", (250, 0)), + ("RightArrowLeftArrow;", (8644, 0)), + ("Negative", (0, 0)), + ("Diamond;", (8900, 0)), + ("punc", (0, 0)), + ("Aogon;", (260, 0)), + ("LeftCe", (0, 0)), + ("NegativeMed", (0, 0)), + ("iques", (0, 0)), + ("forall", (0, 0)), + ("Supse", (0, 0)), + ("boxVH", (0, 0)), + ("NotRightTriangleBar;", (10704, 824)), + ("NotNestedLessLess;", (10913, 824)), + ("Diamo", (0, 0)), + ("NotRever", (0, 0)), + ("profsur", (0, 0)), + ("LeftTeeArrow", (0, 0)), + ("rarrlp;", (8620, 0)), + ("filig;", (64257, 0)), + ("Ex", (0, 0)), + ("nearh", (0, 0)), + ("ssc", (0, 0)), + ("Qfr", (0, 0)), + ("ecolon", (0, 0)), + ("Product", (0, 0)), + ("triangleright", (0, 0)), + ("mapstod", (0, 0)), + ("igrave;", (236, 0)), + ("bigstar;", (9733, 0)), + ("Uni", (0, 0)), + ("rightthreetim", (0, 0)), + ("Poincarepl", (0, 0)), + ("Gammad", (0, 0)), + ("bigoplu", (0, 0)), + ("varnothi", (0, 0)), + ("DownLeftVectorBar", (0, 0)), + ("fscr", (0, 0)), + ("Jscr", (0, 0)), + ("nsup", (0, 0)), + ("smil", (0, 0)), + ("Updowna", (0, 0)), + ("NotDoubleVertica", (0, 0)), + ("ropf", (0, 0)), + ("uH", (0, 0)), + ("hks", (0, 0)), + ("sce;", (10928, 0)), + ("xmap", (0, 0)), + ("loopar", (0, 0)), + ("SquareSupersetEqual;", (8850, 0)), + ("iota", (0, 0)), + ("delta;", (948, 0)), + ("xopf;", (120169, 0)), + ("wp", (0, 0)), + ("amal", (0, 0)), + ("nlt;", (8814, 0)), + ("NoB", (0, 0)), + ("yuml;", (255, 0)), + ("neArr;", (8663, 0)), + ("Cf", (0, 0)), + ("Gbrev", (0, 0)), + ("doll", (0, 0)), + ("oc", (0, 0)), + ("ulcorn", (0, 0)), + ("UnderP", (0, 0)), + ("nabla", (0, 0)), + ("leftleftarrows", (0, 0)), + ("Coproduct;", (8720, 0)), + ("nsqsube", (0, 0)), + ("angmsdaa", (0, 0)), + ("Dst", (0, 0)), + ("CapitalDifferentialD", (0, 0)), + ("shortm", (0, 0)), + ("doteqdot;", (8785, 0)), + ("SHcy", (0, 0)), + ("SOFTc", (0, 0)), + ("Gbre", (0, 0)), + ("quate", (0, 0)), + ("subnE;", (10955, 0)), + ("LessTilde", (0, 0)), + ("supd", (0, 0)), + ("doublebarwedge;", (8966, 0)), + ("iff;", (8660, 0)), + ("awcon", (0, 0)), + ("lfl", (0, 0)), + ("FilledSmallSqua", (0, 0)), + ("VeryThinSpace;", (8202, 0)), + ("subrarr;", (10617, 0)), + ("alpha", (0, 0)), + ("Csc", (0, 0)), + ("ovbar", (0, 0)), + ("lra", (0, 0)), + ("ubreve;", (365, 0)), + ("NotLessSla", (0, 0)), + ("Rce", (0, 0)), + ("nLeftrighta", (0, 0)), + ("NegativeVeryT", (0, 0)), + ("lrtr", (0, 0)), + ("Yuml", (0, 0)), + ("CloseCurlyDou", (0, 0)), + ("fork", (0, 0)), + ("ruluhar;", (10600, 0)), + ("rBa", (0, 0)), + ("varr;", (8597, 0)), + ("smallsetminus;", (8726, 0)), + ("lsqb", (0, 0)), + ("yu", (0, 0)), + ("olcr", (0, 0)), + ("bigcap", (0, 0)), + ("NotSubsetEqua", (0, 0)), + ("NotSucceedsSlantEqua", (0, 0)), + ("DoubleLongRightA", (0, 0)), + ("interca", (0, 0)), + ("larrbfs;", (10527, 0)), + ("apa", (0, 0)), + ("NotSquareSuperset", (0, 0)), + ("nvdash", (0, 0)), + ("DownTee;", (8868, 0)), + ("xuplus;", (10756, 0)), + ("OverBrace;", (9182, 0)), + ("tridot", (0, 0)), + ("bigtr", (0, 0)), + ("Osl", (0, 0)), + ("lmo", (0, 0)), + ("Sscr", (0, 0)), + ("OverBrac", (0, 0)), + ("rightleftarr", (0, 0)), + ("nsime;", (8772, 0)), + ("sqcups;", (8852, 65024)), + ("NotTildeFullEq", (0, 0)), + ("nsc;", (8833, 0)), + ("notinvc", (0, 0)), + ("erD", (0, 0)), + ("lcar", (0, 0)), + ("CounterClockwiseContourInt", (0, 0)), + ("Fouriertrf;", (8497, 0)), + ("Rh", (0, 0)), + ("near", (0, 0)), + ("Mo", (0, 0)), + ("DotD", (0, 0)), + ("sof", (0, 0)), + ("ngt;", (8815, 0)), + ("ccups", (0, 0)), + ("appro", (0, 0)), + ("LeftDownVector;", (8643, 0)), + ("beca", (0, 0)), + ("trpez", (0, 0)), + ("blacktriangleri", (0, 0)), + ("congd", (0, 0)), + ("sacute", (0, 0)), + ("b", (0, 0)), + ("Sop", (0, 0)), + ("fllig", (0, 0)), + ("doteqdot", (0, 0)), + ("rpp", (0, 0)), + ("cente", (0, 0)), + ("bse", (0, 0)), + ("NotDoubleVerticalBar", (0, 0)), + ("brvbar", (166, 0)), + ("backprim", (0, 0)), + ("ReverseUpEquil", (0, 0)), + ("crarr", (0, 0)), + ("Zd", (0, 0)), + ("Afr", (0, 0)), + ("nvinfin;", (10718, 0)), + ("csub", (0, 0)), + ("lEg;", (10891, 0)), + ("eopf", (0, 0)), + ("scaro", (0, 0)), + ("rra", (0, 0)), + ("ncongd", (0, 0)), + ("abrev", (0, 0)), + ("Ther", (0, 0)), + ("DiacriticalDoubleAcute;", (733, 0)), + ("NotElement", (0, 0)), + ("updownarrow", (0, 0)), + ("ShortDownArro", (0, 0)), + ("ig", (0, 0)), + ("vangr", (0, 0)), + ("cuesc;", (8927, 0)), + ("Yac", (0, 0)), + ("ljcy", (0, 0)), + ("sqsubseteq", (0, 0)), + ("map;", (8614, 0)), + ("ljcy;", (1113, 0)), + ("Under", (0, 0)), + ("LeftTeeVector", (0, 0)), + ("TildeTil", (0, 0)), + ("quati", (0, 0)), + ("DoubleVerticalBa", (0, 0)), + ("longleftar", (0, 0)), + ("Auml;", (196, 0)), + ("tcaro", (0, 0)), + ("equal", (0, 0)), + ("NotGreaterFullEqual;", (8807, 824)), + ("nsupE", (0, 0)), + ("Proportio", (0, 0)), + ("epsilon", (0, 0)), + ("dbkar", (0, 0)), + ("upharpoonright", (0, 0)), + ("rata", (0, 0)), + ("NotNestedGreaterGreate", (0, 0)), + ("lrm;", (8206, 0)), + ("ael", (0, 0)), + ("frac23", (0, 0)), + ("Emac", (0, 0)), + ("Counter", (0, 0)), + ("capcup", (0, 0)), + ("Wfr", (0, 0)), + ("VerticalSe", (0, 0)), + ("rAta", (0, 0)), + ("NotSupersetEqu", (0, 0)), + ("angmsda", (0, 0)), + ("subm", (0, 0)), + ("LowerLeftArro", (0, 0)), + ("scnap;", (10938, 0)), + ("rotimes;", (10805, 0)), + ("Lacut", (0, 0)), + ("bigodot", (0, 0)), + ("veebar;", (8891, 0)), + ("leg;", (8922, 0)), + ("du", (0, 0)), + ("aopf", (0, 0)), + ("hbar;", (8463, 0)), + ("ouml;", (246, 0)), + ("tbrk;", (9140, 0)), + ("lnapprox", (0, 0)), + ("lharu;", (8636, 0)), + ("upsih", (0, 0)), + ("nsi", (0, 0)), + ("nwne", (0, 0)), + ("Nest", (0, 0)), + ("plusacir", (0, 0)), + ("LeftTriangleBar;", (10703, 0)), + ("bsolhsub;", (10184, 0)), + ("Egra", (0, 0)), + ("ccaron;", (269, 0)), + ("vcy", (0, 0)), + ("Proportional", (0, 0)), + ("ShortLeftArrow", (0, 0)), + ("SubsetEqua", (0, 0)), + ("hearts;", (9829, 0)), + ("because;", (8757, 0)), + ("mcy;", (1084, 0)), + ("shortpa", (0, 0)), + ("NotGreaterS", (0, 0)), + ("lAr", (0, 0)), + ("realp", (0, 0)), + ("Cayley", (0, 0)), + ("RightTriangleBar;", (10704, 0)), + ("aop", (0, 0)), + ("NotLess", (0, 0)), + ("RightA", (0, 0)), + ("looparro", (0, 0)), + ("NotVe", (0, 0)), + ("equivD", (0, 0)), + ("Circl", (0, 0)), + ("leftthreetim", (0, 0)), + ("popf;", (120161, 0)), + ("DoubleVer", (0, 0)), + ("raqu", (0, 0)), + ("nbum", (0, 0)), + ("Larr", (0, 0)), + ("NotReverseElement;", (8716, 0)), + ("NotPrecedesSl", (0, 0)), + ("downharpoonl", (0, 0)), + ("nVDash", (0, 0)), + ("loopa", (0, 0)), + ("plusci", (0, 0)), + ("Eopf;", (120124, 0)), + ("larrhk;", (8617, 0)), + ("orarr", (0, 0)), + ("subnE", (0, 0)), + ("leftthreet", (0, 0)), + ("prop;", (8733, 0)), + ("nlsim", (0, 0)), + ("care", (0, 0)), + ("Inter", (0, 0)), + ("cc", (0, 0)), + ("CounterClo", (0, 0)), + ("nrar", (0, 0)), + ("DoubleLeftRightArro", (0, 0)), + ("permil;", (8240, 0)), + ("ps", (0, 0)), + ("Back", (0, 0)), + ("hookle", (0, 0)), + ("cs", (0, 0)), + ("ddagger", (0, 0)), + ("Succeeds", (0, 0)), + ("eqslantl", (0, 0)), + ("rbr", (0, 0)), + ("LeftArrowBar;", (8676, 0)), + ("Amacr;", (256, 0)), + ("angmsdaf", (0, 0)), + ("ImaginaryI", (0, 0)), + ("Ed", (0, 0)), + ("becau", (0, 0)), + ("Backslash", (0, 0)), + ("NotPrec", (0, 0)), + ("Rs", (0, 0)), + ("Rcedil", (0, 0)), + ("succcur", (0, 0)), + ("NotHumpEqual;", (8783, 824)), + ("Ssc", (0, 0)), + ("nsubsete", (0, 0)), + ("con", (0, 0)), + ("cdo", (0, 0)), + ("Fopf", (0, 0)), + ("Rrightarrow", (0, 0)), + ("scp", (0, 0)), + ("NotTildeEqua", (0, 0)), + ("napi", (0, 0)), + ("ab", (0, 0)), + ("Cap", (0, 0)), + ("lrh", (0, 0)), + ("NotHu", (0, 0)), + ("osla", (0, 0)), + ("rightsquigarro", (0, 0)), + ("exist", (0, 0)), + ("veeeq", (0, 0)), + ("DoubleLongLeftArr", (0, 0)), + ("Leftar", (0, 0)), + ("twoheadri", (0, 0)), + ("for", (0, 0)), + ("NotGreaterFullEqual", (0, 0)), + ("RightTr", (0, 0)), + ("Mellintrf", (0, 0)), + ("YIc", (0, 0)), + ("it;", (8290, 0)), + ("Uac", (0, 0)), + ("herc", (0, 0)), + ("mlcp;", (10971, 0)), + ("sqsupset;", (8848, 0)), + ("mp", (0, 0)), + ("rightthreetimes;", (8908, 0)), + ("MediumS", (0, 0)), + ("dharl;", (8643, 0)), + ("leftrightharp", (0, 0)), + ("cular", (0, 0)), + ("Sho", (0, 0)), + ("iexcl", (161, 0)), + ("pitc", (0, 0)), + ("L", (0, 0)), + ("LeftRightArro", (0, 0)), + ("Uring;", (366, 0)), + ("pars", (0, 0)), + ("asymp;", (8776, 0)), + ("Ati", (0, 0)), + ("angmsdad", (0, 0)), + ("malt", (0, 0)), + ("realin", (0, 0)), + ("RightVectorBar;", (10579, 0)), + ("Sc;", (10940, 0)), + ("NotTildeFull", (0, 0)), + ("Oci", (0, 0)), + ("rightharpoondown;", (8641, 0)), + ("trido", (0, 0)), + ("submult", (0, 0)), + ("elinters;", (9191, 0)), + ("cedil", (184, 0)), + ("eq", (0, 0)), + ("varepsi", (0, 0)), + ("circleddash;", (8861, 0)), + ("hoarr;", (8703, 0)), + ("ucirc", (251, 0)), + ("measureda", (0, 0)), + ("ContourInt", (0, 0)), + ("LowerLe", (0, 0)), + ("dzigrar", (0, 0)), + ("boxtimes;", (8864, 0)), + ("percnt", (0, 0)), + ("ogt", (0, 0)), + ("Iukc", (0, 0)), + ("DownTeeArrow;", (8615, 0)), + ("Agrav", (0, 0)), + ("gtrles", (0, 0)), + ("erDot;", (8787, 0)), + ("Mellint", (0, 0)), + ("PrecedesE", (0, 0)), + ("as", (0, 0)), + ("NotEx", (0, 0)), + ("sqsube", (0, 0)), + ("precsim;", (8830, 0)), + ("fs", (0, 0)), + ("realpart", (0, 0)), + ("Ropf", (0, 0)), + ("barvee;", (8893, 0)), + ("leftthre", (0, 0)), + ("NotSucceedsE", (0, 0)), + ("frac25;", (8534, 0)), + ("backe", (0, 0)), + ("Colo", (0, 0)), + ("vd", (0, 0)), + ("OverBar;", (8254, 0)), + ("exist;", (8707, 0)), + ("Cup;", (8915, 0)), + ("paralle", (0, 0)), + ("OverB", (0, 0)), + ("LessSlantEqual;", (10877, 0)), + ("zscr;", (120015, 0)), + ("DownL", (0, 0)), + ("mDD", (0, 0)), + ("boxH", (0, 0)), + ("fjl", (0, 0)), + ("Bre", (0, 0)), + ("NotLessEq", (0, 0)), + ("bso", (0, 0)), + ("blacklozenge;", (10731, 0)), + ("Rig", (0, 0)), + ("rparg", (0, 0)), + ("EmptyVerySmallSquare", (0, 0)), + ("smid;", (8739, 0)), + ("nis;", (8956, 0)), + ("DZcy", (0, 0)), + ("bigtriang", (0, 0)), + ("khc", (0, 0)), + ("lltr", (0, 0)), + ("OpenCurlyDo", (0, 0)), + ("NotRightTr", (0, 0)), + ("DiacriticalDoubleAcu", (0, 0)), + ("backepsi", (0, 0)), + ("OpenCurlyQ", (0, 0)), + ("trianglerigh", (0, 0)), + ("supe", (0, 0)), + ("Equi", (0, 0)), + ("NotHumpEqu", (0, 0)), + ("Usc", (0, 0)), + ("Msc", (0, 0)), + ("upsilon;", (965, 0)), + ("sex", (0, 0)), + ("FilledVerySmallSqu", (0, 0)), + ("RightUpDownV", (0, 0)), + ("copysr", (0, 0)), + ("ShortLeft", (0, 0)), + ("ultri;", (9720, 0)), + ("lsaquo", (0, 0)), + ("LeftUpT", (0, 0)), + ("De", (0, 0)), + ("twoheadleftarrow", (0, 0)), + ("nesear;", (10536, 0)), + ("NonBreakingS", (0, 0)), + ("thicksim;", (8764, 0)), + ("alefs", (0, 0)), + ("cupcap", (0, 0)), + ("hcirc", (0, 0)), + ("Kcedi", (0, 0)), + ("angrtvbd;", (10653, 0)), + ("capbr", (0, 0)), + ("UnderParen", (0, 0)), + ("GreaterS", (0, 0)), + ("solbar;", (9023, 0)), + ("fn", (0, 0)), + ("cularr;", (8630, 0)), + ("zee", (0, 0)), + ("laquo;", (171, 0)), + ("poi", (0, 0)), + ("roang;", (10221, 0)), + ("rHar;", (10596, 0)), + ("natur;", (9838, 0)), + ("Fill", (0, 0)), + ("y", (0, 0)), + ("NotSquareSubsetEqu", (0, 0)), + ("deg", (176, 0)), + ("ecy", (0, 0)), + ("aogon;", (261, 0)), + ("raemp", (0, 0)), + ("xlA", (0, 0)), + ("cupbrc", (0, 0)), + ("Imp", (0, 0)), + ("nang;", (8736, 8402)), + ("gtq", (0, 0)), + ("leftha", (0, 0)), + ("KHcy", (0, 0)), + ("xotime;", (10754, 0)), + ("nce", (0, 0)), + ("SquareIntersectio", (0, 0)), + ("varepsilon;", (1013, 0)), + ("DownBreve;", (785, 0)), + ("ulcr", (0, 0)), + ("vrtr", (0, 0)), + ("Js", (0, 0)), + ("gtrs", (0, 0)), + ("gtrl", (0, 0)), + ("VerticalSepara", (0, 0)), + ("blacktriangle;", (9652, 0)), + ("circlearrowright", (0, 0)), + ("bneq", (0, 0)), + ("frac", (0, 0)), + ("NotLessEqual;", (8816, 0)), + ("nrarrw", (0, 0)), + ("dzigrarr", (0, 0)), + ("cr", (0, 0)), + ("Xscr;", (119987, 0)), + ("rbbr", (0, 0)), + ("gb", (0, 0)), + ("hell", (0, 0)), + ("ntriangleleft;", (8938, 0)), + ("OverParent", (0, 0)), + ("longleftrightarr", (0, 0)), + ("rightar", (0, 0)), + ("pointint;", (10773, 0)), + ("ther", (0, 0)), + ("angsp", (0, 0)), + ("gime", (0, 0)), + ("Us", (0, 0)), + ("ropf;", (120163, 0)), + ("Df", (0, 0)), + ("dempty", (0, 0)), + ("complexe", (0, 0)), + ("Star;", (8902, 0)), + ("Idot;", (304, 0)), + ("soft", (0, 0)), + ("ccedil", (231, 0)), + ("nwarr;", (8598, 0)), + ("dfisht", (0, 0)), + ("Vert", (0, 0)), + ("dbk", (0, 0)), + ("gne", (0, 0)), + ("neq", (0, 0)), + ("boxHd;", (9572, 0)), + ("rfl", (0, 0)), + ("bigwedge", (0, 0)), + ("operp;", (10681, 0)), + ("lnapprox;", (10889, 0)), + ("times;", (215, 0)), + ("NestedGreaterGr", (0, 0)), + ("Ms", (0, 0)), + ("Vscr;", (119985, 0)), + ("UpEquilibr", (0, 0)), + ("inc", (0, 0)), + ("downdow", (0, 0)), + ("ApplyFuncti", (0, 0)), + ("lbrack", (0, 0)), + ("rce", (0, 0)), + ("ldrush", (0, 0)), + ("backsim", (0, 0)), + ("ph", (0, 0)), + ("LeftVector;", (8636, 0)), + ("umac", (0, 0)), + ("hsc", (0, 0)), + ("kscr", (0, 0)), + ("lrhard", (0, 0)), + ("NotEqual", (0, 0)), + ("map", (0, 0)), + ("fjlig", (0, 0)), + ("lsquo;", (8216, 0)), + ("sect", (167, 0)), + ("lbrkslu", (0, 0)), + ("Isc", (0, 0)), + ("K", (0, 0)), + ("ddagg", (0, 0)), + ("ReverseEquilibr", (0, 0)), + ("leftharpoonup", (0, 0)), + ("seswar;", (10537, 0)), + ("complement", (0, 0)), + ("Lleftarr", (0, 0)), + ("iuml;", (239, 0)), + ("simg", (0, 0)), + ("boxbox", (0, 0)), + ("Gg", (0, 0)), + ("cwc", (0, 0)), + ("NotSquareSupersetEqual", (0, 0)), + ("weie", (0, 0)), + ("agrav", (0, 0)), + ("UpEquilibrium", (0, 0)), + ("RightCeil", (0, 0)), + ("op", (0, 0)), + ("boxvl", (0, 0)), + ("dtri;", (9663, 0)), + ("nhp", (0, 0)), + ("rbrac", (0, 0)), + ("Leftrightarro", (0, 0)), + ("ccedil;", (231, 0)), + ("UnderBar;", (95, 0)), + ("UpperLe", (0, 0)), + ("pre", (0, 0)), + ("middot;", (183, 0)), + ("Hst", (0, 0)), + ("Downarro", (0, 0)), + ("Four", (0, 0)), + ("nshortmid", (0, 0)), + ("lesdoto", (0, 0)), + ("rnmid;", (10990, 0)), + ("leftlefta", (0, 0)), + ("rightleft", (0, 0)), + ("Bernoulli", (0, 0)), + ("qint;", (10764, 0)), + ("quatint", (0, 0)), + ("nsubseteqq;", (10949, 824)), + ("rot", (0, 0)), + ("Mscr;", (8499, 0)), + ("quatern", (0, 0)), + ("boxD", (0, 0)), + ("supmult;", (10946, 0)), + ("NotLeftTriangle", (0, 0)), + ("Gcedil", (0, 0)), + ("LeftUpDownVector", (0, 0)), + ("NotRightTria", (0, 0)), + ("wedbar;", (10847, 0)), + ("horbar", (0, 0)), + ("RightDownTee", (0, 0)), + ("Eog", (0, 0)), + ("boxVr", (0, 0)), + ("lesseqqgt", (0, 0)), + ("OverP", (0, 0)), + ("Eopf", (0, 0)), + ("Ograv", (0, 0)), + ("nearrow;", (8599, 0)), + ("ima", (0, 0)), + ("ffll", (0, 0)), + ("DownRightVector;", (8641, 0)), + ("dscy;", (1109, 0)), + ("Expon", (0, 0)), + ("DownRightTeeV", (0, 0)), + ("Darr", (0, 0)), + ("Tstrok;", (358, 0)), + ("boxHu", (0, 0)), + ("nearro", (0, 0)), + ("thkap", (0, 0)), + ("vartrianglelef", (0, 0)), + ("downdownarrow", (0, 0)), + ("sz", (0, 0)), + ("hookleftarr", (0, 0)), + ("Ll", (0, 0)), + ("vn", (0, 0)), + ("quaternion", (0, 0)), + ("omac", (0, 0)), + ("SquareSupersetEqua", (0, 0)), + ("thins", (0, 0)), + ("Lstrok;", (321, 0)), + ("dscr", (0, 0)), + ("longleftarrow;", (10229, 0)), + ("DoubleContourIn", (0, 0)), + ("LongLeftRightArrow;", (10231, 0)), + ("LongLeftArrow;", (10229, 0)), + ("trianglerighteq", (0, 0)), + ("lfloor;", (8970, 0)), + ("subseteqq;", (10949, 0)), + ("laquo", (171, 0)), + ("RightTeeA", (0, 0)), + ("brv", (0, 0)), + ("ltdot;", (8918, 0)), + ("brvba", (0, 0)), + ("fpartin", (0, 0)), + ("Downarr", (0, 0)), + ("swarrow", (0, 0)), + ("Assign", (0, 0)), + ("UpperRightArro", (0, 0)), + ("alefsym;", (8501, 0)), + ("DoubleLongLe", (0, 0)), + ("Lefta", (0, 0)), + ("khcy", (0, 0)), + ("NotSucceedsEqual", (0, 0)), + ("nsubseteq", (0, 0)), + ("drb", (0, 0)), + ("NonBreakingSp", (0, 0)), + ("Ta", (0, 0)), + ("succ", (0, 0)), + ("utd", (0, 0)), + ("exponentiale", (0, 0)), + ("gt;", (62, 0)), + ("eDDot", (0, 0)), + ("rlm", (0, 0)), + ("PrecedesSlantEq", (0, 0)), + ("DownArrowUpArrow", (0, 0)), + ("DDo", (0, 0)), + ("solb;", (10692, 0)), + ("laemptyv;", (10676, 0)), + ("bigve", (0, 0)), + ("Fourier", (0, 0)), + ("Epsilon", (0, 0)), + ("subd", (0, 0)), + ("CapitalDiffer", (0, 0)), + ("SHc", (0, 0)), + ("Gg;", (8921, 0)), + ("boxtime", (0, 0)), + ("OpenCurlyD", (0, 0)), + ("simrarr", (0, 0)), + ("Ksc", (0, 0)), + ("angrtvb;", (8894, 0)), + ("sbquo", (0, 0)), + ("precapp", (0, 0)), + ("Ef", (0, 0)), + ("OverBr", (0, 0)), + ("gns", (0, 0)), + ("Tstrok", (0, 0)), + ("setmi", (0, 0)), + ("LeftCeil", (0, 0)), + ("RightVectorBar", (0, 0)), + ("boxul", (0, 0)), + ("Lmidot", (0, 0)), + ("smepar", (0, 0)), + ("Zet", (0, 0)), + ("rising", (0, 0)), + ("ncedil", (0, 0)), + ("Longleftar", (0, 0)), + ("lsquo", (0, 0)), + ("Hop", (0, 0)), + ("elsdot;", (10903, 0)), + ("sigmaf", (0, 0)), + ("varsu", (0, 0)), + ("Ks", (0, 0)), + ("twoheadle", (0, 0)), + ("tri", (0, 0)), + ("blacks", (0, 0)), + ("wfr", (0, 0)), + ("ZeroWidthS", (0, 0)), + ("ZHc", (0, 0)), + ("ddotseq", (0, 0)), + ("DoubleLeftArrow", (0, 0)), + ("ijlig", (0, 0)), + ("straightep", (0, 0)), + ("Uarro", (0, 0)), + ("lj", (0, 0)), + ("LeftDownT", (0, 0)), + ("zeta", (0, 0)), + ("ssta", (0, 0)), + ("Un", (0, 0)), + ("mf", (0, 0)), + ("harrcir;", (10568, 0)), + ("UnderBar", (0, 0)), + ("midd", (0, 0)), + ("bsol", (0, 0)), + ("lrcorn", (0, 0)), + ("hooklefta", (0, 0)), + ("bsemi;", (8271, 0)), + ("searrow;", (8600, 0)), + ("thickapprox", (0, 0)), + ("scnE;", (10934, 0)), + ("elsdo", (0, 0)), + ("ao", (0, 0)), + ("Min", (0, 0)), + ("nlE", (0, 0)), + ("bigs", (0, 0)), + ("disin;", (8946, 0)), + ("NotTildeTil", (0, 0)), + ("Zacut", (0, 0)), + ("nwarrow", (0, 0)), + ("NotExists", (0, 0)), + ("oS", (0, 0)), + ("Ocy;", (1054, 0)), + ("scedil", (0, 0)), + ("there", (0, 0)), + ("notinv", (0, 0)), + ("Nacu", (0, 0)), + ("Lca", (0, 0)), + ("lha", (0, 0)), + ("vAr", (0, 0)), + ("Ugrave;", (217, 0)), + ("ntriangleleft", (0, 0)), + ("mid", (0, 0)), + ("DoubleC", (0, 0)), + ("GreaterSlantEqual;", (10878, 0)), + ("sc;", (8827, 0)), + ("NotTildeTild", (0, 0)), + ("LessEqualGreater", (0, 0)), + ("swA", (0, 0)), + ("ordm;", (186, 0)), + ("ominus;", (8854, 0)), + ("DotDot;", (8412, 0)), + ("LowerL", (0, 0)), + ("lbbr", (0, 0)), + ("lcu", (0, 0)), + ("vsub", (0, 0)), + ("Util", (0, 0)), + ("iog", (0, 0)), + ("ex", (0, 0)), + ("DotEq", (0, 0)), + ("scnsi", (0, 0)), + ("rmo", (0, 0)), + ("Sopf", (0, 0)), + ("empty;", (8709, 0)), + ("nang", (0, 0)), + ("upsilon", (0, 0)), + ("rightharpo", (0, 0)), + ("ee;", (8519, 0)), + ("vltr", (0, 0)), + ("yacute;", (253, 0)), + ("pscr", (0, 0)), + ("supla", (0, 0)), + ("sopf", (0, 0)), + ("varnothing", (0, 0)), + ("supdot;", (10942, 0)), + ("RightDoubl", (0, 0)), + ("RBa", (0, 0)), + ("precnap", (0, 0)), + ("hookrighta", (0, 0)), + ("setmn;", (8726, 0)), + ("angmsdah", (0, 0)), + ("Imaginary", (0, 0)), + ("ccedi", (0, 0)), + ("Union", (0, 0)), + ("xuplu", (0, 0)), + ("sum;", (8721, 0)), + ("trisb", (0, 0)), + ("amp;", (38, 0)), + ("rightle", (0, 0)), + ("theta", (0, 0)), + ("nleqq", (0, 0)), + ("preccur", (0, 0)), + ("lob", (0, 0)), + ("erarr", (0, 0)), + ("Icir", (0, 0)), + ("bum", (0, 0)), + ("amp", (38, 0)), + ("EmptySmallSquar", (0, 0)), + ("sp", (0, 0)), + ("Longleftrightarrow", (0, 0)), + ("hybul", (0, 0)), + ("Tcedil", (0, 0)), + ("tosa", (0, 0)), + ("SucceedsSl", (0, 0)), + ("Berno", (0, 0)), + ("RightDownVectorBar", (0, 0)), + ("half", (0, 0)), + ("emptys", (0, 0)), + ("rhard;", (8641, 0)), + ("nsim;", (8769, 0)), + ("solb", (0, 0)), + ("between", (0, 0)), + ("nwar", (0, 0)), + ("larrsim;", (10611, 0)), + ("UpEqui", (0, 0)), + ("ngtr;", (8815, 0)), + ("FilledSmallSquare", (0, 0)), + ("uogon", (0, 0)), + ("mi", (0, 0)), + ("cwin", (0, 0)), + ("varsupsetneq", (0, 0)), + ("LeftUpVec", (0, 0)), + ("nprcu", (0, 0)), + ("nan", (0, 0)), + ("blacksquare;", (9642, 0)), + ("rcedil", (0, 0)), + ("ShortDownArrow;", (8595, 0)), + ("rarrsim;", (10612, 0)), + ("Xopf;", (120143, 0)), + ("cross", (0, 0)), + ("DownTeeArr", (0, 0)), + ("Otild", (0, 0)), + ("Jop", (0, 0)), + ("NotGreaterFullEqu", (0, 0)), + ("bbr", (0, 0)), + ("biguplu", (0, 0)), + ("uop", (0, 0)), + ("Thin", (0, 0)), + ("ov", (0, 0)), + ("boxuR;", (9560, 0)), + ("nRightarrow;", (8655, 0)), + ("Iacute", (205, 0)), + ("reali", (0, 0)), + ("cupcup", (0, 0)), + ("LongRightAr", (0, 0)), + ("nleftr", (0, 0)), + ("clubsui", (0, 0)), + ("andan", (0, 0)), + ("ycy;", (1099, 0)), + ("nvinfin", (0, 0)), + ("Ac", (0, 0)), + ("longmapsto;", (10236, 0)), + ("RightDoubleBracket;", (10215, 0)), + ("blacksqua", (0, 0)), + ("DoubleContour", (0, 0)), + ("isins", (0, 0)), + ("varsupsetne", (0, 0)), + ("LeftUpVect", (0, 0)), + ("nearr", (0, 0)), + ("Lle", (0, 0)), + ("Dscr;", (119967, 0)), + ("SucceedsSlan", (0, 0)), + ("Ass", (0, 0)), + ("sime", (0, 0)), + ("popf", (0, 0)), + ("LJcy;", (1033, 0)), + ("backeps", (0, 0)), + ("disin", (0, 0)), + ("ReverseEq", (0, 0)), + ("LeftAngleBr", (0, 0)), + ("UnderB", (0, 0)), + ("fallingdots", (0, 0)), + ("Verba", (0, 0)), + ("nrArr;", (8655, 0)), + ("Unio", (0, 0)), + ("Vc", (0, 0)), + ("female;", (9792, 0)), + ("topcir", (0, 0)), + ("NotSquareSubs", (0, 0)), + ("intl", (0, 0)), + ("her", (0, 0)), + ("prsi", (0, 0)), + ("downdownarr", (0, 0)), + ("Plus", (0, 0)), + ("elsd", (0, 0)), + ("lvertne", (0, 0)), + ("ccaron", (0, 0)), + ("lang", (0, 0)), + ("loar", (0, 0)), + ("LessS", (0, 0)), + ("LeftRigh", (0, 0)), + ("eqslantg", (0, 0)), + ("zwn", (0, 0)), + ("nsimeq", (0, 0)), + ("urcro", (0, 0)), + ("CHcy", (0, 0)), + ("Lapl", (0, 0)), + ("leqsl", (0, 0)), + ("LeftDownTeeVect", (0, 0)), + ("shortparalle", (0, 0)), + ("nvHar", (0, 0)), + ("Different", (0, 0)), + ("scE;", (10932, 0)), + ("Su", (0, 0)), + ("rcar", (0, 0)), + ("utri;", (9653, 0)), + ("UpTe", (0, 0)), + ("GreaterTilde;", (8819, 0)), + ("isin;", (8712, 0)), + ("eur", (0, 0)), + ("darr;", (8595, 0)), + ("longleftright", (0, 0)), + ("euro", (0, 0)), + ("NotDoubleVerticalBa", (0, 0)), + ("orslope", (0, 0)), + ("Icy;", (1048, 0)), + ("af;", (8289, 0)), + ("blacktriangleright;", (9656, 0)), + ("rsa", (0, 0)), + ("lE", (0, 0)), + ("Longleftrighta", (0, 0)), + ("esdot;", (8784, 0)), + ("lmi", (0, 0)), + ("backprime;", (8245, 0)), + ("NotSuperse", (0, 0)), + ("curlyeqsucc", (0, 0)), + ("dwangle;", (10662, 0)), + ("uacute;", (250, 0)), + ("Longleftr", (0, 0)), + ("DotDo", (0, 0)), + ("Hstrok", (0, 0)), + ("thick", (0, 0)), + ("Longright", (0, 0)), + ("NotHumpDown", (0, 0)), + ("TH", (0, 0)), + ("lbrkslu;", (10637, 0)), + ("gvn", (0, 0)), + ("imagl", (0, 0)), + ("Proporti", (0, 0)), + ("sup", (0, 0)), + ("EmptyVerySmal", (0, 0)), + ("npr;", (8832, 0)), + ("circeq;", (8791, 0)), + ("suphs", (0, 0)), + ("angle;", (8736, 0)), + ("rAtai", (0, 0)), + ("rop", (0, 0)), + ("NegativeM", (0, 0)), + ("Longle", (0, 0)), + ("Invisibl", (0, 0)), + ("angza", (0, 0)), + ("bigu", (0, 0)), + ("NotHumpEq", (0, 0)), + ("DoubleLongLeftRightArrow", (0, 0)), + ("VDash;", (8875, 0)), + ("nGg;", (8921, 824)), + ("Gre", (0, 0)), + ("cempty", (0, 0)), + ("NegativeThick", (0, 0)), + ("leftl", (0, 0)), + ("Ucirc", (219, 0)), + ("tr", (0, 0)), + ("easte", (0, 0)), + ("lo", (0, 0)), + ("COPY", (169, 0)), + ("Poi", (0, 0)), + ("Congruen", (0, 0)), + ("smepa", (0, 0)), + ("rfi", (0, 0)), + ("eplus;", (10865, 0)), + ("LeftArrowRightArro", (0, 0)), + ("CounterClockwiseCo", (0, 0)), + ("frac34;", (190, 0)), + ("bopf;", (120147, 0)), + ("rightleftha", (0, 0)), + ("blacktriangledow", (0, 0)), + ("xutri;", (9651, 0)), + ("eqvp", (0, 0)), + ("Rho", (0, 0)), + ("profa", (0, 0)), + ("circleda", (0, 0)), + ("frac58", (0, 0)), + ("prsim;", (8830, 0)), + ("scsim;", (8831, 0)), + ("leftarrowta", (0, 0)), + ("LeftUpDown", (0, 0)), + ("eqco", (0, 0)), + ("NestedGreaterGreater", (0, 0)), + ("nwarhk;", (10531, 0)), + ("epsilo", (0, 0)), + ("Eg", (0, 0)), + ("dtdo", (0, 0)), + ("es", (0, 0)), + ("uwangl", (0, 0)), + ("zwj;", (8205, 0)), + ("LeftVec", (0, 0)), + ("succnap", (0, 0)), + ("iec", (0, 0)), + ("softc", (0, 0)), + ("topfo", (0, 0)), + ("vf", (0, 0)), + ("Hilbert", (0, 0)), + ("pro", (0, 0)), + ("gs", (0, 0)), + ("ReverseEquili", (0, 0)), + ("Wscr;", (119986, 0)), + ("DownLeftRigh", (0, 0)), + ("LeftRightAr", (0, 0)), + ("rmoustac", (0, 0)), + ("nprec", (0, 0)), + ("Trip", (0, 0)), + ("circlearrowright;", (8635, 0)), + ("SucceedsS", (0, 0)), + ("NoBr", (0, 0)), + ("xod", (0, 0)), + ("DoubleDot", (0, 0)), + ("mapstou", (0, 0)), + ("ncap;", (10819, 0)), + ("Diacri", (0, 0)), + ("subset;", (8834, 0)), + ("YA", (0, 0)), + ("Sigm", (0, 0)), + ("gtrarr;", (10616, 0)), + ("DoubleLongRigh", (0, 0)), + ("Beta;", (914, 0)), + ("gtrarr", (0, 0)), + ("nsup;", (8837, 0)), + ("LeftTeeVect", (0, 0)), + ("plank", (0, 0)), + ("omid", (0, 0)), + ("DownRightVectorB", (0, 0)), + ("lmoustach", (0, 0)), + ("OpenCu", (0, 0)), + ("Lt", (0, 0)), + ("gtreqqless;", (10892, 0)), + ("twohea", (0, 0)), + ("ni", (0, 0)), + ("laemp", (0, 0)), + ("lhblk;", (9604, 0)), + ("Ud", (0, 0)), + ("PrecedesS", (0, 0)), + ("MediumSpace", (0, 0)), + ("varnot", (0, 0)), + ("divonx", (0, 0)), + ("bar", (0, 0)), + ("RightUpTeeV", (0, 0)), + ("bigst", (0, 0)), + ("ExponentialE", (0, 0)), + ("rightthre", (0, 0)), + ("prod", (0, 0)), + ("npa", (0, 0)), + ("ufr;", (120114, 0)), + ("preccurl", (0, 0)), + ("oi", (0, 0)), + ("sf", (0, 0)), + ("IOc", (0, 0)), + ("loplu", (0, 0)), + ("Uo", (0, 0)), + ("rharu;", (8640, 0)), + ("LessG", (0, 0)), + ("doteqd", (0, 0)), + ("chc", (0, 0)), + ("Ubreve;", (364, 0)), + ("ris", (0, 0)), + ("nGtv", (0, 0)), + ("boxdr", (0, 0)), + ("rarrp", (0, 0)), + ("eco", (0, 0)), + ("hamil", (0, 0)), + ("ord;", (10845, 0)), + ("wedb", (0, 0)), + ("nsucc;", (8833, 0)), + ("zcy;", (1079, 0)), + ("NotLef", (0, 0)), + ("Ocy", (0, 0)), + ("Intersection", (0, 0)), + ("Ntilde;", (209, 0)), + ("vartriangleri", (0, 0)), + ("uuar", (0, 0)), + ("suphsol;", (10185, 0)), + ("verbar", (0, 0)), + ("exponentia", (0, 0)), + ("eop", (0, 0)), + ("boxU", (0, 0)), + ("twoheadlef", (0, 0)), + ("dotmin", (0, 0)), + ("rho", (0, 0)), + ("Ubreve", (0, 0)), + ("Jfr;", (120077, 0)), + ("LessGreate", (0, 0)), + ("Rced", (0, 0)), + ("vBar;", (10984, 0)), + ("Longleftarro", (0, 0)), + ("wsc", (0, 0)), + ("yen", (165, 0)), + ("NotGreaterFul", (0, 0)), + ("gcirc", (0, 0)), + ("qpri", (0, 0)), + ("napo", (0, 0)), + ("Aacu", (0, 0)), + ("UpDow", (0, 0)), + ("Assign;", (8788, 0)), + ("Chi", (0, 0)), + ("blank;", (9251, 0)), + ("VerticalSep", (0, 0)), + ("vars", (0, 0)), + ("SuchTh", (0, 0)), + ("NotSucceedsS", (0, 0)), + ("Ced", (0, 0)), + ("NotSquareS", (0, 0)), + ("LowerR", (0, 0)), + ("DoubleRight", (0, 0)), + ("NotDoub", (0, 0)), + ("subrar", (0, 0)), + ("boxpl", (0, 0)), + ("ogon", (0, 0)), + ("lescc", (0, 0)), + ("capan", (0, 0)), + ("egrave", (232, 0)), + ("VerticalBa", (0, 0)), + ("ltr", (0, 0)), + ("Fourie", (0, 0)), + ("Precedes;", (8826, 0)), + ("rarr", (0, 0)), + ("cuv", (0, 0)), + ("ct", (0, 0)), + ("Longleftrig", (0, 0)), + ("VDash", (0, 0)), + ("nsimeq;", (8772, 0)), + ("natural", (0, 0)), + ("TildeFullEqua", (0, 0)), + ("Updo", (0, 0)), + ("hamilt", (0, 0)), + ("OpenCur", (0, 0)), + ("Ve", (0, 0)), + ("Cdot;", (266, 0)), + ("updow", (0, 0)), + ("nleftarrow", (0, 0)), + ("jsercy", (0, 0)), + ("upharpoonr", (0, 0)), + ("ang;", (8736, 0)), + ("blacktriangledown;", (9662, 0)), + ("Im;", (8465, 0)), + ("curlyeq", (0, 0)), + ("cularrp", (0, 0)), + ("lrcor", (0, 0)), + ("comp", (0, 0)), + ("sstarf;", (8902, 0)), + ("apid;", (8779, 0)), + ("curvearrowlef", (0, 0)), + ("GreaterFull", (0, 0)), + ("xr", (0, 0)), + ("SupersetEqual", (0, 0)), + ("Ph", (0, 0)), + ("rightsquigarrow", (0, 0)), + ("divideonti", (0, 0)), + ("euml", (235, 0)), + ("Kappa;", (922, 0)), + ("npre", (0, 0)), + ("njcy;", (1114, 0)), + ("xla", (0, 0)), + ("blacktriangl", (0, 0)), + ("RightDownT", (0, 0)), + ("ReverseEle", (0, 0)), + ("DoubleLongRi", (0, 0)), + ("wreath;", (8768, 0)), + ("race", (0, 0)), + ("NotSquareSu", (0, 0)), + ("nbsp", (160, 0)), + ("ZeroWidt", (0, 0)), + ("wedg", (0, 0)), + ("he", (0, 0)), + ("UpperRightAr", (0, 0)), + ("xcirc;", (9711, 0)), + ("ges;", (10878, 0)), + ("trian", (0, 0)), + ("nsucceq;", (10928, 824)), + ("j", (0, 0)), + ("Cayl", (0, 0)), + ("Xsc", (0, 0)), + ("circle", (0, 0)), + ("yo", (0, 0)), + ("rcedil;", (343, 0)), + ("notn", (0, 0)), + ("NotCup", (0, 0)), + ("cirmid", (0, 0)), + ("o", (0, 0)), + ("UpperR", (0, 0)), + ("smallsetmin", (0, 0)), + ("boxvh;", (9532, 0)), + ("boxhU;", (9576, 0)), + ("ForA", (0, 0)), + ("RightDoub", (0, 0)), + ("nvHarr;", (10500, 0)), + ("Kcedil;", (310, 0)), + ("mdash;", (8212, 0)), + ("LeftUpTee", (0, 0)), + ("prnsi", (0, 0)), + ("rarrbf", (0, 0)), + ("thickapp", (0, 0)), + ("simg;", (10910, 0)), + ("Low", (0, 0)), + ("oast", (0, 0)), + ("rppoli", (0, 0)), + ("CloseCurlyDoubleQuote", (0, 0)), + ("RE", (0, 0)), + ("rbrk", (0, 0)), + ("Gop", (0, 0)), + ("epsi", (0, 0)), + ("RightU", (0, 0)), + ("aring;", (229, 0)), + ("eps", (0, 0)), + ("amalg;", (10815, 0)), + ("SquareInterse", (0, 0)), + ("Omic", (0, 0)), + ("bigo", (0, 0)), + ("rightleftharpoons", (0, 0)), + ("uog", (0, 0)), + ("ShortUpAr", (0, 0)), + ("Ropf;", (8477, 0)), + ("UpperLeft", (0, 0)), + ("downarrow", (0, 0)), + ("succsi", (0, 0)), + ("otime", (0, 0)), + ("Til", (0, 0)), + ("suphsub;", (10967, 0)), + ("llhard", (0, 0)), + ("Lop", (0, 0)), + ("ShortLeftA", (0, 0)), + ("NotPrecede", (0, 0)), + ("Gscr", (0, 0)), + ("NotD", (0, 0)), + ("boxminus", (0, 0)), + ("qi", (0, 0)), + ("iiint;", (8749, 0)), + ("NotEqualTild", (0, 0)), + ("Phi;", (934, 0)), + ("Clockw", (0, 0)), + ("cudar", (0, 0)), + ("Inte", (0, 0)), + ("midcir;", (10992, 0)), + ("UpE", (0, 0)), + ("lbar", (0, 0)), + ("ZeroWidthSpa", (0, 0)), + ("Zdot", (0, 0)), + ("lbrk", (0, 0)), + ("ReverseUpEquilibri", (0, 0)), + ("Capital", (0, 0)), + ("nhpa", (0, 0)), + ("precns", (0, 0)), + ("NotSquareSubset;", (8847, 824)), + ("Hi", (0, 0)), + ("eacute;", (233, 0)), + ("smile", (0, 0)), + ("RightUpTeeVect", (0, 0)), + ("pfr;", (120109, 0)), + ("Ncy", (0, 0)), + ("opa", (0, 0)), + ("xo", (0, 0)), + ("ntriangler", (0, 0)), + ("lotim", (0, 0)), + ("Element;", (8712, 0)), + ("Mcy;", (1052, 0)), + ("vdash;", (8866, 0)), + ("ExponentialE;", (8519, 0)), + ("vA", (0, 0)), + ("precnappro", (0, 0)), + ("Cci", (0, 0)), + ("ome", (0, 0)), + ("blk12", (0, 0)), + ("yf", (0, 0)), + ("plust", (0, 0)), + ("LeftDoubleBr", (0, 0)), + ("angrtv", (0, 0)), + ("cupor", (0, 0)), + ("gvnE", (0, 0)), + ("LessSlan", (0, 0)), + ("triangle", (0, 0)), + ("Lsh;", (8624, 0)), + ("ecir;", (8790, 0)), + ("NotPrecedes;", (8832, 0)), + ("Y", (0, 0)), + ("edo", (0, 0)), + ("PlusMin", (0, 0)), + ("DoubleLongL", (0, 0)), + ("racu", (0, 0)), + ("SHCH", (0, 0)), + ("Rrightar", (0, 0)), + ("u", (0, 0)), + ("cur", (0, 0)), + ("Copr", (0, 0)), + ("llh", (0, 0)), + ("NotCupC", (0, 0)), + ("Vee", (0, 0)), + ("lsquor", (0, 0)), + ("sop", (0, 0)), + ("nese", (0, 0)), + ("shar", (0, 0)), + ("hc", (0, 0)), + ("har", (0, 0)), + ("RuleDe", (0, 0)), + ("RightVec", (0, 0)), + ("bbrktb", (0, 0)), + ("boxDR;", (9556, 0)), + ("Lfr", (0, 0)), + ("Zfr;", (8488, 0)), + ("it", (0, 0)), + ("expectation;", (8496, 0)), + ("Lstro", (0, 0)), + ("sol;", (47, 0)), + ("ShortLef", (0, 0)), + ("tel", (0, 0)), + ("mul", (0, 0)), + ("uac", (0, 0)), + ("dblac;", (733, 0)), + ("Esim", (0, 0)), + ("nappr", (0, 0)), + ("ulcorn;", (8988, 0)), + ("lotimes;", (10804, 0)), + ("SucceedsEq", (0, 0)), + ("nti", (0, 0)), + ("ffl", (0, 0)), + ("beth;", (8502, 0)), + ("circledas", (0, 0)), + ("nVda", (0, 0)), + ("udh", (0, 0)), + ("ET", (0, 0)), + ("luru", (0, 0)), + ("fp", (0, 0)), + ("simne", (0, 0)), + ("NotCongruent;", (8802, 0)), + ("less", (0, 0)), + ("thetav;", (977, 0)), + ("lopar;", (10629, 0)), + ("zeetrf;", (8488, 0)), + ("uwang", (0, 0)), + ("nearhk;", (10532, 0)), + ("rect", (0, 0)), + ("IJlig;", (306, 0)), + ("mscr", (0, 0)), + ("crarr;", (8629, 0)), + ("vartriangler", (0, 0)), + ("tcy", (0, 0)), + ("varpr", (0, 0)), + ("InvisibleTimes;", (8290, 0)), + ("urtri;", (9721, 0)), + ("Hci", (0, 0)), + ("UpEq", (0, 0)), + ("LeftVectorB", (0, 0)), + ("rmoustache;", (9137, 0)), + ("ngeqsla", (0, 0)), + ("NotEqual;", (8800, 0)), + ("imac", (0, 0)), + ("quater", (0, 0)), + ("Tf", (0, 0)), + ("nvge", (0, 0)), + ("LeftUpTeeV", (0, 0)), + ("fallingd", (0, 0)), + ("Zs", (0, 0)), + ("Fouriertr", (0, 0)), + ("lessdot", (0, 0)), + ("Ec", (0, 0)), + ("nsce;", (10928, 824)), + ("tcaron;", (357, 0)), + ("seAr", (0, 0)), + ("agra", (0, 0)), + ("GreaterGreater", (0, 0)), + ("ug", (0, 0)), + ("NotSucceedsTilde", (0, 0)), + ("UpAr", (0, 0)), + ("hopf;", (120153, 0)), + ("NotLessSl", (0, 0)), + ("iinfin;", (10716, 0)), + ("dlcro", (0, 0)), + ("bet", (0, 0)), + ("cir;", (9675, 0)), + ("iacute", (237, 0)), + ("gtl", (0, 0)), + ("olcross;", (10683, 0)), + ("Non", (0, 0)), + ("impe", (0, 0)), + ("Exponential", (0, 0)), + ("VeryThinSpace", (0, 0)), + ("CloseCurlyD", (0, 0)), + ("ef", (0, 0)), + ("Conin", (0, 0)), + ("za", (0, 0)), + ("DoubleLongLeftArrow;", (10232, 0)), + ("dsol", (0, 0)), + ("ra", (0, 0)), + ("hellip;", (8230, 0)), + ("loz;", (9674, 0)), + ("Cayleys", (0, 0)), + ("RightDownTeeVe", (0, 0)), + ("Si", (0, 0)), + ("ohbar;", (10677, 0)), + ("U", (0, 0)), + ("trit", (0, 0)), + ("pl", (0, 0)), + ("timesd", (0, 0)), + ("nless;", (8814, 0)), + ("sqsupseteq;", (8850, 0)), + ("Vda", (0, 0)), + ("SquareSupersetEqual", (0, 0)), + ("ShortDownArrow", (0, 0)), + ("Edo", (0, 0)), + ("DownRightTeeVector;", (10591, 0)), + ("CounterClockwiseContourInteg", (0, 0)), + ("lap;", (10885, 0)), + ("SquareSuperset", (0, 0)), + ("Lower", (0, 0)), + ("check", (0, 0)), + ("Ca", (0, 0)), + ("looparrowright;", (8620, 0)), + ("CapitalDif", (0, 0)), + ("ncongdot", (0, 0)), + ("ub", (0, 0)), + ("nwa", (0, 0)), + ("Mellintr", (0, 0)), + ("elinters", (0, 0)), + ("lessappr", (0, 0)), + ("perm", (0, 0)), + ("Succeed", (0, 0)), + ("odsold;", (10684, 0)), + ("Ep", (0, 0)), + ("DZc", (0, 0)), + ("wei", (0, 0)), + ("Cong", (0, 0)), + ("preccurlye", (0, 0)), + ("nparallel;", (8742, 0)), + ("NotLeftTriangleBar;", (10703, 824)), + ("Pfr;", (120083, 0)), + ("GreaterGreater;", (10914, 0)), + ("Odblac", (0, 0)), + ("xd", (0, 0)), + ("puncsp", (0, 0)), + ("ntrianglelef", (0, 0)), + ("gtcc;", (10919, 0)), + ("scnE", (0, 0)), + ("osc", (0, 0)), + ("rAarr", (0, 0)), + ("boxdr;", (9484, 0)), + ("rarrsi", (0, 0)), + ("Sacute", (0, 0)), + ("NegativeThinSpace", (0, 0)), + ("Nega", (0, 0)), + ("LeftArrowRightArrow;", (8646, 0)), + ("ecaron;", (283, 0)), + ("Les", (0, 0)), + ("sim;", (8764, 0)), + ("bot;", (8869, 0)), + ("ShortRightArr", (0, 0)), + ("blacktrianglerigh", (0, 0)), + ("zsc", (0, 0)), + ("expone", (0, 0)), + ("NotLessL", (0, 0)), + ("ors", (0, 0)), + ("bNot;", (10989, 0)), + ("Upper", (0, 0)), + ("Le", (0, 0)), + ("gtrapprox", (0, 0)), + ("tprime", (0, 0)), + ("veeb", (0, 0)), + ("nvinf", (0, 0)), + ("ffi", (0, 0)), + ("Dagger", (0, 0)), + ("Kscr", (0, 0)), + ("vartr", (0, 0)), + ("smeparsl", (0, 0)), + ("star", (0, 0)), + ("rightsqu", (0, 0)), + ("die;", (168, 0)), + ("Pop", (0, 0)), + ("divon", (0, 0)), + ("nle;", (8816, 0)), + ("larrsi", (0, 0)), + ("nequ", (0, 0)), + ("rightleftarrows", (0, 0)), + ("q", (0, 0)), + ("Abreve;", (258, 0)), + ("dop", (0, 0)), + ("longlefta", (0, 0)), + ("LeftRi", (0, 0)), + ("bulle", (0, 0)), + ("nvrtri", (0, 0)), + ("Mopf;", (120132, 0)), + ("hcirc;", (293, 0)), + ("incar", (0, 0)), + ("RightTrian", (0, 0)), + ("precne", (0, 0)), + ("target;", (8982, 0)), + ("Ocirc;", (212, 0)), + ("ama", (0, 0)), + ("prcue", (0, 0)), + ("uHar", (0, 0)), + ("IJ", (0, 0)), + ("lsimg;", (10895, 0)), + ("simeq;", (8771, 0)), + ("TS", (0, 0)), + ("solbar", (0, 0)), + ("rarrsim", (0, 0)), + ("asym", (0, 0)), + ("ggg;", (8921, 0)), + ("raempty", (0, 0)), + ("hookrightarr", (0, 0)), + ("bow", (0, 0)), + ("CircleMinu", (0, 0)), + ("nshortpara", (0, 0)), + ("nrightar", (0, 0)), + ("straigh", (0, 0)), + ("DoubleLeftRightArrow;", (8660, 0)), + ("gesdo", (0, 0)), + ("bbrkt", (0, 0)), + ("DoubleRightTee;", (8872, 0)), + ("rrar", (0, 0)), + ("SquareUnion;", (8852, 0)), + ("NotGreaterGre", (0, 0)), + ("sqcap;", (8851, 0)), + ("DotEqua", (0, 0)), + ("RightArr", (0, 0)), + ("Ju", (0, 0)), + ("sqsupseteq", (0, 0)), + ("ltrPa", (0, 0)), + ("NotSquareSuper", (0, 0)), + ("orv;", (10843, 0)), + ("varsigma", (0, 0)), + ("andslop", (0, 0)), + ("nwarrow;", (8598, 0)), + ("CloseCurl", (0, 0)), + ("copf", (0, 0)), + ("UpDown", (0, 0)), + ("bk", (0, 0)), + ("Pro", (0, 0)), + ("NegativeVeryThinSpace", (0, 0)), + ("tripl", (0, 0)), + ("frac14", (188, 0)), + ("Lambd", (0, 0)), + ("Jcirc;", (308, 0)), + ("npo", (0, 0)), + ("yfr", (0, 0)), + ("DoubleU", (0, 0)), + ("mstp", (0, 0)), + ("Rightarr", (0, 0)), + ("que", (0, 0)), + ("divide", (247, 0)), + ("Cced", (0, 0)), + ("bNo", (0, 0)), + ("swnwar", (0, 0)), + ("dlcor", (0, 0)), + ("time", (0, 0)), + ("thk", (0, 0)), + ("ltcir", (0, 0)), + ("sup3", (179, 0)), + ("Ncaron", (0, 0)), + ("Therefore;", (8756, 0)), + ("CloseCurlyQuo", (0, 0)), + ("NotSubset;", (8834, 8402)), + ("ruluhar", (0, 0)), + ("blk1", (0, 0)), + ("lcub", (0, 0)), + ("period;", (46, 0)), + ("vzigz", (0, 0)), + ("tos", (0, 0)), + ("nwn", (0, 0)), + ("Id", (0, 0)), + ("ddots", (0, 0)), + ("eqvpa", (0, 0)), + ("intprod", (0, 0)), + ("scna", (0, 0)), + ("Medium", (0, 0)), + ("ffr", (0, 0)), + ("ii;", (8520, 0)), + ("CounterClockwiseCont", (0, 0)), + ("boxur;", (9492, 0)), + ("colo", (0, 0)), + ("trianglerig", (0, 0)), + ("latai", (0, 0)), + ("IEc", (0, 0)), + ("awco", (0, 0)), + ("rightharpoondown", (0, 0)), + ("shortmid", (0, 0)), + ("LeftUpTeeVecto", (0, 0)), + ("Longleftrigh", (0, 0)), + ("Tcar", (0, 0)), + ("LeftUpDo", (0, 0)), + ("checkmark", (0, 0)), + ("Rarr;", (8608, 0)), + ("isindot;", (8949, 0)), + ("Rac", (0, 0)), + ("solba", (0, 0)), + ("dda", (0, 0)), + ("sc", (0, 0)), + ("infin;", (8734, 0)), + ("npr", (0, 0)), + ("prnE", (0, 0)), + ("NotRightT", (0, 0)), + ("NegativeMediumSpace;", (8203, 0)), + ("alpha;", (945, 0)), + ("Ccaro", (0, 0)), + ("NotTildeTilde;", (8777, 0)), + ("rca", (0, 0)), + ("geqslant;", (10878, 0)), + ("bsolh", (0, 0)), + ("mapstodo", (0, 0)), + ("NotLessGrea", (0, 0)), + ("RightAngleBr", (0, 0)), + ("middo", (0, 0)), + ("lcaron;", (318, 0)), + ("supedo", (0, 0)), + ("iogon", (0, 0)), + ("GreaterTilde", (0, 0)), + ("PrecedesSlant", (0, 0)), + ("HA", (0, 0)), + ("leftrighta", (0, 0)), + ("boxdl", (0, 0)), + ("NotN", (0, 0)), + ("LeftVectorBa", (0, 0)), + ("Cacute;", (262, 0)), + ("ae", (0, 0)), + ("suped", (0, 0)), + ("infi", (0, 0)), + ("Esi", (0, 0)), + ("gnapprox", (0, 0)), + ("uha", (0, 0)), + ("Br", (0, 0)), + ("divideontimes", (0, 0)), + ("heartsui", (0, 0)), + ("Dc", (0, 0)), + ("boxvr", (0, 0)), + ("EmptyS", (0, 0)), + ("cirscir;", (10690, 0)), + ("egsd", (0, 0)), + ("hookleft", (0, 0)), + ("nvr", (0, 0)), + ("lne", (0, 0)), + ("ati", (0, 0)), + ("NotTildeEqual", (0, 0)), + ("NotSucceeds", (0, 0)), + ("LeftDownVector", (0, 0)), + ("Ffr;", (120073, 0)), + ("Sfr;", (120086, 0)), + ("eng;", (331, 0)), + ("lurdshar;", (10570, 0)), + ("NotVer", (0, 0)), + ("frac78", (0, 0)), + ("LeftUpTeeVector", (0, 0)), + ("longleftrightarro", (0, 0)), + ("nleftarr", (0, 0)), + ("Thick", (0, 0)), + ("Llefta", (0, 0)), + ("VerticalSepa", (0, 0)), + ("Sq", (0, 0)), + ("TRADE;", (8482, 0)), + ("Diamon", (0, 0)), + ("ell;", (8467, 0)), + ("Cop", (0, 0)), + ("Zfr", (0, 0)), + ("succsim;", (8831, 0)), + ("NonBrea", (0, 0)), + ("Rcaron;", (344, 0)), + ("rth", (0, 0)), + ("nparalle", (0, 0)), + ("Wcirc;", (372, 0)), + ("jukcy", (0, 0)), + ("dwang", (0, 0)), + ("SuchTha", (0, 0)), + ("varsubset", (0, 0)), + ("Vfr;", (120089, 0)), + ("nsubse", (0, 0)), + ("hop", (0, 0)), + ("multimap", (0, 0)), + ("nvd", (0, 0)), + ("NotLeftTri", (0, 0)), + ("curvearrowl", (0, 0)), + ("tilde", (0, 0)), + ("zacu", (0, 0)), + ("zcy", (0, 0)), + ("PrecedesTilde", (0, 0)), + ("DoubleLeftR", (0, 0)), + ("Larr;", (8606, 0)), + ("Ss", (0, 0)), + ("zacut", (0, 0)), + ("Poincarepla", (0, 0)), + ("urcorn;", (8989, 0)), + ("boxUl", (0, 0)), + ("Rc", (0, 0)), + ("lbarr", (0, 0)), + ("vartriangleright", (0, 0)), + ("eqcolon", (0, 0)), + ("CapitalDiffe", (0, 0)), + ("subsetneqq;", (10955, 0)), + ("Dcaro", (0, 0)), + ("ldsh;", (8626, 0)), + ("ccup", (0, 0)), + ("CircleTimes;", (8855, 0)), + ("coprod;", (8720, 0)), + ("RightDownVec", (0, 0)), + ("SquareSup", (0, 0)), + ("nprc", (0, 0)), + ("sr", (0, 0)), + ("rea", (0, 0)), + ("LeftUpTeeVector;", (10592, 0)), + ("midci", (0, 0)), + ("upl", (0, 0)), + ("DoubleContourIntegral;", (8751, 0)), + ("RightDownVectorBa", (0, 0)), + ("Zcy", (0, 0)), + ("NotSquareSupersetE", (0, 0)), + ("UpA", (0, 0)), + ("circlearro", (0, 0)), + ("gescc;", (10921, 0)), + ("dtrif;", (9662, 0)), + ("Ig", (0, 0)), + ("NotGreaterSlantEqual;", (10878, 824)), + ("die", (0, 0)), + ("NotSupersetE", (0, 0)), + ("dollar", (0, 0)), + ("tritime;", (10811, 0)), + ("digamma", (0, 0)), + ("CapitalDifferen", (0, 0)), + ("ffili", (0, 0)), + ("scedil;", (351, 0)), + ("delt", (0, 0)), + ("sqsupe", (0, 0)), + ("nc", (0, 0)), + ("NotSucceedsEqu", (0, 0)), + ("NoBreak;", (8288, 0)), + ("NegativeVeryThinSp", (0, 0)), + ("ShortLeftArr", (0, 0)), + ("SOF", (0, 0)), + ("egr", (0, 0)), + ("CHc", (0, 0)), + ("NestedLessLess", (0, 0)), + ("leftr", (0, 0)), + ("SucceedsTilde", (0, 0)), + ("Square", (0, 0)), + ("Oo", (0, 0)), + ("d", (0, 0)), + ("varsupsetneqq", (0, 0)), + ("varsi", (0, 0)), + ("nlE;", (8806, 824)), + ("Lm", (0, 0)), + ("rtriltri;", (10702, 0)), + ("dfisht;", (10623, 0)), + ("DoubleRightTee", (0, 0)), + ("ltcc", (0, 0)), + ("triti", (0, 0)), + ("loa", (0, 0)), + ("Dscr", (0, 0)), + ("rtriltr", (0, 0)), + ("nRightarr", (0, 0)), + ("ngsi", (0, 0)), + ("curlyeqsucc;", (8927, 0)), + ("horbar;", (8213, 0)), + ("Kcy;", (1050, 0)), + ("LeftUpVectorBar", (0, 0)), + ("DoubleVerticalB", (0, 0)), + ("subdot", (0, 0)), + ("fro", (0, 0)), + ("ThinSpac", (0, 0)), + ("Ograve", (210, 0)), + ("lti", (0, 0)), + ("copy;", (169, 0)), + ("cro", (0, 0)), + ("DoubleVertic", (0, 0)), + ("prnsim;", (8936, 0)), + ("kj", (0, 0)), + ("lsqu", (0, 0)), + ("Igrave;", (204, 0)), + ("DoubleRightT", (0, 0)), + ("Alpha;", (913, 0)), + ("Lan", (0, 0)), + ("llcorner", (0, 0)), + ("risingdotseq", (0, 0)), + ("olcro", (0, 0)), + ("MinusPlu", (0, 0)), + ("gtdot", (0, 0)), + ("bsolhs", (0, 0)), + ("hb", (0, 0)), + ("hkswarow;", (10534, 0)), + ("dbkaro", (0, 0)), + ("SquareSubsetEqu", (0, 0)), + ("lmous", (0, 0)), + ("AM", (0, 0)), + ("tpri", (0, 0)), + ("ofr", (0, 0)), + ("ZHcy;", (1046, 0)), + ("equiv", (0, 0)), + ("EmptyVe", (0, 0)), + ("eqslantless;", (10901, 0)), + ("upharpoonrigh", (0, 0)), + ("eng", (0, 0)), + ("Lo", (0, 0)), + ("Invisi", (0, 0)), + ("larrhk", (0, 0)), + ("nbumpe;", (8783, 824)), + ("nshortparalle", (0, 0)), + ("lsaquo;", (8249, 0)), + ("nLeftrig", (0, 0)), + ("omi", (0, 0)), + ("lu", (0, 0)), + ("Cedi", (0, 0)), + ("bnot;", (8976, 0)), + ("Dca", (0, 0)), + ("xcap;", (8898, 0)), + ("ca", (0, 0)), + ("fpa", (0, 0)), + ("UpDownArro", (0, 0)), + ("NotTildeFullEqual;", (8775, 0)), + ("Pa", (0, 0)), + ("iiint", (0, 0)), + ("plankv", (0, 0)), + ("curr", (0, 0)), + ("shc", (0, 0)), + ("At", (0, 0)), + ("plusmn", (177, 0)), + ("lates", (0, 0)), + ("cent;", (162, 0)), + ("dbka", (0, 0)), + ("Sum", (0, 0)), + ("NotCo", (0, 0)), + ("lurdsh", (0, 0)), + ("nhAr", (0, 0)), + ("UnderBa", (0, 0)), + ("vsubn", (0, 0)), + ("rdsh;", (8627, 0)), + ("leftth", (0, 0)), + ("SubsetEqual", (0, 0)), + ("EqualTilde;", (8770, 0)), + ("lnE;", (8808, 0)), + ("dou", (0, 0)), + ("telre", (0, 0)), + ("DownArrowB", (0, 0)), + ("nsccu", (0, 0)), + ("Colon;", (8759, 0)), + ("bac", (0, 0)), + ("UpperRi", (0, 0)), + ("longleftrigh", (0, 0)), + ("Eta;", (919, 0)), + ("NotNestedGre", (0, 0)), + ("Nopf", (0, 0)), + ("Upar", (0, 0)), + ("circleddas", (0, 0)), + ("rcaron;", (345, 0)), + ("ApplyF", (0, 0)), + ("djcy;", (1106, 0)), + ("succnsi", (0, 0)), + ("xra", (0, 0)), + ("frac3", (0, 0)), + ("succneq", (0, 0)), + ("eqsla", (0, 0)), + ("NotNestedG", (0, 0)), + ("upsi;", (965, 0)), + ("CounterClockwiseContourIntegr", (0, 0)), + ("subdo", (0, 0)), + ("Leftright", (0, 0)), + ("GreaterEqua", (0, 0)), + ("Lsh", (0, 0)), + ("itilde", (0, 0)), + ("SmallCircle;", (8728, 0)), + ("diamond", (0, 0)), + ("ApplyFunction;", (8289, 0)), + ("iiota;", (8489, 0)), + ("upharpo", (0, 0)), + ("ContourIntegral", (0, 0)), + ("ffilig;", (64259, 0)), + ("NotEqualTi", (0, 0)), + ("gvertneq", (0, 0)), + ("NotPre", (0, 0)), + ("fflig", (0, 0)), + ("varsubsetneq;", (8842, 65024)), + ("NotSquareSup", (0, 0)), + ("models", (0, 0)), + ("nLefta", (0, 0)), + ("drbkarow", (0, 0)), + ("DoubleUpDownArr", (0, 0)), + ("xcirc", (0, 0)), + ("empty", (0, 0)), + ("CounterClockw", (0, 0)), + ("quatint;", (10774, 0)), + ("LeftDou", (0, 0)), + ("LeftTeeVecto", (0, 0)), + ("dotsquare;", (8865, 0)), + ("bernou", (0, 0)), + ("Omicro", (0, 0)), + ("colone", (0, 0)), + ("xh", (0, 0)), + ("varnothin", (0, 0)), + ("pound;", (163, 0)), + ("gtc", (0, 0)), + ("LowerLeftA", (0, 0)), + ("xoplu", (0, 0)), + ("geqsla", (0, 0)), + ("uogo", (0, 0)), + ("epar", (0, 0)), + ("cacut", (0, 0)), + ("apos", (0, 0)), + ("xdtri;", (9661, 0)), + ("CupCap", (0, 0)), + ("iti", (0, 0)), + ("Breve", (0, 0)), + ("utilde", (0, 0)), + ("Ycirc", (0, 0)), + ("Rcy;", (1056, 0)), + ("NotSubse", (0, 0)), + ("napE;", (10864, 824)), + ("lat", (0, 0)), + ("UpDownArrow;", (8597, 0)), + ("pluse", (0, 0)), + ("ShortDow", (0, 0)), + ("OverBracke", (0, 0)), + ("vprop", (0, 0)), + ("flt", (0, 0)), + ("Rf", (0, 0)), + ("lbr", (0, 0)), + ("DoubleRightTe", (0, 0)), + ("conint", (0, 0)), + ("SucceedsSlantEqual;", (8829, 0)), + ("DownArrow;", (8595, 0)), + ("LessGreat", (0, 0)), + ("Ru", (0, 0)), + ("exis", (0, 0)), + ("csub;", (10959, 0)), + ("lcaron", (0, 0)), + ("ntrianglel", (0, 0)), + ("ip", (0, 0)), + ("Aopf;", (120120, 0)), + ("Phi", (0, 0)), + ("TildeTild", (0, 0)), + ("rightright", (0, 0)), + ("ffr;", (120099, 0)), + ("ograve", (242, 0)), + ("cacute;", (263, 0)), + ("NotVert", (0, 0)), + ("scedi", (0, 0)), + ("succcurlyeq", (0, 0)), + ("Bs", (0, 0)), + ("weierp", (0, 0)), + ("lesss", (0, 0)), + ("backc", (0, 0)), + ("rpar;", (41, 0)), + ("LeftFloor", (0, 0)), + ("yic", (0, 0)), + ("Omacr;", (332, 0)), + ("nabla;", (8711, 0)), + ("gne;", (10888, 0)), + ("nvDas", (0, 0)), + ("reg;", (174, 0)), + ("CounterClockwiseContourI", (0, 0)), + ("geqsl", (0, 0)), + ("lobrk;", (10214, 0)), + ("oslas", (0, 0)), + ("Ds", (0, 0)), + ("Odbla", (0, 0)), + ("bigstar", (0, 0)), + ("olc", (0, 0)), + ("perte", (0, 0)), + ("dotp", (0, 0)), + ("DoubleUpArro", (0, 0)), + ("gtrdot;", (8919, 0)), + ("Jscr;", (119973, 0)), + ("tcedil", (0, 0)), + ("Mel", (0, 0)), + ("gtrapprox;", (10886, 0)), + ("dotmi", (0, 0)), + ("harrw", (0, 0)), + ("ntg", (0, 0)), + ("EmptySmall", (0, 0)), + ("CapitalD", (0, 0)), + ("cudarr", (0, 0)), + ("lvert", (0, 0)), + ("subdot;", (10941, 0)), + ("sup3;", (179, 0)), + ("minu", (0, 0)), + ("yicy", (0, 0)), + ("boxVr;", (9567, 0)), + ("Ncar", (0, 0)), + ("otild", (0, 0)), + ("RightTriangl", (0, 0)), + ("UpperRightArrow", (0, 0)), + ("subedo", (0, 0)), + ("dr", (0, 0)), + ("GreaterFullEqual;", (8807, 0)), + ("RightAngleBrack", (0, 0)), + ("we", (0, 0)), + ("DiacriticalGrave", (0, 0)), + ("Oscr;", (119978, 0)), + ("zigrarr;", (8669, 0)), + ("Eci", (0, 0)), + ("LeftTriangleBar", (0, 0)), + ("lozf", (0, 0)), + ("Ns", (0, 0)), + ("omeg", (0, 0)), + ("sime;", (8771, 0)), + ("gtrless;", (8823, 0)), + ("Cen", (0, 0)), + ("Ia", (0, 0)), + ("mnplu", (0, 0)), + ("lae", (0, 0)), + ("primes;", (8473, 0)), + ("acd", (0, 0)), + ("NotNeste", (0, 0)), + ("nhArr", (0, 0)), + ("ltcir;", (10873, 0)), + ("thinsp;", (8201, 0)), + ("lt", (60, 0)), + ("ApplyFunct", (0, 0)), + ("nsubseteq;", (8840, 0)), + ("lesssim;", (8818, 0)), + ("dstro", (0, 0)), + ("Tab", (0, 0)), + ("circlearrowle", (0, 0)), + ("LessLes", (0, 0)), + ("Squa", (0, 0)), + ("Topf", (0, 0)), + ("eqvpars", (0, 0)), + ("UnderBrac", (0, 0)), + ("quaterni", (0, 0)), + ("curlye", (0, 0)), + ("dagg", (0, 0)), + ("profalar;", (9006, 0)), + ("frac15;", (8533, 0)), + ("Longrightarrow", (0, 0)), + ("bigsqcup;", (10758, 0)), + ("Uppe", (0, 0)), + ("GreaterSlan", (0, 0)), + ("Lleftar", (0, 0)), + ("trpe", (0, 0)), + ("SucceedsEqual;", (10928, 0)), + ("NegativeMediumSpace", (0, 0)), + ("wedba", (0, 0)), + ("leftle", (0, 0)), + ("RightVector", (0, 0)), + ("bsol;", (92, 0)), + ("Acy", (0, 0)), + ("dzigrarr;", (10239, 0)), + ("double", (0, 0)), + ("SquareIn", (0, 0)), + ("emsp", (0, 0)), + ("thetasym;", (977, 0)), + ("Xop", (0, 0)), + ("cwi", (0, 0)), + ("Mcy", (0, 0)), + ("ltcc;", (10918, 0)), + ("vsubne;", (8842, 65024)), + ("cfr;", (120096, 0)), + ("thorn;", (254, 0)), + ("Lar", (0, 0)), + ("fllig;", (64258, 0)), + ("foral", (0, 0)), + ("boxvh", (0, 0)), + ("boxdl;", (9488, 0)), + ("DoubleContourInt", (0, 0)), + ("GJcy;", (1027, 0)), + ("shchcy", (0, 0)), + ("Uopf", (0, 0)), + ("ze", (0, 0)), + ("at", (0, 0)), + ("model", (0, 0)), + ("uharl", (0, 0)), + ("prec", (0, 0)), + ("UnderParenth", (0, 0)), + ("NotSucceedsSlantEqual", (0, 0)), + ("curve", (0, 0)), + ("rnmi", (0, 0)), + ("ClockwiseCon", (0, 0)), + ("Rar", (0, 0)), + ("nsubs", (0, 0)), + ("sccu", (0, 0)), + ("SucceedsSla", (0, 0)), + ("atild", (0, 0)), + ("ddotse", (0, 0)), + ("curarrm;", (10556, 0)), + ("LeftDoubleB", (0, 0)), + ("exponenti", (0, 0)), + ("apid", (0, 0)), + ("awconint;", (8755, 0)), + ("te", (0, 0)), + ("ult", (0, 0)), + ("LessT", (0, 0)), + ("uarr", (0, 0)), + ("Jfr", (0, 0)), + ("radic", (0, 0)), + ("NotLeftTriang", (0, 0)), + ("intprod;", (10812, 0)), + ("xf", (0, 0)), + ("GreaterSlantEq", (0, 0)), + ("ngeqq;", (8807, 824)), + ("prcue;", (8828, 0)), + ("bigwedg", (0, 0)), + ("dH", (0, 0)), + ("gesdotol;", (10884, 0)), + ("ShortDownA", (0, 0)), + ("div;", (247, 0)), + ("dfi", (0, 0)), + ("larrt", (0, 0)), + ("varrho", (0, 0)), + ("NotTildeFullE", (0, 0)), + ("intlarhk;", (10775, 0)), + ("upsi", (0, 0)), + ("dcaro", (0, 0)), + ("Gfr", (0, 0)), + ("nequiv", (0, 0)), + ("lobr", (0, 0)), + ("Euml;", (203, 0)), + ("NotCongrue", (0, 0)), + ("nG", (0, 0)), + ("vzi", (0, 0)), + ("NegativeMediumSpa", (0, 0)), + ("Plu", (0, 0)), + ("Ccaron", (0, 0)), + ("nj", (0, 0)), + ("roarr;", (8702, 0)), + ("rtril", (0, 0)), + ("nwnear", (0, 0)), + ("hksear", (0, 0)), + ("ssmile;", (8995, 0)), + ("numero", (0, 0)), + ("Kapp", (0, 0)), + ("parsim;", (10995, 0)), + ("ccupssm", (0, 0)), + ("AE", (0, 0)), + ("Nc", (0, 0)), + ("Supe", (0, 0)), + ("angrt", (0, 0)), + ("RightTriangleEq", (0, 0)), + ("DoubleLongLeftR", (0, 0)), + ("lcedi", (0, 0)), + ("in", (0, 0)), + ("rightri", (0, 0)), + ("RightFl", (0, 0)), + ("LessEqualGreater;", (8922, 0)), + ("upsih;", (978, 0)), + ("frac38", (0, 0)), + ("EmptyVeryS", (0, 0)), + ("hook", (0, 0)), + ("blk3", (0, 0)), + ("longrightarrow;", (10230, 0)), + ("NotLessGreat", (0, 0)), + ("RightArrow;", (8594, 0)), + ("EqualTilde", (0, 0)), + ("Par", (0, 0)), + ("rcaro", (0, 0)), + ("sqcups", (0, 0)), + ("comma", (0, 0)), + ("cirm", (0, 0)), + ("InvisibleCom", (0, 0)), + ("dblac", (0, 0)), + ("PrecedesSla", (0, 0)), + ("NotLe", (0, 0)), + ("xotime", (0, 0)), + ("Vdash;", (8873, 0)), + ("HumpDownHu", (0, 0)), + ("lf", (0, 0)), + ("sbq", (0, 0)), + ("succeq", (0, 0)), + ("DownLeftVector;", (8637, 0)), + ("gvertne", (0, 0)), + ("NegativeMedium", (0, 0)), + ("lesdot", (0, 0)), + ("expo", (0, 0)), + ("nldr;", (8229, 0)), + ("So", (0, 0)), + ("lobrk", (0, 0)), + ("chec", (0, 0)), + ("RightUpTe", (0, 0)), + ("xhA", (0, 0)), + ("ntrianglelefteq", (0, 0)), + ("GreaterFullE", (0, 0)), + ("SHC", (0, 0)), + ("Fouriert", (0, 0)), + ("str", (0, 0)), + ("IJli", (0, 0)), + ("imath;", (305, 0)), + ("lmoustache;", (9136, 0)), + ("minusd", (0, 0)), + ("uogon;", (371, 0)), + ("erarr;", (10609, 0)), + ("Cup", (0, 0)), + ("and", (0, 0)), + ("dbkarow;", (10511, 0)), + ("cularr", (0, 0)), + ("NJ", (0, 0)), + ("succcurlyeq;", (8829, 0)), + ("drcr", (0, 0)), + ("nlarr", (0, 0)), + ("PlusMinu", (0, 0)), + ("nacute", (0, 0)), + ("SHcy;", (1064, 0)), + ("SupersetEqual;", (8839, 0)), + ("Lleftarrow;", (8666, 0)), + ("DoubleL", (0, 0)), + ("Ecaro", (0, 0)), + ("uh", (0, 0)), + ("oast;", (8859, 0)), + ("IJl", (0, 0)), + ("sup2;", (178, 0)), + ("curvearrowleft", (0, 0)), + ("vscr;", (120011, 0)), + ("equest", (0, 0)), + ("RightVect", (0, 0)), + ("varsubsetneq", (0, 0)), + ("Yci", (0, 0)), + ("UnderPare", (0, 0)), + ("lot", (0, 0)), + ("triplu", (0, 0)), + ("Oslash;", (216, 0)), + ("Down", (0, 0)), + ("RightTeeVecto", (0, 0)), + ("dh", (0, 0)), + ("supl", (0, 0)), + ("nisd", (0, 0)), + ("nacu", (0, 0)), + ("xrArr", (0, 0)), + ("vart", (0, 0)), + ("ntri", (0, 0)), + ("frac1", (0, 0)), + ("bsi", (0, 0)), + ("ya", (0, 0)), + ("DoubleLongLeft", (0, 0)), + ("Icirc;", (206, 0)), + ("notindot;", (8949, 824)), + ("two", (0, 0)), + ("twohe", (0, 0)), + ("SupersetEqu", (0, 0)), + ("gacu", (0, 0)), + ("leftrightsquigarrow", (0, 0)), + ("ratail", (0, 0)), + ("UnionPl", (0, 0)), + ("bemp", (0, 0)), + ("notni;", (8716, 0)), + ("hellip", (0, 0)), + ("pun", (0, 0)), + ("DoubleLongLeftRightA", (0, 0)), + ("eqslantgtr", (0, 0)), + ("n", (0, 0)), + ("longmapsto", (0, 0)), + ("longrightarro", (0, 0)), + ("NotReve", (0, 0)), + ("brvbar;", (166, 0)), + ("Gt;", (8811, 0)), + ("tcedil;", (355, 0)), + ("RightFloo", (0, 0)), + ("Sup", (0, 0)), + ("Ugr", (0, 0)), + ("Esc", (0, 0)), + ("circledR;", (174, 0)), + ("hksw", (0, 0)), + ("Diacr", (0, 0)), + ("RightAngle", (0, 0)), + ("precap", (0, 0)), + ("topbot;", (9014, 0)), + ("oe", (0, 0)), + ("NotReverseEl", (0, 0)), + ("supset", (0, 0)), + ("lesg;", (8922, 65024)), + ("EmptySmallSquare", (0, 0)), + ("isc", (0, 0)), + ("tosa;", (10537, 0)), + ("EmptyV", (0, 0)), + ("yucy", (0, 0)), + ("NotRightTriangleEqual", (0, 0)), + ("InvisibleComma", (0, 0)), + ("OverParen", (0, 0)), + ("ltques", (0, 0)), + ("Otimes", (0, 0)), + ("inf", (0, 0)), + ("prime", (0, 0)), + ("dempt", (0, 0)), + ("Tau;", (932, 0)), + ("simrar", (0, 0)), + ("FilledSma", (0, 0)), + ("ia", (0, 0)), + ("qo", (0, 0)), + ("minus;", (8722, 0)), + ("NotSquareSuperse", (0, 0)), + ("gbreve", (0, 0)), + ("thickapprox;", (8776, 0)), + ("ultr", (0, 0)), + ("simeq", (0, 0)), + ("Exponen", (0, 0)), + ("nsp", (0, 0)), + ("Iopf;", (120128, 0)), + ("ocy;", (1086, 0)), + ("subed", (0, 0)), + ("drcrop;", (8972, 0)), + ("twoheadl", (0, 0)), + ("vo", (0, 0)), + ("LeftDownVe", (0, 0)), + ("Acy;", (1040, 0)), + ("Nested", (0, 0)), + ("Fc", (0, 0)), + ("Eac", (0, 0)), + ("nfr", (0, 0)), + ("subsetneq;", (8842, 0)), + ("nearr;", (8599, 0)), + ("DownLeftVecto", (0, 0)), + ("Gopf", (0, 0)), + ("thinsp", (0, 0)), + ("DownTeeA", (0, 0)), + ("Ofr;", (120082, 0)), + ("nvlt", (0, 0)), + ("circleddash", (0, 0)), + ("ldr", (0, 0)), + ("aleph", (0, 0)), + ("doub", (0, 0)), + ("nac", (0, 0)), + ("Zscr", (0, 0)), + ("LeftCei", (0, 0)), + ("LeftArrowR", (0, 0)), + ("NotGreaterGrea", (0, 0)), + ("rangl", (0, 0)), + ("NotReverseEleme", (0, 0)), + ("puncsp;", (8200, 0)), + ("lArr;", (8656, 0)), + ("hookrightarro", (0, 0)), + ("CenterDot", (0, 0)), + ("LowerLeftArrow;", (8601, 0)), + ("bsem", (0, 0)), + ("zigrarr", (0, 0)), + ("ecol", (0, 0)), + ("rA", (0, 0)), + ("xhar", (0, 0)), + ("PrecedesEq", (0, 0)), + ("Escr", (0, 0)), + ("uhblk", (0, 0)), + ("subsetn", (0, 0)), + ("ApplyFun", (0, 0)), + ("eacu", (0, 0)), + ("rightrightar", (0, 0)), + ("nda", (0, 0)), + ("GreaterTil", (0, 0)), + ("DownArrowBa", (0, 0)), + ("centerd", (0, 0)), + ("kc", (0, 0)), + ("lltri", (0, 0)), + ("DoubleUpArrow;", (8657, 0)), + ("Zcar", (0, 0)), + ("tau;", (964, 0)), + ("angmsdae", (0, 0)), + ("cupca", (0, 0)), + ("Invis", (0, 0)), + ("raquo", (187, 0)), + ("SucceedsTi", (0, 0)), + ("LessFullEqual;", (8806, 0)), + ("sqsu", (0, 0)), + ("equest;", (8799, 0)), + ("nleqsl", (0, 0)), + ("raem", (0, 0)), + ("Double", (0, 0)), + ("horba", (0, 0)), + ("NotCon", (0, 0)), + ("lE;", (8806, 0)), + ("Dcy", (0, 0)), + ("gra", (0, 0)), + ("simgE", (0, 0)), + ("semi", (0, 0)), + ("mic", (0, 0)), + ("CenterDot;", (183, 0)), + ("ha", (0, 0)), + ("setminus;", (8726, 0)), + ("dotplus", (0, 0)), + ("suc", (0, 0)), + ("varpro", (0, 0)), + ("gsime;", (10894, 0)), + ("Sum;", (8721, 0)), + ("iin", (0, 0)), + ("nbs", (0, 0)), + ("nvrArr;", (10499, 0)), + ("ldrdha", (0, 0)), + ("OpenCurlyDoubleQu", (0, 0)), + ("ncu", (0, 0)), + ("dHa", (0, 0)), + ("boxv", (0, 0)), + ("brev", (0, 0)), + ("Tcy;", (1058, 0)), + ("Oslas", (0, 0)), + ("PrecedesSlantEqua", (0, 0)), + ("DiacriticalTilde;", (732, 0)), + ("Zcaron", (0, 0)), + ("yucy;", (1102, 0)), + ("dd;", (8518, 0)), + ("harr;", (8596, 0)), + ("DoubleRigh", (0, 0)), + ("looparrowri", (0, 0)), + ("orslope;", (10839, 0)), + ("RuleDelayed", (0, 0)), + ("xrar", (0, 0)), + ("acy", (0, 0)), + ("FilledS", (0, 0)), + ("DoubleLeftRig", (0, 0)), + ("varepsil", (0, 0)), + ("RightDow", (0, 0)), + ("Updownarrow", (0, 0)), + ("nha", (0, 0)), + ("oslash;", (248, 0)), + ("Cayleys;", (8493, 0)), + ("iiii", (0, 0)), + ("subplus", (0, 0)), + ("cuwed;", (8911, 0)), + ("NotReverseElem", (0, 0)), + ("suphsu", (0, 0)), + ("vang", (0, 0)), + ("ClockwiseContourI", (0, 0)), + ("Vd", (0, 0)), + ("fe", (0, 0)), + ("Leftarrow;", (8656, 0)), + ("NotR", (0, 0)), + ("cra", (0, 0)), + ("NotNestedLessL", (0, 0)), + ("rsqb", (0, 0)), + ("TripleDo", (0, 0)), + ("gesd", (0, 0)), + ("Longri", (0, 0)), + ("block;", (9608, 0)), + ("NestedGreater", (0, 0)), + ("RightArrowBa", (0, 0)), + ("KJc", (0, 0)), + ("LeftTeeVector;", (10586, 0)), + ("NotVerticalBar;", (8740, 0)), + ("GreaterG", (0, 0)), + ("LeftDown", (0, 0)), + ("Eum", (0, 0)), + ("Wop", (0, 0)), + ("bpri", (0, 0)), + ("br", (0, 0)), + ("profsurf", (0, 0)), + ("rharu", (0, 0)), + ("SquareU", (0, 0)), + ("strns", (0, 0)), + ("boxdR;", (9554, 0)), + ("larrh", (0, 0)), + ("TripleDot", (0, 0)), + ("FilledVerySmallSq", (0, 0)), + ("scpoli", (0, 0)), + ("YUcy", (0, 0)), + ("xrAr", (0, 0)), + ("Qfr;", (120084, 0)), + ("NewLine;", (10, 0)), + ("angmsdac;", (10666, 0)), + ("nsucce", (0, 0)), + ("wcirc;", (373, 0)), + ("dem", (0, 0)), + ("van", (0, 0)), + ("NotSquareSupersetEqu", (0, 0)), + ("Bop", (0, 0)), + ("Exponent", (0, 0)), + ("mapstolef", (0, 0)), + ("prap", (0, 0)), + ("squf", (0, 0)), + ("DoubleRi", (0, 0)), + ("origo", (0, 0)), + ("plussi", (0, 0)), + ("Longrig", (0, 0)), + ("twoheadleftarro", (0, 0)), + ("Uar", (0, 0)), + ("Cce", (0, 0)), + ("Parti", (0, 0)), + ("drbkar", (0, 0)), + ("SH", (0, 0)), + ("nsubset", (0, 0)), + ("semi;", (59, 0)), + ("supsim", (0, 0)), + ("YU", (0, 0)), + ("igrave", (236, 0)), + ("Aogo", (0, 0)), + ("HumpDownH", (0, 0)), + ("DownRightVectorBar", (0, 0)), + ("ga", (0, 0)), + ("geq;", (8805, 0)), + ("Tau", (0, 0)), + ("ratio", (0, 0)), + ("DownRight", (0, 0)), + ("aci", (0, 0)), + ("NestedGreaterGreater;", (8811, 0)), + ("gv", (0, 0)), + ("Mi", (0, 0)), + ("Bcy;", (1041, 0)), + ("Tcaron", (0, 0)), + ("boxv;", (9474, 0)), + ("ua", (0, 0)), + ("LeftDownVecto", (0, 0)), + ("plusb", (0, 0)), + ("NotSucceedsT", (0, 0)), + ("LongLe", (0, 0)), + ("RightDou", (0, 0)), + ("bsolhsu", (0, 0)), + ("cong;", (8773, 0)), + ("rsqu", (0, 0)), + ("rfisht", (0, 0)), + ("app", (0, 0)), + ("ClockwiseContourIntegral", (0, 0)), + ("ale", (0, 0)), + ("eques", (0, 0)), + ("RightTeeVector", (0, 0)), + ("leftarro", (0, 0)), + ("ysc", (0, 0)), + ("ne", (0, 0)), + ("Backsla", (0, 0)), + ("hkswarow", (0, 0)), + ("excl;", (33, 0)), + ("nges", (0, 0)), + ("Dar", (0, 0)), + ("NotSucceedsSla", (0, 0)), + ("Ub", (0, 0)), + ("igra", (0, 0)), + ("VeryT", (0, 0)), + ("ntilde", (241, 0)), + ("copr", (0, 0)), + ("Lce", (0, 0)), + ("swnwar;", (10538, 0)), + ("ecaron", (0, 0)), + ("bumpeq;", (8783, 0)), + ("rightsqui", (0, 0)), + ("bnequiv", (0, 0)), + ("lhar", (0, 0)), + ("RightTee;", (8866, 0)), + ("FilledVer", (0, 0)), + ("ens", (0, 0)), + ("leftrightar", (0, 0)), + ("RightDownV", (0, 0)), + ("NotRe", (0, 0)), + ("bowti", (0, 0)), + ("falling", (0, 0)), + ("HilbertSp", (0, 0)), + ("LeftTri", (0, 0)), + ("gnsi", (0, 0)), + ("lgE;", (10897, 0)), + ("ThinS", (0, 0)), + ("gtdo", (0, 0)), + ("gacut", (0, 0)), + ("oro", (0, 0)), + ("Produc", (0, 0)), + ("emsp14;", (8197, 0)), + ("gcy", (0, 0)), + ("SuchThat;", (8715, 0)), + ("tstro", (0, 0)), + ("lesdotor", (0, 0)), + ("bbrktbrk", (0, 0)), + ("NotDoubleV", (0, 0)), + ("Kcedil", (0, 0)), + ("lessdot;", (8918, 0)), + ("cirE", (0, 0)), + ("DiacriticalGra", (0, 0)), + ("lAta", (0, 0)), + ("grave;", (96, 0)), + ("bigc", (0, 0)), + ("DoubleDownArro", (0, 0)), + ("elsdot", (0, 0)), + ("NotSub", (0, 0)), + ("DoubleVerti", (0, 0)), + ("VerticalBar", (0, 0)), + ("Sigma;", (931, 0)), + ("Ag", (0, 0)), + ("Fille", (0, 0)), + ("glE;", (10898, 0)), + ("lbrac", (0, 0)), + ("pitchfork", (0, 0)), + ("doublebarwed", (0, 0)), + ("num;", (35, 0)), + ("Uacute;", (218, 0)), + ("Zf", (0, 0)), + ("boxhu;", (9524, 0)), + ("ld", (0, 0)), + ("SuchT", (0, 0)), + ("LongRig", (0, 0)), + ("LowerLeft", (0, 0)), + ("veee", (0, 0)), + ("muma", (0, 0)), + ("thka", (0, 0)), + ("Ogra", (0, 0)), + ("SquareSu", (0, 0)), + ("compleme", (0, 0)), + ("Jukcy;", (1028, 0)), + ("Di", (0, 0)), + ("blk", (0, 0)), + ("zigra", (0, 0)), + ("lneq", (0, 0)), + ("gtquest;", (10876, 0)), + ("LeftArrowB", (0, 0)), + ("UpArro", (0, 0)), + ("succna", (0, 0)), + ("pluscir;", (10786, 0)), + ("sfr;", (120112, 0)), + ("vartriangle", (0, 0)), + ("Leftrightarrow", (0, 0)), + ("RightTria", (0, 0)), + ("upharpoonright;", (8638, 0)), + ("LeftUpVecto", (0, 0)), + ("TSc", (0, 0)), + ("colon;", (58, 0)), + ("DownLeftRightVe", (0, 0)), + ("Do", (0, 0)), + ("DoubleRightArrow;", (8658, 0)), + ("bump", (0, 0)), + ("cuvee;", (8910, 0)), + ("Ycirc;", (374, 0)), + ("lca", (0, 0)), + ("Revers", (0, 0)), + ("tdo", (0, 0)), + ("gtci", (0, 0)), + ("mDDot;", (8762, 0)), + ("nrightarrow;", (8603, 0)), + ("laqu", (0, 0)), + ("rpa", (0, 0)), + ("ned", (0, 0)), + ("NotCongr", (0, 0)), + ("Kap", (0, 0)), + ("eopf;", (120150, 0)), + ("num", (0, 0)), + ("plusdo;", (8724, 0)), + ("hookr", (0, 0)), + ("egs;", (10902, 0)), + ("varno", (0, 0)), + ("Downar", (0, 0)), + ("boxDr", (0, 0)), + ("lesseqqgtr;", (10891, 0)), + ("vl", (0, 0)), + ("uHa", (0, 0)), + ("osol;", (8856, 0)), + ("scaron", (0, 0)), + ("Ccedil", (199, 0)), + ("El", (0, 0)), + ("Coprod", (0, 0)), + ("divideontim", (0, 0)), + ("Nt", (0, 0)), + ("ss", (0, 0)), + ("lthree", (0, 0)), + ("utrif", (0, 0)), + ("RightTeeAr", (0, 0)), + ("SucceedsEqual", (0, 0)), + ("rotimes", (0, 0)), + ("gn", (0, 0)), + ("eogon", (0, 0)), + ("boxd", (0, 0)), + ("nLtv;", (8810, 824)), + ("nRigh", (0, 0)), + ("ShortRig", (0, 0)), + ("curlyeqs", (0, 0)), + ("Otime", (0, 0)), + ("UpD", (0, 0)), + ("theta;", (952, 0)), + ("Fouri", (0, 0)), + ("EmptySmallSquare;", (9723, 0)), + ("lpar;", (40, 0)), + ("lowb", (0, 0)), + ("SquareSuperse", (0, 0)), + ("Jf", (0, 0)), + ("gnappr", (0, 0)), + ("sear", (0, 0)), + ("NotLessEqua", (0, 0)), + ("DiacriticalDo", (0, 0)), + ("gtd", (0, 0)), + ("bowtie;", (8904, 0)), + ("precna", (0, 0)), + ("nprcue", (0, 0)), + ("Aring", (197, 0)), + ("Vb", (0, 0)), + ("ThickS", (0, 0)), + ("Lc", (0, 0)), + ("DiacriticalTild", (0, 0)), + ("TildeFullEqual", (0, 0)), + ("wc", (0, 0)), + ("Ff", (0, 0)), + ("dc", (0, 0)), + ("NotExists;", (8708, 0)), + ("atilde;", (227, 0)), + ("doteq;", (8784, 0)), + ("nvs", (0, 0)), + ("lbrack;", (91, 0)), + ("biguplus", (0, 0)), + ("hyphen", (0, 0)), + ("Scy", (0, 0)), + ("lsime", (0, 0)), + ("tb", (0, 0)), + ("intla", (0, 0)), + ("dst", (0, 0)), + ("back", (0, 0)), + ("DownBre", (0, 0)), + ("smile;", (8995, 0)), + ("ugra", (0, 0)), + ("Lced", (0, 0)), + ("H", (0, 0)), + ("urt", (0, 0)), + ("NotNest", (0, 0)), + ("precs", (0, 0)), + ("smallsetmi", (0, 0)), + ("DownRightTeeVec", (0, 0)), + ("Rrighta", (0, 0)), + ("Ycy;", (1067, 0)), + ("Oti", (0, 0)), + ("Xi;", (926, 0)), + ("leftarrow;", (8592, 0)), + ("ZH", (0, 0)), + ("permi", (0, 0)), + ("NotLessSlant", (0, 0)), + ("nopf", (0, 0)), + ("timesb", (0, 0)), + ("Zer", (0, 0)), + ("cupbrcap", (0, 0)), + ("LowerRi", (0, 0)), + ("late", (0, 0)), + ("InvisibleComma;", (8291, 0)), + ("eDD", (0, 0)), + ("softcy;", (1100, 0)), + ("nvrtrie;", (8885, 8402)), + ("xw", (0, 0)), + ("Tripl", (0, 0)), + ("rcub;", (125, 0)), + ("cudarrl", (0, 0)), + ("DoubleDownArrow;", (8659, 0)), + ("lag", (0, 0)), + ("ltlar", (0, 0)), + ("NoBre", (0, 0)), + ("Ecaron", (0, 0)), + ("lessapp", (0, 0)), + ("submu", (0, 0)), + ("wedbar", (0, 0)), + ("NestedGreaterG", (0, 0)), + ("RightDownVe", (0, 0)), + ("cu", (0, 0)), + ("hksearo", (0, 0)), + ("bigup", (0, 0)), + ("omic", (0, 0)), + ("aacut", (0, 0)), + ("notniva;", (8716, 0)), + ("dale", (0, 0)), + ("capbrcu", (0, 0)), + ("NotGreaterSlantEqu", (0, 0)), + ("atilde", (227, 0)), + ("wrea", (0, 0)), + ("imagp", (0, 0)), + ("Prec", (0, 0)), + ("otim", (0, 0)), + ("Nacute;", (323, 0)), + ("lesseqg", (0, 0)), + ("k", (0, 0)), + ("mod", (0, 0)), + ("Lleft", (0, 0)), + ("LessLess;", (10913, 0)), + ("pre;", (10927, 0)), + ("blk14;", (9617, 0)), + ("chcy;", (1095, 0)), + ("Integra", (0, 0)), + ("NotGreaterL", (0, 0)), + ("downa", (0, 0)), + ("gf", (0, 0)), + ("conint;", (8750, 0)), + ("thickap", (0, 0)), + ("vsubnE", (0, 0)), + ("boxuR", (0, 0)), + ("GreaterF", (0, 0)), + ("ETH", (208, 0)), + ("ced", (0, 0)), + ("gtcir", (0, 0)), + ("DoubleUpD", (0, 0)), + ("ulcorner", (0, 0)), + ("UpEqu", (0, 0)), + ("digamma;", (989, 0)), + ("rightsquigar", (0, 0)), + ("berno", (0, 0)), + ("divideo", (0, 0)), + ("digam", (0, 0)), + ("scir", (0, 0)), + ("exponent", (0, 0)), + ("apacir", (0, 0)), + ("i", (0, 0)), + ("LongLeftRightArrow", (0, 0)), + ("ngeqs", (0, 0)), + ("Cloc", (0, 0)), + ("pf", (0, 0)), + ("compfn", (0, 0)), + ("LeftTriangleEqual;", (8884, 0)), + ("wreath", (0, 0)), + ("boxVl", (0, 0)), + ("congdot", (0, 0)), + ("lstro", (0, 0)), + ("nopf;", (120159, 0)), + ("yacut", (0, 0)), + ("triplus", (0, 0)), + ("mapstol", (0, 0)), + ("Intersect", (0, 0)), + ("DiacriticalTi", (0, 0)), + ("utr", (0, 0)), + ("Omi", (0, 0)), + ("plussim;", (10790, 0)), + ("aopf;", (120146, 0)), + ("Oacute;", (211, 0)), + ("uplus", (0, 0)), + ("Tilde", (0, 0)), + ("ctd", (0, 0)), + ("div", (0, 0)), + ("gamm", (0, 0)), + ("NotHumpD", (0, 0)), + ("SquareS", (0, 0)), + ("ulcorner;", (8988, 0)), + ("succnapprox", (0, 0)), + ("shcy;", (1096, 0)), + ("MediumSpace;", (8287, 0)), + ("LeftTriangleEqual", (0, 0)), + ("iukcy", (0, 0)), + ("RightUpVector;", (8638, 0)), + ("bigodot;", (10752, 0)), + ("c", (0, 0)), + ("UpArrowDownArr", (0, 0)), + ("NotGreaterEqua", (0, 0)), + ("itild", (0, 0)), + ("Vopf;", (120141, 0)), + ("lvnE", (0, 0)), + ("lmoust;", (9136, 0)), + ("lotimes", (0, 0)), + ("numsp", (0, 0)), + ("sfr", (0, 0)), + ("subsetne", (0, 0)), + ("chi", (0, 0)), + ("boxVL;", (9571, 0)), + ("NotHump", (0, 0)), + ("ShortRightArro", (0, 0)), + ("xs", (0, 0)), + ("squa", (0, 0)), + ("Rarr", (0, 0)), + ("cirscir", (0, 0)), + ("intercal;", (8890, 0)), + ("UpTeeArr", (0, 0)), + ("Barwed", (0, 0)), + ("nsupset", (0, 0)), + ("Omeg", (0, 0)), + ("NewLine", (0, 0)), + ("LeftUpVector;", (8639, 0)), + ("Xfr;", (120091, 0)), + ("Tstr", (0, 0)), + ("nparallel", (0, 0)), + ("succapprox;", (10936, 0)), + ("subsub;", (10965, 0)), + ("lvertn", (0, 0)), + ("simgE;", (10912, 0)), + ("qsc", (0, 0)), + ("emacr;", (275, 0)), + ("LongL", (0, 0)), + ("longleftrightarrow", (0, 0)), + ("boxp", (0, 0)), + ("nesi", (0, 0)), + ("zf", (0, 0)), + ("Long", (0, 0)), + ("downharpoonlef", (0, 0)), + ("icy", (0, 0)), + ("LeftC", (0, 0)), + ("upupa", (0, 0)), + ("NotRigh", (0, 0)), + ("LeftFloor;", (8970, 0)), + ("Succe", (0, 0)), + ("box", (0, 0)), + ("cedi", (0, 0)), + ("PartialD;", (8706, 0)), + ("ora", (0, 0)), + ("UpArrowDownA", (0, 0)), + ("rmoustach", (0, 0)), + ("bNot", (0, 0)), + ("varp", (0, 0)), + ("lmido", (0, 0)), + ("Oacut", (0, 0)), + ("rig", (0, 0)), + ("vartri", (0, 0)), + ("odb", (0, 0)), + ("searr", (0, 0)), + ("xsqcu", (0, 0)), + ("SucceedsTild", (0, 0)), + ("sect;", (167, 0)), + ("tpr", (0, 0)), + ("gtreqq", (0, 0)), + ("Ab", (0, 0)), + ("isin", (0, 0)), + ("ntriang", (0, 0)), + ("leftharpoond", (0, 0)), + ("shy;", (173, 0)), + ("par", (0, 0)), + ("NotSubsetEqu", (0, 0)), + ("prcu", (0, 0)), + ("thet", (0, 0)), + ("UpTeeArro", (0, 0)), + ("kopf", (0, 0)), + ("LeftUpDow", (0, 0)), + ("cupbrcap;", (10824, 0)), + ("xlArr", (0, 0)), + ("Darr;", (8609, 0)), + ("DoubleVerticalBar;", (8741, 0)), + ("eqcir", (0, 0)), + ("qscr;", (120006, 0)), + ("looparrowleft", (0, 0)), + ("ltlarr;", (10614, 0)), + ("robr", (0, 0)), + ("cdot", (0, 0)), + ("integers", (0, 0)), + ("Iac", (0, 0)), + ("micr", (0, 0)), + ("LeftArrowRightAr", (0, 0)), + ("supn", (0, 0)), + ("RightDoubleBracket", (0, 0)), + ("olarr", (0, 0)), + ("larrs", (0, 0)), + ("utri", (0, 0)), + ("imped;", (437, 0)), + ("FilledVerySmal", (0, 0)), + ("leftrightharpoo", (0, 0)), + ("xrarr;", (10230, 0)), + ("olcros", (0, 0)), + ("sqcup", (0, 0)), + ("hercon;", (8889, 0)), + ("Em", (0, 0)), + ("prnsim", (0, 0)), + ("Nac", (0, 0)), + ("varrh", (0, 0)), + ("sfrown", (0, 0)), + ("dArr", (0, 0)), + ("longleftrightarrow;", (10231, 0)), + ("DownLeftTeeVector", (0, 0)), + ("NotSquareSub", (0, 0)), + ("NegativeVer", (0, 0)), + ("egsdot", (0, 0)), + ("rightrightarrows;", (8649, 0)), + ("sups", (0, 0)), + ("DownArrowBar;", (10515, 0)), + ("drc", (0, 0)), + ("nsube;", (8840, 0)), + ("fparti", (0, 0)), + ("mumap;", (8888, 0)), + ("Gdo", (0, 0)), + ("car", (0, 0)), + ("rotim", (0, 0)), + ("tilde;", (732, 0)), + ("sqc", (0, 0)), + ("yicy;", (1111, 0)), + ("nvHarr", (0, 0)), + ("Diam", (0, 0)), + ("ncar", (0, 0)), + ("lpar", (0, 0)), + ("Hc", (0, 0)), + ("Expo", (0, 0)), + ("Dagg", (0, 0)), + ("varsub", (0, 0)), + ("Sced", (0, 0)), + ("frac12", (189, 0)), + ("no", (0, 0)), + ("npart;", (8706, 824)), + ("lAar", (0, 0)), + ("bpr", (0, 0)), + ("oS;", (9416, 0)), + ("pru", (0, 0)), + ("harr", (0, 0)), + ("Gr", (0, 0)), + ("Cir", (0, 0)), + ("DJcy;", (1026, 0)), + ("zhcy;", (1078, 0)), + ("rightarrow", (0, 0)), + ("VerticalS", (0, 0)), + ("qop", (0, 0)), + ("ReverseEquilibrium", (0, 0)), + ("Vo", (0, 0)), + ("urcrop;", (8974, 0)), + ("TildeEqual;", (8771, 0)), + ("kcedil", (0, 0)), + ("Et", (0, 0)), + ("nLeftright", (0, 0)), + ("ReverseUpEquilib", (0, 0)), + ("tshcy", (0, 0)), + ("Uparr", (0, 0)), + ("angmsdae;", (10668, 0)), + ("Sqr", (0, 0)), + ("DownRi", (0, 0)), + ("Eta", (0, 0)), + ("succap", (0, 0)), + ("hyphe", (0, 0)), + ("Jsercy;", (1032, 0)), + ("GreaterEqualLess;", (8923, 0)), + ("ij", (0, 0)), + ("squarf;", (9642, 0)), + ("GreaterGre", (0, 0)), + ("OElig;", (338, 0)), + ("urcorne", (0, 0)), + ("LeftArr", (0, 0)), + ("Ecar", (0, 0)), + ("nles;", (10877, 824)), + ("pri", (0, 0)), + ("lessg", (0, 0)), + ("rbar", (0, 0)), + ("LessSl", (0, 0)), + ("md", (0, 0)), + ("DownBreve", (0, 0)), + ("succcurly", (0, 0)), + ("ncup", (0, 0)), + ("UnionP", (0, 0)), + ("HumpDownHump", (0, 0)), + ("sqcaps", (0, 0)), + ("NotNestedGreaterGre", (0, 0)), + ("triang", (0, 0)), + ("eqcol", (0, 0)), + ("oum", (0, 0)), + ("lbbrk;", (10098, 0)), + ("nsupsete", (0, 0)), + ("Icy", (0, 0)), + ("EN", (0, 0)), + ("nvltri", (0, 0)), + ("Uop", (0, 0)), + ("inte", (0, 0)), + ("darr", (0, 0)), + ("LeftArro", (0, 0)), + ("Diff", (0, 0)), + ("Empty", (0, 0)), + ("rangd;", (10642, 0)), + ("ln", (0, 0)), + ("Acir", (0, 0)), + ("Theta", (0, 0)), + ("Bscr;", (8492, 0)), + ("vfr;", (120115, 0)), + ("shortpara", (0, 0)), + ("curlywe", (0, 0)), + ("rarra", (0, 0)), + ("bigtriangledow", (0, 0)), + ("triminus;", (10810, 0)), + ("utdo", (0, 0)), + ("sme", (0, 0)), + ("LeftCeili", (0, 0)), + ("xcu", (0, 0)), + ("ge", (0, 0)), + ("smashp;", (10803, 0)), + ("dsc", (0, 0)), + ("twoheadleft", (0, 0)), + ("urtri", (0, 0)), + ("horb", (0, 0)), + ("upharpoonlef", (0, 0)), + ("lessdo", (0, 0)), + ("curvearrowrig", (0, 0)), + ("Ap", (0, 0)), + ("trad", (0, 0)), + ("LeftDownTeeVec", (0, 0)), + ("np", (0, 0)), + ("cirsci", (0, 0)), + ("prur", (0, 0)), + ("cirfnint", (0, 0)), + ("nbump;", (8782, 824)), + ("UpArrowD", (0, 0)), + ("GreaterFul", (0, 0)), + ("ntil", (0, 0)), + ("DoubleDow", (0, 0)), + ("Lst", (0, 0)), + ("GreaterEqual;", (8805, 0)), + ("mld", (0, 0)), + ("gtreql", (0, 0)), + ("thetas", (0, 0)), + ("Hopf", (0, 0)), + ("rrarr;", (8649, 0)), + ("napid", (0, 0)), + ("glj;", (10916, 0)), + ("nLeftarrow;", (8653, 0)), + ("emptyset;", (8709, 0)), + ("NotEqualTilde;", (8770, 824)), + ("angmsdad;", (10667, 0)), + ("njc", (0, 0)), + ("NotPrecedesSlantE", (0, 0)), + ("vrtri;", (8883, 0)), + ("Ws", (0, 0)), + ("prnap;", (10937, 0)), + ("nhArr;", (8654, 0)), + ("cuep", (0, 0)), + ("Cedill", (0, 0)), + ("Wopf;", (120142, 0)), + ("sigm", (0, 0)), + ("leftrightsq", (0, 0)), + ("nvlArr;", (10498, 0)), + ("jukcy;", (1108, 0)), + ("Gc", (0, 0)), + ("leftharpoondo", (0, 0)), + ("DoubleLeftA", (0, 0)), + ("Bum", (0, 0)), + ("Omicr", (0, 0)), + ("Uf", (0, 0)), + ("rdc", (0, 0)), + ("DownT", (0, 0)), + ("ropa", (0, 0)), + ("DoubleLong", (0, 0)), + ("Lmido", (0, 0)), + ("Bernoull", (0, 0)), + ("NotLeftTriangl", (0, 0)), + ("NotRightTriangleEqua", (0, 0)), + ("lparlt;", (10643, 0)), + ("HumpE", (0, 0)), + ("Becaus", (0, 0)), + ("female", (0, 0)), + ("Wed", (0, 0)), + ("LessGreater", (0, 0)), + ("LessE", (0, 0)), + ("phiv", (0, 0)), + ("LongLeftRightAr", (0, 0)), + ("", (0, 0)), + ("Gt", (0, 0)), + ("nsqsup", (0, 0)), + ("gr", (0, 0)), + ("ape", (0, 0)), + ("dagger", (0, 0)), + ("lrarr;", (8646, 0)), + ("Otimes;", (10807, 0)), + ("topbot", (0, 0)), + ("RightAngleB", (0, 0)), + ("precapprox", (0, 0)), + ("TSHcy;", (1035, 0)), + ("HorizontalLine", (0, 0)), + ("KJ", (0, 0)), + ("rightrightarr", (0, 0)), + ("rightrightarrows", (0, 0)), + ("bigcu", (0, 0)), + ("nVDa", (0, 0)), + ("RightVectorB", (0, 0)), + ("Rever", (0, 0)), + ("curvearrowle", (0, 0)), + ("vsubne", (0, 0)), + ("RightArro", (0, 0)), + ("gesle", (0, 0)), + ("Rcedi", (0, 0)), + ("gdot", (0, 0)), + ("GreaterL", (0, 0)), + ("Odblac;", (336, 0)), + ("NegativeVeryThinSpa", (0, 0)), + ("abre", (0, 0)), + ("backcong", (0, 0)), + ("Vbar", (0, 0)), + ("dotsq", (0, 0)), + ("mcomma", (0, 0)), + ("NotTil", (0, 0)), + ("NotVerticalBar", (0, 0)), + ("opar;", (10679, 0)), + ("rarrbfs", (0, 0)), + ("Lstrok", (0, 0)), + ("zfr;", (120119, 0)), + ("nrtrie;", (8941, 0)), + ("prof", (0, 0)), + ("odbl", (0, 0)), + ("UpArrowDo", (0, 0)), + ("UpEquili", (0, 0)), + ("uA", (0, 0)), + ("Mfr;", (120080, 0)), + ("lesseqq", (0, 0)), + ("Ur", (0, 0)), + ("supedot", (0, 0)), + ("mldr;", (8230, 0)), + ("succs", (0, 0)), + ("congdo", (0, 0)), + ("pr", (0, 0)), + ("LeftUpTeeVect", (0, 0)), + ("cularrp;", (10557, 0)), + ("lh", (0, 0)), + ("supplus;", (10944, 0)), + ("NotNestedGreater", (0, 0)), + ("leftrights", (0, 0)), + ("asc", (0, 0)), + ("Efr;", (120072, 0)), + ("utdot", (0, 0)), + ("omicron", (0, 0)), + ("YIcy;", (1031, 0)), + ("supsup;", (10966, 0)), + ("rfis", (0, 0)), + ("andd;", (10844, 0)), + ("nrAr", (0, 0)), + ("nwarro", (0, 0)), + ("eli", (0, 0)), + ("gacute;", (501, 0)), + ("NonBreakingSpace;", (160, 0)), + ("NotReverseEle", (0, 0)), + ("uf", (0, 0)), + ("nshortm", (0, 0)), + ("ltim", (0, 0)), + ("angr", (0, 0)), + ("uplus;", (8846, 0)), + ("part", (0, 0)), + ("RightArrowB", (0, 0)), + ("DoubleUpDownAr", (0, 0)), + ("LessL", (0, 0)), + ("Poincareplane;", (8460, 0)), + ("RightDoubleBrack", (0, 0)), + ("LeftA", (0, 0)), + ("ngeqslant;", (10878, 824)), + ("FilledSmallSq", (0, 0)), + ("uar", (0, 0)), + ("dharr", (0, 0)), + ("rf", (0, 0)), + ("MinusPlus;", (8723, 0)), + ("leftthree", (0, 0)), + ("NotGreaterSla", (0, 0)), + ("circlearrowrig", (0, 0)), + ("DoubleRig", (0, 0)), + ("cupcu", (0, 0)), + ("lparlt", (0, 0)), + ("bdq", (0, 0)), + ("Go", (0, 0)), + ("xi;", (958, 0)), + ("Lscr", (0, 0)), + ("ubreve", (0, 0)), + ("checkmar", (0, 0)), + ("LeftDoubleBra", (0, 0)), + ("NestedLes", (0, 0)), + ("rec", (0, 0)), + ("rlha", (0, 0)), + ("msc", (0, 0)), + ("CounterClockwiseCon", (0, 0)), + ("supsete", (0, 0)), + ("boxDl;", (9558, 0)), + ("hkswa", (0, 0)), + ("vDash;", (8872, 0)), + ("xca", (0, 0)), + ("DownLeftRi", (0, 0)), + ("seswa", (0, 0)), + ("mDDot", (0, 0)), + ("ubre", (0, 0)), + ("RightDownTeeVector", (0, 0)), + ("Gamma;", (915, 0)), + ("Wsc", (0, 0)), + ("Ofr", (0, 0)), + ("blacktriangledo", (0, 0)), + ("triangledo", (0, 0)), + ("lnapp", (0, 0)), + ("upuparrows;", (8648, 0)), + ("Kop", (0, 0)), + ("PrecedesTil", (0, 0)), + ("circledcirc", (0, 0)), + ("RightTriangle;", (8883, 0)), + ("copf;", (120148, 0)), + ("dar", (0, 0)), + ("sb", (0, 0)), + ("lvn", (0, 0)), + ("eqslantles", (0, 0)), + ("hkswaro", (0, 0)), + ("eDDo", (0, 0)), + ("CenterDo", (0, 0)), + ("LeftAngleB", (0, 0)), + ("in;", (8712, 0)), + ("LessEq", (0, 0)), + ("gnappro", (0, 0)), + ("LeftD", (0, 0)), + ("rad", (0, 0)), + ("Hscr;", (8459, 0)), + ("Circ", (0, 0)), + ("curlywedge", (0, 0)), + ("smalls", (0, 0)), + ("racut", (0, 0)), + ("loz", (0, 0)), + ("xhArr", (0, 0)), + ("DoubleUpDownArro", (0, 0)), + ("gtrless", (0, 0)), + ("DoubleLeftRightA", (0, 0)), + ("ZeroWi", (0, 0)), + ("Yfr;", (120092, 0)), + ("inodot", (0, 0)), + ("nshortparallel", (0, 0)), + ("curren", (164, 0)), + ("Uu", (0, 0)), + ("Lopf;", (120131, 0)), + ("Um", (0, 0)), + ("Del", (0, 0)), + ("langd;", (10641, 0)), + ("frac35;", (8535, 0)), + ("capdot", (0, 0)), + ("Dstro", (0, 0)), + ("smi", (0, 0)), + ("thetasym", (0, 0)), + ("szlig;", (223, 0)), + ("rtrif;", (9656, 0)), + ("NotLessSlan", (0, 0)), + ("ups", (0, 0)), + ("becaus", (0, 0)), + ("bbrktbrk;", (9142, 0)), + ("NegativeThickSpac", (0, 0)), + ("rarrh", (0, 0)), + ("Leftr", (0, 0)), + ("xoti", (0, 0)), + ("Union;", (8899, 0)), + ("ema", (0, 0)), + ("RightArrowBar", (0, 0)), + ("rced", (0, 0)), + ("hea", (0, 0)), + ("NotNestedLessLes", (0, 0)), + ("ltimes", (0, 0)), + ("itil", (0, 0)), + ("nsube", (0, 0)), + ("jsc", (0, 0)), + ("Cross", (0, 0)), + ("sdotb;", (8865, 0)), + ("NotDoubleVertical", (0, 0)), + ("NotVertic", (0, 0)), + ("drbkaro", (0, 0)), + ("sqsup", (0, 0)), + ("Zeta;", (918, 0)), + ("supsetneq", (0, 0)), + ("UpArrowDow", (0, 0)), + ("eqci", (0, 0)), + ("uti", (0, 0)), + ("UpTeeA", (0, 0)), + ("varpropto;", (8733, 0)), + ("NotTildeFullEqua", (0, 0)), + ("Dot", (0, 0)), + ("gver", (0, 0)), + ("cong", (0, 0)), + ("measuredangle;", (8737, 0)), + ("FilledSmal", (0, 0)), + ("zeet", (0, 0)), + ("rdquo", (0, 0)), + ("Proportion;", (8759, 0)), + ("ldquor", (0, 0)), + ("Lcaron;", (317, 0)), + ("ldsh", (0, 0)), + ("rarrfs", (0, 0)), + ("PlusMi", (0, 0)), + ("omicr", (0, 0)), + ("RoundImplies;", (10608, 0)), + ("UpDownAr", (0, 0)), + ("lrcorner", (0, 0)), + ("roplus", (0, 0)), + ("uma", (0, 0)), + ("bigod", (0, 0)), + ("gap", (0, 0)), + ("NotSup", (0, 0)), + ("LeftAn", (0, 0)), + ("Oc", (0, 0)), + ("sdotb", (0, 0)), + ("barwed", (0, 0)), + ("lnappr", (0, 0)), + ("fora", (0, 0)), + ("Kfr;", (120078, 0)), + ("rightharpoo", (0, 0)), + ("Therefor", (0, 0)), + ("au", (0, 0)), + ("daleth", (0, 0)), + ("leftrightsquigarr", (0, 0)), + ("subsetneq", (0, 0)), + ("iexcl;", (161, 0)), + ("NegativeVery", (0, 0)), + ("plusd", (0, 0)), + ("qprime;", (8279, 0)), + ("subra", (0, 0)), + ("hst", (0, 0)), + ("vr", (0, 0)), + ("parall", (0, 0)), + ("Eu", (0, 0)), + ("TSH", (0, 0)), + ("trip", (0, 0)), + ("ssmil", (0, 0)), + ("cue", (0, 0)), + ("tint", (0, 0)), + ("eqsim;", (8770, 0)), + ("Ucirc;", (219, 0)), + ("tdot", (0, 0)), + ("lnsim", (0, 0)), + ("Wopf", (0, 0)), + ("NotLeftTriangleB", (0, 0)), + ("Imagi", (0, 0)), + ("backpri", (0, 0)), + ("sube", (0, 0)), + ("bigcir", (0, 0)), + ("ngtr", (0, 0)), + ("mode", (0, 0)), + ("am", (0, 0)), + ("trisb;", (10701, 0)), + ("DoubleLongLeftAr", (0, 0)), + ("rationals", (0, 0)), + ("GreaterLe", (0, 0)), + ("capbrcup;", (10825, 0)), + ("NotLessSlantEq", (0, 0)), + ("Emp", (0, 0)), + ("InvisibleTime", (0, 0)), + ("ast;", (42, 0)), + ("therefore", (0, 0)), + ("Bac", (0, 0)), + ("LessGreater;", (8822, 0)), + ("Propor", (0, 0)), + ("Fopf;", (120125, 0)), + ("Eacute", (201, 0)), + ("rbrkslu", (0, 0)), + ("lowba", (0, 0)), + ("gg;", (8811, 0)), + ("Hac", (0, 0)), + ("ohb", (0, 0)), + ("lg", (0, 0)), + ("Longrigh", (0, 0)), + ("angmsdag", (0, 0)), + ("backsimeq", (0, 0)), + ("elinte", (0, 0)), + ("rdldhar", (0, 0)), + ("thicksim", (0, 0)), + ("udbla", (0, 0)), + ("malte", (0, 0)), + ("gbr", (0, 0)), + ("supp", (0, 0)), + ("Downa", (0, 0)), + ("NotTi", (0, 0)), + ("mo", (0, 0)), + ("ngeqslan", (0, 0)), + ("nshortparall", (0, 0)), + ("swArr", (0, 0)), + ("Ups", (0, 0)), + ("triangler", (0, 0)), + ("nRightarro", (0, 0)), + ("nu;", (957, 0)), + ("LessSla", (0, 0)), + ("cced", (0, 0)), + ("SucceedsTilde;", (8831, 0)), + ("gesdoto", (0, 0)), + ("Longlef", (0, 0)), + ("Egrave", (200, 0)), + ("ShortUpArro", (0, 0)), + ("duh", (0, 0)), + ("Therefore", (0, 0)), + ("blacktriangledown", (0, 0)), + ("nhar", (0, 0)), + ("Gsc", (0, 0)), + ("nleftrighta", (0, 0)), + ("csupe;", (10962, 0)), + ("nRig", (0, 0)), + ("ofc", (0, 0)), + ("gscr", (0, 0)), + ("set", (0, 0)), + ("RightUpVec", (0, 0)), + ("Vdashl", (0, 0)), + ("prod;", (8719, 0)), + ("Fil", (0, 0)), + ("jfr;", (120103, 0)), + ("sdote;", (10854, 0)), + ("nshortmi", (0, 0)), + ("naturals;", (8469, 0)), + ("Zo", (0, 0)), + ("rightarrowt", (0, 0)), + ("lozen", (0, 0)), + ("parsi", (0, 0)), + ("emptyv;", (8709, 0)), + ("Count", (0, 0)), + ("NotLessGreater", (0, 0)), + ("NotSquareSupersetEqua", (0, 0)), + ("angrt;", (8735, 0)), + ("epsil", (0, 0)), + ("crar", (0, 0)), + ("LeftCeilin", (0, 0)), + ("LeftArrowRight", (0, 0)), + ("Vdashl;", (10982, 0)), + ("iiota", (0, 0)), + ("LeftArrow", (0, 0)), + ("LowerRightArr", (0, 0)), + ("scirc", (0, 0)), + ("Hil", (0, 0)), + ("duar", (0, 0)), + ("Rightarrow;", (8658, 0)), + ("Mc", (0, 0)), + ("SucceedsSlantE", (0, 0)), + ("Af", (0, 0)), + ("ran", (0, 0)), + ("circlearrowr", (0, 0)), + ("natural;", (9838, 0)), + ("VerticalTilde", (0, 0)), + ("NotLessT", (0, 0)), + ("esim", (0, 0)), + ("td", (0, 0)), + ("boxminus;", (8863, 0)), + ("rightthreeti", (0, 0)), + ("tridot;", (9708, 0)), + ("gtreqle", (0, 0)), + ("LeftUpVector", (0, 0)), + ("boxvR", (0, 0)), + ("twoheadrigh", (0, 0)), + ("OverParenth", (0, 0)), + ("roarr", (0, 0)), + ("epsiv", (0, 0)), + ("There", (0, 0)), + ("rcy", (0, 0)), + ("tca", (0, 0)), + ("DoubleLongRight", (0, 0)), + ("Yacut", (0, 0)), + ("CirclePl", (0, 0)), + ("nLeftrigh", (0, 0)), + ("dscy", (0, 0)), + ("laempt", (0, 0)), + ("mnp", (0, 0)), + ("upup", (0, 0)), + ("isi", (0, 0)), + ("bbrktbr", (0, 0)), + ("NotPreced", (0, 0)), + ("NegativeThickS", (0, 0)), + ("supsetneqq", (0, 0)), + ("Lacute;", (313, 0)), + ("Euml", (203, 0)), + ("Egrave;", (200, 0)), + ("zwj", (0, 0)), + ("gnE;", (8809, 0)), + ("fcy", (0, 0)), + ("ape;", (8778, 0)), + ("demp", (0, 0)), + ("DownLeft", (0, 0)), + ("nbsp;", (160, 0)), + ("angs", (0, 0)), + ("ltri;", (9667, 0)), + ("natur", (0, 0)), + ("lessappro", (0, 0)), + ("frac5", (0, 0)), + ("FilledVerySmallSquare", (0, 0)), + ("qprime", (0, 0)), + ("aogon", (0, 0)), + ("wo", (0, 0)), + ("vArr;", (8661, 0)), + ("omicro", (0, 0)), + ("HilbertSpa", (0, 0)), + ("rightarrowtai", (0, 0)), + ("ifr", (0, 0)), + ("infintie", (0, 0)), + ("ti", (0, 0)), + ("Cscr", (0, 0)), + ("ot", (0, 0)), + ("dt", (0, 0)), + ("ecirc;", (234, 0)), + ("marker;", (9646, 0)), + ("NotPrecedesSlantEqua", (0, 0)), + ("oop", (0, 0)), + ("Or;", (10836, 0)), + ("le;", (8804, 0)), + ("puncs", (0, 0)), + ("timesbar;", (10801, 0)), + ("Cont", (0, 0)), + ("Ome", (0, 0)), + ("lvnE;", (8808, 65024)), + ("w", (0, 0)), + ("sigmav", (0, 0)), + ("colon", (0, 0)), + ("Zca", (0, 0)), + ("leftharpoondown;", (8637, 0)), + ("ic;", (8291, 0)), + ("Eca", (0, 0)), + ("Egrav", (0, 0)), + ("larrb;", (8676, 0)), + ("boxul;", (9496, 0)), + ("upuparro", (0, 0)), + ("Sopf;", (120138, 0)), + ("VerticalTil", (0, 0)), + ("eqs", (0, 0)), + ("DoubleDownArr", (0, 0)), + ("NotP", (0, 0)), + ("Fcy;", (1060, 0)), + ("bkaro", (0, 0)), + ("UnderBr", (0, 0)), + ("lt;", (60, 0)), + ("Nu;", (925, 0)), + ("ReverseElement", (0, 0)), + ("micro", (181, 0)), + ("Atild", (0, 0)), + ("exponen", (0, 0)), + ("egra", (0, 0)), + ("pluscir", (0, 0)), + ("perten", (0, 0)), + ("ShortLeftArro", (0, 0)), + ("LeftUpD", (0, 0)), + ("NotPrece", (0, 0)), + ("NotCongruent", (0, 0)), + ("NotLessTild", (0, 0)), + ("trianglelefteq", (0, 0)), + ("RightArrowLeftArrow", (0, 0)), + ("notinvb", (0, 0)), + ("DotEqu", (0, 0)), + ("NotRightTriangleEqual;", (8941, 0)), + ("Lf", (0, 0)), + ("Because;", (8757, 0)), + ("RightTeeArrow;", (8614, 0)), + ("NotLessTil", (0, 0)), + ("bumpe;", (8783, 0)), + ("ijlig;", (307, 0)), + ("Ysc", (0, 0)), + ("theref", (0, 0)), + ("supnE;", (10956, 0)), + ("DScy", (0, 0)), + ("Nop", (0, 0)), + ("Uogo", (0, 0)), + ("eqsi", (0, 0)), + ("CapitalDifferentia", (0, 0)), + ("laempty", (0, 0)), + ("Bernou", (0, 0)), + ("e", (0, 0)), + ("prE", (0, 0)), + ("zs", (0, 0)), + ("csupe", (0, 0)), + ("Ope", (0, 0)), + ("block", (0, 0)), + ("NotLeftTriangle;", (8938, 0)), + ("xopf", (0, 0)), + ("NotLessTilde;", (8820, 0)), + ("ls", (0, 0)), + ("intlarh", (0, 0)), + ("ulcrop", (0, 0)), + ("OverParenthes", (0, 0)), + ("triangled", (0, 0)), + ("Tscr", (0, 0)), + ("rightlef", (0, 0)), + ("SmallCir", (0, 0)), + ("LeftArrowRigh", (0, 0)), + ("sqca", (0, 0)), + ("cirsc", (0, 0)), + ("NotNes", (0, 0)), + ("odblac", (0, 0)), + ("the", (0, 0)), + ("boxbox;", (10697, 0)), + ("LeftAngleBracke", (0, 0)), + ("Col", (0, 0)), + ("Yscr;", (119988, 0)), + ("Ra", (0, 0)), + ("dzi", (0, 0)), + ("Bfr", (0, 0)), + ("nltri;", (8938, 0)), + ("Igr", (0, 0)), + ("TildeF", (0, 0)), + ("Squar", (0, 0)), + ("Sacut", (0, 0)), + ("divi", (0, 0)), + ("Capita", (0, 0)), + ("wscr;", (120012, 0)), + ("Wf", (0, 0)), + ("NotLessSlantEqua", (0, 0)), + ("dbl", (0, 0)), + ("rcei", (0, 0)), + ("rightleftarrow", (0, 0)), + ("gtrdot", (0, 0)), + ("gtquest", (0, 0)), + ("lstr", (0, 0)), + ("VerticalT", (0, 0)), + ("rhard", (0, 0)), + ("NotLessLess;", (8810, 824)), + ("cac", (0, 0)), + ("nfr;", (120107, 0)), + ("caron;", (711, 0)), + ("maltes", (0, 0)), + ("NewLi", (0, 0)), + ("rlhar;", (8652, 0)), + ("uparrow;", (8593, 0)), + ("CounterClockwiseContourIntegral", (0, 0)), + ("Apply", (0, 0)), + ("ncong;", (8775, 0)), + ("topbo", (0, 0)), + ("V", (0, 0)), + ("dtri", (0, 0)), + ("ubrev", (0, 0)), + ("ff", (0, 0)), + ("LeftDow", (0, 0)), + ("lfisht", (0, 0)), + ("emptyv", (0, 0)), + ("DiacriticalAcut", (0, 0)), + ("nrightarr", (0, 0)), + ("upharp", (0, 0)), + ("Ci", (0, 0)), + ("uc", (0, 0)), + ("awint;", (10769, 0)), + ("ci", (0, 0)), + ("scap;", (10936, 0)), + ("ope", (0, 0)), + ("oplu", (0, 0)), + ("Neg", (0, 0)), + ("LowerRightArro", (0, 0)), + ("SupersetE", (0, 0)), + ("Yopf;", (120144, 0)), + ("multi", (0, 0)), + ("Equilibrium", (0, 0)), + ("Less", (0, 0)), + ("NegativeThickSpa", (0, 0)), + ("sl", (0, 0)), + ("nshortmid;", (8740, 0)), + ("OverBar", (0, 0)), + ("NestedGreate", (0, 0)), + ("Ka", (0, 0)), + ("Oacute", (211, 0)), + ("prE;", (10931, 0)), + ("ReverseUpEquilibrium;", (10607, 0)), + ("Updownar", (0, 0)), + ("simplus;", (10788, 0)), + ("boxti", (0, 0)), + ("vsupn", (0, 0)), + ("FilledVerySmall", (0, 0)), + ("ol", (0, 0)), + ("marker", (0, 0)), + ("df", (0, 0)), + ("aelig;", (230, 0)), + ("longrightar", (0, 0)), + ("upsil", (0, 0)), + ("squarf", (0, 0)), + ("nVdash;", (8878, 0)), + ("do", (0, 0)), + ("Up", (0, 0)), + ("daleth;", (8504, 0)), + ("capd", (0, 0)), + ("isinv;", (8712, 0)), + ("NotNestedGreaterGreater;", (10914, 824)), + ("Tri", (0, 0)), + ("E", (0, 0)), + ("nLeftrightar", (0, 0)), + ("Medi", (0, 0)), + ("LessEqualGre", (0, 0)), + ("Rightarro", (0, 0)), + ("boxV;", (9553, 0)), + ("gvertneqq", (0, 0)), + ("ast", (0, 0)), + ("NotRight", (0, 0)), + ("asy", (0, 0)), + ("profal", (0, 0)), + ("go", (0, 0)), + ("Copf;", (8450, 0)), + ("nrighta", (0, 0)), + ("RightUpDo", (0, 0)), + ("notnivc;", (8957, 0)), + ("thic", (0, 0)), + ("Not", (0, 0)), + ("wedgeq", (0, 0)), + ("orderof", (0, 0)), + ("scnsim", (0, 0)), + ("Laplacetrf;", (8466, 0)), + ("subne;", (8842, 0)), + ("ffli", (0, 0)), + ("SquareInter", (0, 0)), + ("Vvd", (0, 0)), + ("lds", (0, 0)), + ("rarrc", (0, 0)), + ("NotLeftTriangleBa", (0, 0)), + ("Ber", (0, 0)), + ("Op", (0, 0)), + ("KH", (0, 0)), + ("lAt", (0, 0)), + ("therefor", (0, 0)), + ("eci", (0, 0)), + ("llhar", (0, 0)), + ("phm", (0, 0)), + ("gesdot;", (10880, 0)), + ("xni", (0, 0)), + ("nrigh", (0, 0)), + ("varsup", (0, 0)), + ("LessFullEqua", (0, 0)), + ("ReverseUpEquilibriu", (0, 0)), + ("boxhD", (0, 0)), + ("plus;", (43, 0)), + ("lowbar", (0, 0)), + ("Omega;", (937, 0)), + ("notindot", (0, 0)), + ("lat;", (10923, 0)), + ("leftrightsquigarro", (0, 0)), + ("Mopf", (0, 0)), + ("odso", (0, 0)), + ("srarr", (0, 0)), + ("ssmile", (0, 0)), + ("lrarr", (0, 0)), + ("emsp1", (0, 0)), + ("rr", (0, 0)), + ("measured", (0, 0)), + ("hoo", (0, 0)), + ("GreaterSlantEqual", (0, 0)), + ("ngeqslant", (0, 0)), + ("ndash;", (8211, 0)), + ("lns", (0, 0)), + ("shy", (173, 0)), + ("triminu", (0, 0)), + ("Oum", (0, 0)), + ("updownarr", (0, 0)), + ("lrt", (0, 0)), + ("ocir;", (8858, 0)), + ("DoubleVe", (0, 0)), + ("Gcedil;", (290, 0)), + ("nleft", (0, 0)), + ("gesc", (0, 0)), + ("bigwe", (0, 0)), + ("twoheadr", (0, 0)), + ("drbka", (0, 0)), + ("GreaterLess;", (8823, 0)), + ("NotDou", (0, 0)), + ("comp;", (8705, 0)), + ("Tcy", (0, 0)), + ("geq", (0, 0)), + ("Cconi", (0, 0)), + ("nsupse", (0, 0)), + ("LeftDownVectorBar", (0, 0)), + ("RightUpV", (0, 0)), + ("Eogon", (0, 0)), + ("suplarr", (0, 0)), + ("LeftRightArrow;", (8596, 0)), + ("topf;", (120165, 0)), + ("Zero", (0, 0)), + ("uharr;", (8638, 0)), + ("rar", (0, 0)), + ("longleftarr", (0, 0)), + ("OpenCurlyDoubleQuot", (0, 0)), + ("lmou", (0, 0)), + ("nleqslant;", (10877, 824)), + ("Vertical", (0, 0)), + ("boxdL", (0, 0)), + ("yopf", (0, 0)), + ("Congru", (0, 0)), + ("gesdot", (0, 0)), + ("boxDr;", (9555, 0)), + ("NotSqu", (0, 0)), + ("ntrianglerig", (0, 0)), + ("CloseCurlyDoubleQ", (0, 0)), + ("RightArrow", (0, 0)), + ("xut", (0, 0)), + ("ltla", (0, 0)), + ("Jc", (0, 0)), + ("zo", (0, 0)), + ("Racut", (0, 0)), + ("Jcy", (0, 0)), + ("EmptySm", (0, 0)), + ("eDot;", (8785, 0)), + ("trpezium;", (9186, 0)), + ("rdld", (0, 0)), + ("VerticalSeparato", (0, 0)), + ("ka", (0, 0)), + ("Sigma", (0, 0)), + ("RightTeeVector;", (10587, 0)), + ("xwed", (0, 0)), + ("DoubleUpDownArrow", (0, 0)), + ("CirclePlus;", (8853, 0)), + ("xopl", (0, 0)), + ("RightAng", (0, 0)), + ("bumpe", (0, 0)), + ("Chi;", (935, 0)), + ("rfish", (0, 0)), + ("nwarhk", (0, 0)), + ("fjli", (0, 0)), + ("rarrw;", (8605, 0)), + ("supseteqq", (0, 0)), + ("bsemi", (0, 0)), + ("DoubleRightArrow", (0, 0)), + ("robrk;", (10215, 0)), + ("cscr;", (119992, 0)), + ("boxvH", (0, 0)), + ("egrav", (0, 0)), + ("Yacu", (0, 0)), + ("roar", (0, 0)), + ("OpenCurlyQuote;", (8216, 0)), + ("Yop", (0, 0)), + ("subE", (0, 0)), + ("LeftRightVe", (0, 0)), + ("loo", (0, 0)), + ("rarrc;", (10547, 0)), + ("cupd", (0, 0)), + ("upu", (0, 0)), + ("xupl", (0, 0)), + ("rightthreetimes", (0, 0)), + ("KJcy;", (1036, 0)), + ("GreaterEqu", (0, 0)), + ("Med", (0, 0)), + ("NotSucc", (0, 0)), + ("bka", (0, 0)), + ("nrtri", (0, 0)), + ("qp", (0, 0)), + ("HilbertSpac", (0, 0)), + ("vp", (0, 0)), + ("cupo", (0, 0)), + ("Ufr;", (120088, 0)), + ("sub", (0, 0)), + ("rdldhar;", (10601, 0)), + ("otilde;", (245, 0)), + ("maltese", (0, 0)), + ("Scaron", (0, 0)), + ("Zacu", (0, 0)), + ("rbarr", (0, 0)), + ("bprim", (0, 0)), + ("loplus;", (10797, 0)), + ("tbrk", (0, 0)), + ("epsilon;", (949, 0)), + ("uml;", (168, 0)), + ("nparsl;", (11005, 8421)), + ("Nce", (0, 0)), + ("UpEquilibri", (0, 0)), + ("CounterCloc", (0, 0)), + ("leqq;", (8806, 0)), + ("SucceedsSlantEqu", (0, 0)), + ("sced", (0, 0)), + ("dotplus;", (8724, 0)), + ("REG", (174, 0)), + ("Omacr", (0, 0)), + ("trpeziu", (0, 0)), + ("LeftTee;", (8867, 0)), + ("UnderParent", (0, 0)), + ("UpperLeftArrow;", (8598, 0)), + ("DownArrowUpArrow;", (8693, 0)), + ("eD", (0, 0)), + ("lagra", (0, 0)), + ("spa", (0, 0)), + ("sscr;", (120008, 0)), + ("ETH;", (208, 0)), + ("rbarr;", (10509, 0)), + ("phiv;", (981, 0)), + ("Cedilla", (0, 0)), + ("andslope;", (10840, 0)), + ("slarr", (0, 0)), + ("angzarr;", (9084, 0)), + ("varthe", (0, 0)), + ("preccurly", (0, 0)), + ("triangledown", (0, 0)), + ("Sta", (0, 0)), + ("leftrightarrow", (0, 0)), + ("therefo", (0, 0)), + ("imagline", (0, 0)), + ("Udblac;", (368, 0)), + ("elint", (0, 0)), + ("uhb", (0, 0)), + ("NotSucceedsSlan", (0, 0)), + ("larrfs;", (10525, 0)), + ("Ze", (0, 0)), + ("varprop", (0, 0)), + ("varphi", (0, 0)), + ("lcaro", (0, 0)), + ("bre", (0, 0)), + ("dharr;", (8642, 0)), + ("Inters", (0, 0)), + ("ffllig;", (64260, 0)), + ("int", (0, 0)), + ("Implies", (0, 0)), + ("iecy", (0, 0)), + ("NotNestedGreaterGreater", (0, 0)), + ("csube;", (10961, 0)), + ("DDotrah", (0, 0)), + ("blacktriangleright", (0, 0)), + ("rsquo", (0, 0)), + ("Qscr;", (119980, 0)), + ("RightFloor;", (8971, 0)), + ("NotCupCap", (0, 0)), + ("bs", (0, 0)), + ("FilledVe", (0, 0)), + ("straig", (0, 0)), + ("ecaro", (0, 0)), + ("NotT", (0, 0)), + ("langle", (0, 0)), + ("Ga", (0, 0)), + ("kf", (0, 0)), + ("Wcirc", (0, 0)), + ("boxvL;", (9569, 0)), + ("qin", (0, 0)), + ("hercon", (0, 0)), + ("NotLessGre", (0, 0)), + ("LeftR", (0, 0)), + ("VerticalSepar", (0, 0)), + ("NegativeThinSp", (0, 0)), + ("Greate", (0, 0)), + ("jcirc;", (309, 0)), + ("ldquo", (0, 0)), + ("uphar", (0, 0)), + ("lambda", (0, 0)), + ("neArr", (0, 0)), + ("lbarr;", (10508, 0)), + ("downharpoonright", (0, 0)), + ("Lcaro", (0, 0)), + ("SquareUn", (0, 0)), + ("lp", (0, 0)), + ("varsupset", (0, 0)), + ("fr", (0, 0)), + ("ncong", (0, 0)), + ("Dcy;", (1044, 0)), + ("DownA", (0, 0)), + ("DiacriticalTilde", (0, 0)), + ("ReverseEquil", (0, 0)), + ("NotSucceedsSlantEqual;", (8929, 0)), + ("eqcolo", (0, 0)), + ("DoubleContourIntegr", (0, 0)), + ("HumpD", (0, 0)), + ("questeq", (0, 0)), + ("cem", (0, 0)), + ("Dashv", (0, 0)), + ("parallel", (0, 0)), + ("rightleftharpoon", (0, 0)), + ("ClockwiseConto", (0, 0)), + ("NotPrecedesEqu", (0, 0)), + ("DownLeftTee", (0, 0)), + ("OverBrack", (0, 0)), + ("NotEleme", (0, 0)), + ("nf", (0, 0)), + ("Hu", (0, 0)), + ("intc", (0, 0)), + ("Jser", (0, 0)), + ("circledS;", (9416, 0)), + ("Gamm", (0, 0)), + ("iqu", (0, 0)), + ("Oacu", (0, 0)), + ("divonx;", (8903, 0)), + ("lessapprox;", (10885, 0)), + ("orar", (0, 0)), + ("TildeFull", (0, 0)), + ("ShortLeftArrow;", (8592, 0)), + ("ie", (0, 0)), + ("NotRig", (0, 0)), + ("Pscr;", (119979, 0)), + ("oso", (0, 0)), + ("alef", (0, 0)), + ("pou", (0, 0)), + ("NotRightTriangle;", (8939, 0)), + ("prnap", (0, 0)), + ("da", (0, 0)), + ("RightArrowLeftA", (0, 0)), + ("utild", (0, 0)), + ("ReverseEl", (0, 0)), + ("scE", (0, 0)), + ("duhar", (0, 0)), + ("Ycir", (0, 0)), + ("NotSquareSubsetEqua", (0, 0)), + ("LongLeftRightArr", (0, 0)), + ("ShortD", (0, 0)), + ("male;", (9794, 0)), + ("sta", (0, 0)), + ("lharul;", (10602, 0)), + ("dscr;", (119993, 0)), + ("VerticalLine;", (124, 0)), + ("RightDouble", (0, 0)), + ("NotRightTriangleE", (0, 0)), + ("Close", (0, 0)), + ("perio", (0, 0)), + ("subsub", (0, 0)), + ("iu", (0, 0)), + ("gtreqqles", (0, 0)), + ("Leftrighta", (0, 0)), + ("caret;", (8257, 0)), + ("smallsetm", (0, 0)), + ("coprod", (0, 0)), + ("ipr", (0, 0)), + ("ta", (0, 0)), + ("Hcirc;", (292, 0)), + ("rfr", (0, 0)), + ("downharpoo", (0, 0)), + ("Uc", (0, 0)), + ("NotSupers", (0, 0)), + ("xfr", (0, 0)), + ("xfr;", (120117, 0)), + ("downharpoonrig", (0, 0)), + ("tced", (0, 0)), + ("barwed;", (8965, 0)), + ("lfis", (0, 0)), + ("comple", (0, 0)), + ("CounterClockwiseContourIn", (0, 0)), + ("gsiml", (0, 0)), + ("scpolint", (0, 0)), + ("NotGreaterSlantEqua", (0, 0)), + ("OpenCurlyDou", (0, 0)), + ("Nti", (0, 0)), + ("lstrok", (0, 0)), + ("NotTildeEqual;", (8772, 0)), + ("rightleftarro", (0, 0)), + ("plussim", (0, 0)), + ("subsi", (0, 0)), + ("SupersetEq", (0, 0)), + ("egrave;", (232, 0)), + ("risingdots", (0, 0)), + ("DifferentialD;", (8518, 0)), + ("omin", (0, 0)), + ("righ", (0, 0)), + ("succne", (0, 0)), + ("DoubleR", (0, 0)), + ("ratio;", (8758, 0)), + ("sca", (0, 0)), + ("NotLessEqu", (0, 0)), + ("NestedLessLes", (0, 0)), + ("LeftRightVector;", (10574, 0)), + ("ldq", (0, 0)), + ("gsime", (0, 0)), + ("f", (0, 0)), + ("zca", (0, 0)), + ("downdown", (0, 0)), + ("DownLeftV", (0, 0)), + ("supne", (0, 0)), + ("ni;", (8715, 0)), + ("Jukc", (0, 0)), + ("Acirc;", (194, 0)), + ("bnequ", (0, 0)), + ("LeftTriangleEqua", (0, 0)), + ("LongR", (0, 0)), + ("Racute", (0, 0)), + ("triplus;", (10809, 0)), + ("NonBreakingSpa", (0, 0)), + ("sq", (0, 0)), + ("triangleri", (0, 0)), + ("nis", (0, 0)), + ("Doubl", (0, 0)), + ("nsqsub", (0, 0)), + ("longle", (0, 0)), + ("nlsim;", (8820, 0)), + ("cfr", (0, 0)), + ("AElig;", (198, 0)), + ("LeftVectorBar;", (10578, 0)), + ("tprime;", (8244, 0)), + ("nmid", (0, 0)), + ("LeftFl", (0, 0)), + ("NotGreaterEqual", (0, 0)), + ("DownTe", (0, 0)), + ("Ubr", (0, 0)), + ("ascr", (0, 0)), + ("esdot", (0, 0)), + ("ropar;", (10630, 0)), + ("LowerRightArrow;", (8600, 0)), + ("sube;", (8838, 0)), + ("mumap", (0, 0)), + ("nca", (0, 0)), + ("ShortUpA", (0, 0)), + ("RightUpTeeVecto", (0, 0)), + ("dow", (0, 0)), + ("vartria", (0, 0)), + ("NotDoubleVerticalB", (0, 0)), + ("LeftDo", (0, 0)), + ("xn", (0, 0)), + ("ws", (0, 0)), + ("yi", (0, 0)), + ("luruh", (0, 0)), + ("heartsuit;", (9829, 0)), + ("olt", (0, 0)), + ("NestedLessL", (0, 0)), + ("NotReverseE", (0, 0)), + ("REG;", (174, 0)), + ("sqs", (0, 0)), + ("geqslan", (0, 0)), + ("precnapp", (0, 0)), + ("FilledVery", (0, 0)), + ("bigot", (0, 0)), + ("rAt", (0, 0)), + ("leftrighthar", (0, 0)), + ("gesdoto;", (10882, 0)), + ("LeftUpVectorB", (0, 0)), + ("Pscr", (0, 0)), + ("umacr", (0, 0)), + ("rati", (0, 0)), + ("Pfr", (0, 0)), + ("capand;", (10820, 0)), + ("thicks", (0, 0)), + ("varka", (0, 0)), + ("Mf", (0, 0)), + ("subplu", (0, 0)), + ("gtreqql", (0, 0)), + ("dd", (0, 0)), + ("complexes", (0, 0)), + ("ubr", (0, 0)), + ("xrarr", (0, 0)), + ("phmmat;", (8499, 0)), + ("UpArrowBar", (0, 0)), + ("subsetneqq", (0, 0)), + ("nparsl", (0, 0)), + ("raquo;", (187, 0)), + ("Uarr;", (8607, 0)), + ("homth", (0, 0)), + ("uuarr", (0, 0)), + ("Supset", (0, 0)), + ("triangleq;", (8796, 0)), + ("tscr", (0, 0)), + ("DownBr", (0, 0)), + ("LessGre", (0, 0)), + ("NotDo", (0, 0)), + ("OpenCurlyDoubleQuo", (0, 0)), + ("Fcy", (0, 0)), + ("eparsl", (0, 0)), + ("Escr;", (8496, 0)), + ("bottom;", (8869, 0)), + ("Fsc", (0, 0)), + ("curlyw", (0, 0)), + ("ShortU", (0, 0)), + ("NestedL", (0, 0)), + ("hookrigh", (0, 0)), + ("sdot;", (8901, 0)), + ("gtrdo", (0, 0)), + ("DoubleLeftTe", (0, 0)), + ("iacute;", (237, 0)), + ("leftright", (0, 0)), + ("NotPrecedesSlan", (0, 0)), + ("Omega", (0, 0)), + ("ovba", (0, 0)), + ("sstar", (0, 0)), + ("ohm;", (937, 0)), + ("Lambda", (0, 0)), + ("nleq", (0, 0)), + ("ges", (0, 0)), + ("LeftAngleBrack", (0, 0)), + ("gsim", (0, 0)), + ("NotTilde", (0, 0)), + ("nvDash;", (8877, 0)), + ("CounterClockwiseC", (0, 0)), + ("lne;", (10887, 0)), + ("NotCongruen", (0, 0)), + ("twoheadrightarro", (0, 0)), + ("re", (0, 0)), + ("curv", (0, 0)), + ("reals", (0, 0)), + ("epsi;", (949, 0)), + ("Dopf", (0, 0)), + ("mu", (0, 0)), + ("NotSquareSubse", (0, 0)), + ("boxmin", (0, 0)), + ("succeq;", (10928, 0)), + ("rcaron", (0, 0)), + ("longright", (0, 0)), + ("tdot;", (8411, 0)), + ("be", (0, 0)), + ("cupcup;", (10826, 0)), + ("pitch", (0, 0)), + ("jse", (0, 0)), + ("backep", (0, 0)), + ("yacu", (0, 0)), + ("gjcy", (0, 0)), + ("sqsubset;", (8847, 0)), + ("risingdot", (0, 0)), + ("NestedGrea", (0, 0)), + ("mnpl", (0, 0)), + ("LeftUpTeeVe", (0, 0)), + ("ands", (0, 0)), + ("topci", (0, 0)), + ("nrarrc", (0, 0)), + ("propto;", (8733, 0)), + ("curlyeqprec", (0, 0)), + ("ll;", (8810, 0)), + ("xodot", (0, 0)), + ("maltese;", (10016, 0)), + ("diamond;", (8900, 0)), + ("nRightar", (0, 0)), + ("C", (0, 0)), + ("xm", (0, 0)), + ("uuml", (252, 0)), + ("risi", (0, 0)), + ("Da", (0, 0)), + ("gnapp", (0, 0)), + ("npar", (0, 0)), + ("NotElement;", (8713, 0)), + ("IEcy;", (1045, 0)), + ("curvearr", (0, 0)), + ("FilledVeryS", (0, 0)), + ("hard", (0, 0)), + ("diam", (0, 0)), + ("Yum", (0, 0)), + ("Tcaron;", (356, 0)), + ("Igrav", (0, 0)), + ("nexis", (0, 0)), + ("NegativeMediu", (0, 0)), + ("otimes", (0, 0)), + ("wop", (0, 0)), + ("trianglel", (0, 0)), + ("bscr;", (119991, 0)), + ("oline;", (8254, 0)), + ("Coprodu", (0, 0)), + ("plusaci", (0, 0)), + ("lrar", (0, 0)), + ("Center", (0, 0)), + ("fno", (0, 0)), + ("nsh", (0, 0)), + ("Ouml;", (214, 0)), + ("nced", (0, 0)), + ("NotSuper", (0, 0)), + ("cd", (0, 0)), + ("longrightarr", (0, 0)), + ("supdsu", (0, 0)), + ("nvlt;", (60, 8402)), + ("Eacu", (0, 0)), + ("expect", (0, 0)), + ("Am", (0, 0)), + ("InvisibleTim", (0, 0)), + ("midcir", (0, 0)), + ("setminu", (0, 0)), + ("larrpl", (0, 0)), + ("larrpl;", (10553, 0)), + ("roang", (0, 0)), + ("App", (0, 0)), + ("NotGreaterTil", (0, 0)), + ("rbrks", (0, 0)), + ("VeryThinSpa", (0, 0)), + ("lthre", (0, 0)), + ("rla", (0, 0)), + ("lsaqu", (0, 0)), + ("NotGreaterSl", (0, 0)), + ("angmsdaa;", (10664, 0)), + ("NotSquar", (0, 0)), + ("LeftAr", (0, 0)), + ("us", (0, 0)), + ("ecar", (0, 0)), + ("Diffe", (0, 0)), + ("gneq;", (10888, 0)), + ("esd", (0, 0)), + ("DoubleUpDow", (0, 0)), + ("varphi;", (981, 0)), + ("ntgl", (0, 0)), + ("Imac", (0, 0)), + ("til", (0, 0)), + ("frasl;", (8260, 0)), + ("caps;", (8745, 65024)), + ("Uacu", (0, 0)), + ("models;", (8871, 0)), + ("RoundIm", (0, 0)), + ("Otil", (0, 0)), + ("Barv;", (10983, 0)), + ("lBarr;", (10510, 0)), + ("Rightar", (0, 0)), + ("clubsuit;", (9827, 0)), + ("minusd;", (8760, 0)), + ("rmousta", (0, 0)), + ("bsime;", (8909, 0)), + ("TildeTilde;", (8776, 0)), + ("acut", (0, 0)), + ("NotGreaterEqual;", (8817, 0)), + ("gcir", (0, 0)), + ("subedot;", (10947, 0)), + ("Epsi", (0, 0)), + ("rightarrowtail;", (8611, 0)), + ("quatin", (0, 0)), + ("boxDl", (0, 0)), + ("hookri", (0, 0)), + ("circledci", (0, 0)), + ("HumpDownHum", (0, 0)), + ("nvle;", (8804, 8402)), + ("longleftrighta", (0, 0)), + ("measuredangl", (0, 0)), + ("dA", (0, 0)), + ("circledS", (0, 0)), + ("iecy;", (1077, 0)), + ("qint", (0, 0)), + ("SmallCi", (0, 0)), + ("rcy;", (1088, 0)), + ("period", (0, 0)), + ("Ug", (0, 0)), + ("measur", (0, 0)), + ("umacr;", (363, 0)), + ("is", (0, 0)), + ("backsi", (0, 0)), + ("SmallC", (0, 0)), + ("auml", (228, 0)), + ("bigoplus;", (10753, 0)), + ("drcorn", (0, 0)), + ("ShortUpArrow;", (8593, 0)), + ("rppolin", (0, 0)), + ("Counte", (0, 0)), + ("DownRightTe", (0, 0)), + ("eplu", (0, 0)), + ("boxVh", (0, 0)), + ("vBar", (0, 0)), + ("perp;", (8869, 0)), + ("Lcedil", (0, 0)), + ("downharpoonri", (0, 0)), + ("rdqu", (0, 0)), + ("ContourInteg", (0, 0)), + ("ecirc", (234, 0)), + ("dotsqu", (0, 0)), + ("mstpos", (0, 0)), + ("CloseCurlyDouble", (0, 0)), + ("Delta", (0, 0)), + ("llc", (0, 0)), + ("NotSquareSubsetEqual", (0, 0)), + ("Umacr", (0, 0)), + ("LeftDownVectorB", (0, 0)), + ("Ncedil", (0, 0)), + ("trimi", (0, 0)), + ("andsl", (0, 0)), + ("rAarr;", (8667, 0)), + ("seA", (0, 0)), + ("Small", (0, 0)), + ("Vcy", (0, 0)), + ("coloneq;", (8788, 0)), + ("Verbar", (0, 0)), + ("rdca", (0, 0)), + ("SmallCircle", (0, 0)), + ("ye", (0, 0)), + ("bl", (0, 0)), + ("pho", (0, 0)), + ("amacr;", (257, 0)), + ("MinusPlus", (0, 0)), + ("lbrace", (0, 0)), + ("Sub;", (8912, 0)), + ("nlArr", (0, 0)), + ("zigr", (0, 0)), + ("Lap", (0, 0)), + ("Poinc", (0, 0)), + ("longr", (0, 0)), + ("DiacriticalDou", (0, 0)), + ("Bf", (0, 0)), + ("ltrif;", (9666, 0)), + ("varthet", (0, 0)), + ("thin", (0, 0)), + ("NotLeftTriangleBar", (0, 0)), + ("ogr", (0, 0)), + ("LessGr", (0, 0)), + ("complex", (0, 0)), + ("VerticalTilde;", (8768, 0)), + ("half;", (189, 0)), + ("NotSubsetEqual", (0, 0)), + ("frac58;", (8541, 0)), + ("napid;", (8779, 824)), + ("Gb", (0, 0)), + ("rbrksld;", (10638, 0)), + ("nL", (0, 0)), + ("rrarr", (0, 0)), + ("vBa", (0, 0)), + ("NotGreaterFu", (0, 0)), + ("DownLeftRightVect", (0, 0)), + ("circl", (0, 0)), + ("xsqc", (0, 0)), + ("harrw;", (8621, 0)), + ("PrecedesSlantEqu", (0, 0)), + ("ar", (0, 0)), + ("TildeFu", (0, 0)), + ("triangleleft;", (9667, 0)), + ("Superse", (0, 0)), + ("ltri", (0, 0)), + ("Ugrav", (0, 0)), + ("mopf;", (120158, 0)), + ("fallingdo", (0, 0)), + ("Gcir", (0, 0)), + ("zscr", (0, 0)), + ("iopf;", (120154, 0)), + ("ltrPar", (0, 0)), + ("bigtriangleup;", (9651, 0)), + ("setminus", (0, 0)), + ("yum", (0, 0)), + ("ration", (0, 0)), + ("rhar", (0, 0)), + ("Partial", (0, 0)), + ("updowna", (0, 0)), + ("UnderBracket;", (9141, 0)), + ("topb", (0, 0)), + ("Iukcy;", (1030, 0)), + ("asympe", (0, 0)), + ("notin;", (8713, 0)), + ("scsi", (0, 0)), + ("UnderParenthesis", (0, 0)), + ("cudarrr;", (10549, 0)), + ("bo", (0, 0)), + ("tc", (0, 0)), + ("urcr", (0, 0)), + ("gfr", (0, 0)), + ("NotNestedLess", (0, 0)), + ("xrA", (0, 0)), + ("wr", (0, 0)), + ("nequiv;", (8802, 0)), + ("NonBreakingSpac", (0, 0)), + ("bempty", (0, 0)), + ("ogo", (0, 0)), + ("Assig", (0, 0)), + ("Sce", (0, 0)), + ("plustw", (0, 0)), + ("lrco", (0, 0)), + ("NotLeftTr", (0, 0)), + ("tfr;", (120113, 0)), + ("subsup", (0, 0)), + ("kop", (0, 0)), + ("phon", (0, 0)), + ("doublebar", (0, 0)), + ("oror;", (10838, 0)), + ("veeba", (0, 0)), + ("Itilde", (0, 0)), + ("xlAr", (0, 0)), + ("kced", (0, 0)), + ("ShortDown", (0, 0)), + ("rd", (0, 0)), + ("NoBreak", (0, 0)), + ("NotTildeEqu", (0, 0)), + ("caron", (0, 0)), + ("expectatio", (0, 0)), + ("UnderParenthes", (0, 0)), + ("Backslas", (0, 0)), + ("Ccon", (0, 0)), + ("varepsilon", (0, 0)), + ("YUcy;", (1070, 0)), + ("urcor", (0, 0)), + ("MinusPl", (0, 0)), + ("CircleTime", (0, 0)), + ("SquareSub", (0, 0)), + ("Ucy;", (1059, 0)), + ("hopf", (0, 0)), + ("NotDouble", (0, 0)), + ("Dagger;", (8225, 0)), + ("leqq", (0, 0)), + ("Fo", (0, 0)), + ("srarr;", (8594, 0)), + ("NegativeVe", (0, 0)), + ("operp", (0, 0)), + ("RightTriangleE", (0, 0)), + ("ccaro", (0, 0)), + ("NotVerticalBa", (0, 0)), + ("profs", (0, 0)), + ("PrecedesSlantE", (0, 0)), + ("UnderParenthe", (0, 0)), + ("tstr", (0, 0)), + ("NotRightTriangleBa", (0, 0)), + ("ccupssm;", (10832, 0)), + ("vartriangleleft;", (8882, 0)), + ("eqslant", (0, 0)), + ("flat", (0, 0)), + ("eqslantless", (0, 0)), + ("nvrtrie", (0, 0)), + ("mea", (0, 0)), + ("DoubleCo", (0, 0)), + ("twoheadleftar", (0, 0)), + ("uw", (0, 0)), + ("RightDoubleBracke", (0, 0)), + ("ShortUpArrow", (0, 0)), + ("rbrack", (0, 0)), + ("lrm", (0, 0)), + ("LeftTeeV", (0, 0)), + ("GreaterGreat", (0, 0)), + ("nvi", (0, 0)), + ("RightUpVecto", (0, 0)), + ("ntrianglerighte", (0, 0)), + ("Osla", (0, 0)), + ("Rang;", (10219, 0)), + ("thicksi", (0, 0)), + ("Squ", (0, 0)), + ("nwnea", (0, 0)), + ("Sqrt;", (8730, 0)), + ("nvDash", (0, 0)), + ("Differen", (0, 0)), + ("harrci", (0, 0)), + ("oa", (0, 0)), + ("aacute;", (225, 0)), + ("rdl", (0, 0)), + ("qfr;", (120110, 0)), + ("tint;", (8749, 0)), + ("NotRightTriangleB", (0, 0)), + ("bN", (0, 0)), + ("napos;", (329, 0)), + ("lfr", (0, 0)), + ("Zcy;", (1047, 0)), + ("smallsetminus", (0, 0)), + ("supm", (0, 0)), + ("plusm", (0, 0)), + ("downharp", (0, 0)), + ("LeftDownVect", (0, 0)), + ("nap;", (8777, 0)), + ("Diacritical", (0, 0)), + ("leftrightharpoon", (0, 0)), + ("Coproduct", (0, 0)), + ("duha", (0, 0)), + ("Hump", (0, 0)), + ("isinsv;", (8947, 0)), + ("hardcy;", (1098, 0)), + ("oacut", (0, 0)), + ("blackloze", (0, 0)), + ("xwe", (0, 0)), + ("sup1;", (185, 0)), + ("DiacriticalAc", (0, 0)), + ("left", (0, 0)), + ("Oa", (0, 0)), + ("udha", (0, 0)), + ("nge", (0, 0)), + ("Coproduc", (0, 0)), + ("hyphen;", (8208, 0)), + ("RightTriangleBa", (0, 0)), + ("intlar", (0, 0)), + ("Zdot;", (379, 0)), + ("DiacriticalDoubleAcut", (0, 0)), + ("ShortR", (0, 0)), + ("bkarow", (0, 0)), + ("th", (0, 0)), + ("lar", (0, 0)), + ("cud", (0, 0)), + ("ne;", (8800, 0)), + ("RightAn", (0, 0)), + ("vD", (0, 0)), + ("downharpoonleft", (0, 0)), + ("pitchfo", (0, 0)), + ("lozenge", (0, 0)), + ("mn", (0, 0)), + ("Z", (0, 0)), + ("expectat", (0, 0)), + ("Horizon", (0, 0)), + ("Tcedil;", (354, 0)), + ("trid", (0, 0)), + ("NotLessLe", (0, 0)), + ("prim", (0, 0)), + ("ReverseEqu", (0, 0)), + ("Utilde;", (360, 0)), + ("omacr", (0, 0)), + ("mapstodow", (0, 0)), + ("cemptyv", (0, 0)), + ("UpArrow", (0, 0)), + ("qf", (0, 0)), + ("J", (0, 0)), + ("diamon", (0, 0)), + ("HorizontalLi", (0, 0)), + ("Sqrt", (0, 0)), + ("kap", (0, 0)), + ("CloseCurlyQ", (0, 0)), + ("EqualTil", (0, 0)), + ("fallingdotse", (0, 0)), + ("gE", (0, 0)), + ("sqsubset", (0, 0)), + ("FilledVerySmallSqua", (0, 0)), + ("UpperRightA", (0, 0)), + ("NotVerti", (0, 0)), + ("ntlg", (0, 0)), + ("pm", (0, 0)), + ("DiacriticalDouble", (0, 0)), + ("NotTildeFu", (0, 0)), + ("xharr;", (10231, 0)), + ("leqslant", (0, 0)), + ("DZ", (0, 0)), + ("twoheadleftarrow;", (8606, 0)), + ("Ic", (0, 0)), + ("DownR", (0, 0)), + ("realpar", (0, 0)), + ("Neste", (0, 0)), + ("nvltrie;", (8884, 8402)), + ("lcedil;", (316, 0)), + ("lur", (0, 0)), + ("NotSucceedsEqua", (0, 0)), + ("gtrle", (0, 0)), + ("qu", (0, 0)), + ("RightTriangleEqu", (0, 0)), + ("ReverseEqui", (0, 0)), + ("Gcedi", (0, 0)), + ("chi;", (967, 0)), + ("thorn", (254, 0)), + ("iinfi", (0, 0)), + ("midc", (0, 0)), + ("HilbertSpace", (0, 0)), + ("lnappro", (0, 0)), + ("cy", (0, 0)), + ("marke", (0, 0)), + ("lrtri;", (8895, 0)), + ("smashp", (0, 0)), + ("RightUpVectorBar", (0, 0)), + ("ngt", (0, 0)), + ("jcirc", (0, 0)), + ("Epsilo", (0, 0)), + ("GreaterTi", (0, 0)), + ("oacute;", (243, 0)), + ("tritime", (0, 0)), + ("iogo", (0, 0)), + ("looparrowr", (0, 0)), + ("Lac", (0, 0)), + ("vsupnE", (0, 0)), + ("cura", (0, 0)), + ("circ;", (710, 0)), + ("dzcy", (0, 0)), + ("napprox;", (8777, 0)), + ("ncongdot;", (10861, 824)), + ("DoubleLeftRightAr", (0, 0)), + ("Vertic", (0, 0)), + ("npart", (0, 0)), + ("triminus", (0, 0)), + ("egsdot;", (10904, 0)), + ("hfr", (0, 0)), + ("longleftri", (0, 0)), + ("rsquor", (0, 0)), + ("DownLeftTeeVec", (0, 0)), + ("zdot", (0, 0)), + ("SHCHcy", (0, 0)), + ("Intersec", (0, 0)), + ("An", (0, 0)), + ("ccirc;", (265, 0)), + ("swarro", (0, 0)), + ("quest", (0, 0)), + ("frac35", (0, 0)), + ("PrecedesSlantEqual", (0, 0)), + ("sbquo;", (8218, 0)), + ("imacr;", (299, 0)), + ("twoheadleftarr", (0, 0)), + ("leftthreetimes", (0, 0)), + ("sigma;", (963, 0)), + ("boxh", (0, 0)), + ("SquareSuperset;", (8848, 0)), + ("eqsl", (0, 0)), + ("circeq", (0, 0)), + ("lesseqgt", (0, 0)), + ("ufis", (0, 0)), + ("nsubseteqq", (0, 0)), + ("veebar", (0, 0)), + ("bigotimes;", (10754, 0)), + ("brvb", (0, 0)), + ("LeftTeeArrow;", (8612, 0)), + ("barw", (0, 0)), + ("rAtail", (0, 0)), + ("DownBrev", (0, 0)), + ("fo", (0, 0)), + ("Exists;", (8707, 0)), + ("equals;", (61, 0)), + ("upha", (0, 0)), + ("Proport", (0, 0)), + ("vel", (0, 0)), + ("subp", (0, 0)), + ("Gf", (0, 0)), + ("hoarr", (0, 0)), + ("thksim", (0, 0)), + ("atil", (0, 0)), + ("nleqslant", (0, 0)), + ("mscr;", (120002, 0)), + ("lsime;", (10893, 0)), + ("Hstr", (0, 0)), + ("yfr;", (120118, 0)), + ("UpArrowBa", (0, 0)), + ("filig", (0, 0)), + ("DoubleLeftRight", (0, 0)), + ("gci", (0, 0)), + ("dbkarow", (0, 0)), + ("lEg", (0, 0)), + ("bprime", (0, 0)), + ("nearrow", (0, 0)), + ("HumpEq", (0, 0)), + ("forkv;", (10969, 0)), + ("Igra", (0, 0)), + ("Bet", (0, 0)), + ("RightArrowLeft", (0, 0)), + ("RightDownTeeVector;", (10589, 0)), + ("CO", (0, 0)), + ("rarrtl", (0, 0)), + ("CapitalDi", (0, 0)), + ("TripleD", (0, 0)), + ("xcup;", (8899, 0)), + ("sci", (0, 0)), + ("Short", (0, 0)), + ("bdquo", (0, 0)), + ("zcar", (0, 0)), + ("RightCeiling;", (8969, 0)), + ("lcei", (0, 0)), + ("ijl", (0, 0)), + ("dlcorn;", (8990, 0)), + ("circlea", (0, 0)), + ("risingd", (0, 0)), + ("Cd", (0, 0)), + ("Rsc", (0, 0)), + ("NotPrecedesSlantEqu", (0, 0)), + ("thi", (0, 0)), + ("efD", (0, 0)), + ("LessEqualGr", (0, 0)), + ("Dstrok;", (272, 0)), + ("Iogo", (0, 0)), + ("Hacek", (0, 0)), + ("blacktri", (0, 0)), + ("Integral;", (8747, 0)), + ("lessgtr;", (8822, 0)), + ("notinE;", (8953, 824)), + ("xci", (0, 0)), + ("LeftT", (0, 0)), + ("esdo", (0, 0)), + ("GreaterSlant", (0, 0)), + ("NotGreaterTild", (0, 0)), + ("DoubleLeftRightArrow", (0, 0)), + ("nLeftarrow", (0, 0)), + ("supsub", (0, 0)), + ("Uti", (0, 0)), + ("Longleftarr", (0, 0)), + ("hear", (0, 0)), + ("bigw", (0, 0)), + ("Sm", (0, 0)), + ("Hscr", (0, 0)), + ("iexc", (0, 0)), + ("Tfr;", (120087, 0)), + ("rac", (0, 0)), + ("supsi", (0, 0)), + ("cirfnint;", (10768, 0)), + ("lefta", (0, 0)), + ("lla", (0, 0)), + ("qopf;", (120162, 0)), + ("les;", (10877, 0)), + ("EmptyVerySmallSqua", (0, 0)), + ("NotDoubleVerticalBar;", (8742, 0)), + ("barvee", (0, 0)), + ("ccups;", (10828, 0)), + ("PartialD", (0, 0)), + ("telrec", (0, 0)), + ("boxVh;", (9579, 0)), + ("VeryTh", (0, 0)), + ("NotVertical", (0, 0)), + ("ShortDownAr", (0, 0)), + ("supsub;", (10964, 0)), + ("blacklozeng", (0, 0)), + ("nRightarrow", (0, 0)), + ("Osc", (0, 0)), + ("rbbrk", (0, 0)), + ("iii", (0, 0)), + ("Uscr;", (119984, 0)), + ("RightVector;", (8640, 0)), + ("geqs", (0, 0)), + ("Agra", (0, 0)), + ("FilledSm", (0, 0)), + ("rArr", (0, 0)), + ("Equal;", (10869, 0)), + ("NotSupersetEq", (0, 0)), + ("capcap", (0, 0)), + ("ntild", (0, 0)), + ("rtim", (0, 0)), + ("nvda", (0, 0)), + ("NestedLess", (0, 0)), + ("lnsim;", (8934, 0)), + ("ulcro", (0, 0)), + ("oscr;", (8500, 0)), + ("tcaron", (0, 0)), + ("CloseCurlyDoubl", (0, 0)), + ("sqcu", (0, 0)), + ("olcir;", (10686, 0)), + ("And", (0, 0)), + ("or;", (8744, 0)), + ("Scir", (0, 0)), + ("Leftrightarr", (0, 0)), + ("NotLessSlantEqu", (0, 0)), + ("Ecy;", (1069, 0)), + ("rti", (0, 0)), + ("gt", (62, 0)), + ("boxHu;", (9575, 0)), + ("napp", (0, 0)), + ("ocy", (0, 0)), + ("DDot", (0, 0)), + ("ques", (0, 0)), + ("ltdot", (0, 0)), + ("EqualTild", (0, 0)), + ("nleftrightarrow", (0, 0)), + ("twohead", (0, 0)), + ("Scirc;", (348, 0)), + ("fpar", (0, 0)), + ("UpArrowDownArrow;", (8645, 0)), + ("Aog", (0, 0)), + ("point", (0, 0)), + ("leftar", (0, 0)), + ("lbbrk", (0, 0)), + ("DoubleRightArr", (0, 0)), + ("CounterClockwiseContour", (0, 0)), + ("ldrdh", (0, 0)), + ("NotEqualTil", (0, 0)), + ("Sf", (0, 0)), + ("uci", (0, 0)), + ("rsc", (0, 0)), + ("Popf", (0, 0)), + ("NotSubsetEqual;", (8840, 0)), + ("swnwa", (0, 0)), + ("fop", (0, 0)), + ("ThickSpa", (0, 0)), + ("luruhar;", (10598, 0)), + ("nsim", (0, 0)), + ("po", (0, 0)), + ("Bumpeq;", (8782, 0)), + ("vare", (0, 0)), + ("gtre", (0, 0)), + ("downhar", (0, 0)), + ("Oopf", (0, 0)), + ("blacktriangled", (0, 0)), + ("UpTeeArrow", (0, 0)), + ("cuwe", (0, 0)), + ("oror", (0, 0)), + ("Exponentia", (0, 0)), + ("zacute", (0, 0)), + ("RightDo", (0, 0)), + ("gtreqless", (0, 0)), + ("Dif", (0, 0)), + ("Qo", (0, 0)), + ("vc", (0, 0)), + ("trp", (0, 0)), + ("nsqsube;", (8930, 0)), + ("downdownarrows;", (8650, 0)), + ("rt", (0, 0)), + ("CircleMin", (0, 0)), + ("Invi", (0, 0)), + ("so", (0, 0)), + ("rightl", (0, 0)), + ("boxHD", (0, 0)), + ("Upsilon;", (933, 0)), + ("omega", (0, 0)), + ("beth", (0, 0)), + ("mcomma;", (10793, 0)), + ("lac", (0, 0)), + ("rArr;", (8658, 0)), + ("alph", (0, 0)), + ("cupdot", (0, 0)), + ("bloc", (0, 0)), + ("mc", (0, 0)), + ("Lsc", (0, 0)), + ("ce", (0, 0)), + ("LessEqualGreate", (0, 0)), + ("imagpa", (0, 0)), + ("dotminus", (0, 0)), + ("tria", (0, 0)), + ("LeftCeiling;", (8968, 0)), + ("ccu", (0, 0)), + ("shortmid;", (8739, 0)), + ("mark", (0, 0)), + ("trianglelefte", (0, 0)), + ("qs", (0, 0)), + ("trianglelef", (0, 0)), + ("mal", (0, 0)), + ("Righta", (0, 0)), + ("checkmark;", (10003, 0)), + ("xsc", (0, 0)), + ("ksc", (0, 0)), + ("leftharp", (0, 0)), + ("ReverseEleme", (0, 0)), + ("fil", (0, 0)), + ("incare", (0, 0)), + ("angst;", (197, 0)), + ("NotGreaterGreate", (0, 0)), + ("varph", (0, 0)), + ("GreaterFullEq", (0, 0)), + ("NotSubsetE", (0, 0)), + ("tild", (0, 0)), + ("ClockwiseContourInte", (0, 0)), + ("LowerRigh", (0, 0)), + ("Greater", (0, 0)), + ("dfr", (0, 0)), + ("subE;", (10949, 0)), + ("rx", (0, 0)), + ("RightDoubleB", (0, 0)), + ("Alpha", (0, 0)), + ("blk12;", (9618, 0)), + ("DotEqual;", (8784, 0)), + ("LeftUp", (0, 0)), + ("NotPrecedesEqua", (0, 0)), + ("Nu", (0, 0)), + ("UnderPa", (0, 0)), + ("vzigza", (0, 0)), + ("nexists;", (8708, 0)), + ("leftarr", (0, 0)), + ("lesg", (0, 0)), + ("DoubleD", (0, 0)), + ("beta", (0, 0)), + ("LeftDownVectorBar;", (10585, 0)), + ("va", (0, 0)), + ("Longrightar", (0, 0)), + ("cuve", (0, 0)), + ("bot", (0, 0)), + ("bottom", (0, 0)), + ("Fou", (0, 0)), + ("blacksquare", (0, 0)), + ("SucceedsT", (0, 0)), + ("Nced", (0, 0)), + ("uscr;", (120010, 0)), + ("ddarr;", (8650, 0)), + ("gtreqless;", (8923, 0)), + ("congdot;", (10861, 0)), + ("deg;", (176, 0)), + ("ffil", (0, 0)), + ("gcy;", (1075, 0)), + ("xl", (0, 0)), + ("lan", (0, 0)), + ("le", (0, 0)), + ("NotTildeEq", (0, 0)), + ("ium", (0, 0)), + ("utrif;", (9652, 0)), + ("gj", (0, 0)), + ("CenterD", (0, 0)), + ("precneqq;", (10933, 0)), + ("Imagin", (0, 0)), + ("mult", (0, 0)), + ("rightth", (0, 0)), + ("NotPrecedes", (0, 0)), + ("boxur", (0, 0)), + ("Uparrow", (0, 0)), + ("pfr", (0, 0)), + ("ubrc", (0, 0)), + ("ang", (0, 0)), + ("NotEqua", (0, 0)), + ("UpDownArr", (0, 0)), + ("TildeFullEq", (0, 0)), + ("Hcirc", (0, 0)), + ("CloseCurlyDoubleQuote;", (8221, 0)), + ("Poincar", (0, 0)), + ("smallse", (0, 0)), + ("simp", (0, 0)), + ("leqsla", (0, 0)), + ("Rrig", (0, 0)), + ("uo", (0, 0)), + ("east", (0, 0)), + ("IOcy;", (1025, 0)), + ("LeftTeeAr", (0, 0)), + ("rarrhk", (0, 0)), + ("UpperLef", (0, 0)), + ("mum", (0, 0)), + ("gtque", (0, 0)), + ("DownLeftTeeVecto", (0, 0)), + ("Supset;", (8913, 0)), + ("NotHumpEqua", (0, 0)), + ("rightrighta", (0, 0)), + ("abreve", (0, 0)), + ("Lapla", (0, 0)), + ("bigsta", (0, 0)), + ("ell", (0, 0)), + ("RightCeilin", (0, 0)), + ("Longleftrightarr", (0, 0)), + ("rightsquigarr", (0, 0)), + ("iquest", (191, 0)), + ("UpT", (0, 0)), + ("supsup", (0, 0)), + ("ZeroW", (0, 0)), + ("shcy", (0, 0)), + ("mda", (0, 0)), + ("SucceedsSlantEqua", (0, 0)), + ("ncy;", (1085, 0)), + ("scs", (0, 0)), + ("SquareInters", (0, 0)), + ("rharul", (0, 0)), + ("Verti", (0, 0)), + ("updown", (0, 0)), + ("lstrok;", (322, 0)), + ("vartheta", (0, 0)), + ("nls", (0, 0)), + ("setmn", (0, 0)), + ("supE", (0, 0)), + ("bigop", (0, 0)), + ("DoubleLongLeftRightArrow;", (10234, 0)), + ("Vdash", (0, 0)), + ("dtrif", (0, 0)), + ("lozf;", (10731, 0)), + ("odash;", (8861, 0)), + ("larrtl;", (8610, 0)), + ("ClockwiseCont", (0, 0)), + ("Assi", (0, 0)), + ("udbl", (0, 0)), + ("Imagina", (0, 0)), + ("nleftrig", (0, 0)), + ("acE;", (8766, 819)), + ("gneqq;", (8809, 0)), + ("and;", (8743, 0)), + ("downharpoonright;", (8642, 0)), + ("diamondsuit", (0, 0)), + ("bigoplus", (0, 0)), + ("oint;", (8750, 0)), + ("cirfn", (0, 0)), + ("nleftrightarro", (0, 0)), + ("vellip;", (8942, 0)), + ("LessFullEq", (0, 0)), + ("blacktriangler", (0, 0)), + ("DiacriticalA", (0, 0)), + ("VDa", (0, 0)), + ("leftharpoonup;", (8636, 0)), + ("Na", (0, 0)), + ("VerticalLin", (0, 0)), + ("iscr;", (119998, 0)), + ("ndas", (0, 0)), + ("lnsi", (0, 0)), + ("langl", (0, 0)), + ("sext;", (10038, 0)), + ("DownRightVectorBar;", (10583, 0)), + ("ldrd", (0, 0)), + ("Zcaro", (0, 0)), + ("Cedilla;", (184, 0)), + ("NotGreaterE", (0, 0)), + ("Zacute", (0, 0)), + ("telr", (0, 0)), + ("xhAr", (0, 0)), + ("NotTildeFul", (0, 0)), + ("ContourI", (0, 0)), + ("varkappa", (0, 0)), + ("uArr;", (8657, 0)), + ("OpenCurlyDoubleQ", (0, 0)), + ("triangledown;", (9663, 0)), + ("ucy;", (1091, 0)), + ("scy;", (1089, 0)), + ("NotLessLess", (0, 0)), + ("tst", (0, 0)), + ("eDo", (0, 0)), + ("Ov", (0, 0)), + ("twixt", (0, 0)), + ("Poincareplane", (0, 0)), + ("frac7", (0, 0)), + ("xutri", (0, 0)), + ("boxh;", (9472, 0)), + ("lessapprox", (0, 0)), + ("eqslantgtr;", (10902, 0)), + ("ovb", (0, 0)), + ("intp", (0, 0)), + ("fc", (0, 0)), + ("topfork;", (10970, 0)), + ("nLeftrightarrow", (0, 0)), + ("hfr;", (120101, 0)), + ("lfloo", (0, 0)), + ("nsq", (0, 0)), + ("arin", (0, 0)), + ("plusc", (0, 0)), + ("nvH", (0, 0)), + ("preca", (0, 0)), + ("wedge", (0, 0)), + ("LeftDownTeeVector", (0, 0)), + ("GreaterGreate", (0, 0)), + ("quaternions", (0, 0)), + ("multim", (0, 0)), + ("lesse", (0, 0)), + ("r", (0, 0)), + ("thicka", (0, 0)), + ("LongLeftR", (0, 0)), + ("NotH", (0, 0)), + ("qscr", (0, 0)), + ("NotNestedL", (0, 0)), + ("Vv", (0, 0)), + ("dwangle", (0, 0)), + ("supmu", (0, 0)), + ("NotNestedLes", (0, 0)), + ("Ubrcy", (0, 0)), + ("percn", (0, 0)), + ("Uopf;", (120140, 0)), + ("cuwed", (0, 0)), + ("submult;", (10945, 0)), + ("nleftrightarr", (0, 0)), + ("vsubnE;", (10955, 65024)), + ("nlt", (0, 0)), + ("NegativeThinSpace;", (8203, 0)), + ("hk", (0, 0)), + ("DoubleDownA", (0, 0)), + ("Gd", (0, 0)), + ("blac", (0, 0)), + ("ng", (0, 0)), + ("LeftRightVecto", (0, 0)), + ("gamma;", (947, 0)), + ("bern", (0, 0)), + ("zcaron", (0, 0)), + ("gtrsi", (0, 0)), + ("Differ", (0, 0)), + ("swnw", (0, 0)), + ("divideon", (0, 0)), + ("SucceedsSlantEq", (0, 0)), + ("leftarrowt", (0, 0)), + ("Ver", (0, 0)), + ("Vee;", (8897, 0)), + ("Edot", (0, 0)), + ("ioc", (0, 0)), + ("nvgt", (0, 0)), + ("small", (0, 0)), + ("Melli", (0, 0)), + ("timesbar", (0, 0)), + ("curvearro", (0, 0)), + ("OpenCurlyQuote", (0, 0)), + ("jscr;", (119999, 0)), + ("equivDD;", (10872, 0)), + ("sbqu", (0, 0)), + ("longleftrightar", (0, 0)), + ("vark", (0, 0)), + ("vnsu", (0, 0)), + ("tprim", (0, 0)), + ("LessTi", (0, 0)), + ("Vfr", (0, 0)), + ("lrcorner;", (8991, 0)), + ("Scedil", (0, 0)), + ("hookrightar", (0, 0)), + ("circledcirc;", (8858, 0)), + ("hstrok", (0, 0)), + ("gtcc", (0, 0)), + ("blacksqu", (0, 0)), + ("FilledSmallSqu", (0, 0)), + ("pertenk", (0, 0)), + ("nsmi", (0, 0)), + ("omega;", (969, 0)), + ("Product;", (8719, 0)), + ("Omac", (0, 0)), + ("LeftDownTe", (0, 0)), + ("EqualTi", (0, 0)), + ("ohm", (0, 0)), + ("midast", (0, 0)), + ("curlywedge;", (8911, 0)), + ("complement;", (8705, 0)), + ("rtimes", (0, 0)), + ("Lcy", (0, 0)), + ("nldr", (0, 0)), + ("bigtriangledown;", (9661, 0)), + ("RightTriangleEqual", (0, 0)), + ("nedo", (0, 0)), + ("otimesas", (0, 0)), + ("Gfr;", (120074, 0)), + ("db", (0, 0)), + ("Odb", (0, 0)), + ("Copro", (0, 0)), + ("Cfr", (0, 0)), + ("leftrightsqui", (0, 0)), + ("ys", (0, 0)), + ("betw", (0, 0)), + ("DiacriticalGrave;", (96, 0)), + ("LeftRightVect", (0, 0)), + ("St", (0, 0)), + ("TildeFullEqu", (0, 0)), + ("rightharpoonup", (0, 0)), + ("Ifr", (0, 0)), + ("zhcy", (0, 0)), + ("rangle", (0, 0)), + ("Zsc", (0, 0)), + ("pluse;", (10866, 0)), + ("Subs", (0, 0)), + ("LeftUpDownVecto", (0, 0)), + ("CircleDot", (0, 0)), + ("Yc", (0, 0)), + ("backepsilon", (0, 0)), + ("vz", (0, 0)), + ("ReverseEquilib", (0, 0)), + ("CapitalDiff", (0, 0)), + ("varrho;", (1009, 0)), + ("lurdsha", (0, 0)), + ("gnap;", (10890, 0)), + ("if", (0, 0)), + ("rarrlp", (0, 0)), + ("gac", (0, 0)), + ("xodo", (0, 0)), + ("righth", (0, 0)), + ("NotSquareSupersetEqual;", (8931, 0)), + ("RightDownTeeVecto", (0, 0)), + ("Ove", (0, 0)), + ("dHar", (0, 0)), + ("New", (0, 0)), + ("Open", (0, 0)), + ("precnsim;", (8936, 0)), + ("CounterClockwiseContourIntegra", (0, 0)), + ("rightleftharpoo", (0, 0)), + ("Odbl", (0, 0)), + ("gtlPa", (0, 0)), + ("backcon", (0, 0)), + ("sqsup;", (8848, 0)), + ("mopf", (0, 0)), + ("kscr;", (120000, 0)), + ("nharr;", (8622, 0)), + ("Ima", (0, 0)), + ("TildeTilde", (0, 0)), + ("Conint", (0, 0)), + ("DownArrowUpArro", (0, 0)), + ("circlear", (0, 0)), + ("UpDownArrow", (0, 0)), + ("because", (0, 0)), + ("udarr;", (8645, 0)), + ("tcy;", (1090, 0)), + ("Fs", (0, 0)), + ("boxuL;", (9563, 0)), + ("Ls", (0, 0)), + ("af", (0, 0)), + ("Ko", (0, 0)), + ("jscr", (0, 0)), + ("Dopf;", (120123, 0)), + ("cscr", (0, 0)), + ("ldca", (0, 0)), + ("Poincareplan", (0, 0)), + ("igrav", (0, 0)), + ("nrightarro", (0, 0)), + ("sho", (0, 0)), + ("kappa", (0, 0)), + ("bemptyv;", (10672, 0)), + ("sigmaf;", (962, 0)), + ("era", (0, 0)), + ("pitchfor", (0, 0)), + ("Ubrcy;", (1038, 0)), + ("expectation", (0, 0)), + ("Arin", (0, 0)), + ("mac", (0, 0)), + ("Longleftright", (0, 0)), + ("lurdshar", (0, 0)), + ("cedil;", (184, 0)), + ("lsh;", (8624, 0)), + ("nrArr", (0, 0)), + ("rightlefth", (0, 0)), + ("supdot", (0, 0)), + ("NotGreaterLess;", (8825, 0)), + ("NegativeMedi", (0, 0)), + ("LeftAngleBrac", (0, 0)), + ("Ncedi", (0, 0)), + ("amac", (0, 0)), + ("diamondsui", (0, 0)), + ("Emacr;", (274, 0)), + ("NegativeThic", (0, 0)), + ("ggg", (0, 0)), + ("imacr", (0, 0)), + ("lesges", (0, 0)), + ("Agrave", (192, 0)), + ("Vop", (0, 0)), + ("forkv", (0, 0)), + ("uharl;", (8639, 0)), + ("rightarrowtail", (0, 0)), + ("hamilt;", (8459, 0)), + ("rmou", (0, 0)), + ("leqslan", (0, 0)), + ("rds", (0, 0)), + ("ccir", (0, 0)), + ("cwint", (0, 0)), + ("shortp", (0, 0)), + ("sung", (0, 0)), + ("TRAD", (0, 0)), + ("NotSqua", (0, 0)), + ("DownLef", (0, 0)), + ("aog", (0, 0)), + ("VeryThinSp", (0, 0)), + ("ShortLeftAr", (0, 0)), + ("divid", (0, 0)), + ("integ", (0, 0)), + ("UpperLeftArro", (0, 0)), + ("frac45;", (8536, 0)), + ("UpperRightArrow;", (8599, 0)), + ("hksea", (0, 0)), + ("notinva", (0, 0)), + ("NotEqu", (0, 0)), + ("fnof;", (402, 0)), + ("blk34;", (9619, 0)), + ("infint", (0, 0)), + ("nltri", (0, 0)), + ("RightAngleBra", (0, 0)), + ("HilbertSpace;", (8459, 0)), + ("Upsi", (0, 0)), + ("rightharpoon", (0, 0)), + ("curl", (0, 0)), + ("DownTeeArro", (0, 0)), + ("rho;", (961, 0)), + ("suphsol", (0, 0)), + ("alp", (0, 0)), + ("nleqslan", (0, 0)), + ("ring", (0, 0)), + ("bumpeq", (0, 0)), + ("Vs", (0, 0)), + ("LeftTrian", (0, 0)), + ("curren;", (164, 0)), + ("rarrpl", (0, 0)), + ("longma", (0, 0)), + ("DJcy", (0, 0)), + ("Ncaron;", (327, 0)), + ("Zopf", (0, 0)), + ("UnderBrace;", (9183, 0)), + ("Poincare", (0, 0)), + ("gsim;", (8819, 0)), + ("ENG", (0, 0)), + ("uuml;", (252, 0)), + ("NotHumpDo", (0, 0)), + ("NotLeftTriangleEqual;", (8940, 0)), + ("phone;", (9742, 0)), + ("Breve;", (728, 0)), + ("leqslant;", (10877, 0)), + ("LeftTriang", (0, 0)), + ("leftrigh", (0, 0)), + ("Rou", (0, 0)), + ("el", (0, 0)), + ("NotLeftTriangleEqual", (0, 0)), + ("et", (0, 0)), + ("Leftrigh", (0, 0)), + ("igr", (0, 0)), + ("eqslantgt", (0, 0)), + ("bigoti", (0, 0)), + ("tcedi", (0, 0)), + ("ReverseEquilibrium;", (8651, 0)), + ("minus", (0, 0)), + ("profalar", (0, 0)), + ("F", (0, 0)), + ("rsaq", (0, 0)), + ("ngeq;", (8817, 0)), + ("nwAr", (0, 0)), + ("nsmid;", (8740, 0)), + ("esc", (0, 0)), + ("angmsdag;", (10670, 0)), + ("s", (0, 0)), + ("ds", (0, 0)), + ("rmoustache", (0, 0)), + ("LongLeftAr", (0, 0)), + ("zopf;", (120171, 0)), + ("RightDoubleBrac", (0, 0)), + ("ddot", (0, 0)), + ("cupbr", (0, 0)), + ("DoubleLongLeftRig", (0, 0)), + ("NotGreaterEqu", (0, 0)), + ("ms", (0, 0)), + ("NotSupe", (0, 0)), + ("ForAll;", (8704, 0)), + ("Gci", (0, 0)), + ("Filled", (0, 0)), + ("fili", (0, 0)), + ("ofcir", (0, 0)), + ("DownArrowBar", (0, 0)), + ("ShortUp", (0, 0)), + ("Lleftarrow", (0, 0)), + ("lHar;", (10594, 0)), + ("upuparrows", (0, 0)), + ("LeftRig", (0, 0)), + ("conin", (0, 0)), + ("nume", (0, 0)), + ("rsquo;", (8217, 0)), + ("ucirc;", (251, 0)), + ("urcorn", (0, 0)), + ("Ran", (0, 0)), + ("nequi", (0, 0)), + ("radic;", (8730, 0)), + ("DiacriticalGr", (0, 0)), + ("tshcy;", (1115, 0)), + ("ber", (0, 0)), + ("Xopf", (0, 0)), + ("Horizont", (0, 0)), + ("coni", (0, 0)), + ("smte;", (10924, 0)), + ("DiacriticalDot;", (729, 0)), + ("rarrtl;", (8611, 0)), + ("scaron;", (353, 0)), + ("pit", (0, 0)), + ("DifferentialD", (0, 0)), + ("RightFlo", (0, 0)), + ("In", (0, 0)), + ("GreaterT", (0, 0)), + ("vrtri", (0, 0)), + ("swarrow;", (8601, 0)), + ("subplus;", (10943, 0)), + ("rotime", (0, 0)), + ("downdownarro", (0, 0)), + ("dcy", (0, 0)), + ("plusac", (0, 0)), + ("UpArrowDownArro", (0, 0)), + ("propt", (0, 0)), + ("kappa;", (954, 0)), + ("shor", (0, 0)), + ("NotTildeTilde", (0, 0)), + ("kgre", (0, 0)), + ("lbrks", (0, 0)), + ("LeftDoubleBracket;", (10214, 0)), + ("dlc", (0, 0)), + ("boxvl;", (9508, 0)), + ("starf;", (9733, 0)), + ("Tab;", (9, 0)), + ("efDo", (0, 0)), + ("nmid;", (8740, 0)), + ("cacu", (0, 0)), + ("CloseCurlyDo", (0, 0)), + ("ltque", (0, 0)), + ("Cs", (0, 0)), + ("NotEq", (0, 0)), + ("Epsil", (0, 0)), + ("nsqs", (0, 0)), + ("Abreve", (0, 0)), + ("ldrusha", (0, 0)), + ("oline", (0, 0)), + ("SquareSubsetEq", (0, 0)), + ("apos;", (39, 0)), + ("longm", (0, 0)), + ("notinvc;", (8950, 0)), + ("NotRightTriangleEq", (0, 0)), + ("vartriangleleft", (0, 0)), + ("leqs", (0, 0)), + ("Upp", (0, 0)), + ("tim", (0, 0)), + ("prns", (0, 0)), + ("NestedGreat", (0, 0)), + ("Lmi", (0, 0)), + ("OpenCurl", (0, 0)), + ("UnderParenthesi", (0, 0)), + ("bi", (0, 0)), + ("gtrapp", (0, 0)), + ("Cdot", (0, 0)), + ("gEl;", (10892, 0)), + ("Upa", (0, 0)), + ("dash", (0, 0)), + ("DoubleLongLeftArrow", (0, 0)), + ("rppolint;", (10770, 0)), + ("blacktr", (0, 0)), + ("bcon", (0, 0)), + ("sun", (0, 0)), + ("RightUpTee", (0, 0)), + ("KJcy", (0, 0)), + ("hybull;", (8259, 0)), + ("simdo", (0, 0)), + ("bigsqcup", (0, 0)), + ("leftharpoondown", (0, 0)), + ("NotSq", (0, 0)), + ("longleftarrow", (0, 0)), + ("supseteqq;", (10950, 0)), + ("NotNestedGreat", (0, 0)), + ("nsub;", (8836, 0)), + ("dstrok;", (273, 0)), + ("mh", (0, 0)), + ("eDot", (0, 0)), + ("Jopf", (0, 0)), + ("jci", (0, 0)), + ("nspar", (0, 0)), + ("notnivb", (0, 0)), + ("subrarr", (0, 0)), + ("lsaq", (0, 0)), + ("rfloor", (0, 0)), + ("ntria", (0, 0)), + ("Cdo", (0, 0)), + ("not", (172, 0)), + ("Omicron", (0, 0)), + ("Ugrave", (217, 0)), + ("NotSquareSupers", (0, 0)), + ("top;", (8868, 0)), + ("Rrigh", (0, 0)), + ("DoubleConto", (0, 0)), + ("lcy", (0, 0)), + ("SquareSubsetE", (0, 0)), + ("scirc;", (349, 0)), + ("Differenti", (0, 0)), + ("beta;", (946, 0)), + ("NotHumpDow", (0, 0)), + ("yopf;", (120170, 0)), + ("RightUp", (0, 0)), + ("urcrop", (0, 0)), + ("lozenge;", (9674, 0)), + ("interc", (0, 0)), + ("fflig;", (64256, 0)), + ("trie;", (8796, 0)), + ("lhard;", (8637, 0)), + ("imped", (0, 0)), + ("prime;", (8242, 0)), + ("Uacut", (0, 0)), + ("NotE", (0, 0)), + ("Hum", (0, 0)), + ("NegativeT", (0, 0)), + ("boxUr;", (9561, 0)), + ("Impl", (0, 0)), + ("gd", (0, 0)), + ("nappro", (0, 0)), + ("Nsc", (0, 0)), + ("Subset;", (8912, 0)), + ("nleftarro", (0, 0)), + ("leftleftar", (0, 0)), + ("Ccar", (0, 0)), + ("Laplace", (0, 0)), + ("DoubleUpAr", (0, 0)), + ("lmid", (0, 0)), + ("Barv", (0, 0)), + ("THORN", (222, 0)), + ("infintie;", (10717, 0)), + ("mlc", (0, 0)), + ("Abr", (0, 0)), + ("Lef", (0, 0)), + ("downharpoonrigh", (0, 0)), + ("bigvee", (0, 0)), + ("fjlig;", (102, 106)), + ("Iscr", (0, 0)), + ("NotLeft", (0, 0)), + ("GreaterFullEqual", (0, 0)), + ("YI", (0, 0)), + ("NotPrecedesSlantEqual", (0, 0)), + ("seswar", (0, 0)), + ("Eps", (0, 0)), + ("FilledV", (0, 0)), + ("Integr", (0, 0)), + ("zeetr", (0, 0)), + ("subsim", (0, 0)), + ("ntriangleright", (0, 0)), + ("doteqdo", (0, 0)), + ("RightVectorBa", (0, 0)), + ("jmath", (0, 0)), + ("an", (0, 0)), + ("NotSquareSubset", (0, 0)), + ("nhpar;", (10994, 0)), + ("nLeftarr", (0, 0)), + ("vareps", (0, 0)), + ("frasl", (0, 0)), + ("CircleP", (0, 0)), + ("Empt", (0, 0)), + ("LeftAngleBracket", (0, 0)), + ("ec", (0, 0)), + ("perc", (0, 0)), + ("cent", (162, 0)), + ("rbrksld", (0, 0)), + ("Uarr", (0, 0)), + ("Integ", (0, 0)), + ("Ffr", (0, 0)), + ("Dow", (0, 0)), + ("Ncy;", (1053, 0)), + ("oac", (0, 0)), + ("Jci", (0, 0)), + ("z", (0, 0)), + ("intlarhk", (0, 0)), + ("psc", (0, 0)), + ("Sca", (0, 0)), + ("THOR", (0, 0)), + ("ogon;", (731, 0)), + ("EmptySma", (0, 0)), + ("ratail;", (10522, 0)), + ("roplu", (0, 0)), + ("loplus", (0, 0)), + ("subseteq;", (8838, 0)), + ("bsolb", (0, 0)), + ("subsete", (0, 0)), + ("notnivb;", (8958, 0)), + ("lopl", (0, 0)), + ("Inv", (0, 0)), + ("gop", (0, 0)), + ("NotC", (0, 0)), + ("Es", (0, 0)), + ("Over", (0, 0)), + ("Downarrow;", (8659, 0)), + ("bigtriangle", (0, 0)), + ("varpropto", (0, 0)), + ("nltrie;", (8940, 0)), + ("vellip", (0, 0)), + ("supsetneq;", (8843, 0)), + ("LJcy", (0, 0)), + ("homtht;", (8763, 0)), + ("Equilibr", (0, 0)), + ("NotNestedGreaterGrea", (0, 0)), + ("en", (0, 0)), + ("LeftFloo", (0, 0)), + ("cross;", (10007, 0)), + ("Vertica", (0, 0)), + ("biguplus;", (10756, 0)), + ("plu", (0, 0)), + ("RightUpTeeVe", (0, 0)), + ("rbb", (0, 0)), + ("nLeftr", (0, 0)), + ("Ele", (0, 0)), + ("gtreqqle", (0, 0)), + ("straightphi", (0, 0)), + ("longleftarro", (0, 0)), + ("lrcorne", (0, 0)), + ("ropar", (0, 0)), + ("kcedi", (0, 0)), + ("Wedg", (0, 0)), + ("hardcy", (0, 0)), + ("Rright", (0, 0)), + ("maps", (0, 0)), + ("nLl", (0, 0)), + ("realine;", (8475, 0)), + ("dcar", (0, 0)), + ("ddagger;", (8225, 0)), + ("lhblk", (0, 0)), + ("LeftTeeVec", (0, 0)), + ("Qopf", (0, 0)), + ("Mell", (0, 0)), + ("lr", (0, 0)), + ("twixt;", (8812, 0)), + ("lbrace;", (123, 0)), + ("csube", (0, 0)), + ("oacu", (0, 0)), + ("rarrpl;", (10565, 0)), + ("Aop", (0, 0)), + ("frow", (0, 0)), + ("simlE", (0, 0)), + ("DownRightVe", (0, 0)), + ("ClockwiseContourIntegr", (0, 0)), + ("LeftArrowRightA", (0, 0)), + ("supsim;", (10952, 0)), + ("boxHD;", (9574, 0)), + ("DownLeftTeeV", (0, 0)), + ("Proportional;", (8733, 0)), + ("CloseCurlyQuot", (0, 0)), + ("iuk", (0, 0)), + ("isindo", (0, 0)), + ("boxplus;", (8862, 0)), + ("Dou", (0, 0)), + ("diams;", (9830, 0)), + ("swa", (0, 0)), + ("compfn;", (8728, 0)), + ("eogo", (0, 0)), + ("LessEqu", (0, 0)), + ("UpArrowDown", (0, 0)), + ("rm", (0, 0)), + ("lnap;", (10889, 0)), + ("SOFTcy", (0, 0)), + ("curvearrowright", (0, 0)), + ("nld", (0, 0)), + ("dhar", (0, 0)), + ("GreaterFullEqua", (0, 0)), + ("long", (0, 0)), + ("integer", (0, 0)), + ("succneqq", (0, 0)), + ("SOFTcy;", (1068, 0)), + ("fallingdot", (0, 0)), + ("Such", (0, 0)), + ("eca", (0, 0)), + ("Produ", (0, 0)), + ("wr;", (8768, 0)), + ("SHCHcy;", (1065, 0)), + ("subsim;", (10951, 0)), + ("tris", (0, 0)), + ("UpTee", (0, 0)), + ("DownRightTeeVect", (0, 0)), + ("No", (0, 0)), + ("compl", (0, 0)), + ("NotDoubleVertic", (0, 0)), + ("nvge;", (8805, 8402)), + ("psi;", (968, 0)), + ("cci", (0, 0)), + ("x", (0, 0)), + ("rtrie", (0, 0)), + ("Udb", (0, 0)), + ("ZeroWidthSpace;", (8203, 0)), + ("nRight", (0, 0)), + ("hookrig", (0, 0)), + ("esim;", (8770, 0)), + ("Ugra", (0, 0)), + ("target", (0, 0)), + ("Gs", (0, 0)), + ("emsp;", (8195, 0)), + ("llarr;", (8647, 0)), + ("che", (0, 0)), + ("Implie", (0, 0)), + ("NotLessLes", (0, 0)), + ("RightUpDownVecto", (0, 0)), + ("nwarh", (0, 0)), + ("vs", (0, 0)), + ("lap", (0, 0)), + ("awint", (0, 0)), + ("omacr;", (333, 0)), + ("si", (0, 0)), + ("jfr", (0, 0)), + ("leftrightsquigarrow;", (8621, 0)), + ("RightDownTeeVec", (0, 0)), + ("sung;", (9834, 0)), + ("mstpo", (0, 0)), + ("dlcr", (0, 0)), + ("LowerRightAr", (0, 0)), + ("bb", (0, 0)), + ("ham", (0, 0)), + ("smas", (0, 0)), + ("nwA", (0, 0)), + ("cemp", (0, 0)), + ("LongLeftArrow", (0, 0)), + ("lesseqgtr", (0, 0)), + ("imof", (0, 0)), + ("between;", (8812, 0)), + ("NotPrecedesEq", (0, 0)), + ("nrA", (0, 0)), + ("UpperRig", (0, 0)), + ("CircleMinus", (0, 0)), + ("boxUl;", (9564, 0)), + ("mapst", (0, 0)), + ("KHc", (0, 0)), + ("SquareSupersetEqu", (0, 0)), + ("precnapprox", (0, 0)), + ("Eacute;", (201, 0)), + ("zacute;", (378, 0)), + ("Longrighta", (0, 0)), + ("nsccue;", (8929, 0)), + ("caro", (0, 0)), + ("NotGreaterTilde", (0, 0)), + ("jser", (0, 0)), + ("beps", (0, 0)), + ("Negati", (0, 0)), + ("ShortRightArrow;", (8594, 0)), + ("nLeftar", (0, 0)), + ("GreaterE", (0, 0)), + ("leftrig", (0, 0)), + ("LessSlantEq", (0, 0)), + ("ldrus", (0, 0)), + ("chcy", (0, 0)), + ("xdt", (0, 0)), + ("Gdot", (0, 0)), + ("blackloz", (0, 0)), + ("DoubleLeftRi", (0, 0)), + ("Sup;", (8913, 0)), + ("NotSu", (0, 0)), + ("Zeta", (0, 0)), + ("dcaron;", (271, 0)), + ("udb", (0, 0)), + ("leftleftarrow", (0, 0)), + ("Copf", (0, 0)), + ("NotSucceed", (0, 0)), + ("DotDot", (0, 0)), + ("NotVerticalB", (0, 0)), + ("Vvdash;", (8874, 0)), + ("trianglerighteq;", (8885, 0)), + ("szli", (0, 0)), + ("ntriangleright;", (8939, 0)), + ("short", (0, 0)), + ("mop", (0, 0)), + ("leftrightarrows;", (8646, 0)), + ("ufi", (0, 0)), + ("ReverseUpEquilibr", (0, 0)), + ("Gamma", (0, 0)), + ("NotLeftT", (0, 0)), + ("flat;", (9837, 0)), + ("Pre", (0, 0)), + ("looparrowright", (0, 0)), + ("glj", (0, 0)), + ("boxdL;", (9557, 0)), + ("ThickSp", (0, 0)), + ("shortparallel;", (8741, 0)), + ("dtdot", (0, 0)), + ("sfrow", (0, 0)), + ("UpperRightArr", (0, 0)), + ("suphsub", (0, 0)), + ("Gcy", (0, 0)), + ("otilde", (245, 0)), + ("ldrushar;", (10571, 0)), + ("nsmid", (0, 0)), + ("HumpEqual;", (8783, 0)), + ("THO", (0, 0)), + ("ReverseUpEquilibrium", (0, 0)), + ("nVD", (0, 0)), + ("CircleT", (0, 0)), + ("Tcaro", (0, 0)), + ("VerticalBar;", (8739, 0)), + ("LeftTriangle;", (8882, 0)), + ("divideont", (0, 0)), + ("Updown", (0, 0)), + ("Rcar", (0, 0)), + ("Dop", (0, 0)), + ("cues", (0, 0)), + ("odas", (0, 0)), + ("Rul", (0, 0)), + ("UnderParenthesis;", (9181, 0)), + ("checkm", (0, 0)), + ("OpenCurlyQuo", (0, 0)), + ("RoundImpl", (0, 0)), + ("Bar", (0, 0)), + ("OpenCurlyDoubleQuote", (0, 0)), + ("Cscr;", (119966, 0)), + ("sqsub;", (8847, 0)), + ("hsla", (0, 0)), + ("orderof;", (8500, 0)), + ("mfr", (0, 0)), + ("ldca;", (10550, 0)), + ("Jcir", (0, 0)), + ("yop", (0, 0)), + ("DoubleContourI", (0, 0)), + ("Uacute", (218, 0)), + ("ll", (0, 0)), + ("DoubleV", (0, 0)), + ("diams", (0, 0)), + ("vsu", (0, 0)), + ("csc", (0, 0)), + ("backco", (0, 0)), + ("orarr;", (8635, 0)), + ("dig", (0, 0)), + ("hksearow;", (10533, 0)), + ("nvlArr", (0, 0)), + ("NotNestedGreate", (0, 0)), + ("demptyv", (0, 0)), + ("Vvdas", (0, 0)), + ("boxUr", (0, 0)), + ("Th", (0, 0)), + ("circlearrowrigh", (0, 0)), + ("Hor", (0, 0)), + ("CirclePlu", (0, 0)), + ("jopf", (0, 0)), + ("DDotr", (0, 0)), + ("rAa", (0, 0)), + ("circled", (0, 0)), + ("pointin", (0, 0)), + ("varsubsetn", (0, 0)), + ("lfish", (0, 0)), + ("DownRightV", (0, 0)), + ("varsupsetneqq;", (10956, 65024)), + ("drcorn;", (8991, 0)), + ("integers;", (8484, 0)), + ("NotSquareSubsetE", (0, 0)), + ("UpArrow;", (8593, 0)), + ("lver", (0, 0)), + ("iiin", (0, 0)), + ("NotGreaterGr", (0, 0)), + ("gnap", (0, 0)), + ("measuredang", (0, 0)), + ("bott", (0, 0)), + ("aacu", (0, 0)), + ("xnis;", (8955, 0)), + ("planck", (0, 0)), + ("Uogon", (0, 0)), + ("Xi", (0, 0)), + ("dlco", (0, 0)), + ("Longleftrightar", (0, 0)), + ("Equilibri", (0, 0)), + ("Iog", (0, 0)), + ("cce", (0, 0)), + ("smt", (0, 0)), + ("DownRightTeeVector", (0, 0)), + ("zwnj", (0, 0)), + ("iacut", (0, 0)), + ("Longr", (0, 0)), + ("DownLeftRightVecto", (0, 0)), + ("Bcy", (0, 0)), + ("wedge;", (8743, 0)), + ("wci", (0, 0)), + ("dzig", (0, 0)), + ("xvee", (0, 0)), + ("UnderBra", (0, 0)), + ("ccirc", (0, 0)), + ("Elemen", (0, 0)), + ("ltd", (0, 0)), + ("lesssi", (0, 0)), + ("ngE;", (8807, 824)), + ("lbrksl", (0, 0)), + ("CounterClockwis", (0, 0)), + ("dotm", (0, 0)), + ("NegativeThickSpace;", (8203, 0)), + ("Bernoullis", (0, 0)), + ("CounterClock", (0, 0)), + ("CounterCl", (0, 0)), + ("Und", (0, 0)), + ("eu", (0, 0)), + ("wed", (0, 0)), + ("bsc", (0, 0)), + ("Uarroc", (0, 0)), + ("dwan", (0, 0)), + ("hooklef", (0, 0)), + ("InvisibleTi", (0, 0)), + ("kcy;", (1082, 0)), + ("Star", (0, 0)), + ("kappav", (0, 0)), + ("eth;", (240, 0)), + ("DiacriticalAcute;", (180, 0)), + ("acirc", (226, 0)), + ("HARDcy", (0, 0)), + ("NotPrecedesE", (0, 0)), + ("bowt", (0, 0)), + ("abr", (0, 0)), + ("loop", (0, 0)), + ("upharpoonle", (0, 0)), + ("bigsqcu", (0, 0)), + ("pi", (0, 0)), + ("rn", (0, 0)), + ("boxvr;", (9500, 0)), + ("angms", (0, 0)), + ("blacktria", (0, 0)), + ("LongRi", (0, 0)), + ("LeftF", (0, 0)), + ("Ch", (0, 0)), + ("UpDo", (0, 0)), + ("Aacute", (193, 0)), + ("eqslantle", (0, 0)), + ("dlcrop", (0, 0)), + ("emptyse", (0, 0)), + ("al", (0, 0)), + ("EmptyVerySmall", (0, 0)), + ("DownLeftRightV", (0, 0)), + ("sa", (0, 0)), + ("ver", (0, 0)), + ("preccurlyeq;", (8828, 0)), + ("Congrue", (0, 0)), + ("Hat;", (94, 0)), + ("nesim;", (8770, 824)), + ("coloneq", (0, 0)), + ("Alp", (0, 0)), + ("boxuL", (0, 0)), + ("smep", (0, 0)), + ("LowerLeftArr", (0, 0)), + ("nges;", (10878, 824)), + ("primes", (0, 0)), + ("hookleftar", (0, 0)), + ("ClockwiseContourIntegral;", (8754, 0)), + ("roplus;", (10798, 0)), + ("ntriangle", (0, 0)), + ("xwedge", (0, 0)), + ("rights", (0, 0)), + ("lmousta", (0, 0)), + ("Auml", (196, 0)), + ("RightDoubleBr", (0, 0)), + ("circledda", (0, 0)), + ("Cacu", (0, 0)), + ("uacu", (0, 0)), + ("precappro", (0, 0)), + ("targ", (0, 0)), + ("sqcup;", (8852, 0)), + ("Aacut", (0, 0)), + ("vzigzag", (0, 0)), + ("strai", (0, 0)), + ("LeftTriangleB", (0, 0)), + ("NotLessGreate", (0, 0)), + ("Po", (0, 0)), + ("cirfnin", (0, 0)), + ("nshor", (0, 0)), + ("bp", (0, 0)), + ("ograve;", (242, 0)), + ("ugrav", (0, 0)), + ("hkswar", (0, 0)), + ("tf", (0, 0)), + ("dstrok", (0, 0)), + ("rarrf", (0, 0)), + ("oelig", (0, 0)), + ("Dstrok", (0, 0)), + ("gam", (0, 0)), + ("sqsubse", (0, 0)), + ("Jsc", (0, 0)), + ("Supers", (0, 0)), + ("kappav;", (1008, 0)), + ("curar", (0, 0)), + ("ino", (0, 0)), + ("angrtvb", (0, 0)), + ("os", (0, 0)), + ("lbb", (0, 0)), + ("frac16", (0, 0)), + ("gtdot;", (8919, 0)), + ("Kopf;", (120130, 0)), + ("prurel;", (8880, 0)), + ("THORN;", (222, 0)), + ("TildeTi", (0, 0)), + ("lBar", (0, 0)), + ("blacktriangleleft", (0, 0)), + ("dlcrop;", (8973, 0)), + ("CounterClockwise", (0, 0)), + ("isinv", (0, 0)), + ("Proportion", (0, 0)), + ("DownRightVectorBa", (0, 0)), + ("mp;", (8723, 0)), + ("varn", (0, 0)), + ("LessSlantEqua", (0, 0)), + ("mco", (0, 0)), + ("Jse", (0, 0)), + ("rthre", (0, 0)), + ("Udbla", (0, 0)), + ("NegativeThickSp", (0, 0)), + ("LongLeftRigh", (0, 0)), + ("Theta;", (920, 0)), + ("wscr", (0, 0)), + ("SquareSuper", (0, 0)), + ("nap", (0, 0)), + ("gtqu", (0, 0)), + ("doublebarwe", (0, 0)), + ("ssetm", (0, 0)), + ("longrighta", (0, 0)), + ("PrecedesT", (0, 0)), + ("lop", (0, 0)), + ("Itilde;", (296, 0)), + ("sup2", (178, 0)), + ("RuleD", (0, 0)), + ("Fouriertrf", (0, 0)), + ("flli", (0, 0)), + ("multima", (0, 0)), + ("Delta;", (916, 0)), + ("DoubleLon", (0, 0)), + ("rBarr", (0, 0)), + ("smal", (0, 0)), + ("DownLeftVect", (0, 0)), + ("Rfr;", (8476, 0)), + ("LeftU", (0, 0)), + ("helli", (0, 0)), + ("Gammad;", (988, 0)), + ("righthar", (0, 0)), + ("nsce", (0, 0)), + ("spar", (0, 0)), + ("nGt;", (8811, 8402)), + ("ud", (0, 0)), + ("varpi", (0, 0)), + ("Og", (0, 0)), + ("Leftarr", (0, 0)), + ("Mediu", (0, 0)), + ("plusmn;", (177, 0)), + ("RightTriangle", (0, 0)), + ("ncon", (0, 0)), + ("Nca", (0, 0)), + ("napE", (0, 0)), + ("succneqq;", (10934, 0)), + ("Ubrc", (0, 0)), + ("divide;", (247, 0)), + ("kg", (0, 0)), + ("topcir;", (10993, 0)), + ("LeftDownTee", (0, 0)), + ("NegativeVeryTh", (0, 0)), + ("fema", (0, 0)), + ("frac15", (0, 0)), + ("scn", (0, 0)), + ("RightTeeVe", (0, 0)), + ("blackl", (0, 0)), + ("Shor", (0, 0)), + ("DoubleLeftArrow;", (8656, 0)), + ("Rr", (0, 0)), + ("ngeqq", (0, 0)), + ("Uarrocir;", (10569, 0)), + ("NotRev", (0, 0)), + ("NotDoubleVerti", (0, 0)), + ("Lcar", (0, 0)), + ("LeftTeeArr", (0, 0)), + ("supsu", (0, 0)), + ("PrecedesTi", (0, 0)), + ("oci", (0, 0)), + ("angm", (0, 0)), + ("fsc", (0, 0)), + ("complem", (0, 0)), + ("straightphi;", (981, 0)), + ("sqsupe;", (8850, 0)), + ("LongRightArrow;", (10230, 0)), + ("dbla", (0, 0)), + ("Psi;", (936, 0)), + ("drbk", (0, 0)), + ("ring;", (730, 0)), + ("leftleftarrows;", (8647, 0)), + ("ntrianglerighteq;", (8941, 0)), + ("updownarro", (0, 0)), + ("hsl", (0, 0)), + ("ClockwiseCo", (0, 0)), + ("imath", (0, 0)), + ("LeftTeeA", (0, 0)), + ("hstro", (0, 0)), + ("NotHum", (0, 0)), + ("Re;", (8476, 0)), + ("ycir", (0, 0)), + ("subsu", (0, 0)), + ("wre", (0, 0)), + ("cwconint", (0, 0)), + ("NotSucceedsTild", (0, 0)), + ("ntrian", (0, 0)), + ("lHar", (0, 0)), + ("Prime", (0, 0)), + ("SmallCircl", (0, 0)), + ("Backsl", (0, 0)), + ("euml;", (235, 0)), + ("ntl", (0, 0)), + ("Fop", (0, 0)), + ("lcy;", (1083, 0)), + ("doublebarw", (0, 0)), + ("Oac", (0, 0)), + ("zdot;", (380, 0)), + ("ReverseUpEqu", (0, 0)), + ("ucir", (0, 0)), + ("Interse", (0, 0)), + ("Otilde;", (213, 0)), + ("rflo", (0, 0)), + ("LeftVectorBar", (0, 0)), + ("gtrsim", (0, 0)), + ("subn", (0, 0)), + ("spar;", (8741, 0)), + ("Tc", (0, 0)), + ("UpArr", (0, 0)), + ("Ccir", (0, 0)), + ("RightAngleBracket", (0, 0)), + ("udarr", (0, 0)), + ("uwan", (0, 0)), + ("club", (0, 0)), + ("lopf;", (120157, 0)), + ("xharr", (0, 0)), + ("xma", (0, 0)), + ("ltci", (0, 0)), + ("nw", (0, 0)), + ("FilledVerySm", (0, 0)), + ("hs", (0, 0)), + ("UpperLeftArrow", (0, 0)), + ("NotSuperset", (0, 0)), + ("SHCHc", (0, 0)), + ("Rscr", (0, 0)), + ("FilledVerySma", (0, 0)), + ("trimin", (0, 0)), + ("uring;", (367, 0)), + ("lAtai", (0, 0)), + ("Equilib", (0, 0)), + ("varpropt", (0, 0)), + ("inod", (0, 0)), + ("Longrightarrow;", (10233, 0)), + ("Yf", (0, 0)), + ("Bo", (0, 0)), + ("Round", (0, 0)), + ("capb", (0, 0)), + ("ecir", (0, 0)), + ("NotHumpDownHump", (0, 0)), + ("curarrm", (0, 0)), + ("Aac", (0, 0)), + ("lthree;", (8907, 0)), + ("olcir", (0, 0)), + ("Intersection;", (8898, 0)), + ], +}; diff --git a/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/output b/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/output new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/root-output b/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/root-output new file mode 100644 index 0000000..8b470ea --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/stderr b/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/owl/debug/build/markup5ever-e42ad18694224326/build-script-build b/src-tauri/html_scraper/target/owl/debug/build/markup5ever-e42ad18694224326/build-script-build new file mode 100755 index 0000000..7b53714 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/markup5ever-e42ad18694224326/build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/markup5ever-e42ad18694224326/build_script_build-e42ad18694224326 b/src-tauri/html_scraper/target/owl/debug/build/markup5ever-e42ad18694224326/build_script_build-e42ad18694224326 new file mode 100755 index 0000000..7b53714 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/markup5ever-e42ad18694224326/build_script_build-e42ad18694224326 differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/markup5ever-e42ad18694224326/build_script_build-e42ad18694224326.d b/src-tauri/html_scraper/target/owl/debug/build/markup5ever-e42ad18694224326/build_script_build-e42ad18694224326.d new file mode 100644 index 0000000..6776166 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/markup5ever-e42ad18694224326/build_script_build-e42ad18694224326.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/markup5ever-e42ad18694224326/build_script_build-e42ad18694224326: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/build.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/entities.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/markup5ever-e42ad18694224326/build_script_build-e42ad18694224326.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/build.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/entities.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/build.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/entities.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-16d73b43a8856b67/build-script-build b/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-16d73b43a8856b67/build-script-build new file mode 100755 index 0000000..c5af4b1 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-16d73b43a8856b67/build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-16d73b43a8856b67/build_script_build-16d73b43a8856b67 b/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-16d73b43a8856b67/build_script_build-16d73b43a8856b67 new file mode 100755 index 0000000..c5af4b1 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-16d73b43a8856b67/build_script_build-16d73b43a8856b67 differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-16d73b43a8856b67/build_script_build-16d73b43a8856b67.d b/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-16d73b43a8856b67/build_script_build-16d73b43a8856b67.d new file mode 100644 index 0000000..3870037 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-16d73b43a8856b67/build_script_build-16d73b43a8856b67.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-16d73b43a8856b67/build_script_build-16d73b43a8856b67: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-16d73b43a8856b67/build_script_build-16d73b43a8856b67.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/build.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-59dd462d63b732d8/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-59dd462d63b732d8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-59dd462d63b732d8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-59dd462d63b732d8/output b/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-59dd462d63b732d8/output new file mode 100644 index 0000000..e4a87f2 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-59dd462d63b732d8/output @@ -0,0 +1,2 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(tsan_enabled) diff --git a/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-59dd462d63b732d8/root-output b/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-59dd462d63b732d8/root-output new file mode 100644 index 0000000..57aed38 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-59dd462d63b732d8/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-59dd462d63b732d8/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-59dd462d63b732d8/stderr b/src-tauri/html_scraper/target/owl/debug/build/parking_lot_core-59dd462d63b732d8/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-d5dbe78a9a06b2af/build-script-build b/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-d5dbe78a9a06b2af/build-script-build new file mode 100755 index 0000000..7cce3ef Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-d5dbe78a9a06b2af/build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-d5dbe78a9a06b2af/build_script_build-d5dbe78a9a06b2af b/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-d5dbe78a9a06b2af/build_script_build-d5dbe78a9a06b2af new file mode 100755 index 0000000..7cce3ef Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-d5dbe78a9a06b2af/build_script_build-d5dbe78a9a06b2af differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-d5dbe78a9a06b2af/build_script_build-d5dbe78a9a06b2af.d b/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-d5dbe78a9a06b2af/build_script_build-d5dbe78a9a06b2af.d new file mode 100644 index 0000000..28d9380 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-d5dbe78a9a06b2af/build_script_build-d5dbe78a9a06b2af.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-d5dbe78a9a06b2af/build_script_build-d5dbe78a9a06b2af: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-d5dbe78a9a06b2af/build_script_build-d5dbe78a9a06b2af.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/build.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-e14fdc701678645e/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-e14fdc701678645e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-e14fdc701678645e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-e14fdc701678645e/output b/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-e14fdc701678645e/output new file mode 100644 index 0000000..c17ff92 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-e14fdc701678645e/output @@ -0,0 +1,19 @@ +cargo:rustc-check-cfg=cfg(fuzzing) +cargo:rustc-check-cfg=cfg(no_is_available) +cargo:rustc-check-cfg=cfg(no_literal_byte_character) +cargo:rustc-check-cfg=cfg(no_literal_c_string) +cargo:rustc-check-cfg=cfg(no_source_text) +cargo:rustc-check-cfg=cfg(proc_macro_span) +cargo:rustc-check-cfg=cfg(proc_macro_span_file) +cargo:rustc-check-cfg=cfg(proc_macro_span_location) +cargo:rustc-check-cfg=cfg(procmacro2_backtrace) +cargo:rustc-check-cfg=cfg(procmacro2_build_probe) +cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) +cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) +cargo:rustc-check-cfg=cfg(randomize_layout) +cargo:rustc-check-cfg=cfg(span_locations) +cargo:rustc-check-cfg=cfg(super_unstable) +cargo:rustc-check-cfg=cfg(wrap_proc_macro) +cargo:rerun-if-changed=src/probe/proc_macro_span.rs +cargo:rerun-if-changed=src/probe/proc_macro_span.rs +cargo:rustc-cfg=wrap_proc_macro diff --git a/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-e14fdc701678645e/root-output b/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-e14fdc701678645e/root-output new file mode 100644 index 0000000..efabd5f --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-e14fdc701678645e/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-e14fdc701678645e/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-e14fdc701678645e/stderr b/src-tauri/html_scraper/target/owl/debug/build/proc-macro2-e14fdc701678645e/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/owl/debug/build/selectors-5717698d2147172f/build-script-build b/src-tauri/html_scraper/target/owl/debug/build/selectors-5717698d2147172f/build-script-build new file mode 100755 index 0000000..041d330 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/selectors-5717698d2147172f/build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/selectors-5717698d2147172f/build_script_build-5717698d2147172f b/src-tauri/html_scraper/target/owl/debug/build/selectors-5717698d2147172f/build_script_build-5717698d2147172f new file mode 100755 index 0000000..041d330 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/selectors-5717698d2147172f/build_script_build-5717698d2147172f differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/selectors-5717698d2147172f/build_script_build-5717698d2147172f.d b/src-tauri/html_scraper/target/owl/debug/build/selectors-5717698d2147172f/build_script_build-5717698d2147172f.d new file mode 100644 index 0000000..181f0f1 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/selectors-5717698d2147172f/build_script_build-5717698d2147172f.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/selectors-5717698d2147172f/build_script_build-5717698d2147172f: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/selectors-5717698d2147172f/build_script_build-5717698d2147172f.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/build.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/build/selectors-ef7a1a7cb6ce8753/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/build/selectors-ef7a1a7cb6ce8753/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/selectors-ef7a1a7cb6ce8753/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/selectors-ef7a1a7cb6ce8753/out/ascii_case_insensitive_html_attributes.rs b/src-tauri/html_scraper/target/owl/debug/build/selectors-ef7a1a7cb6ce8753/out/ascii_case_insensitive_html_attributes.rs new file mode 100644 index 0000000..0fa77f2 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/selectors-ef7a1a7cb6ce8753/out/ascii_case_insensitive_html_attributes.rs @@ -0,0 +1,63 @@ +{ static SET: ::phf::Set<&'static str> = ::phf::Set { map: ::phf::Map { + key: 10121458955350035957, + disps: &[ + (0, 2), + (8, 17), + (1, 5), + (0, 0), + (0, 20), + (0, 3), + (15, 2), + (17, 19), + (8, 9), + (0, 15), + ], + entries: &[ + ("dir", ()), + ("http-equiv", ()), + ("rel", ()), + ("enctype", ()), + ("align", ()), + ("accept", ()), + ("nohref", ()), + ("lang", ()), + ("bgcolor", ()), + ("direction", ()), + ("valign", ()), + ("checked", ()), + ("frame", ()), + ("link", ()), + ("accept-charset", ()), + ("hreflang", ()), + ("text", ()), + ("valuetype", ()), + ("language", ()), + ("nowrap", ()), + ("vlink", ()), + ("disabled", ()), + ("noshade", ()), + ("codetype", ()), + ("defer", ()), + ("noresize", ()), + ("target", ()), + ("scrolling", ()), + ("rules", ()), + ("scope", ()), + ("rev", ()), + ("media", ()), + ("method", ()), + ("charset", ()), + ("alink", ()), + ("selected", ()), + ("multiple", ()), + ("color", ()), + ("shape", ()), + ("type", ()), + ("clear", ()), + ("compact", ()), + ("face", ()), + ("declare", ()), + ("axis", ()), + ("readonly", ()), + ], +} }; &SET } \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/selectors-ef7a1a7cb6ce8753/output b/src-tauri/html_scraper/target/owl/debug/build/selectors-ef7a1a7cb6ce8753/output new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/owl/debug/build/selectors-ef7a1a7cb6ce8753/root-output b/src-tauri/html_scraper/target/owl/debug/build/selectors-ef7a1a7cb6ce8753/root-output new file mode 100644 index 0000000..03fc95e --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/selectors-ef7a1a7cb6ce8753/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/selectors-ef7a1a7cb6ce8753/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/selectors-ef7a1a7cb6ce8753/stderr b/src-tauri/html_scraper/target/owl/debug/build/selectors-ef7a1a7cb6ce8753/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/owl/debug/build/serde-36ae8a7a22049ef5/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/build/serde-36ae8a7a22049ef5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/serde-36ae8a7a22049ef5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/serde-36ae8a7a22049ef5/out/private.rs b/src-tauri/html_scraper/target/owl/debug/build/serde-36ae8a7a22049ef5/out/private.rs new file mode 100644 index 0000000..9843df3 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/serde-36ae8a7a22049ef5/out/private.rs @@ -0,0 +1,6 @@ +#[doc(hidden)] +pub mod __private227 { + #[doc(hidden)] + pub use crate::private::*; +} +use serde_core::__private227 as serde_core_private; diff --git a/src-tauri/html_scraper/target/owl/debug/build/serde-36ae8a7a22049ef5/output b/src-tauri/html_scraper/target/owl/debug/build/serde-36ae8a7a22049ef5/output new file mode 100644 index 0000000..3303337 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/serde-36ae8a7a22049ef5/output @@ -0,0 +1,12 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(feature, values("result")) +cargo:rustc-check-cfg=cfg(no_core_cstr) +cargo:rustc-check-cfg=cfg(no_core_error) +cargo:rustc-check-cfg=cfg(no_core_net) +cargo:rustc-check-cfg=cfg(no_core_num_saturating) +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) +cargo:rustc-check-cfg=cfg(no_serde_core) +cargo:rustc-check-cfg=cfg(no_serde_derive) +cargo:rustc-check-cfg=cfg(no_std_atomic) +cargo:rustc-check-cfg=cfg(no_std_atomic64) +cargo:rustc-check-cfg=cfg(no_target_has_atomic) diff --git a/src-tauri/html_scraper/target/owl/debug/build/serde-36ae8a7a22049ef5/root-output b/src-tauri/html_scraper/target/owl/debug/build/serde-36ae8a7a22049ef5/root-output new file mode 100644 index 0000000..cf14a49 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/serde-36ae8a7a22049ef5/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/serde-36ae8a7a22049ef5/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/serde-36ae8a7a22049ef5/stderr b/src-tauri/html_scraper/target/owl/debug/build/serde-36ae8a7a22049ef5/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/owl/debug/build/serde-afadcf3533f50ff3/build-script-build b/src-tauri/html_scraper/target/owl/debug/build/serde-afadcf3533f50ff3/build-script-build new file mode 100755 index 0000000..e44514c Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/serde-afadcf3533f50ff3/build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/serde-afadcf3533f50ff3/build_script_build-afadcf3533f50ff3 b/src-tauri/html_scraper/target/owl/debug/build/serde-afadcf3533f50ff3/build_script_build-afadcf3533f50ff3 new file mode 100755 index 0000000..e44514c Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/serde-afadcf3533f50ff3/build_script_build-afadcf3533f50ff3 differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/serde-afadcf3533f50ff3/build_script_build-afadcf3533f50ff3.d b/src-tauri/html_scraper/target/owl/debug/build/serde-afadcf3533f50ff3/build_script_build-afadcf3533f50ff3.d new file mode 100644 index 0000000..6c9cf20 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/serde-afadcf3533f50ff3/build_script_build-afadcf3533f50ff3.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/serde-afadcf3533f50ff3/build_script_build-afadcf3533f50ff3: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.227/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/serde-afadcf3533f50ff3/build_script_build-afadcf3533f50ff3.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.227/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.227/build.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/build/serde_core-42463c873814e1da/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/build/serde_core-42463c873814e1da/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/serde_core-42463c873814e1da/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/serde_core-42463c873814e1da/out/private.rs b/src-tauri/html_scraper/target/owl/debug/build/serde_core-42463c873814e1da/out/private.rs new file mode 100644 index 0000000..a6eeed7 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/serde_core-42463c873814e1da/out/private.rs @@ -0,0 +1,5 @@ +#[doc(hidden)] +pub mod __private227 { + #[doc(hidden)] + pub use crate::private::*; +} diff --git a/src-tauri/html_scraper/target/owl/debug/build/serde_core-42463c873814e1da/output b/src-tauri/html_scraper/target/owl/debug/build/serde_core-42463c873814e1da/output new file mode 100644 index 0000000..328aabf --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/serde_core-42463c873814e1da/output @@ -0,0 +1,11 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(no_core_cstr) +cargo:rustc-check-cfg=cfg(no_core_error) +cargo:rustc-check-cfg=cfg(no_core_net) +cargo:rustc-check-cfg=cfg(no_core_num_saturating) +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) +cargo:rustc-check-cfg=cfg(no_serde_core) +cargo:rustc-check-cfg=cfg(no_serde_derive) +cargo:rustc-check-cfg=cfg(no_std_atomic) +cargo:rustc-check-cfg=cfg(no_std_atomic64) +cargo:rustc-check-cfg=cfg(no_target_has_atomic) diff --git a/src-tauri/html_scraper/target/owl/debug/build/serde_core-42463c873814e1da/root-output b/src-tauri/html_scraper/target/owl/debug/build/serde_core-42463c873814e1da/root-output new file mode 100644 index 0000000..64fe754 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/serde_core-42463c873814e1da/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/serde_core-42463c873814e1da/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/serde_core-42463c873814e1da/stderr b/src-tauri/html_scraper/target/owl/debug/build/serde_core-42463c873814e1da/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/owl/debug/build/serde_core-50b4738178e48ed3/build-script-build b/src-tauri/html_scraper/target/owl/debug/build/serde_core-50b4738178e48ed3/build-script-build new file mode 100755 index 0000000..152c8d8 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/serde_core-50b4738178e48ed3/build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/serde_core-50b4738178e48ed3/build_script_build-50b4738178e48ed3 b/src-tauri/html_scraper/target/owl/debug/build/serde_core-50b4738178e48ed3/build_script_build-50b4738178e48ed3 new file mode 100755 index 0000000..152c8d8 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/serde_core-50b4738178e48ed3/build_script_build-50b4738178e48ed3 differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/serde_core-50b4738178e48ed3/build_script_build-50b4738178e48ed3.d b/src-tauri/html_scraper/target/owl/debug/build/serde_core-50b4738178e48ed3/build_script_build-50b4738178e48ed3.d new file mode 100644 index 0000000..ebe33f3 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/serde_core-50b4738178e48ed3/build_script_build-50b4738178e48ed3.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/serde_core-50b4738178e48ed3/build_script_build-50b4738178e48ed3: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/serde_core-50b4738178e48ed3/build_script_build-50b4738178e48ed3.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/build.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/build/thiserror-1c93938e89dffc58/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/build/thiserror-1c93938e89dffc58/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/thiserror-1c93938e89dffc58/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/thiserror-1c93938e89dffc58/output b/src-tauri/html_scraper/target/owl/debug/build/thiserror-1c93938e89dffc58/output new file mode 100644 index 0000000..d96267a --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/thiserror-1c93938e89dffc58/output @@ -0,0 +1,5 @@ +cargo:rerun-if-changed=build/probe.rs +cargo:rustc-check-cfg=cfg(error_generic_member_access) +cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) +cargo:rustc-cfg=error_generic_member_access +cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP diff --git a/src-tauri/html_scraper/target/owl/debug/build/thiserror-1c93938e89dffc58/root-output b/src-tauri/html_scraper/target/owl/debug/build/thiserror-1c93938e89dffc58/root-output new file mode 100644 index 0000000..1909d40 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/thiserror-1c93938e89dffc58/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/thiserror-1c93938e89dffc58/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/thiserror-1c93938e89dffc58/stderr b/src-tauri/html_scraper/target/owl/debug/build/thiserror-1c93938e89dffc58/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/owl/debug/build/thiserror-6457224d9763f31b/build-script-build b/src-tauri/html_scraper/target/owl/debug/build/thiserror-6457224d9763f31b/build-script-build new file mode 100755 index 0000000..5c5786b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/thiserror-6457224d9763f31b/build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/thiserror-6457224d9763f31b/build_script_build-6457224d9763f31b b/src-tauri/html_scraper/target/owl/debug/build/thiserror-6457224d9763f31b/build_script_build-6457224d9763f31b new file mode 100755 index 0000000..5c5786b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/thiserror-6457224d9763f31b/build_script_build-6457224d9763f31b differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/thiserror-6457224d9763f31b/build_script_build-6457224d9763f31b.d b/src-tauri/html_scraper/target/owl/debug/build/thiserror-6457224d9763f31b/build_script_build-6457224d9763f31b.d new file mode 100644 index 0000000..1fa6863 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/thiserror-6457224d9763f31b/build_script_build-6457224d9763f31b.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/thiserror-6457224d9763f31b/build_script_build-6457224d9763f31b: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/thiserror-6457224d9763f31b/build_script_build-6457224d9763f31b.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/build/zerocopy-ae1ccd06155afaf9/build-script-build b/src-tauri/html_scraper/target/owl/debug/build/zerocopy-ae1ccd06155afaf9/build-script-build new file mode 100755 index 0000000..20bbfdc Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/zerocopy-ae1ccd06155afaf9/build-script-build differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/zerocopy-ae1ccd06155afaf9/build_script_build-ae1ccd06155afaf9 b/src-tauri/html_scraper/target/owl/debug/build/zerocopy-ae1ccd06155afaf9/build_script_build-ae1ccd06155afaf9 new file mode 100755 index 0000000..20bbfdc Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/build/zerocopy-ae1ccd06155afaf9/build_script_build-ae1ccd06155afaf9 differ diff --git a/src-tauri/html_scraper/target/owl/debug/build/zerocopy-ae1ccd06155afaf9/build_script_build-ae1ccd06155afaf9.d b/src-tauri/html_scraper/target/owl/debug/build/zerocopy-ae1ccd06155afaf9/build_script_build-ae1ccd06155afaf9.d new file mode 100644 index 0000000..09db2b3 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/zerocopy-ae1ccd06155afaf9/build_script_build-ae1ccd06155afaf9.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/zerocopy-ae1ccd06155afaf9/build_script_build-ae1ccd06155afaf9: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/zerocopy-ae1ccd06155afaf9/build_script_build-ae1ccd06155afaf9.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/build.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/build/zerocopy-c4e3836daa31bc40/invoked.timestamp b/src-tauri/html_scraper/target/owl/debug/build/zerocopy-c4e3836daa31bc40/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/zerocopy-c4e3836daa31bc40/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/zerocopy-c4e3836daa31bc40/output b/src-tauri/html_scraper/target/owl/debug/build/zerocopy-c4e3836daa31bc40/output new file mode 100644 index 0000000..bcc05c8 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/zerocopy-c4e3836daa31bc40/output @@ -0,0 +1,24 @@ +cargo:rerun-if-changed=build.rs +cargo:rerun-if-changed=Cargo.toml +cargo:rustc-check-cfg=cfg(zerocopy_core_error_1_81_0) +cargo:rustc-check-cfg=cfg(rust, values("1.81.0")) +cargo:rustc-check-cfg=cfg(zerocopy_diagnostic_on_unimplemented_1_78_0) +cargo:rustc-check-cfg=cfg(rust, values("1.78.0")) +cargo:rustc-check-cfg=cfg(zerocopy_generic_bounds_in_const_fn_1_61_0) +cargo:rustc-check-cfg=cfg(rust, values("1.61.0")) +cargo:rustc-check-cfg=cfg(zerocopy_target_has_atomics_1_60_0) +cargo:rustc-check-cfg=cfg(rust, values("1.60.0")) +cargo:rustc-check-cfg=cfg(zerocopy_aarch64_simd_1_59_0) +cargo:rustc-check-cfg=cfg(rust, values("1.59.0")) +cargo:rustc-check-cfg=cfg(zerocopy_panic_in_const_and_vec_try_reserve_1_57_0) +cargo:rustc-check-cfg=cfg(rust, values("1.57.0")) +cargo:rustc-check-cfg=cfg(doc_cfg) +cargo:rustc-check-cfg=cfg(kani) +cargo:rustc-check-cfg=cfg(__ZEROCOPY_INTERNAL_USE_ONLY_NIGHTLY_FEATURES_IN_TESTS) +cargo:rustc-check-cfg=cfg(coverage_nightly) +cargo:rustc-cfg=zerocopy_core_error_1_81_0 +cargo:rustc-cfg=zerocopy_diagnostic_on_unimplemented_1_78_0 +cargo:rustc-cfg=zerocopy_generic_bounds_in_const_fn_1_61_0 +cargo:rustc-cfg=zerocopy_target_has_atomics_1_60_0 +cargo:rustc-cfg=zerocopy_aarch64_simd_1_59_0 +cargo:rustc-cfg=zerocopy_panic_in_const_and_vec_try_reserve_1_57_0 diff --git a/src-tauri/html_scraper/target/owl/debug/build/zerocopy-c4e3836daa31bc40/root-output b/src-tauri/html_scraper/target/owl/debug/build/zerocopy-c4e3836daa31bc40/root-output new file mode 100644 index 0000000..160e4f1 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/build/zerocopy-c4e3836daa31bc40/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/zerocopy-c4e3836daa31bc40/out \ No newline at end of file diff --git a/src-tauri/html_scraper/target/owl/debug/build/zerocopy-c4e3836daa31bc40/stderr b/src-tauri/html_scraper/target/owl/debug/build/zerocopy-c4e3836daa31bc40/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/html_scraper/target/owl/debug/deps/ahash-cf5adf12f91a3f07.d b/src-tauri/html_scraper/target/owl/debug/deps/ahash-cf5adf12f91a3f07.d new file mode 100644 index 0000000..2ca16dd --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/ahash-cf5adf12f91a3f07.d @@ -0,0 +1,12 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libahash-cf5adf12f91a3f07.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/convert.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/fallback_hash.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/operations.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/random_state.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/specialize.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/hash_map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/hash_set.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/ahash-cf5adf12f91a3f07.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/convert.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/fallback_hash.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/operations.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/random_state.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/specialize.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/hash_map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/hash_set.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/convert.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/fallback_hash.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/operations.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/random_state.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/specialize.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/hash_map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/hash_set.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/aho_corasick-4a71a11a304f34de.d b/src-tauri/html_scraper/target/owl/debug/deps/aho_corasick-4a71a11a304f34de.d new file mode 100644 index 0000000..c7baf6f --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/aho_corasick-4a71a11a304f34de.d @@ -0,0 +1,33 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libaho_corasick-4a71a11a304f34de.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/ahocorasick.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/automaton.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/dfa.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/nfa/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/nfa/contiguous.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/nfa/noncontiguous.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/api.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/pattern.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/rabinkarp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/teddy/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/teddy/builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/teddy/generic.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/vector.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/alphabet.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/buffer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/byte_frequencies.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/debug.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/int.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/prefilter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/primitives.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/remapper.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/search.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/special.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/aho_corasick-4a71a11a304f34de.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/ahocorasick.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/automaton.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/dfa.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/nfa/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/nfa/contiguous.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/nfa/noncontiguous.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/api.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/pattern.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/rabinkarp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/teddy/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/teddy/builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/teddy/generic.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/vector.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/alphabet.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/buffer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/byte_frequencies.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/debug.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/int.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/prefilter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/primitives.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/remapper.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/search.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/special.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/ahocorasick.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/automaton.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/dfa.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/nfa/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/nfa/contiguous.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/nfa/noncontiguous.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/api.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/ext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/pattern.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/rabinkarp.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/teddy/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/teddy/builder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/teddy/generic.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/vector.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/alphabet.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/buffer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/byte_frequencies.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/debug.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/int.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/prefilter.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/primitives.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/remapper.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/search.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/special.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/autocfg-3036797dcbb68a8c.d b/src-tauri/html_scraper/target/owl/debug/deps/autocfg-3036797dcbb68a8c.d new file mode 100644 index 0000000..9fe47ca --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/autocfg-3036797dcbb68a8c.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libautocfg-3036797dcbb68a8c.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/rustc.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/version.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libautocfg-3036797dcbb68a8c.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/rustc.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/version.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/autocfg-3036797dcbb68a8c.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/rustc.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/version.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/rustc.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/version.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/bitflags-47fb54c026abfaca.d b/src-tauri/html_scraper/target/owl/debug/deps/bitflags-47fb54c026abfaca.d new file mode 100644 index 0000000..6c61194 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/bitflags-47fb54c026abfaca.d @@ -0,0 +1,11 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libbitflags-47fb54c026abfaca.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.4/src/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.4/src/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.4/src/traits.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.4/src/public.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.4/src/internal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.4/src/external.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/bitflags-47fb54c026abfaca.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.4/src/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.4/src/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.4/src/traits.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.4/src/public.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.4/src/internal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.4/src/external.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.4/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.4/src/iter.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.4/src/parser.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.4/src/traits.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.4/src/public.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.4/src/internal.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.4/src/external.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/byteorder-4b4e71c2bcc1ba60.d b/src-tauri/html_scraper/target/owl/debug/deps/byteorder-4b4e71c2bcc1ba60.d new file mode 100644 index 0000000..7122900 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/byteorder-4b4e71c2bcc1ba60.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libbyteorder-4b4e71c2bcc1ba60.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/io.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/byteorder-4b4e71c2bcc1ba60.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/io.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/io.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/cfg_if-22c5faecaaf90584.d b/src-tauri/html_scraper/target/owl/debug/deps/cfg_if-22c5faecaaf90584.d new file mode 100644 index 0000000..8820778 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/cfg_if-22c5faecaaf90584.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libcfg_if-22c5faecaaf90584.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libcfg_if-22c5faecaaf90584.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/cfg_if-22c5faecaaf90584.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.3/src/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/cfg_if-24c926a9096103c7.d b/src-tauri/html_scraper/target/owl/debug/deps/cfg_if-24c926a9096103c7.d new file mode 100644 index 0000000..347472a --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/cfg_if-24c926a9096103c7.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libcfg_if-24c926a9096103c7.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/cfg_if-24c926a9096103c7.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.3/src/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/cssparser-288940f99e39038a.d b/src-tauri/html_scraper/target/owl/debug/deps/cssparser-288940f99e39038a.d new file mode 100644 index 0000000..d723baf --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/cssparser-288940f99e39038a.d @@ -0,0 +1,15 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libcssparser-288940f99e39038a.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/rules_and_declarations.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/tokenizer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/color.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/cow_rc_str.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/from_bytes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/nth.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/serializer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/unicode_range.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/cssparser-288940f99e39038a.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/rules_and_declarations.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/tokenizer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/color.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/cow_rc_str.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/from_bytes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/nth.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/serializer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/unicode_range.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/rules_and_declarations.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/tokenizer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/color.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/cow_rc_str.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/from_bytes.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/nth.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/parser.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/serializer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/unicode_range.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/cssparser_macros-7723e16b38393b19.d b/src-tauri/html_scraper/target/owl/debug/deps/cssparser_macros-7723e16b38393b19.d new file mode 100644 index 0000000..92d54d8 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/cssparser_macros-7723e16b38393b19.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libcssparser_macros-7723e16b38393b19.dylib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-macros-0.6.1/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/cssparser_macros-7723e16b38393b19.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-macros-0.6.1/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-macros-0.6.1/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/debug_unreachable-de20d0d9fb09bc9f.d b/src-tauri/html_scraper/target/owl/debug/deps/debug_unreachable-de20d0d9fb09bc9f.d new file mode 100644 index 0000000..e3c7034 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/debug_unreachable-de20d0d9fb09bc9f.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libdebug_unreachable-de20d0d9fb09bc9f.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/new_debug_unreachable-1.0.6/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/debug_unreachable-de20d0d9fb09bc9f.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/new_debug_unreachable-1.0.6/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/new_debug_unreachable-1.0.6/src/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/derive_more-1f55f046a174a726.d b/src-tauri/html_scraper/target/owl/debug/deps/derive_more-1f55f046a174a726.d new file mode 100644 index 0000000..7cd146b --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/derive_more-1f55f046a174a726.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libderive_more-1f55f046a174a726.dylib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/syn_compat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/add_assign_like.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/add_helpers.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/add_like.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/derive_more-1f55f046a174a726.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/syn_compat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/add_assign_like.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/add_helpers.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/add_like.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/syn_compat.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/utils.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/add_assign_like.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/add_helpers.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/add_like.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/dtoa-e1b5b1d152ea2e94.d b/src-tauri/html_scraper/target/owl/debug/deps/dtoa-e1b5b1d152ea2e94.d new file mode 100644 index 0000000..11a8e2f --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/dtoa-e1b5b1d152ea2e94.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libdtoa-e1b5b1d152ea2e94.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-1.0.10/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-1.0.10/src/diyfp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-1.0.10/src/dtoa.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/dtoa-e1b5b1d152ea2e94.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-1.0.10/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-1.0.10/src/diyfp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-1.0.10/src/dtoa.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-1.0.10/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-1.0.10/src/diyfp.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-1.0.10/src/dtoa.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/dtoa_short-ddc69d4b6aa0e19b.d b/src-tauri/html_scraper/target/owl/debug/deps/dtoa_short-ddc69d4b6aa0e19b.d new file mode 100644 index 0000000..916d085 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/dtoa_short-ddc69d4b6aa0e19b.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libdtoa_short-ddc69d4b6aa0e19b.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-short-0.3.5/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/dtoa_short-ddc69d4b6aa0e19b.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-short-0.3.5/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-short-0.3.5/src/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/ego_tree-809c8514ee657827.d b/src-tauri/html_scraper/target/owl/debug/deps/ego_tree-809c8514ee657827.d new file mode 100644 index 0000000..c8610aa --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/ego_tree-809c8514ee657827.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libego_tree-809c8514ee657827.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ego-tree-0.6.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ego-tree-0.6.3/src/iter.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/ego_tree-809c8514ee657827.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ego-tree-0.6.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ego-tree-0.6.3/src/iter.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ego-tree-0.6.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ego-tree-0.6.3/src/iter.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/futf-3d480dde70c9eb27.d b/src-tauri/html_scraper/target/owl/debug/deps/futf-3d480dde70c9eb27.d new file mode 100644 index 0000000..d62dd8a --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/futf-3d480dde70c9eb27.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libfutf-3d480dde70c9eb27.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futf-0.1.5/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/futf-3d480dde70c9eb27.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futf-0.1.5/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futf-0.1.5/src/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/fxhash-655a24a699d73c8e.d b/src-tauri/html_scraper/target/owl/debug/deps/fxhash-655a24a699d73c8e.d new file mode 100644 index 0000000..d6f9788 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/fxhash-655a24a699d73c8e.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libfxhash-655a24a699d73c8e.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fxhash-0.2.1/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/fxhash-655a24a699d73c8e.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fxhash-0.2.1/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fxhash-0.2.1/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/getopts-3bd88005c8a6f4a9.d b/src-tauri/html_scraper/target/owl/debug/deps/getopts-3bd88005c8a6f4a9.d new file mode 100644 index 0000000..15225ba --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/getopts-3bd88005c8a6f4a9.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libgetopts-3bd88005c8a6f4a9.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getopts-0.2.24/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/getopts-3bd88005c8a6f4a9.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getopts-0.2.24/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getopts-0.2.24/src/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/getrandom-40baf98a89404270.d b/src-tauri/html_scraper/target/owl/debug/deps/getrandom-40baf98a89404270.d new file mode 100644 index 0000000..29ae158 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/getrandom-40baf98a89404270.d @@ -0,0 +1,11 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libgetrandom-40baf98a89404270.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/src/backends.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/src/../README.md /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/src/backends/getentropy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/src/backends/../util_libc.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/getrandom-40baf98a89404270.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/src/backends.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/src/../README.md /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/src/backends/getentropy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/src/backends/../util_libc.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/src/backends.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/src/util.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/src/../README.md: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/src/backends/getentropy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.3/src/backends/../util_libc.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/getrandom-b386e888130291ba.d b/src-tauri/html_scraper/target/owl/debug/deps/getrandom-b386e888130291ba.d new file mode 100644 index 0000000..bc55241 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/getrandom-b386e888130291ba.d @@ -0,0 +1,12 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libgetrandom-b386e888130291ba.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/error_impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/util_libc.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/getentropy.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libgetrandom-b386e888130291ba.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/error_impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/util_libc.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/getentropy.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/getrandom-b386e888130291ba.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/error_impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/util_libc.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/getentropy.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/util.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/error_impls.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/util_libc.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/getentropy.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/html5ever-49e2f1f84d5b7dd4.d b/src-tauri/html_scraper/target/owl/debug/deps/html5ever-49e2f1f84d5b7dd4.d new file mode 100644 index 0000000..73ac69e --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/html5ever-49e2f1f84d5b7dd4.d @@ -0,0 +1,20 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libhtml5ever-49e2f1f84d5b7dd4.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/util/str.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/driver.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/serialize/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/char_ref/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/interface.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/states.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/tag_sets.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/types.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/html5ever-2971a9ee54624ba3/out/rules.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/html5ever-49e2f1f84d5b7dd4.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/util/str.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/driver.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/serialize/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/char_ref/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/interface.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/states.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/tag_sets.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/types.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/html5ever-2971a9ee54624ba3/out/rules.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/util/str.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/driver.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/serialize/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/char_ref/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/interface.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/states.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/tag_sets.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/data.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/types.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/html5ever-2971a9ee54624ba3/out/rules.rs: + +# env-dep:OUT_DIR=/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/html5ever-2971a9ee54624ba3/out diff --git a/src-tauri/html_scraper/target/owl/debug/deps/html_scraper-30b12a61e60c45f4.d b/src-tauri/html_scraper/target/owl/debug/deps/html_scraper-30b12a61e60c45f4.d new file mode 100644 index 0000000..bf6708a --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/html_scraper-30b12a61e60c45f4.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libhtml_scraper-30b12a61e60c45f4.rmeta: src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/html_scraper-30b12a61e60c45f4.d: src/lib.rs + +src/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/html_scraper-537d9c2b38b2abaa.d b/src-tauri/html_scraper/target/owl/debug/deps/html_scraper-537d9c2b38b2abaa.d new file mode 100644 index 0000000..aeae3cc --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/html_scraper-537d9c2b38b2abaa.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libhtml_scraper-537d9c2b38b2abaa.rmeta: src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/html_scraper-537d9c2b38b2abaa.d: src/lib.rs + +src/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/itoa-a49ee8ba6037ae7c.d b/src-tauri/html_scraper/target/owl/debug/deps/itoa-a49ee8ba6037ae7c.d new file mode 100644 index 0000000..1d798f2 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/itoa-a49ee8ba6037ae7c.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libitoa-a49ee8ba6037ae7c.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/src/udiv128.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/itoa-a49ee8ba6037ae7c.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/src/udiv128.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/src/udiv128.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libahash-cf5adf12f91a3f07.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libahash-cf5adf12f91a3f07.rmeta new file mode 100644 index 0000000..5eab9fe Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libahash-cf5adf12f91a3f07.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libaho_corasick-4a71a11a304f34de.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libaho_corasick-4a71a11a304f34de.rmeta new file mode 100644 index 0000000..12b07e3 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libaho_corasick-4a71a11a304f34de.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libautocfg-3036797dcbb68a8c.rlib b/src-tauri/html_scraper/target/owl/debug/deps/libautocfg-3036797dcbb68a8c.rlib new file mode 100644 index 0000000..810c52b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libautocfg-3036797dcbb68a8c.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libautocfg-3036797dcbb68a8c.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libautocfg-3036797dcbb68a8c.rmeta new file mode 100644 index 0000000..cf2a59f Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libautocfg-3036797dcbb68a8c.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libbitflags-47fb54c026abfaca.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libbitflags-47fb54c026abfaca.rmeta new file mode 100644 index 0000000..adc83a9 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libbitflags-47fb54c026abfaca.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libbyteorder-4b4e71c2bcc1ba60.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libbyteorder-4b4e71c2bcc1ba60.rmeta new file mode 100644 index 0000000..5569eee Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libbyteorder-4b4e71c2bcc1ba60.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libc-264ebbf0640cb510.d b/src-tauri/html_scraper/target/owl/debug/deps/libc-264ebbf0640cb510.d new file mode 100644 index 0000000..1c9a54b --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/libc-264ebbf0640cb510.d @@ -0,0 +1,16 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/liblibc-264ebbf0640cb510.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/new/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/primitives.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/types.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/liblibc-264ebbf0640cb510.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/new/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/primitives.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/types.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libc-264ebbf0640cb510.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/new/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/primitives.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/types.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/new/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/primitives.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/apple/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/types.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libc-b85126284b89e743.d b/src-tauri/html_scraper/target/owl/debug/deps/libc-b85126284b89e743.d new file mode 100644 index 0000000..19e093b --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/libc-b85126284b89e743.d @@ -0,0 +1,14 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/liblibc-b85126284b89e743.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/new/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/primitives.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/types.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libc-b85126284b89e743.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/new/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/primitives.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/types.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/new/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/primitives.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/apple/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/apple/b64/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/unix/bsd/apple/b64/aarch64/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.176/src/types.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libcfg_if-22c5faecaaf90584.rlib b/src-tauri/html_scraper/target/owl/debug/deps/libcfg_if-22c5faecaaf90584.rlib new file mode 100644 index 0000000..3ef27f8 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libcfg_if-22c5faecaaf90584.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libcfg_if-22c5faecaaf90584.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libcfg_if-22c5faecaaf90584.rmeta new file mode 100644 index 0000000..3a11118 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libcfg_if-22c5faecaaf90584.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libcfg_if-24c926a9096103c7.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libcfg_if-24c926a9096103c7.rmeta new file mode 100644 index 0000000..5c74948 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libcfg_if-24c926a9096103c7.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libcssparser-288940f99e39038a.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libcssparser-288940f99e39038a.rmeta new file mode 100644 index 0000000..0bfe141 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libcssparser-288940f99e39038a.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libcssparser_macros-7723e16b38393b19.dylib b/src-tauri/html_scraper/target/owl/debug/deps/libcssparser_macros-7723e16b38393b19.dylib new file mode 100755 index 0000000..7c86f6f Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libcssparser_macros-7723e16b38393b19.dylib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libdebug_unreachable-de20d0d9fb09bc9f.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libdebug_unreachable-de20d0d9fb09bc9f.rmeta new file mode 100644 index 0000000..bca8bc4 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libdebug_unreachable-de20d0d9fb09bc9f.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libderive_more-1f55f046a174a726.dylib b/src-tauri/html_scraper/target/owl/debug/deps/libderive_more-1f55f046a174a726.dylib new file mode 100755 index 0000000..6645a69 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libderive_more-1f55f046a174a726.dylib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libdtoa-e1b5b1d152ea2e94.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libdtoa-e1b5b1d152ea2e94.rmeta new file mode 100644 index 0000000..82f811a Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libdtoa-e1b5b1d152ea2e94.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libdtoa_short-ddc69d4b6aa0e19b.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libdtoa_short-ddc69d4b6aa0e19b.rmeta new file mode 100644 index 0000000..890b366 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libdtoa_short-ddc69d4b6aa0e19b.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libego_tree-809c8514ee657827.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libego_tree-809c8514ee657827.rmeta new file mode 100644 index 0000000..44abf0f Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libego_tree-809c8514ee657827.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libfutf-3d480dde70c9eb27.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libfutf-3d480dde70c9eb27.rmeta new file mode 100644 index 0000000..3c5667d Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libfutf-3d480dde70c9eb27.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libfxhash-655a24a699d73c8e.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libfxhash-655a24a699d73c8e.rmeta new file mode 100644 index 0000000..1b39cc2 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libfxhash-655a24a699d73c8e.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libgetopts-3bd88005c8a6f4a9.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libgetopts-3bd88005c8a6f4a9.rmeta new file mode 100644 index 0000000..2a1f3e8 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libgetopts-3bd88005c8a6f4a9.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libgetrandom-40baf98a89404270.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libgetrandom-40baf98a89404270.rmeta new file mode 100644 index 0000000..42d4ff8 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libgetrandom-40baf98a89404270.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libgetrandom-b386e888130291ba.rlib b/src-tauri/html_scraper/target/owl/debug/deps/libgetrandom-b386e888130291ba.rlib new file mode 100644 index 0000000..6f1d56d Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libgetrandom-b386e888130291ba.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libgetrandom-b386e888130291ba.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libgetrandom-b386e888130291ba.rmeta new file mode 100644 index 0000000..96ae0ba Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libgetrandom-b386e888130291ba.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libhtml5ever-49e2f1f84d5b7dd4.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libhtml5ever-49e2f1f84d5b7dd4.rmeta new file mode 100644 index 0000000..9c5dc04 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libhtml5ever-49e2f1f84d5b7dd4.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libhtml_scraper-537d9c2b38b2abaa.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libhtml_scraper-537d9c2b38b2abaa.rmeta new file mode 100644 index 0000000..96221b1 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libhtml_scraper-537d9c2b38b2abaa.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libitoa-a49ee8ba6037ae7c.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libitoa-a49ee8ba6037ae7c.rmeta new file mode 100644 index 0000000..527cec6 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libitoa-a49ee8ba6037ae7c.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/liblibc-264ebbf0640cb510.rlib b/src-tauri/html_scraper/target/owl/debug/deps/liblibc-264ebbf0640cb510.rlib new file mode 100644 index 0000000..78fc6b3 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/liblibc-264ebbf0640cb510.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/liblibc-264ebbf0640cb510.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/liblibc-264ebbf0640cb510.rmeta new file mode 100644 index 0000000..01e4f9b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/liblibc-264ebbf0640cb510.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/liblibc-b85126284b89e743.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/liblibc-b85126284b89e743.rmeta new file mode 100644 index 0000000..71d7856 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/liblibc-b85126284b89e743.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/liblock_api-3c1f3db8d9fca7b4.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/liblock_api-3c1f3db8d9fca7b4.rmeta new file mode 100644 index 0000000..1c87d0d Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/liblock_api-3c1f3db8d9fca7b4.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/liblog-a85f59543d513f35.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/liblog-a85f59543d513f35.rmeta new file mode 100644 index 0000000..640ded7 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/liblog-a85f59543d513f35.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libmac-8bcbbf2eea6c88e0.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libmac-8bcbbf2eea6c88e0.rmeta new file mode 100644 index 0000000..e662b64 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libmac-8bcbbf2eea6c88e0.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libmarkup5ever-c05d280d82fda2f5.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libmarkup5ever-c05d280d82fda2f5.rmeta new file mode 100644 index 0000000..3f9fc9f Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libmarkup5ever-c05d280d82fda2f5.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libmemchr-7c3340bc369d5f50.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libmemchr-7c3340bc369d5f50.rmeta new file mode 100644 index 0000000..c7613e0 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libmemchr-7c3340bc369d5f50.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libonce_cell-4c5c529dad6841fd.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libonce_cell-4c5c529dad6841fd.rmeta new file mode 100644 index 0000000..24299f9 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libonce_cell-4c5c529dad6841fd.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libparking_lot-67e3c76077a8687b.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libparking_lot-67e3c76077a8687b.rmeta new file mode 100644 index 0000000..b7f672c Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libparking_lot-67e3c76077a8687b.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libparking_lot_core-a1c9ac69068499a0.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libparking_lot_core-a1c9ac69068499a0.rmeta new file mode 100644 index 0000000..b3cb69b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libparking_lot_core-a1c9ac69068499a0.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libphf-6b194834e92a8bee.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libphf-6b194834e92a8bee.rmeta new file mode 100644 index 0000000..97f5a5c Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libphf-6b194834e92a8bee.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libphf-a5e281d909db600d.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libphf-a5e281d909db600d.rmeta new file mode 100644 index 0000000..7088c74 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libphf-a5e281d909db600d.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libphf_codegen-40157be3fe634da0.rlib b/src-tauri/html_scraper/target/owl/debug/deps/libphf_codegen-40157be3fe634da0.rlib new file mode 100644 index 0000000..546a823 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libphf_codegen-40157be3fe634da0.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libphf_codegen-40157be3fe634da0.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libphf_codegen-40157be3fe634da0.rmeta new file mode 100644 index 0000000..65ef68d Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libphf_codegen-40157be3fe634da0.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libphf_codegen-5ea2ef6feacfe22f.rlib b/src-tauri/html_scraper/target/owl/debug/deps/libphf_codegen-5ea2ef6feacfe22f.rlib new file mode 100644 index 0000000..164c9d6 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libphf_codegen-5ea2ef6feacfe22f.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libphf_codegen-5ea2ef6feacfe22f.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libphf_codegen-5ea2ef6feacfe22f.rmeta new file mode 100644 index 0000000..22d34c0 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libphf_codegen-5ea2ef6feacfe22f.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libphf_generator-43336aadae1e491f.rlib b/src-tauri/html_scraper/target/owl/debug/deps/libphf_generator-43336aadae1e491f.rlib new file mode 100644 index 0000000..2c04df7 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libphf_generator-43336aadae1e491f.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libphf_generator-43336aadae1e491f.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libphf_generator-43336aadae1e491f.rmeta new file mode 100644 index 0000000..ca7b9bd Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libphf_generator-43336aadae1e491f.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libphf_generator-884b0d250f91fc53.rlib b/src-tauri/html_scraper/target/owl/debug/deps/libphf_generator-884b0d250f91fc53.rlib new file mode 100644 index 0000000..40d4536 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libphf_generator-884b0d250f91fc53.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libphf_generator-884b0d250f91fc53.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libphf_generator-884b0d250f91fc53.rmeta new file mode 100644 index 0000000..6405971 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libphf_generator-884b0d250f91fc53.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libphf_macros-7f841b68f6c64112.dylib b/src-tauri/html_scraper/target/owl/debug/deps/libphf_macros-7f841b68f6c64112.dylib new file mode 100755 index 0000000..e33557e Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libphf_macros-7f841b68f6c64112.dylib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-326f17bea3a347fa.rlib b/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-326f17bea3a347fa.rlib new file mode 100644 index 0000000..d97d19e Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-326f17bea3a347fa.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-326f17bea3a347fa.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-326f17bea3a347fa.rmeta new file mode 100644 index 0000000..4b78d4f Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-326f17bea3a347fa.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-cdf7b96f714c2ffe.rlib b/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-cdf7b96f714c2ffe.rlib new file mode 100644 index 0000000..d5dcb80 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-cdf7b96f714c2ffe.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-cdf7b96f714c2ffe.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-cdf7b96f714c2ffe.rmeta new file mode 100644 index 0000000..395cd39 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-cdf7b96f714c2ffe.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-d820095d9f30a958.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-d820095d9f30a958.rmeta new file mode 100644 index 0000000..e3bad53 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-d820095d9f30a958.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-d8d2ac53d54b5ecf.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-d8d2ac53d54b5ecf.rmeta new file mode 100644 index 0000000..98e7112 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-d8d2ac53d54b5ecf.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libppv_lite86-152841d868a1fbc8.rlib b/src-tauri/html_scraper/target/owl/debug/deps/libppv_lite86-152841d868a1fbc8.rlib new file mode 100644 index 0000000..fbf2b23 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libppv_lite86-152841d868a1fbc8.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libppv_lite86-152841d868a1fbc8.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libppv_lite86-152841d868a1fbc8.rmeta new file mode 100644 index 0000000..4fc2c02 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libppv_lite86-152841d868a1fbc8.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libprecomputed_hash-8ff83f9112c5d0ff.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libprecomputed_hash-8ff83f9112c5d0ff.rmeta new file mode 100644 index 0000000..7d1e925 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libprecomputed_hash-8ff83f9112c5d0ff.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libproc_macro2-291ed4ead1b38229.rlib b/src-tauri/html_scraper/target/owl/debug/deps/libproc_macro2-291ed4ead1b38229.rlib new file mode 100644 index 0000000..333db49 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libproc_macro2-291ed4ead1b38229.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libproc_macro2-291ed4ead1b38229.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libproc_macro2-291ed4ead1b38229.rmeta new file mode 100644 index 0000000..5bf9d6f Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libproc_macro2-291ed4ead1b38229.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libquote-e142a560d591b9f6.rlib b/src-tauri/html_scraper/target/owl/debug/deps/libquote-e142a560d591b9f6.rlib new file mode 100644 index 0000000..8ab9489 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libquote-e142a560d591b9f6.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libquote-e142a560d591b9f6.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libquote-e142a560d591b9f6.rmeta new file mode 100644 index 0000000..1f966bf Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libquote-e142a560d591b9f6.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/librand-ab5ef89d506a41da.rlib b/src-tauri/html_scraper/target/owl/debug/deps/librand-ab5ef89d506a41da.rlib new file mode 100644 index 0000000..7387476 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/librand-ab5ef89d506a41da.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/librand-ab5ef89d506a41da.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/librand-ab5ef89d506a41da.rmeta new file mode 100644 index 0000000..fef5b50 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/librand-ab5ef89d506a41da.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/librand_chacha-c8d61b1a796d881d.rlib b/src-tauri/html_scraper/target/owl/debug/deps/librand_chacha-c8d61b1a796d881d.rlib new file mode 100644 index 0000000..c100e50 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/librand_chacha-c8d61b1a796d881d.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/librand_chacha-c8d61b1a796d881d.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/librand_chacha-c8d61b1a796d881d.rmeta new file mode 100644 index 0000000..e452701 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/librand_chacha-c8d61b1a796d881d.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/librand_core-f3a8d6f0864acf19.rlib b/src-tauri/html_scraper/target/owl/debug/deps/librand_core-f3a8d6f0864acf19.rlib new file mode 100644 index 0000000..31a2a49 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/librand_core-f3a8d6f0864acf19.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/librand_core-f3a8d6f0864acf19.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/librand_core-f3a8d6f0864acf19.rmeta new file mode 100644 index 0000000..03f0322 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/librand_core-f3a8d6f0864acf19.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libregex-a4ec923d1ef1e9a6.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libregex-a4ec923d1ef1e9a6.rmeta new file mode 100644 index 0000000..30a5299 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libregex-a4ec923d1ef1e9a6.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libregex_automata-a19565a0024fd174.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libregex_automata-a19565a0024fd174.rmeta new file mode 100644 index 0000000..819bf29 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libregex_automata-a19565a0024fd174.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libregex_syntax-64f543cc93457e20.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libregex_syntax-64f543cc93457e20.rmeta new file mode 100644 index 0000000..4b4fcbd Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libregex_syntax-64f543cc93457e20.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libscopeguard-c08493d5b2a6fcb7.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libscopeguard-c08493d5b2a6fcb7.rmeta new file mode 100644 index 0000000..0e7e1f6 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libscopeguard-c08493d5b2a6fcb7.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libscraper-97a3ebea50003e71.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libscraper-97a3ebea50003e71.rmeta new file mode 100644 index 0000000..b50b648 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libscraper-97a3ebea50003e71.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libselectors-4df59249114547d8.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libselectors-4df59249114547d8.rmeta new file mode 100644 index 0000000..e0c629d Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libselectors-4df59249114547d8.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libserde-9af645a775cf9f01.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libserde-9af645a775cf9f01.rmeta new file mode 100644 index 0000000..a988478 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libserde-9af645a775cf9f01.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libserde_core-d96f7512d0867ca5.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libserde_core-d96f7512d0867ca5.rmeta new file mode 100644 index 0000000..76105d2 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libserde_core-d96f7512d0867ca5.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libservo_arc-0740b3386ca058d0.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libservo_arc-0740b3386ca058d0.rmeta new file mode 100644 index 0000000..43b7a78 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libservo_arc-0740b3386ca058d0.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-1fcf29601dcb3ded.rlib b/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-1fcf29601dcb3ded.rlib new file mode 100644 index 0000000..d9141f3 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-1fcf29601dcb3ded.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-1fcf29601dcb3ded.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-1fcf29601dcb3ded.rmeta new file mode 100644 index 0000000..bd121f0 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-1fcf29601dcb3ded.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-3fafa0cf348dee4c.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-3fafa0cf348dee4c.rmeta new file mode 100644 index 0000000..5fde099 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-3fafa0cf348dee4c.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-d9bc522279c35d09.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-d9bc522279c35d09.rmeta new file mode 100644 index 0000000..36b4e7b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-d9bc522279c35d09.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-e9d3e929006ac3ab.rlib b/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-e9d3e929006ac3ab.rlib new file mode 100644 index 0000000..24d9220 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-e9d3e929006ac3ab.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-e9d3e929006ac3ab.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-e9d3e929006ac3ab.rmeta new file mode 100644 index 0000000..76e95cd Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-e9d3e929006ac3ab.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libsmallvec-62042a0d847875ed.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libsmallvec-62042a0d847875ed.rmeta new file mode 100644 index 0000000..19bd681 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libsmallvec-62042a0d847875ed.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libstable_deref_trait-0337c135e7a2ce00.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libstable_deref_trait-0337c135e7a2ce00.rmeta new file mode 100644 index 0000000..fc6717e Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libstable_deref_trait-0337c135e7a2ce00.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libstring_cache-686a5974b6d8d8f0.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libstring_cache-686a5974b6d8d8f0.rmeta new file mode 100644 index 0000000..fd819d6 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libstring_cache-686a5974b6d8d8f0.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libstring_cache_codegen-a13c66493fd49489.rlib b/src-tauri/html_scraper/target/owl/debug/deps/libstring_cache_codegen-a13c66493fd49489.rlib new file mode 100644 index 0000000..5490aee Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libstring_cache_codegen-a13c66493fd49489.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libstring_cache_codegen-a13c66493fd49489.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libstring_cache_codegen-a13c66493fd49489.rmeta new file mode 100644 index 0000000..b095914 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libstring_cache_codegen-a13c66493fd49489.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libsyn-c542fcde6b325b88.rlib b/src-tauri/html_scraper/target/owl/debug/deps/libsyn-c542fcde6b325b88.rlib new file mode 100644 index 0000000..c94a386 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libsyn-c542fcde6b325b88.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libsyn-c542fcde6b325b88.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libsyn-c542fcde6b325b88.rmeta new file mode 100644 index 0000000..7e7efd2 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libsyn-c542fcde6b325b88.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libtendril-117c4ad9dedd98e9.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libtendril-117c4ad9dedd98e9.rmeta new file mode 100644 index 0000000..1d7ebe0 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libtendril-117c4ad9dedd98e9.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libthiserror-5a2ce00f8f4a9ca3.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libthiserror-5a2ce00f8f4a9ca3.rmeta new file mode 100644 index 0000000..7f09e7b Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libthiserror-5a2ce00f8f4a9ca3.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libthiserror_impl-d4e25a678f0789c5.dylib b/src-tauri/html_scraper/target/owl/debug/deps/libthiserror_impl-d4e25a678f0789c5.dylib new file mode 100755 index 0000000..8a70f1a Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libthiserror_impl-d4e25a678f0789c5.dylib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libunicode_ident-b558ea2496fc600b.rlib b/src-tauri/html_scraper/target/owl/debug/deps/libunicode_ident-b558ea2496fc600b.rlib new file mode 100644 index 0000000..066afe9 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libunicode_ident-b558ea2496fc600b.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libunicode_ident-b558ea2496fc600b.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libunicode_ident-b558ea2496fc600b.rmeta new file mode 100644 index 0000000..d70f4f4 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libunicode_ident-b558ea2496fc600b.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libunicode_width-20fcc90c7c561b5e.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libunicode_width-20fcc90c7c561b5e.rmeta new file mode 100644 index 0000000..261df15 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libunicode_width-20fcc90c7c561b5e.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libutf8-cdf51886c64f6cca.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libutf8-cdf51886c64f6cca.rmeta new file mode 100644 index 0000000..b5da7de Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libutf8-cdf51886c64f6cca.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libversion_check-bc29451f0514ce26.rlib b/src-tauri/html_scraper/target/owl/debug/deps/libversion_check-bc29451f0514ce26.rlib new file mode 100644 index 0000000..20569ef Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libversion_check-bc29451f0514ce26.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libversion_check-bc29451f0514ce26.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libversion_check-bc29451f0514ce26.rmeta new file mode 100644 index 0000000..4d295cf Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libversion_check-bc29451f0514ce26.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libzerocopy-01ceee95be2bda4d.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libzerocopy-01ceee95be2bda4d.rmeta new file mode 100644 index 0000000..60d3180 Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libzerocopy-01ceee95be2bda4d.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libzerocopy-20a5e624ae883db2.rlib b/src-tauri/html_scraper/target/owl/debug/deps/libzerocopy-20a5e624ae883db2.rlib new file mode 100644 index 0000000..6081a1d Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libzerocopy-20a5e624ae883db2.rlib differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/libzerocopy-20a5e624ae883db2.rmeta b/src-tauri/html_scraper/target/owl/debug/deps/libzerocopy-20a5e624ae883db2.rmeta new file mode 100644 index 0000000..057ae6e Binary files /dev/null and b/src-tauri/html_scraper/target/owl/debug/deps/libzerocopy-20a5e624ae883db2.rmeta differ diff --git a/src-tauri/html_scraper/target/owl/debug/deps/lock_api-3c1f3db8d9fca7b4.d b/src-tauri/html_scraper/target/owl/debug/deps/lock_api-3c1f3db8d9fca7b4.d new file mode 100644 index 0000000..1c0ad37 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/lock_api-3c1f3db8d9fca7b4.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/liblock_api-3c1f3db8d9fca7b4.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.13/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.13/src/mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.13/src/remutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.13/src/rwlock.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/lock_api-3c1f3db8d9fca7b4.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.13/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.13/src/mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.13/src/remutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.13/src/rwlock.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.13/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.13/src/mutex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.13/src/remutex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.13/src/rwlock.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/log-a85f59543d513f35.d b/src-tauri/html_scraper/target/owl/debug/deps/log-a85f59543d513f35.d new file mode 100644 index 0000000..d72ab13 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/log-a85f59543d513f35.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/liblog-a85f59543d513f35.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.28/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.28/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.28/src/serde.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.28/src/__private_api.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/log-a85f59543d513f35.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.28/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.28/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.28/src/serde.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.28/src/__private_api.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.28/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.28/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.28/src/serde.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.28/src/__private_api.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/mac-8bcbbf2eea6c88e0.d b/src-tauri/html_scraper/target/owl/debug/deps/mac-8bcbbf2eea6c88e0.d new file mode 100644 index 0000000..2f4a141 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/mac-8bcbbf2eea6c88e0.d @@ -0,0 +1,12 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libmac-8bcbbf2eea6c88e0.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/test.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/mem.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/format.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/syntax_ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/matches.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/inspect.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/cfg.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/mac-8bcbbf2eea6c88e0.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/test.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/mem.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/format.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/syntax_ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/matches.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/inspect.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/cfg.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/test.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/mem.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/format.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/syntax_ext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/matches.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/inspect.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/cfg.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/markup5ever-c05d280d82fda2f5.d b/src-tauri/html_scraper/target/owl/debug/deps/markup5ever-c05d280d82fda2f5.d new file mode 100644 index 0000000..da9a58f --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/markup5ever-c05d280d82fda2f5.d @@ -0,0 +1,15 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libmarkup5ever-c05d280d82fda2f5.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/data/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/interface/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/interface/tree_builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/serialize.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/util/buffer_queue.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/util/smallcharset.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/out/generated.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/out/named_entities.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/markup5ever-c05d280d82fda2f5.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/data/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/interface/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/interface/tree_builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/serialize.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/util/buffer_queue.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/util/smallcharset.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/out/generated.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/out/named_entities.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/data/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/interface/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/interface/tree_builder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/serialize.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/util/buffer_queue.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/util/smallcharset.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/out/generated.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/out/named_entities.rs: + +# env-dep:OUT_DIR=/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/markup5ever-aca4b4cab63f52cf/out diff --git a/src-tauri/html_scraper/target/owl/debug/deps/memchr-7c3340bc369d5f50.d b/src-tauri/html_scraper/target/owl/debug/deps/memchr-7c3340bc369d5f50.d new file mode 100644 index 0000000..7627efe --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/memchr-7c3340bc369d5f50.d @@ -0,0 +1,28 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libmemchr-7c3340bc369d5f50.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/all/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/all/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/all/packedpair/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/all/packedpair/default_rank.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/all/rabinkarp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/all/shiftor.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/all/twoway.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/generic/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/generic/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/generic/packedpair.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/aarch64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/aarch64/neon/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/aarch64/neon/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/aarch64/neon/packedpair.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/aarch64/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/cow.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/memmem/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/memmem/searcher.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/vector.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/memchr-7c3340bc369d5f50.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/all/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/all/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/all/packedpair/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/all/packedpair/default_rank.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/all/rabinkarp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/all/shiftor.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/all/twoway.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/generic/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/generic/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/generic/packedpair.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/aarch64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/aarch64/neon/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/aarch64/neon/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/aarch64/neon/packedpair.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/aarch64/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/cow.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/memmem/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/memmem/searcher.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/vector.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/all/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/all/memchr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/all/packedpair/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/all/packedpair/default_rank.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/all/rabinkarp.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/all/shiftor.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/all/twoway.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/generic/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/generic/memchr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/generic/packedpair.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/aarch64/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/aarch64/neon/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/aarch64/neon/memchr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/aarch64/neon/packedpair.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/arch/aarch64/memchr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/cow.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/ext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/memchr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/memmem/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/memmem/searcher.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/vector.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/once_cell-4c5c529dad6841fd.d b/src-tauri/html_scraper/target/owl/debug/deps/once_cell-4c5c529dad6841fd.d new file mode 100644 index 0000000..dfec2ff --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/once_cell-4c5c529dad6841fd.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libonce_cell-4c5c529dad6841fd.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/imp_std.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/race.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/once_cell-4c5c529dad6841fd.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/imp_std.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/race.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/imp_std.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/race.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/parking_lot-67e3c76077a8687b.d b/src-tauri/html_scraper/target/owl/debug/deps/parking_lot-67e3c76077a8687b.d new file mode 100644 index 0000000..d874356 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/parking_lot-67e3c76077a8687b.d @@ -0,0 +1,17 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libparking_lot-67e3c76077a8687b.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/condvar.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/elision.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/fair_mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/once.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/raw_fair_mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/raw_mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/raw_rwlock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/remutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/rwlock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/deadlock.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/parking_lot-67e3c76077a8687b.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/condvar.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/elision.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/fair_mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/once.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/raw_fair_mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/raw_mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/raw_rwlock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/remutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/rwlock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/deadlock.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/condvar.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/elision.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/fair_mutex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/mutex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/once.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/raw_fair_mutex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/raw_mutex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/raw_rwlock.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/remutex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/rwlock.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/util.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.4/src/deadlock.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/parking_lot_core-a1c9ac69068499a0.d b/src-tauri/html_scraper/target/owl/debug/deps/parking_lot_core-a1c9ac69068499a0.d new file mode 100644 index 0000000..a4a37da --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/parking_lot_core-a1c9ac69068499a0.d @@ -0,0 +1,11 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libparking_lot_core-a1c9ac69068499a0.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/src/parking_lot.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/src/spinwait.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/src/thread_parker/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/src/word_lock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/src/thread_parker/unix.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/parking_lot_core-a1c9ac69068499a0.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/src/parking_lot.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/src/spinwait.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/src/thread_parker/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/src/word_lock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/src/thread_parker/unix.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/src/parking_lot.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/src/spinwait.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/src/thread_parker/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/src/util.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/src/word_lock.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.11/src/thread_parker/unix.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/phf-6b194834e92a8bee.d b/src-tauri/html_scraper/target/owl/debug/deps/phf-6b194834e92a8bee.d new file mode 100644 index 0000000..cd237c5 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/phf-6b194834e92a8bee.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libphf-6b194834e92a8bee.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/ordered_map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/ordered_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/set.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/phf-6b194834e92a8bee.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/ordered_map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/ordered_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/set.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/ordered_map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/ordered_set.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/set.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/phf-a5e281d909db600d.d b/src-tauri/html_scraper/target/owl/debug/deps/phf-a5e281d909db600d.d new file mode 100644 index 0000000..488e833 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/phf-a5e281d909db600d.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libphf-a5e281d909db600d.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/ordered_map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/ordered_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/set.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/phf-a5e281d909db600d.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/ordered_map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/ordered_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/set.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/ordered_map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/ordered_set.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/set.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/phf_codegen-40157be3fe634da0.d b/src-tauri/html_scraper/target/owl/debug/deps/phf_codegen-40157be3fe634da0.d new file mode 100644 index 0000000..26b7676 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/phf_codegen-40157be3fe634da0.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libphf_codegen-40157be3fe634da0.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_codegen-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libphf_codegen-40157be3fe634da0.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_codegen-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/phf_codegen-40157be3fe634da0.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_codegen-0.10.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_codegen-0.10.0/src/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/phf_codegen-5ea2ef6feacfe22f.d b/src-tauri/html_scraper/target/owl/debug/deps/phf_codegen-5ea2ef6feacfe22f.d new file mode 100644 index 0000000..80065fc --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/phf_codegen-5ea2ef6feacfe22f.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libphf_codegen-5ea2ef6feacfe22f.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_codegen-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libphf_codegen-5ea2ef6feacfe22f.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_codegen-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/phf_codegen-5ea2ef6feacfe22f.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_codegen-0.11.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_codegen-0.11.3/src/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/phf_generator-43336aadae1e491f.d b/src-tauri/html_scraper/target/owl/debug/deps/phf_generator-43336aadae1e491f.d new file mode 100644 index 0000000..9bf2180 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/phf_generator-43336aadae1e491f.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libphf_generator-43336aadae1e491f.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_generator-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libphf_generator-43336aadae1e491f.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_generator-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/phf_generator-43336aadae1e491f.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_generator-0.10.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_generator-0.10.0/src/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/phf_generator-884b0d250f91fc53.d b/src-tauri/html_scraper/target/owl/debug/deps/phf_generator-884b0d250f91fc53.d new file mode 100644 index 0000000..ff6d780 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/phf_generator-884b0d250f91fc53.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libphf_generator-884b0d250f91fc53.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_generator-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libphf_generator-884b0d250f91fc53.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_generator-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/phf_generator-884b0d250f91fc53.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_generator-0.11.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_generator-0.11.3/src/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/phf_macros-7f841b68f6c64112.d b/src-tauri/html_scraper/target/owl/debug/deps/phf_macros-7f841b68f6c64112.d new file mode 100644 index 0000000..7a66253 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/phf_macros-7f841b68f6c64112.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libphf_macros-7f841b68f6c64112.dylib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_macros-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/phf_macros-7f841b68f6c64112.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_macros-0.11.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_macros-0.11.3/src/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/phf_shared-326f17bea3a347fa.d b/src-tauri/html_scraper/target/owl/debug/deps/phf_shared-326f17bea3a347fa.d new file mode 100644 index 0000000..505a290 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/phf_shared-326f17bea3a347fa.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-326f17bea3a347fa.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-326f17bea3a347fa.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/phf_shared-326f17bea3a347fa.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.11.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.11.3/src/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/phf_shared-cdf7b96f714c2ffe.d b/src-tauri/html_scraper/target/owl/debug/deps/phf_shared-cdf7b96f714c2ffe.d new file mode 100644 index 0000000..7045543 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/phf_shared-cdf7b96f714c2ffe.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-cdf7b96f714c2ffe.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-cdf7b96f714c2ffe.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/phf_shared-cdf7b96f714c2ffe.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.10.0/src/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/phf_shared-d820095d9f30a958.d b/src-tauri/html_scraper/target/owl/debug/deps/phf_shared-d820095d9f30a958.d new file mode 100644 index 0000000..ea08a34 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/phf_shared-d820095d9f30a958.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-d820095d9f30a958.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/phf_shared-d820095d9f30a958.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.10.0/src/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/phf_shared-d8d2ac53d54b5ecf.d b/src-tauri/html_scraper/target/owl/debug/deps/phf_shared-d8d2ac53d54b5ecf.d new file mode 100644 index 0000000..e15f97e --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/phf_shared-d8d2ac53d54b5ecf.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libphf_shared-d8d2ac53d54b5ecf.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/phf_shared-d8d2ac53d54b5ecf.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.11.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.11.3/src/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/ppv_lite86-152841d868a1fbc8.d b/src-tauri/html_scraper/target/owl/debug/deps/ppv_lite86-152841d868a1fbc8.d new file mode 100644 index 0000000..348e10f --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/ppv_lite86-152841d868a1fbc8.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libppv_lite86-152841d868a1fbc8.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/soft.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/types.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/generic.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libppv_lite86-152841d868a1fbc8.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/soft.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/types.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/generic.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/ppv_lite86-152841d868a1fbc8.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/soft.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/types.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/generic.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/soft.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/types.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/generic.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/precomputed_hash-8ff83f9112c5d0ff.d b/src-tauri/html_scraper/target/owl/debug/deps/precomputed_hash-8ff83f9112c5d0ff.d new file mode 100644 index 0000000..cd1fb26 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/precomputed_hash-8ff83f9112c5d0ff.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libprecomputed_hash-8ff83f9112c5d0ff.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/precomputed-hash-0.1.1/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/precomputed_hash-8ff83f9112c5d0ff.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/precomputed-hash-0.1.1/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/precomputed-hash-0.1.1/src/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/proc_macro2-291ed4ead1b38229.d b/src-tauri/html_scraper/target/owl/debug/deps/proc_macro2-291ed4ead1b38229.d new file mode 100644 index 0000000..239b31d --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/proc_macro2-291ed4ead1b38229.d @@ -0,0 +1,15 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libproc_macro2-291ed4ead1b38229.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/marker.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/parse.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/probe.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/rcvec.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/detection.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/fallback.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/extra.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/wrapper.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libproc_macro2-291ed4ead1b38229.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/marker.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/parse.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/probe.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/rcvec.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/detection.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/fallback.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/extra.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/wrapper.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/proc_macro2-291ed4ead1b38229.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/marker.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/parse.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/probe.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/rcvec.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/detection.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/fallback.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/extra.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/wrapper.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/marker.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/parse.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/probe.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/rcvec.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/detection.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/fallback.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/extra.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/wrapper.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/quote-e142a560d591b9f6.d b/src-tauri/html_scraper/target/owl/debug/deps/quote-e142a560d591b9f6.d new file mode 100644 index 0000000..c5935d6 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/quote-e142a560d591b9f6.d @@ -0,0 +1,13 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libquote-e142a560d591b9f6.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/format.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/ident_fragment.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/to_tokens.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/runtime.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/spanned.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libquote-e142a560d591b9f6.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/format.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/ident_fragment.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/to_tokens.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/runtime.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/spanned.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/quote-e142a560d591b9f6.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/format.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/ident_fragment.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/to_tokens.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/runtime.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/spanned.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/ext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/format.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/ident_fragment.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/to_tokens.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/runtime.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/spanned.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/rand-ab5ef89d506a41da.d b/src-tauri/html_scraper/target/owl/debug/deps/rand-ab5ef89d506a41da.d new file mode 100644 index 0000000..8ecd4f4 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/rand-ab5ef89d506a41da.d @@ -0,0 +1,31 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/librand-ab5ef89d506a41da.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/bernoulli.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/distribution.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/float.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/integer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/other.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted_index.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/prelude.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rng.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/read.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/reseeding.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/xoshiro256plusplus.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/small.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/std.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/thread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/index.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/librand-ab5ef89d506a41da.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/bernoulli.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/distribution.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/float.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/integer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/other.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted_index.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/prelude.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rng.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/read.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/reseeding.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/xoshiro256plusplus.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/small.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/std.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/thread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/index.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/rand-ab5ef89d506a41da.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/bernoulli.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/distribution.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/float.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/integer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/other.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted_index.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/prelude.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rng.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/read.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/reseeding.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/xoshiro256plusplus.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/small.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/std.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/thread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/index.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/bernoulli.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/distribution.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/float.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/integer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/other.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/slice.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/utils.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted_index.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/prelude.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rng.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/read.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/reseeding.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mock.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/xoshiro256plusplus.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/small.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/std.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/thread.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/index.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/rand_chacha-c8d61b1a796d881d.d b/src-tauri/html_scraper/target/owl/debug/deps/rand_chacha-c8d61b1a796d881d.d new file mode 100644 index 0000000..a4f157b --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/rand_chacha-c8d61b1a796d881d.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/librand_chacha-c8d61b1a796d881d.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/chacha.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/guts.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/librand_chacha-c8d61b1a796d881d.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/chacha.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/guts.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/rand_chacha-c8d61b1a796d881d.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/chacha.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/guts.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/chacha.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/guts.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/rand_core-f3a8d6f0864acf19.d b/src-tauri/html_scraper/target/owl/debug/deps/rand_core-f3a8d6f0864acf19.d new file mode 100644 index 0000000..8212eaa --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/rand_core-f3a8d6f0864acf19.d @@ -0,0 +1,12 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/librand_core-f3a8d6f0864acf19.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/block.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/le.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/os.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/librand_core-f3a8d6f0864acf19.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/block.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/le.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/os.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/rand_core-f3a8d6f0864acf19.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/block.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/le.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/os.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/block.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/impls.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/le.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/os.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/regex-a4ec923d1ef1e9a6.d b/src-tauri/html_scraper/target/owl/debug/deps/regex-a4ec923d1ef1e9a6.d new file mode 100644 index 0000000..9d21700 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/regex-a4ec923d1ef1e9a6.d @@ -0,0 +1,15 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libregex-a4ec923d1ef1e9a6.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/builders.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/bytes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/find_byte.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/regex/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/regex/bytes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/regex/string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/regexset/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/regexset/bytes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/regexset/string.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/regex-a4ec923d1ef1e9a6.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/builders.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/bytes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/find_byte.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/regex/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/regex/bytes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/regex/string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/regexset/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/regexset/bytes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/regexset/string.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/builders.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/bytes.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/find_byte.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/regex/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/regex/bytes.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/regex/string.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/regexset/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/regexset/bytes.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.3/src/regexset/string.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/regex_automata-a19565a0024fd174.d b/src-tauri/html_scraper/target/owl/debug/deps/regex_automata-a19565a0024fd174.d new file mode 100644 index 0000000..814aefd --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/regex_automata-a19565a0024fd174.d @@ -0,0 +1,63 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libregex_automata-a19565a0024fd174.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/dfa/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/dfa/onepass.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/dfa/remapper.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/hybrid/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/hybrid/dfa.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/hybrid/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/hybrid/id.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/hybrid/regex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/hybrid/search.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/limited.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/literal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/regex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/reverse_inner.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/stopat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/strategy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/wrappers.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/backtrack.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/compiler.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/literal_trie.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/nfa.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/pikevm.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/range_trie.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/alphabet.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/captures.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/escape.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/interpolate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/lazy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/look.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/pool.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/prefilter/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/prefilter/aho_corasick.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/prefilter/byteset.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/prefilter/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/prefilter/memmem.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/prefilter/teddy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/primitives.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/start.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/syntax.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/wire.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/determinize/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/determinize/state.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/empty.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/int.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/search.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/sparse_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/unicode_data/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/utf8.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/regex_automata-a19565a0024fd174.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/dfa/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/dfa/onepass.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/dfa/remapper.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/hybrid/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/hybrid/dfa.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/hybrid/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/hybrid/id.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/hybrid/regex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/hybrid/search.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/limited.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/literal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/regex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/reverse_inner.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/stopat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/strategy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/wrappers.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/backtrack.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/compiler.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/literal_trie.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/nfa.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/pikevm.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/range_trie.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/alphabet.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/captures.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/escape.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/interpolate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/lazy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/look.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/pool.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/prefilter/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/prefilter/aho_corasick.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/prefilter/byteset.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/prefilter/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/prefilter/memmem.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/prefilter/teddy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/primitives.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/start.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/syntax.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/wire.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/determinize/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/determinize/state.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/empty.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/int.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/search.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/sparse_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/unicode_data/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/utf8.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/dfa/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/dfa/onepass.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/dfa/remapper.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/hybrid/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/hybrid/dfa.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/hybrid/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/hybrid/id.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/hybrid/regex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/hybrid/search.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/limited.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/literal.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/regex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/reverse_inner.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/stopat.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/strategy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/meta/wrappers.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/backtrack.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/builder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/compiler.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/literal_trie.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/nfa.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/pikevm.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/nfa/thompson/range_trie.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/alphabet.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/captures.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/escape.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/interpolate.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/iter.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/lazy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/look.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/pool.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/prefilter/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/prefilter/aho_corasick.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/prefilter/byteset.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/prefilter/memchr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/prefilter/memmem.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/prefilter/teddy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/primitives.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/start.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/syntax.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/wire.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/determinize/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/determinize/state.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/empty.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/int.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/memchr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/search.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/sparse_set.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/unicode_data/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.11/src/util/utf8.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/regex_syntax-64f543cc93457e20.d b/src-tauri/html_scraper/target/owl/debug/deps/regex_syntax-64f543cc93457e20.d new file mode 100644 index 0000000..f008634 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/regex_syntax-64f543cc93457e20.d @@ -0,0 +1,35 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libregex_syntax-64f543cc93457e20.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/ast/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/ast/parse.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/ast/print.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/ast/visitor.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/debug.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/either.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/hir/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/hir/interval.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/hir/literal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/hir/print.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/hir/translate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/hir/visitor.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/rank.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/age.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/case_folding_simple.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/general_category.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/grapheme_cluster_break.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/perl_word.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/property_bool.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/property_names.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/property_values.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/script.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/script_extension.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/sentence_break.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/word_break.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/utf8.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/regex_syntax-64f543cc93457e20.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/ast/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/ast/parse.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/ast/print.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/ast/visitor.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/debug.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/either.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/hir/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/hir/interval.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/hir/literal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/hir/print.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/hir/translate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/hir/visitor.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/rank.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/age.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/case_folding_simple.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/general_category.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/grapheme_cluster_break.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/perl_word.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/property_bool.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/property_names.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/property_values.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/script.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/script_extension.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/sentence_break.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/word_break.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/utf8.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/ast/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/ast/parse.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/ast/print.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/ast/visitor.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/debug.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/either.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/hir/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/hir/interval.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/hir/literal.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/hir/print.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/hir/translate.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/hir/visitor.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/parser.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/rank.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/age.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/case_folding_simple.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/general_category.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/grapheme_cluster_break.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/perl_word.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/property_bool.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/property_names.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/property_values.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/script.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/script_extension.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/sentence_break.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/unicode_tables/word_break.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.6/src/utf8.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/scopeguard-c08493d5b2a6fcb7.d b/src-tauri/html_scraper/target/owl/debug/deps/scopeguard-c08493d5b2a6fcb7.d new file mode 100644 index 0000000..344b487 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/scopeguard-c08493d5b2a6fcb7.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libscopeguard-c08493d5b2a6fcb7.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/scopeguard-c08493d5b2a6fcb7.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/scraper-97a3ebea50003e71.d b/src-tauri/html_scraper/target/owl/debug/deps/scraper-97a3ebea50003e71.d new file mode 100644 index 0000000..c0c843a --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/scraper-97a3ebea50003e71.d @@ -0,0 +1,17 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libscraper-97a3ebea50003e71.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/element_ref/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/element_ref/element.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/element_ref/serializable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/error/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/html/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/html/serializable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/html/tree_sink.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/node.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/node/serializable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/selectable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/selector.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/scraper-97a3ebea50003e71.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/element_ref/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/element_ref/element.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/element_ref/serializable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/error/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/html/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/html/serializable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/html/tree_sink.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/node.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/node/serializable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/selectable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/selector.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/element_ref/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/element_ref/element.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/element_ref/serializable.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/error/utils.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/html/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/html/serializable.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/html/tree_sink.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/node.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/node/serializable.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/selectable.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/selector.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/selectors-4df59249114547d8.d b/src-tauri/html_scraper/target/owl/debug/deps/selectors-4df59249114547d8.d new file mode 100644 index 0000000..cac78cf --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/selectors-4df59249114547d8.d @@ -0,0 +1,18 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libselectors-4df59249114547d8.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/attr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/bloom.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/context.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/matching.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/nth_index_cache.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/sink.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/tree.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/visitor.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/selectors-ef7a1a7cb6ce8753/out/ascii_case_insensitive_html_attributes.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/selectors-4df59249114547d8.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/attr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/bloom.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/context.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/matching.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/nth_index_cache.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/sink.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/tree.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/visitor.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/selectors-ef7a1a7cb6ce8753/out/ascii_case_insensitive_html_attributes.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/attr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/bloom.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/builder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/context.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/matching.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/nth_index_cache.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/parser.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/sink.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/tree.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/visitor.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/selectors-ef7a1a7cb6ce8753/out/ascii_case_insensitive_html_attributes.rs: + +# env-dep:OUT_DIR=/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/selectors-ef7a1a7cb6ce8753/out diff --git a/src-tauri/html_scraper/target/owl/debug/deps/serde-9af645a775cf9f01.d b/src-tauri/html_scraper/target/owl/debug/deps/serde-9af645a775cf9f01.d new file mode 100644 index 0000000..88504f5 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/serde-9af645a775cf9f01.d @@ -0,0 +1,12 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libserde-9af645a775cf9f01.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.227/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.227/src/integer128.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.227/src/private/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.227/src/private/de.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.227/src/private/ser.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/serde-36ae8a7a22049ef5/out/private.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/serde-9af645a775cf9f01.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.227/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.227/src/integer128.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.227/src/private/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.227/src/private/de.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.227/src/private/ser.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/serde-36ae8a7a22049ef5/out/private.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.227/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.227/src/integer128.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.227/src/private/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.227/src/private/de.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.227/src/private/ser.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/serde-36ae8a7a22049ef5/out/private.rs: + +# env-dep:OUT_DIR=/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/serde-36ae8a7a22049ef5/out diff --git a/src-tauri/html_scraper/target/owl/debug/deps/serde_core-d96f7512d0867ca5.d b/src-tauri/html_scraper/target/owl/debug/deps/serde_core-d96f7512d0867ca5.d new file mode 100644 index 0000000..a421fea --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/serde_core-d96f7512d0867ca5.d @@ -0,0 +1,25 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libserde_core-d96f7512d0867ca5.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/crate_root.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/de/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/de/value.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/de/ignored_any.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/de/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/ser/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/ser/fmt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/ser/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/ser/impossible.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/format.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/private/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/private/content.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/private/seed.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/private/doc.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/private/size_hint.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/private/string.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/serde_core-42463c873814e1da/out/private.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/serde_core-d96f7512d0867ca5.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/crate_root.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/de/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/de/value.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/de/ignored_any.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/de/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/ser/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/ser/fmt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/ser/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/ser/impossible.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/format.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/private/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/private/content.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/private/seed.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/private/doc.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/private/size_hint.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/private/string.rs /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/serde_core-42463c873814e1da/out/private.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/crate_root.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/de/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/de/value.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/de/ignored_any.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/de/impls.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/ser/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/ser/fmt.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/ser/impls.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/ser/impossible.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/format.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/private/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/private/content.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/private/seed.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/private/doc.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/private/size_hint.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.227/src/private/string.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/serde_core-42463c873814e1da/out/private.rs: + +# env-dep:OUT_DIR=/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/build/serde_core-42463c873814e1da/out diff --git a/src-tauri/html_scraper/target/owl/debug/deps/servo_arc-0740b3386ca058d0.d b/src-tauri/html_scraper/target/owl/debug/deps/servo_arc-0740b3386ca058d0.d new file mode 100644 index 0000000..f8b8a61 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/servo_arc-0740b3386ca058d0.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libservo_arc-0740b3386ca058d0.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/servo_arc-0.3.0/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/servo_arc-0740b3386ca058d0.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/servo_arc-0.3.0/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/servo_arc-0.3.0/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/siphasher-1fcf29601dcb3ded.d b/src-tauri/html_scraper/target/owl/debug/deps/siphasher-1fcf29601dcb3ded.d new file mode 100644 index 0000000..90fa18f --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/siphasher-1fcf29601dcb3ded.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-1fcf29601dcb3ded.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/sip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/sip128.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/../README.md + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-1fcf29601dcb3ded.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/sip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/sip128.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/../README.md + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/siphasher-1fcf29601dcb3ded.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/sip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/sip128.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/../README.md + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/sip.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/sip128.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/../README.md: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/siphasher-3fafa0cf348dee4c.d b/src-tauri/html_scraper/target/owl/debug/deps/siphasher-3fafa0cf348dee4c.d new file mode 100644 index 0000000..cdd3254 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/siphasher-3fafa0cf348dee4c.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-3fafa0cf348dee4c.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip128.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/siphasher-3fafa0cf348dee4c.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip128.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip128.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/siphasher-d9bc522279c35d09.d b/src-tauri/html_scraper/target/owl/debug/deps/siphasher-d9bc522279c35d09.d new file mode 100644 index 0000000..197544a --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/siphasher-d9bc522279c35d09.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-d9bc522279c35d09.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/sip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/sip128.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/../README.md + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/siphasher-d9bc522279c35d09.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/sip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/sip128.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/../README.md + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/sip.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/sip128.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/../README.md: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/siphasher-e9d3e929006ac3ab.d b/src-tauri/html_scraper/target/owl/debug/deps/siphasher-e9d3e929006ac3ab.d new file mode 100644 index 0000000..97e8d67 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/siphasher-e9d3e929006ac3ab.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-e9d3e929006ac3ab.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip128.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libsiphasher-e9d3e929006ac3ab.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip128.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/siphasher-e9d3e929006ac3ab.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip128.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip128.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/smallvec-62042a0d847875ed.d b/src-tauri/html_scraper/target/owl/debug/deps/smallvec-62042a0d847875ed.d new file mode 100644 index 0000000..3c88af1 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/smallvec-62042a0d847875ed.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libsmallvec-62042a0d847875ed.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/smallvec-62042a0d847875ed.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/stable_deref_trait-0337c135e7a2ce00.d b/src-tauri/html_scraper/target/owl/debug/deps/stable_deref_trait-0337c135e7a2ce00.d new file mode 100644 index 0000000..4294c95 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/stable_deref_trait-0337c135e7a2ce00.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libstable_deref_trait-0337c135e7a2ce00.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/stable_deref_trait-0337c135e7a2ce00.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.0/src/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/string_cache-686a5974b6d8d8f0.d b/src-tauri/html_scraper/target/owl/debug/deps/string_cache-686a5974b6d8d8f0.d new file mode 100644 index 0000000..c1d70a8 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/string_cache-686a5974b6d8d8f0.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libstring_cache-686a5974b6d8d8f0.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/atom.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/dynamic_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/static_sets.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/trivial_impls.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/string_cache-686a5974b6d8d8f0.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/atom.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/dynamic_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/static_sets.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/trivial_impls.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/atom.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/dynamic_set.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/static_sets.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/trivial_impls.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/string_cache_codegen-a13c66493fd49489.d b/src-tauri/html_scraper/target/owl/debug/deps/string_cache_codegen-a13c66493fd49489.d new file mode 100644 index 0000000..2b0d563 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/string_cache_codegen-a13c66493fd49489.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libstring_cache_codegen-a13c66493fd49489.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache_codegen-0.5.4/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libstring_cache_codegen-a13c66493fd49489.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache_codegen-0.5.4/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/string_cache_codegen-a13c66493fd49489.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache_codegen-0.5.4/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache_codegen-0.5.4/lib.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/syn-c542fcde6b325b88.d b/src-tauri/html_scraper/target/owl/debug/deps/syn-c542fcde6b325b88.d new file mode 100644 index 0000000..bf340f0 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/syn-c542fcde6b325b88.d @@ -0,0 +1,58 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libsyn-c542fcde6b325b88.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/group.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/token.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/attr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/bigint.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/buffer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/classify.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/custom_keyword.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/custom_punctuation.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/derive.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/drops.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/expr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/file.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/fixup.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/generics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/ident.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/item.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/lifetime.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/lit.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/lookahead.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/mac.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/meta.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/op.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/parse.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/discouraged.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/parse_macro_input.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/parse_quote.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/pat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/path.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/precedence.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/print.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/punctuated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/restriction.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/sealed.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/span.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/spanned.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/stmt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/thread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/tt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/ty.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/verbatim.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/whitespace.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/export.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/gen/fold.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/gen/clone.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/gen/debug.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/gen/eq.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/gen/hash.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libsyn-c542fcde6b325b88.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/group.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/token.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/attr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/bigint.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/buffer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/classify.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/custom_keyword.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/custom_punctuation.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/derive.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/drops.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/expr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/file.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/fixup.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/generics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/ident.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/item.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/lifetime.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/lit.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/lookahead.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/mac.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/meta.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/op.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/parse.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/discouraged.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/parse_macro_input.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/parse_quote.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/pat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/path.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/precedence.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/print.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/punctuated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/restriction.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/sealed.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/span.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/spanned.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/stmt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/thread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/tt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/ty.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/verbatim.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/whitespace.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/export.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/gen/fold.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/gen/clone.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/gen/debug.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/gen/eq.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/gen/hash.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/syn-c542fcde6b325b88.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/group.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/token.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/attr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/bigint.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/buffer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/classify.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/custom_keyword.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/custom_punctuation.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/derive.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/drops.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/expr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/file.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/fixup.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/generics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/ident.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/item.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/lifetime.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/lit.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/lookahead.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/mac.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/meta.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/op.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/parse.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/discouraged.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/parse_macro_input.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/parse_quote.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/pat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/path.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/precedence.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/print.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/punctuated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/restriction.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/sealed.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/span.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/spanned.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/stmt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/thread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/tt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/ty.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/verbatim.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/whitespace.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/export.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/gen/fold.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/gen/clone.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/gen/debug.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/gen/eq.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/gen/hash.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/group.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/token.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/attr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/bigint.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/buffer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/classify.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/custom_keyword.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/custom_punctuation.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/data.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/derive.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/drops.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/expr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/ext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/file.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/fixup.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/generics.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/ident.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/item.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/lifetime.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/lit.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/lookahead.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/mac.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/meta.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/op.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/parse.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/discouraged.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/parse_macro_input.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/parse_quote.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/pat.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/path.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/precedence.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/print.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/punctuated.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/restriction.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/sealed.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/span.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/spanned.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/stmt.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/thread.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/tt.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/ty.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/verbatim.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/whitespace.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/export.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/gen/fold.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/gen/clone.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/gen/debug.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/gen/eq.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.106/src/gen/hash.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/tendril-117c4ad9dedd98e9.d b/src-tauri/html_scraper/target/owl/debug/deps/tendril-117c4ad9dedd98e9.d new file mode 100644 index 0000000..d7e3b82 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/tendril-117c4ad9dedd98e9.d @@ -0,0 +1,11 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libtendril-117c4ad9dedd98e9.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/fmt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/buf32.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/tendril.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/utf8_decode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/util.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/tendril-117c4ad9dedd98e9.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/fmt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/buf32.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/tendril.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/utf8_decode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/util.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/fmt.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/stream.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/buf32.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/tendril.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/utf8_decode.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/util.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/thiserror-5a2ce00f8f4a9ca3.d b/src-tauri/html_scraper/target/owl/debug/deps/thiserror-5a2ce00f8f4a9ca3.d new file mode 100644 index 0000000..906c078 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/thiserror-5a2ce00f8f4a9ca3.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libthiserror-5a2ce00f8f4a9ca3.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/provide.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/thiserror-5a2ce00f8f4a9ca3.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/provide.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/provide.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/thiserror_impl-d4e25a678f0789c5.d b/src-tauri/html_scraper/target/owl/debug/deps/thiserror_impl-d4e25a678f0789c5.d new file mode 100644 index 0000000..519c24f --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/thiserror_impl-d4e25a678f0789c5.d @@ -0,0 +1,14 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libthiserror_impl-d4e25a678f0789c5.dylib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/thiserror_impl-d4e25a678f0789c5.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/unicode_ident-b558ea2496fc600b.d b/src-tauri/html_scraper/target/owl/debug/deps/unicode_ident-b558ea2496fc600b.d new file mode 100644 index 0000000..a9f8776 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/unicode_ident-b558ea2496fc600b.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libunicode_ident-b558ea2496fc600b.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.19/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.19/src/tables.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libunicode_ident-b558ea2496fc600b.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.19/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.19/src/tables.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/unicode_ident-b558ea2496fc600b.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.19/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.19/src/tables.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.19/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.19/src/tables.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/unicode_width-20fcc90c7c561b5e.d b/src-tauri/html_scraper/target/owl/debug/deps/unicode_width-20fcc90c7c561b5e.d new file mode 100644 index 0000000..2ed5def --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/unicode_width-20fcc90c7c561b5e.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libunicode_width-20fcc90c7c561b5e.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.1/src/tables.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/unicode_width-20fcc90c7c561b5e.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.1/src/tables.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.1/src/tables.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/utf8-cdf51886c64f6cca.d b/src-tauri/html_scraper/target/owl/debug/deps/utf8-cdf51886c64f6cca.d new file mode 100644 index 0000000..68f5f4a --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/utf8-cdf51886c64f6cca.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libutf8-cdf51886c64f6cca.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/lossy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/read.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/utf8-cdf51886c64f6cca.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/lossy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/read.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/lossy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/read.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/version_check-bc29451f0514ce26.d b/src-tauri/html_scraper/target/owl/debug/deps/version_check-bc29451f0514ce26.d new file mode 100644 index 0000000..a954b0e --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/version_check-bc29451f0514ce26.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libversion_check-bc29451f0514ce26.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libversion_check-bc29451f0514ce26.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/version_check-bc29451f0514ce26.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs: diff --git a/src-tauri/html_scraper/target/owl/debug/deps/zerocopy-01ceee95be2bda4d.d b/src-tauri/html_scraper/target/owl/debug/deps/zerocopy-01ceee95be2bda4d.d new file mode 100644 index 0000000..75778d5 --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/zerocopy-01ceee95be2bda4d.d @@ -0,0 +1,26 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libzerocopy-01ceee95be2bda4d.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/util/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/util/macro_util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/byte_slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/byteorder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/deprecated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/doctests.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/layout.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/inner.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/invariant.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/ptr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/transmute.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/ref.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/split_at.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/wrappers.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/zerocopy-01ceee95be2bda4d.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/util/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/util/macro_util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/byte_slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/byteorder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/deprecated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/doctests.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/layout.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/inner.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/invariant.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/ptr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/transmute.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/ref.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/split_at.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/wrappers.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/util/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/util/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/util/macro_util.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/byte_slice.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/byteorder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/deprecated.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/doctests.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/impls.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/layout.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/inner.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/invariant.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/ptr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/transmute.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/ref.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/split_at.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/wrappers.rs: + +# env-dep:CARGO_PKG_VERSION=0.8.27 diff --git a/src-tauri/html_scraper/target/owl/debug/deps/zerocopy-20a5e624ae883db2.d b/src-tauri/html_scraper/target/owl/debug/deps/zerocopy-20a5e624ae883db2.d new file mode 100644 index 0000000..aff8f6a --- /dev/null +++ b/src-tauri/html_scraper/target/owl/debug/deps/zerocopy-20a5e624ae883db2.d @@ -0,0 +1,28 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libzerocopy-20a5e624ae883db2.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/util/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/util/macro_util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/byte_slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/byteorder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/deprecated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/doctests.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/layout.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/inner.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/invariant.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/ptr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/transmute.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/ref.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/split_at.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/wrappers.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/libzerocopy-20a5e624ae883db2.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/util/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/util/macro_util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/byte_slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/byteorder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/deprecated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/doctests.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/layout.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/inner.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/invariant.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/ptr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/transmute.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/ref.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/split_at.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/wrappers.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/target/owl/debug/deps/zerocopy-20a5e624ae883db2.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/util/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/util/macro_util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/byte_slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/byteorder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/deprecated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/doctests.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/layout.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/inner.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/invariant.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/ptr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/transmute.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/ref.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/split_at.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/wrappers.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/util/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/util/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/util/macro_util.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/byte_slice.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/byteorder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/deprecated.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/doctests.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/impls.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/layout.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/inner.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/invariant.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/ptr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/pointer/transmute.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/ref.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/split_at.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/wrappers.rs: + +# env-dep:CARGO_PKG_VERSION=0.8.27 diff --git a/src-tauri/icons/128x128.png b/src-tauri/icons/128x128.png new file mode 100644 index 0000000..6be5e50 Binary files /dev/null and b/src-tauri/icons/128x128.png differ diff --git a/src-tauri/icons/128x128@2x.png b/src-tauri/icons/128x128@2x.png new file mode 100644 index 0000000..e81bece Binary files /dev/null and b/src-tauri/icons/128x128@2x.png differ diff --git a/src-tauri/icons/32x32.png b/src-tauri/icons/32x32.png new file mode 100644 index 0000000..a437dd5 Binary files /dev/null and b/src-tauri/icons/32x32.png differ diff --git a/src-tauri/icons/Square107x107Logo.png b/src-tauri/icons/Square107x107Logo.png new file mode 100644 index 0000000..0ca4f27 Binary files /dev/null and b/src-tauri/icons/Square107x107Logo.png differ diff --git a/src-tauri/icons/Square142x142Logo.png b/src-tauri/icons/Square142x142Logo.png new file mode 100644 index 0000000..b81f820 Binary files /dev/null and b/src-tauri/icons/Square142x142Logo.png differ diff --git a/src-tauri/icons/Square150x150Logo.png b/src-tauri/icons/Square150x150Logo.png new file mode 100644 index 0000000..624c7bf Binary files /dev/null and b/src-tauri/icons/Square150x150Logo.png differ diff --git a/src-tauri/icons/Square284x284Logo.png b/src-tauri/icons/Square284x284Logo.png new file mode 100644 index 0000000..c021d2b Binary files /dev/null and b/src-tauri/icons/Square284x284Logo.png differ diff --git a/src-tauri/icons/Square30x30Logo.png b/src-tauri/icons/Square30x30Logo.png new file mode 100644 index 0000000..6219700 Binary files /dev/null and b/src-tauri/icons/Square30x30Logo.png differ diff --git a/src-tauri/icons/Square310x310Logo.png b/src-tauri/icons/Square310x310Logo.png new file mode 100644 index 0000000..f9bc048 Binary files /dev/null and b/src-tauri/icons/Square310x310Logo.png differ diff --git a/src-tauri/icons/Square44x44Logo.png b/src-tauri/icons/Square44x44Logo.png new file mode 100644 index 0000000..d5fbfb2 Binary files /dev/null and b/src-tauri/icons/Square44x44Logo.png differ diff --git a/src-tauri/icons/Square71x71Logo.png b/src-tauri/icons/Square71x71Logo.png new file mode 100644 index 0000000..63440d7 Binary files /dev/null and b/src-tauri/icons/Square71x71Logo.png differ diff --git a/src-tauri/icons/Square89x89Logo.png b/src-tauri/icons/Square89x89Logo.png new file mode 100644 index 0000000..f3f705a Binary files /dev/null and b/src-tauri/icons/Square89x89Logo.png differ diff --git a/src-tauri/icons/StoreLogo.png b/src-tauri/icons/StoreLogo.png new file mode 100644 index 0000000..4556388 Binary files /dev/null and b/src-tauri/icons/StoreLogo.png differ diff --git a/src-tauri/icons/icon.icns b/src-tauri/icons/icon.icns new file mode 100644 index 0000000..12a5bce Binary files /dev/null and b/src-tauri/icons/icon.icns differ diff --git a/src-tauri/icons/icon.ico b/src-tauri/icons/icon.ico new file mode 100644 index 0000000..b3636e4 Binary files /dev/null and b/src-tauri/icons/icon.ico differ diff --git a/src-tauri/icons/icon.png b/src-tauri/icons/icon.png new file mode 100644 index 0000000..e1cd261 Binary files /dev/null and b/src-tauri/icons/icon.png differ diff --git a/src-tauri/src/config.rs b/src-tauri/src/config.rs new file mode 100644 index 0000000..61e2aa1 --- /dev/null +++ b/src-tauri/src/config.rs @@ -0,0 +1,84 @@ +use serde::{Deserialize, Serialize}; +use std::fs; +use std::path::PathBuf; + +#[derive(Debug, Serialize, Deserialize, Clone)] +pub struct Config { + pub database_url: String, +} + +impl Config { + /// 获取配置文件路径:~/.config/tms_tools/config.toml + /// 统一使用 ~/.config 目录,跨平台一致 + pub fn config_path() -> Result { + let home_dir = dirs::home_dir() + .ok_or_else(|| "无法获取用户主目录".to_string())?; + let config_dir = home_dir.join(".config"); + let app_config_dir = config_dir.join("tms_tools"); + let config_file = app_config_dir.join("config.toml"); + Ok(config_file) + } + + /// 从配置文件加载配置,如果不存在或解析失败则返回错误 + pub fn load() -> Result { + let config_path = Self::config_path()?; + + if !config_path.exists() { + return Err(format!( + "配置文件不存在: {}\n请创建配置文件,例如:\n\n[config]\ndatabase_url = \"postgres://username:password@host:port/database\"", + config_path.display() + )); + } + + let content = fs::read_to_string(&config_path) + .map_err(|e| format!("读取配置文件失败: {}", e))?; + + let config: Config = toml::from_str(&content) + .map_err(|e| format!("解析配置文件失败: {}", e))?; + + if config.database_url.is_empty() { + return Err("配置文件中的 database_url 不能为空".to_string()); + } + + Ok(config) + } + + /// 确保配置目录存在 + pub fn ensure_config_dir() -> Result<(), String> { + let config_path = Self::config_path()?; + let parent = config_path.parent() + .ok_or_else(|| "无效的配置文件路径".to_string())?; + + if !parent.exists() { + fs::create_dir_all(parent) + .map_err(|e| format!("创建配置目录失败: {}", e))?; + } + + Ok(()) + } + + /// 保存配置到文件 + pub fn save(&self) -> Result<(), String> { + Self::ensure_config_dir()?; + let config_path = Self::config_path()?; + + let content = toml::to_string_pretty(self) + .map_err(|e| format!("序列化配置失败: {}", e))?; + + fs::write(&config_path, content) + .map_err(|e| format!("写入配置文件失败: {}", e))?; + + Ok(()) + } +} + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn test_config_path() { + let path = Config::config_path(); + assert!(path.is_ok()); + } +} diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs new file mode 100644 index 0000000..b0530c0 --- /dev/null +++ b/src-tauri/src/lib.rs @@ -0,0 +1,622 @@ +mod config; + +use std::sync::Mutex; +use lazy_static::lazy_static; +use tokio_postgres::{NoTls, Error}; +use serde::Deserialize; +use std::collections::HashMap; +use scraper::{Html, Selector}; +use tms_service; +use std::time::Duration; +use tokio::time::sleep; + +/// 获取数据库连接字符串,从配置文件读取 +fn get_database_url() -> Result { + let cfg = config::Config::load()?; + Ok(cfg.database_url) +} + +lazy_static! { + static ref COOKIE_STORAGE: Mutex> = Mutex::new(None); + static ref USERNAME_STORAGE: Mutex> = Mutex::new(None); +} + +#[derive(serde::Serialize)] +struct LoginResult { + success: bool, + message: String, +} + +#[derive(Deserialize, Debug)] +struct ApiLoginResponse { + msg: String, + // a_id: i32, + // username: String, + // code: i32, +} + +#[derive(serde::Serialize, serde::Deserialize, Debug)] +struct WorkOrder { + gdid: String, + n2n: String, + messageq: String, + messagea: Option, + iscreate: i32, + isfeedback: i32, + isclose: i32, +} + +#[derive(serde::Serialize, serde::Deserialize, Debug)] +struct WorkOrderResponse { + orders: Vec, + total: i32, +} + +#[tauri::command] +async fn login(username: String, password: String) -> Result { + // First, authenticate against the external API + let client = reqwest::Client::builder().cookie_store(true).build().unwrap(); + let mut params = HashMap::new(); + params.insert("username", username.clone()); + params.insert("password", password); + + let res = client.post("https://c.baobaot.com/user/ajax_login") + .form(¶ms) + .send() + .await + .map_err(|e| format!("API请求失败: {}", e))?; + + if res.status().is_success() { + if let Some(cookie) = res.headers().get("set-cookie") { + if let Ok(cookie_str) = cookie.to_str() { + let mut storage = COOKIE_STORAGE.lock().unwrap(); + *storage = Some(cookie_str.to_string()); + } + } + + let api_response = res.json::().await.map_err(|e| format!("解析API响应失败: {}", e))?; + if api_response.msg != "登录成功" { + return Ok(LoginResult { + success: false, + message: api_response.msg, + }); + } + let mut user_storage = USERNAME_STORAGE.lock().unwrap(); + *user_storage = Some(username.clone()); + } else { + let error_text = res.text().await.unwrap_or_else(|_| "无法读取API错误响应".to_string()); + return Err(format!("API请求返回错误状态: {}", error_text)); + } + + // If API login is successful, proceed with database operations + let db_url = get_database_url()?; + let (mut client, connection) = match tokio_postgres::connect(&db_url, NoTls).await { + Ok(res) => res, + Err(e) => return Err(format!("数据库连接失败: {}", e)), + }; + + tokio::spawn(async move { + if let Err(e) = connection.await { + eprintln!("connection error: {}", e); + } + }); + + let query = format!("SELECT EXISTS (SELECT FROM pg_tables WHERE schemaname = 'public' AND tablename = '{}');", username); + let row = match client.query_one(&query, &[]).await { + Ok(row) => row, + Err(e) => return Err(format!("查询表是否存在时出错: {}", e)), + }; + + let exists: bool = row.get(0); + + if exists { + Ok(LoginResult { + success: true, + message: format!("用户 {} 登录成功", username), + }) + } else { + let create_table_query = format!( + "CREATE TABLE \"{}\" ( + id SERIAL PRIMARY KEY, + code VARCHAR(255), + time TIMESTAMP, + n2n VARCHAR(255), + q TEXT, + a TEXT, + isfeedback INTEGER DEFAULT 0, + isclose INTEGER DEFAULT 0 + )", + username + ); + match client.batch_execute(&create_table_query).await { + Ok(_) => Ok(LoginResult { + success: true, + message: format!("用户 {} 的表已创建", username), + }), + Err(e) => Err(format!("创建表时出错: {}", e)), + } + } +} + +#[tauri::command] +fn get_cookie() -> Option { + COOKIE_STORAGE.lock().unwrap().clone() +} + +#[tauri::command] +async fn get_dashboard_username() -> Result { + let cookie = COOKIE_STORAGE.lock().unwrap().clone(); + if cookie.is_none() { + return Err("未找到登录Cookie".to_string()); + } + let cookie = cookie.unwrap(); + + let client = reqwest::Client::new(); + let res = client.get("http://c.baobaot.com/admin/dashboard") + .header("Cookie", cookie) + .send() + .await + .map_err(|e| format!("请求失败: {}", e))?; + + if res.status().is_success() { + let body = res.text().await.map_err(|e| format!("读取响应失败: {}", e))?; + let document = Html::parse_document(&body); + let selector = Selector::parse("span.username").map_err(|_| "无效的选择器".to_string())?; + + if let Some(element) = document.select(&selector).next() { + let username = element.inner_html(); + Ok(username) + } else { + Err("未找到指定的元素".to_string()) + } + } else { + Err(format!("请求失败,状态码: {}", res.status())) + } +} + +#[tauri::command] +async fn get_workorders(range: String) -> Result { + let username = USERNAME_STORAGE.lock().unwrap().clone().ok_or("用户未登录".to_string())?; + let db_url = get_database_url()?; + let (mut client, connection) = tokio_postgres::connect(&db_url, NoTls) + .await + .map_err(|e| format!("数据库连接失败: {}", e))?; + + tokio::spawn(async move { + if let Err(e) = connection.await { + eprintln!("connection error: {}", e); + } + }); + + let query_string = if range == "month" { + format!( + "SELECT code, n2n, q, a, isfeedback, isclose FROM \"{}\" WHERE date_trunc('month', time AT TIME ZONE 'Asia/Shanghai') = date_trunc('month', NOW() AT TIME ZONE 'Asia/Shanghai') ORDER BY time DESC", + username + ) + } else { // Default to "today" + format!( + "SELECT code, n2n, q, a, isfeedback, isclose FROM \"{}\" WHERE time >= date_trunc('day', now() AT TIME ZONE 'Asia/Shanghai') AND time < date_trunc('day', now() AT TIME ZONE 'Asia/Shanghai') + interval '1 day' ORDER BY time DESC", + username + ) + }; + + let rows = client + .query(&query_string, &[]) + .await + .map_err(|e| format!("查询工单失败: {}", e))?; + + let orders: Vec = rows + .into_iter() + .map(|row| { + WorkOrder { + gdid: row.get(0), + n2n: row.get(1), + messageq: row.get(2), + messagea: row.get(3), + iscreate: 0, // All from DB are considered created + isfeedback: row.get(4), + isclose: row.get(5), + } + }) + .collect(); + + let total = orders.len() as i32; + + Ok(WorkOrderResponse { + orders, + total, + }) +} + + +#[tauri::command] +async fn create_ticket_command(n2p: String, massage_q: String, wx: Option, mobile: Option) -> Result { + let cookie = COOKIE_STORAGE.lock().unwrap().clone().ok_or("未找到登录Cookie")?; + tms_service::create_ticket(&cookie, &n2p, &massage_q, wx.as_deref(), mobile.as_deref()) + .await + .map_err(|e| e.to_string()) +} + +#[tauri::command] +async fn insert_workorder(code: String, n2n: String, q: String, a: String) -> Result<(), String> { + let username = USERNAME_STORAGE.lock().unwrap().clone().ok_or("用户未登录".to_string())?; + let db_url = get_database_url()?; + let (mut client, connection) = tokio_postgres::connect(&db_url, NoTls) + .await + .map_err(|e| format!("数据库连接失败: {}", e))?; + + tokio::spawn(async move { + if let Err(e) = connection.await { + eprintln!("connection error: {}", e); + } + }); + + let query = format!( + "INSERT INTO \"{}\" (code, time, n2n, q, a, isfeedback, isclose) VALUES ($1, NOW(), $2, $3, $4, 0, 0)", + username + ); + + client + .execute(&query, &[&code, &n2n, &q, &a]) + .await + .map_err(|e| format!("插入工单失败: {}", e))?; + + Ok(()) +} + +#[tauri::command] +async fn feedback_workorder(gdid: String) -> Result<(), String> { + let username = USERNAME_STORAGE.lock().unwrap().clone().ok_or("用户未登录".to_string())?; + let db_url = get_database_url()?; + let (mut client, connection) = tokio_postgres::connect(&db_url, NoTls) + .await + .map_err(|e| format!("数据库连接失败: {}", e))?; + + tokio::spawn(async move { + if let Err(e) = connection.await { + eprintln!("connection error: {}", e); + } + }); + + // 从数据库获取反馈信息 + let row = client.query_one(&format!("SELECT a FROM \"{}\" WHERE code = $1", username), &[&gdid]) + .await + .map_err(|e| format!("查询反馈信息失败: {}", e))?; + let messagea: String = row.get(0); + + // 调用远程反馈服务 + let cookie = COOKIE_STORAGE.lock().unwrap().clone().ok_or("未找到登录Cookie")?; + tms_service::feedback(&cookie, &messagea, &gdid) + .await + .map_err(|e| format!("远程反馈失败: {}", e))?; + + // 更新数据库 + let query = format!( + "UPDATE \"{}\" SET isfeedback = 1 WHERE code = $1", + username + ); + client + .execute(&query, &[&gdid]) + .await + .map_err(|e| format!("更新数据库失败: {}", e))?; + + Ok(()) +} + +#[tauri::command] +async fn feedback_today_workorders() -> Result { + let username = USERNAME_STORAGE.lock().unwrap().clone().ok_or("用户未登录".to_string())?; + let cookie = COOKIE_STORAGE.lock().unwrap().clone().ok_or("未找到登录Cookie")?; + let db_url = get_database_url()?; + let (mut client, connection) = tokio_postgres::connect(&db_url, NoTls) + .await + .map_err(|e| format!("数据库连接失败: {}", e))?; + + tokio::spawn(async move { + if let Err(e) = connection.await { + eprintln!("connection error: {}", e); + } + }); + + let query_today_unfeedbacked = format!( + "SELECT code, a FROM \"{}\" WHERE time >= date_trunc('day', now() AT TIME ZONE 'Asia/Shanghai') AND time < date_trunc('day', now() AT TIME ZONE 'Asia/Shanghai') + interval '1 day' AND isfeedback = 0", + username + ); + + let rows = client + .query(&query_today_unfeedbacked, &[]) + .await + .map_err(|e| format!("查询今日未反馈工单失败: {}", e))?; + + let mut success_count = 0; + let total_count = rows.len(); + + for row in rows { + sleep(Duration::from_millis(200)).await; + let gdid: String = row.get(0); + let messagea: String = row.get(1); + + if !messagea.is_empty() { + match tms_service::feedback(&cookie, &messagea, &gdid).await { + Ok(_) => { + let update_query = format!( + "UPDATE \"{}\" SET isfeedback = 1 WHERE code = $1", + username + ); + if client.execute(&update_query, &[&gdid]).await.is_ok() { + success_count += 1; + } + } + Err(_) => { + // Log or handle feedback error + } + } + } + } + + Ok(format!("成功反馈 {}/{} 个工单", success_count, total_count)) +} + +#[tauri::command] +async fn feedback_selected_workorders(gdids: Vec) -> Result { + let username = USERNAME_STORAGE.lock().unwrap().clone().ok_or("用户未登录".to_string())?; + let cookie = COOKIE_STORAGE.lock().unwrap().clone().ok_or("未找到登录Cookie")?; + let db_url = get_database_url()?; + let (mut client, connection) = tokio_postgres::connect(&db_url, NoTls) + .await + .map_err(|e| format!("数据库连接失败: {}", e))?; + + tokio::spawn(async move { + if let Err(e) = connection.await { + eprintln!("connection error: {}", e); + } + }); + + let mut success_count = 0; + let total_count = gdids.len(); + + for gdid in gdids { + sleep(Duration::from_millis(200)).await; + let row = client.query_one(&format!("SELECT a FROM \"{}\" WHERE code = $1", username), &[&gdid]) + .await + .map_err(|e| format!("查询反馈信息失败: {}", e))?; + let messagea: String = row.get(0); + + if !messagea.is_empty() { + match tms_service::feedback(&cookie, &messagea, &gdid).await { + Ok(_) => { + let update_query = format!( + "UPDATE \"{}\" SET isfeedback = 1 WHERE code = $1", + username + ); + if client.execute(&update_query, &[&gdid]).await.is_ok() { + success_count += 1; + } + } + Err(_) => { + // Log or handle feedback error + } + } + } + } + + Ok(format!("成功反馈 {}/{} 个工单", success_count, total_count)) +} + +#[tauri::command] +async fn close_workorder(gdid: String) -> Result<(), String> { + // Step 1: Call the remote close service + let cookie = COOKIE_STORAGE.lock().unwrap().clone().ok_or("未找到登录Cookie")?; + tms_service::close(&cookie, &gdid) + .await + .map_err(|e| format!("远程关闭失败: {}", e))?; + + // Step 2: If remote close is successful, update the local database + let username = USERNAME_STORAGE.lock().unwrap().clone().ok_or("用户未登录".to_string())?; + let db_url = get_database_url()?; + let (mut client, connection) = tokio_postgres::connect(&db_url, NoTls) + .await + .map_err(|e| format!("数据库连接失败: {}", e))?; + + tokio::spawn(async move { + if let Err(e) = connection.await { + eprintln!("connection error: {}", e); + } + }); + + let query = format!( + "UPDATE \"{}\" SET isclose = 1 WHERE code = $1", + username + ); + + client + .execute(&query, &[&gdid]) + .await + .map_err(|e| format!("关闭工单失败: {}", e))?; + + Ok(()) +} + +#[tauri::command] +async fn close_today_workorders() -> Result { + let username = USERNAME_STORAGE.lock().unwrap().clone().ok_or("用户未登录".to_string())?; + let cookie = COOKIE_STORAGE.lock().unwrap().clone().ok_or("未找到登录Cookie")?; + let db_url = get_database_url()?; + let (mut client, connection) = tokio_postgres::connect(&db_url, NoTls) + .await + .map_err(|e| format!("数据库连接失败: {}", e))?; + + tokio::spawn(async move { + if let Err(e) = connection.await { + eprintln!("connection error: {}", e); + } + }); + + let query_today_unclosed = format!( + "SELECT code FROM \"{}\" WHERE time >= date_trunc('day', now() AT TIME ZONE 'Asia/Shanghai') AND time < date_trunc('day', now() AT TIME ZONE 'Asia/Shanghai') + interval '1 day' AND isclose = 0", + username + ); + + let rows = client + .query(&query_today_unclosed, &[]) + .await + .map_err(|e| format!("查询今日未关闭工单失败: {}", e))?; + + let mut success_count = 0; + let total_count = rows.len(); + + for row in rows { + sleep(Duration::from_millis(200)).await; + let gdid: String = row.get(0); + if tms_service::close(&cookie, &gdid).await.is_ok() { + let update_query = format!( + "UPDATE \"{}\" SET isclose = 1 WHERE code = $1", + username + ); + if client.execute(&update_query, &[&gdid]).await.is_ok() { + success_count += 1; + } + } + } + + Ok(format!("成功关闭 {}/{} 个工单", success_count, total_count)) +} + +#[tauri::command] +async fn close_selected_workorders(gdids: Vec) -> Result { + let username = USERNAME_STORAGE.lock().unwrap().clone().ok_or("用户未登录".to_string())?; + let cookie = COOKIE_STORAGE.lock().unwrap().clone().ok_or("未找到登录Cookie")?; + let db_url = get_database_url()?; + let (mut client, connection) = tokio_postgres::connect(&db_url, NoTls) + .await + .map_err(|e| format!("数据库连接失败: {}", e))?; + + tokio::spawn(async move { + if let Err(e) = connection.await { + eprintln!("connection error: {}", e); + } + }); + + let mut success_count = 0; + let total_count = gdids.len(); + + for gdid in gdids { + sleep(Duration::from_millis(200)).await; + if tms_service::close(&cookie, &gdid).await.is_ok() { + let update_query = format!( + "UPDATE \"{}\" SET isclose = 1 WHERE code = $1", + username + ); + if client.execute(&update_query, &[&gdid]).await.is_ok() { + success_count += 1; + } + } + } + + Ok(format!("成功关闭 {}/{} 个工单", success_count, total_count)) +} + +#[tauri::command] +async fn feedback_and_close_today_workorders() -> Result { + let username = USERNAME_STORAGE.lock().unwrap().clone().ok_or("用户未登录".to_string())?; + let cookie = COOKIE_STORAGE.lock().unwrap().clone().ok_or("未找到登录Cookie")?; + let db_url = get_database_url()?; + let (mut client, connection) = tokio_postgres::connect(&db_url, NoTls) + .await + .map_err(|e| format!("数据库连接失败: {}", e))?; + + tokio::spawn(async move { + if let Err(e) = connection.await { + eprintln!("connection error: {}", e); + } + }); + + let query_today_unprocessed = format!( + "SELECT code, a FROM \"{}\" WHERE time >= date_trunc('day', now() AT TIME ZONE 'Asia/Shanghai') AND time < date_trunc('day', now() AT TIME ZONE 'Asia/Shanghai') + interval '1 day' AND (isfeedback = 0 OR isclose = 0)", + username + ); + + let rows = client + .query(&query_today_unprocessed, &[]) + .await + .map_err(|e| format!("查询今日未处理工单失败: {}", e))?; + + let mut feedback_success_count = 0; + let mut close_success_count = 0; + let total_count = rows.len(); + + for row in rows { + sleep(Duration::from_millis(200)).await; + let gdid: String = row.get(0); + let messagea: Option = row.get(1); + + // Feedback + if let Some(msg) = messagea { + if !msg.is_empty() { + if tms_service::feedback(&cookie, &msg, &gdid).await.is_ok() { + let update_feedback_query = format!( + "UPDATE \"{}\" SET isfeedback = 1 WHERE code = $1", + username + ); + if client.execute(&update_feedback_query, &[&gdid]).await.is_ok() { + feedback_success_count += 1; + } + } + } + } + + // Close + if tms_service::close(&cookie, &gdid).await.is_ok() { + let update_close_query = format!( + "UPDATE \"{}\" SET isclose = 1 WHERE code = $1", + username + ); + if client.execute(&update_close_query, &[&gdid]).await.is_ok() { + close_success_count += 1; + } + } + } + + Ok(format!("成功反馈 {}/{} 个, 成功关闭 {}/{} 个", feedback_success_count, total_count, close_success_count, total_count)) +} + + +#[cfg_attr(mobile, tauri::mobile_entry_point)] +pub fn run() { + // 首先验证配置 + if let Err(e) = config::Config::load() { + // 配置加载失败,显示错误弹窗并退出 + eprintln!("配置错误: {}", e); + + // 使用 rfd 显示错误弹窗(阻塞模式) + rfd::MessageDialog::new() + .set_title("配置错误") + .set_description(&format!("{}\n\n软件将关闭。", e)) + .set_buttons(rfd::MessageButtons::Ok) + .set_level(rfd::MessageLevel::Error) + .show(); + + // 用户点击确定后退出应用 + std::process::exit(1); + } + + tauri::Builder::default() + .plugin(tauri_plugin_opener::init()) + .invoke_handler(tauri::generate_handler![ + login, + get_cookie, + get_dashboard_username, + get_workorders, + create_ticket_command, + insert_workorder, + feedback_workorder, + feedback_today_workorders, + feedback_selected_workorders, + close_workorder, + close_today_workorders, + close_selected_workorders, + feedback_and_close_today_workorders + ]) + .run(tauri::generate_context!()) + .expect("error while running tauri application"); +} diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs new file mode 100644 index 0000000..18623e3 --- /dev/null +++ b/src-tauri/src/main.rs @@ -0,0 +1,7 @@ +// Prevents additional console window on Windows in release, DO NOT REMOVE!! +#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] + +fn main() { + tms_tools_lib::run() +} + diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json new file mode 100644 index 0000000..5a155f5 --- /dev/null +++ b/src-tauri/tauri.conf.json @@ -0,0 +1,35 @@ +{ + "$schema": "https://schema.tauri.app/config/2", + "productName": "tms_tools", + "version": "0.1.7", + "identifier": "com.tms-tools.app", + "build": { + "beforeDevCommand": "pnpm dev", + "devUrl": "http://localhost:1420", + "beforeBuildCommand": "pnpm build", + "frontendDist": "../dist" + }, + "app": { + "windows": [ + { + "title": "tms_tools", + "width": 800, + "height": 600 + } + ], + "security": { + "csp": null + } + }, + "bundle": { + "active": true, + "targets": "all", + "icon": [ + "icons/32x32.png", + "icons/128x128.png", + "icons/128x128@2x.png", + "icons/icon.icns", + "icons/icon.ico" + ] + } +} diff --git a/src-tauri/tms_service/Cargo.lock b/src-tauri/tms_service/Cargo.lock new file mode 100644 index 0000000..ce730d8 --- /dev/null +++ b/src-tauri/tms_service/Cargo.lock @@ -0,0 +1,2283 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "ahash" +version = "0.8.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" +dependencies = [ + "cfg-if", + "getrandom 0.3.4", + "once_cell", + "version_check", + "zerocopy", +] + +[[package]] +name = "aho-corasick" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" +dependencies = [ + "memchr", +] + +[[package]] +name = "anyhow" +version = "1.0.102" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" + +[[package]] +name = "atomic-waker" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" + +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + +[[package]] +name = "bitflags" +version = "2.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af" + +[[package]] +name = "bumpalo" +version = "3.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "bytes" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" + +[[package]] +name = "cc" +version = "1.2.56" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2" +dependencies = [ + "find-msvc-tools", + "shlex", +] + +[[package]] +name = "cfg-if" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + +[[package]] +name = "core-foundation" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" + +[[package]] +name = "cssparser" +version = "0.31.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b3df4f93e5fbbe73ec01ec8d3f68bba73107993a5b1e7519273c32db9b0d5be" +dependencies = [ + "cssparser-macros", + "dtoa-short", + "itoa", + "phf 0.11.3", + "smallvec", +] + +[[package]] +name = "cssparser-macros" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" +dependencies = [ + "quote", + "syn", +] + +[[package]] +name = "derive_more" +version = "0.99.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "displaydoc" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "dtoa" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590" + +[[package]] +name = "dtoa-short" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" +dependencies = [ + "dtoa", +] + +[[package]] +name = "ego-tree" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12a0bb14ac04a9fcf170d0bbbef949b44cc492f4452bd20c095636956f653642" + +[[package]] +name = "encoding_rs" +version = "0.8.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "equivalent" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + +[[package]] +name = "errno" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + +[[package]] +name = "fastrand" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" + +[[package]] +name = "find-msvc-tools" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "foldhash" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" + +[[package]] +name = "foreign-types" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" +dependencies = [ + "foreign-types-shared", +] + +[[package]] +name = "foreign-types-shared" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + +[[package]] +name = "form_urlencoded" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "futf" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" +dependencies = [ + "mac", + "new_debug_unreachable", +] + +[[package]] +name = "futures-channel" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" +dependencies = [ + "futures-core", +] + +[[package]] +name = "futures-core" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" + +[[package]] +name = "futures-sink" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" + +[[package]] +name = "futures-task" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" + +[[package]] +name = "futures-util" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" +dependencies = [ + "futures-core", + "futures-task", + "pin-project-lite", + "slab", +] + +[[package]] +name = "fxhash" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" +dependencies = [ + "byteorder", +] + +[[package]] +name = "getopts" +version = "0.2.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df" +dependencies = [ + "unicode-width", +] + +[[package]] +name = "getrandom" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "getrandom" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" +dependencies = [ + "cfg-if", + "libc", + "r-efi", + "wasip2", +] + +[[package]] +name = "getrandom" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec" +dependencies = [ + "cfg-if", + "libc", + "r-efi", + "wasip2", + "wasip3", +] + +[[package]] +name = "h2" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" +dependencies = [ + "atomic-waker", + "bytes", + "fnv", + "futures-core", + "futures-sink", + "http", + "indexmap", + "slab", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "hashbrown" +version = "0.15.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +dependencies = [ + "foldhash", +] + +[[package]] +name = "hashbrown" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" + +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + +[[package]] +name = "html5ever" +version = "0.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c13771afe0e6e846f1e67d038d4cb29998a6779f93c809212e4e9c32efd244d4" +dependencies = [ + "log", + "mac", + "markup5ever", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "html_scraper" +version = "0.1.0" +dependencies = [ + "regex", + "scraper", + "thiserror", +] + +[[package]] +name = "http" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" +dependencies = [ + "bytes", + "itoa", +] + +[[package]] +name = "http-body" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +dependencies = [ + "bytes", + "http", +] + +[[package]] +name = "http-body-util" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" +dependencies = [ + "bytes", + "futures-core", + "http", + "http-body", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" + +[[package]] +name = "hyper" +version = "1.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" +dependencies = [ + "atomic-waker", + "bytes", + "futures-channel", + "futures-core", + "h2", + "http", + "http-body", + "httparse", + "itoa", + "pin-project-lite", + "pin-utils", + "smallvec", + "tokio", + "want", +] + +[[package]] +name = "hyper-rustls" +version = "0.27.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" +dependencies = [ + "http", + "hyper", + "hyper-util", + "rustls", + "rustls-pki-types", + "tokio", + "tokio-rustls", + "tower-service", +] + +[[package]] +name = "hyper-tls" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" +dependencies = [ + "bytes", + "http-body-util", + "hyper", + "hyper-util", + "native-tls", + "tokio", + "tokio-native-tls", + "tower-service", +] + +[[package]] +name = "hyper-util" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" +dependencies = [ + "base64", + "bytes", + "futures-channel", + "futures-util", + "http", + "http-body", + "hyper", + "ipnet", + "libc", + "percent-encoding", + "pin-project-lite", + "socket2", + "system-configuration", + "tokio", + "tower-service", + "tracing", + "windows-registry", +] + +[[package]] +name = "icu_collections" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" +dependencies = [ + "displaydoc", + "potential_utf", + "yoke", + "zerofrom", + "zerovec", +] + +[[package]] +name = "icu_locale_core" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" +dependencies = [ + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", +] + +[[package]] +name = "icu_normalizer" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" +dependencies = [ + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", +] + +[[package]] +name = "icu_normalizer_data" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" + +[[package]] +name = "icu_properties" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" +dependencies = [ + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "zerotrie", + "zerovec", +] + +[[package]] +name = "icu_properties_data" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" + +[[package]] +name = "icu_provider" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" +dependencies = [ + "displaydoc", + "icu_locale_core", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", +] + +[[package]] +name = "id-arena" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" + +[[package]] +name = "idna" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" +dependencies = [ + "idna_adapter", + "smallvec", + "utf8_iter", +] + +[[package]] +name = "idna_adapter" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" +dependencies = [ + "icu_normalizer", + "icu_properties", +] + +[[package]] +name = "indexmap" +version = "2.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" +dependencies = [ + "equivalent", + "hashbrown 0.16.1", + "serde", + "serde_core", +] + +[[package]] +name = "ipnet" +version = "2.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" + +[[package]] +name = "iri-string" +version = "0.7.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" +dependencies = [ + "memchr", + "serde", +] + +[[package]] +name = "itoa" +version = "1.0.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" + +[[package]] +name = "js-sys" +version = "0.3.89" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4eacb0641a310445a4c513f2a5e23e19952e269c6a38887254d5f837a305506" +dependencies = [ + "once_cell", + "wasm-bindgen", +] + +[[package]] +name = "leb128fmt" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" + +[[package]] +name = "libc" +version = "0.2.182" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112" + +[[package]] +name = "linux-raw-sys" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" + +[[package]] +name = "litemap" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" + +[[package]] +name = "lock_api" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" +dependencies = [ + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" + +[[package]] +name = "mac" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" + +[[package]] +name = "markup5ever" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16ce3abbeba692c8b8441d036ef91aea6df8da2c6b6e21c7e14d3c18e526be45" +dependencies = [ + "log", + "phf 0.11.3", + "phf_codegen 0.11.3", + "string_cache", + "string_cache_codegen", + "tendril", +] + +[[package]] +name = "memchr" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" + +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "mio" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" +dependencies = [ + "libc", + "wasi", + "windows-sys 0.61.2", +] + +[[package]] +name = "native-tls" +version = "0.2.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2" +dependencies = [ + "libc", + "log", + "openssl", + "openssl-probe", + "openssl-sys", + "schannel", + "security-framework", + "security-framework-sys", + "tempfile", +] + +[[package]] +name = "new_debug_unreachable" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" + +[[package]] +name = "once_cell" +version = "1.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" + +[[package]] +name = "openssl" +version = "0.10.75" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328" +dependencies = [ + "bitflags", + "cfg-if", + "foreign-types", + "libc", + "once_cell", + "openssl-macros", + "openssl-sys", +] + +[[package]] +name = "openssl-macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "openssl-probe" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" + +[[package]] +name = "openssl-sys" +version = "0.9.111" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321" +dependencies = [ + "cc", + "libc", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "parking_lot" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-link", +] + +[[package]] +name = "percent-encoding" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" + +[[package]] +name = "phf" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" +dependencies = [ + "phf_shared 0.10.0", +] + +[[package]] +name = "phf" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" +dependencies = [ + "phf_macros", + "phf_shared 0.11.3", +] + +[[package]] +name = "phf_codegen" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" +dependencies = [ + "phf_generator 0.10.0", + "phf_shared 0.10.0", +] + +[[package]] +name = "phf_codegen" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", +] + +[[package]] +name = "phf_generator" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" +dependencies = [ + "phf_shared 0.10.0", + "rand", +] + +[[package]] +name = "phf_generator" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" +dependencies = [ + "phf_shared 0.11.3", + "rand", +] + +[[package]] +name = "phf_macros" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "phf_shared" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" +dependencies = [ + "siphasher 0.3.11", +] + +[[package]] +name = "phf_shared" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" +dependencies = [ + "siphasher 1.0.2", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "pkg-config" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" + +[[package]] +name = "potential_utf" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" +dependencies = [ + "zerovec", +] + +[[package]] +name = "ppv-lite86" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "precomputed-hash" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" + +[[package]] +name = "prettyplease" +version = "0.2.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" +dependencies = [ + "proc-macro2", + "syn", +] + +[[package]] +name = "proc-macro2" +version = "1.0.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "r-efi" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + +[[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "libc", + "rand_chacha", + "rand_core", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom 0.2.17", +] + +[[package]] +name = "redox_syscall" +version = "0.5.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" +dependencies = [ + "bitflags", +] + +[[package]] +name = "regex" +version = "1.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c" + +[[package]] +name = "reqwest" +version = "0.12.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" +dependencies = [ + "base64", + "bytes", + "encoding_rs", + "futures-core", + "h2", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-rustls", + "hyper-tls", + "hyper-util", + "js-sys", + "log", + "mime", + "native-tls", + "percent-encoding", + "pin-project-lite", + "rustls-pki-types", + "serde", + "serde_json", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tokio-native-tls", + "tower", + "tower-http", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "ring" +version = "0.17.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" +dependencies = [ + "cc", + "cfg-if", + "getrandom 0.2.17", + "libc", + "untrusted", + "windows-sys 0.52.0", +] + +[[package]] +name = "rustix" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" +dependencies = [ + "bitflags", + "errno", + "libc", + "linux-raw-sys", + "windows-sys 0.61.2", +] + +[[package]] +name = "rustls" +version = "0.23.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b" +dependencies = [ + "once_cell", + "rustls-pki-types", + "rustls-webpki", + "subtle", + "zeroize", +] + +[[package]] +name = "rustls-pki-types" +version = "1.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" +dependencies = [ + "zeroize", +] + +[[package]] +name = "rustls-webpki" +version = "0.103.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53" +dependencies = [ + "ring", + "rustls-pki-types", + "untrusted", +] + +[[package]] +name = "rustversion" +version = "1.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" + +[[package]] +name = "ryu" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" + +[[package]] +name = "schannel" +version = "0.1.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "scraper" +version = "0.19.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "761fb705fdf625482d2ed91d3f0559dcfeab2798fe2771c69560a774865d0802" +dependencies = [ + "ahash", + "cssparser", + "ego-tree", + "getopts", + "html5ever", + "once_cell", + "selectors", + "tendril", +] + +[[package]] +name = "security-framework" +version = "3.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" +dependencies = [ + "bitflags", + "core-foundation 0.10.1", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "selectors" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4eb30575f3638fc8f6815f448d50cb1a2e255b0897985c8c59f4d37b72a07b06" +dependencies = [ + "bitflags", + "cssparser", + "derive_more", + "fxhash", + "log", + "new_debug_unreachable", + "phf 0.10.1", + "phf_codegen 0.10.0", + "precomputed-hash", + "servo_arc", + "smallvec", +] + +[[package]] +name = "semver" +version = "1.0.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" + +[[package]] +name = "serde" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.149" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" +dependencies = [ + "itoa", + "memchr", + "serde", + "serde_core", + "zmij", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "servo_arc" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d036d71a959e00c77a63538b90a6c2390969f9772b096ea837205c6bd0491a44" +dependencies = [ + "stable_deref_trait", +] + +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "signal-hook-registry" +version = "1.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" +dependencies = [ + "errno", + "libc", +] + +[[package]] +name = "siphasher" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" + +[[package]] +name = "siphasher" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e" + +[[package]] +name = "slab" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" + +[[package]] +name = "smallvec" +version = "1.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" + +[[package]] +name = "socket2" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0" +dependencies = [ + "libc", + "windows-sys 0.60.2", +] + +[[package]] +name = "stable_deref_trait" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" + +[[package]] +name = "string_cache" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" +dependencies = [ + "new_debug_unreachable", + "parking_lot", + "phf_shared 0.11.3", + "precomputed-hash", + "serde", +] + +[[package]] +name = "string_cache_codegen" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", + "proc-macro2", + "quote", +] + +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + +[[package]] +name = "syn" +version = "2.0.117" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "sync_wrapper" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" +dependencies = [ + "futures-core", +] + +[[package]] +name = "synstructure" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "system-configuration" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b" +dependencies = [ + "bitflags", + "core-foundation 0.9.4", + "system-configuration-sys", +] + +[[package]] +name = "system-configuration-sys" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "tempfile" +version = "3.26.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0" +dependencies = [ + "fastrand", + "getrandom 0.4.1", + "once_cell", + "rustix", + "windows-sys 0.61.2", +] + +[[package]] +name = "tendril" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" +dependencies = [ + "futf", + "mac", + "utf-8", +] + +[[package]] +name = "thiserror" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "tinystr" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" +dependencies = [ + "displaydoc", + "zerovec", +] + +[[package]] +name = "tms_service" +version = "0.1.0" +dependencies = [ + "anyhow", + "html_scraper", + "reqwest", + "serde", + "serde_json", + "tokio", +] + +[[package]] +name = "tokio" +version = "1.49.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" +dependencies = [ + "bytes", + "libc", + "mio", + "parking_lot", + "pin-project-lite", + "signal-hook-registry", + "socket2", + "tokio-macros", + "windows-sys 0.61.2", +] + +[[package]] +name = "tokio-macros" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "tokio-native-tls" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" +dependencies = [ + "native-tls", + "tokio", +] + +[[package]] +name = "tokio-rustls" +version = "0.26.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" +dependencies = [ + "rustls", + "tokio", +] + +[[package]] +name = "tokio-util" +version = "0.7.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "tower" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper", + "tokio", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-http" +version = "0.6.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" +dependencies = [ + "bitflags", + "bytes", + "futures-util", + "http", + "http-body", + "iri-string", + "pin-project-lite", + "tower", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-layer" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" + +[[package]] +name = "tower-service" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" + +[[package]] +name = "tracing" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" +dependencies = [ + "pin-project-lite", + "tracing-core", +] + +[[package]] +name = "tracing-core" +version = "0.1.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" +dependencies = [ + "once_cell", +] + +[[package]] +name = "try-lock" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" + +[[package]] +name = "unicode-ident" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" + +[[package]] +name = "unicode-width" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" + +[[package]] +name = "unicode-xid" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" + +[[package]] +name = "untrusted" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + +[[package]] +name = "url" +version = "2.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", + "serde", +] + +[[package]] +name = "utf-8" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" + +[[package]] +name = "utf8_iter" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" + +[[package]] +name = "vcpkg" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasip2" +version = "1.0.2+wasi-0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "wasip3" +version = "0.4.0+wasi-0.3.0-rc-2026-01-06" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "wasm-bindgen" +version = "0.2.112" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05d7d0fce354c88b7982aec4400b3e7fcf723c32737cef571bd165f7613557ee" +dependencies = [ + "cfg-if", + "once_cell", + "rustversion", + "wasm-bindgen-macro", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.62" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee85afca410ac4abba5b584b12e77ea225db6ee5471d0aebaae0861166f9378a" +dependencies = [ + "cfg-if", + "futures-util", + "js-sys", + "once_cell", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.112" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55839b71ba921e4f75b674cb16f843f4b1f3b26ddfcb3454de1cf65cc021ec0f" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.112" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "caf2e969c2d60ff52e7e98b7392ff1588bffdd1ccd4769eba27222fd3d621571" +dependencies = [ + "bumpalo", + "proc-macro2", + "quote", + "syn", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.112" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0861f0dcdf46ea819407495634953cdcc8a8c7215ab799a7a7ce366be71c7b30" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "wasm-encoder" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" +dependencies = [ + "leb128fmt", + "wasmparser", +] + +[[package]] +name = "wasm-metadata" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" +dependencies = [ + "anyhow", + "indexmap", + "wasm-encoder", + "wasmparser", +] + +[[package]] +name = "wasmparser" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" +dependencies = [ + "bitflags", + "hashbrown 0.15.5", + "indexmap", + "semver", +] + +[[package]] +name = "web-sys" +version = "0.3.89" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "10053fbf9a374174094915bbce141e87a6bf32ecd9a002980db4b638405e8962" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "windows-link" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + +[[package]] +name = "windows-registry" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" +dependencies = [ + "windows-link", + "windows-result", + "windows-strings", +] + +[[package]] +name = "windows-result" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-strings" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-sys" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" +dependencies = [ + "windows-targets 0.53.5", +] + +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-targets" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +dependencies = [ + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm 0.52.6", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", +] + +[[package]] +name = "windows-targets" +version = "0.53.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" +dependencies = [ + "windows-link", + "windows_aarch64_gnullvm 0.53.1", + "windows_aarch64_msvc 0.53.1", + "windows_i686_gnu 0.53.1", + "windows_i686_gnullvm 0.53.1", + "windows_i686_msvc 0.53.1", + "windows_x86_64_gnu 0.53.1", + "windows_x86_64_gnullvm 0.53.1", + "windows_x86_64_msvc 0.53.1", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + +[[package]] +name = "windows_i686_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" + +[[package]] +name = "wit-bindgen" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" +dependencies = [ + "wit-bindgen-rust-macro", +] + +[[package]] +name = "wit-bindgen-core" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" +dependencies = [ + "anyhow", + "heck", + "wit-parser", +] + +[[package]] +name = "wit-bindgen-rust" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" +dependencies = [ + "anyhow", + "heck", + "indexmap", + "prettyplease", + "syn", + "wasm-metadata", + "wit-bindgen-core", + "wit-component", +] + +[[package]] +name = "wit-bindgen-rust-macro" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" +dependencies = [ + "anyhow", + "prettyplease", + "proc-macro2", + "quote", + "syn", + "wit-bindgen-core", + "wit-bindgen-rust", +] + +[[package]] +name = "wit-component" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" +dependencies = [ + "anyhow", + "bitflags", + "indexmap", + "log", + "serde", + "serde_derive", + "serde_json", + "wasm-encoder", + "wasm-metadata", + "wasmparser", + "wit-parser", +] + +[[package]] +name = "wit-parser" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" +dependencies = [ + "anyhow", + "id-arena", + "indexmap", + "log", + "semver", + "serde", + "serde_derive", + "serde_json", + "unicode-xid", + "wasmparser", +] + +[[package]] +name = "writeable" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" + +[[package]] +name = "yoke" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" +dependencies = [ + "stable_deref_trait", + "yoke-derive", + "zerofrom", +] + +[[package]] +name = "yoke-derive" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "synstructure", +] + +[[package]] +name = "zerocopy" +version = "0.8.39" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.8.39" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "zerofrom" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" +dependencies = [ + "zerofrom-derive", +] + +[[package]] +name = "zerofrom-derive" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "synstructure", +] + +[[package]] +name = "zeroize" +version = "1.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" + +[[package]] +name = "zerotrie" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" +dependencies = [ + "displaydoc", + "yoke", + "zerofrom", +] + +[[package]] +name = "zerovec" +version = "0.11.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" +dependencies = [ + "yoke", + "zerofrom", + "zerovec-derive", +] + +[[package]] +name = "zerovec-derive" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "zmij" +version = "1.0.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" diff --git a/src-tauri/tms_service/Cargo.toml b/src-tauri/tms_service/Cargo.toml new file mode 100644 index 0000000..90096ee --- /dev/null +++ b/src-tauri/tms_service/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "tms_service" +version = "0.1.0" +edition = "2021" + +[dependencies] +reqwest = "0.12.22" +tokio = { version = "1", features = ["full"] } +serde = { version = "1", features = ["derive"] } +serde_json = "1" +html_scraper = { path = "../html_scraper" } +anyhow = "1.0" diff --git a/src-tauri/tms_service/src/lib.rs b/src-tauri/tms_service/src/lib.rs new file mode 100644 index 0000000..824c85e --- /dev/null +++ b/src-tauri/tms_service/src/lib.rs @@ -0,0 +1,205 @@ +use reqwest::cookie::Jar; +use serde::Deserialize; +use std::sync::Arc; +use anyhow::Result; + +#[derive(Deserialize)] +struct ApiResponse { + msg: String, +} + +pub fn add(left: u64, right: u64) -> u64 { + left + right +} + +pub async fn create_ticket(cookie: &str, n2p: &str, massageQ: &str, wx: Option<&str>, mobile: Option<&str>) -> Result { + if let Some(wx_val) = wx { + println!("cookie={},n2n={},问题={}, 微信={}", cookie, n2p, massageQ, wx_val); + } else if let Some(mobile_val) = mobile { + println!("cookie={},n2n={},问题={}, 手机={}", cookie, n2p, massageQ, mobile_val); + } + + // 1. Create a cookie jar and a single client for all requests + let jar = Arc::new(Jar::default()); + let initial_url: reqwest::Url = "http://c.baobaot.com".parse().unwrap(); + // The cookie string can contain multiple cookies separated by ';'. + // We need to add them one by one. + for part in cookie.split(';') { + jar.add_cookie_str(part.trim(), &initial_url); + } + + let client = reqwest::Client::builder() + .cookie_provider(jar.clone()) + .build()?; + println!("开始获取平台id"); + // 2. Get the edit page URL + let url = format!("http://c.baobaot.com/admin/etms/n2nip?n2nip=&cinemacode={}", n2p); + let res = client.get(&url).send().await?; + let body_bytes = res.bytes().await?; + let body = String::from_utf8_lossy(&body_bytes).to_string(); + + println!("源码获取完成"); + + let edit_page_url = match html_scraper::find_edit_link(&body) { + Ok(Some(link)) => link, + Ok(None) => return Err(anyhow::anyhow!("没有找到编辑链接")), + Err(e) => return Err(anyhow::anyhow!("查找编辑链接时出错: {}", e)), + }; + println!("平台id{}", edit_page_url); + + // 3. Visit the edit page to get its source + let res2 = client.get(&edit_page_url).send().await?; + let body2_bytes = res2.bytes().await?; + let body2 = String::from_utf8_lossy(&body2_bytes).to_string(); + + // 4. Get the TMS config URL + let tms_config_url = match html_scraper::find_tms_config_link(&body2) { + Ok(Some(link)) => link, + Ok(None) => return Err(anyhow::anyhow!("没有找到TMS配置链接")), + Err(e) => return Err(anyhow::anyhow!("查找TMS配置链接时出错: {}", e)), + }; + println!("tms配置链接{}", tms_config_url); + + // 5. Visit the TMS config URL to get the token + let res3 = client.get(&tms_config_url).send().await?; + let body3_bytes = res3.bytes().await?; + let body3 = String::from_utf8_lossy(&body3_bytes).to_string(); + + let token = match html_scraper::find_token(&body3) { + Ok(Some(t)) => t, + Ok(None) => return Err(anyhow::anyhow!("没有找到token")), + Err(e) => return Err(anyhow::anyhow!("查找token时出错: {}", e)), + }; + println!("token={}", token); + + // 6. Visit the final URL to get the session cookies + let final_url = format!("https://c.baobaot.com/cinema/workorder?token={}", token); + let _final_res = client.get(&final_url).send().await?; + + // 7. Now the jar should contain all necessary cookies. + // We can proceed to create the work order. + + let mut form_data = vec![ + ("type", "99"), + ("describe", massageQ), + ("input_file[]", ""), + ("visit_way", "1"), + ]; + + if let Some(wx_val) = wx { + form_data.push(("contact_way", "wx")); + form_data.push(("contact", wx_val)); + } else if let Some(mobile_val) = mobile { + form_data.push(("contact_way", "mobile")); + form_data.push(("contact", mobile_val)); + } + + let post_url = "https://c.baobaot.com/cinema/workorder/ajax_create"; + + let res = client.post(post_url).form(&form_data).send().await?; + let response_bytes = res.bytes().await?; + let response_body = String::from_utf8_lossy(&response_bytes).to_string(); + + match serde_json::from_str::(&response_body) { + Ok(api_response) => { + if api_response.msg != "提交成功" { + return Ok(response_body); + } + } + Err(_) => { + return Ok(response_body); + } + } + + // 8. Get new cookie before fetching work order list + let final_url = format!("https://c.baobaot.com/cinema/workorder?token={}", token); + let _final_res = client.get(&final_url).send().await?; + + // 9. Get the work order page to find the latest order + let workorder_url = "https://c.baobaot.com/cinema/workorder"; + let workorder_res = client.get(workorder_url).send().await?; + let workorder_bytes = workorder_res.bytes().await?; + let workorder_html = String::from_utf8_lossy(&workorder_bytes).to_string(); + + let details_url = match html_scraper::find_latest_work_order_id(&workorder_html) { + Ok(Some(id)) => format!("{}", id), + Ok(None) => return Ok("没有找到最新工单的详情链接".to_string()), + Err(e) => return Ok(format!("查找最新工单详情链接时出错: {}", e)), + }; + println!("最新工单详情链接{}", details_url); + + Ok(details_url) +} + +pub async fn feedback(cookie: &str, messageA: &str, gdID: &str) -> Result { + // 1. Create a cookie jar and a single client for all requests + let jar = Arc::new(Jar::default()); + let initial_url: reqwest::Url = "https://c.baobaot.com".parse().unwrap(); + // The cookie string can contain multiple cookies separated by ';'. + // We need to add them one by one. + for part in cookie.split(';') { + jar.add_cookie_str(part.trim(), &initial_url); + } + + let client = reqwest::Client::builder() + .cookie_provider(jar.clone()) + .build()?; + + // 2. Prepare form data + let form_data = &[ + ("message", messageA), + ("input_file[]", ""), + ("id", gdID), + ("act", "confirm_feedback"), + ]; + + // 3. Send POST request + let post_url = "https://c.baobaot.com/admin/workorder/ajax_update"; + let res = client.post(post_url).form(form_data).send().await?; + let response_bytes = res.bytes().await?; + let response_body = String::from_utf8_lossy(&response_bytes).to_string(); + + Ok(response_body) +} + +pub async fn close(cookie: &str, gdID: &str) -> Result { + // 1. Create a cookie jar and a single client for all requests + let jar = Arc::new(Jar::default()); + let initial_url: reqwest::Url = "https://c.baobaot.com".parse().unwrap(); + // The cookie string can contain multiple cookies separated by ';'. + // We need to add them one by one. + for part in cookie.split(';') { + jar.add_cookie_str(part.trim(), &initial_url); + } + + let client = reqwest::Client::builder() + .cookie_provider(jar.clone()) + .build()?; + + // 2. Prepare form data + let form_data = &[ + ("id", gdID), + ("act", "close_workorder"), + ]; + + // 3. Send POST request + let post_url = "https://c.baobaot.com/admin/workorder/ajax_update"; + let res = client.post(post_url).form(form_data).send().await?; + let response_bytes = res.bytes().await?; + let response_body = String::from_utf8_lossy(&response_bytes).to_string(); + + Ok(response_body) +} + + + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn it_works() { + let result = add(2, 2); + assert_eq!(result, 4); + } +} diff --git a/src-tauri/tms_service/target/.rustc_info.json b/src-tauri/tms_service/target/.rustc_info.json new file mode 100644 index 0000000..0014744 --- /dev/null +++ b/src-tauri/tms_service/target/.rustc_info.json @@ -0,0 +1 @@ +{"rustc_fingerprint":5950026530320907442,"outputs":{"17747080675513052775":{"success":true,"status":"","code":0,"stdout":"rustc 1.93.0 (254b59607 2026-01-19)\nbinary: rustc\ncommit-hash: 254b59607d4417e9dffbc307138ae5c86280fe4c\ncommit-date: 2026-01-19\nhost: aarch64-apple-darwin\nrelease: 1.93.0\nLLVM version: 21.1.8\n","stderr":""},"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n/Users/hokori/.rustup/toolchains/stable-aarch64-apple-darwin\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"aarch64\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_family=\"unix\"\ntarget_feature=\"aes\"\ntarget_feature=\"crc\"\ntarget_feature=\"dit\"\ntarget_feature=\"dotprod\"\ntarget_feature=\"dpb\"\ntarget_feature=\"dpb2\"\ntarget_feature=\"fcma\"\ntarget_feature=\"fhm\"\ntarget_feature=\"flagm\"\ntarget_feature=\"fp16\"\ntarget_feature=\"frintts\"\ntarget_feature=\"jsconv\"\ntarget_feature=\"lor\"\ntarget_feature=\"lse\"\ntarget_feature=\"neon\"\ntarget_feature=\"paca\"\ntarget_feature=\"pacg\"\ntarget_feature=\"pan\"\ntarget_feature=\"pmuv3\"\ntarget_feature=\"ras\"\ntarget_feature=\"rcpc\"\ntarget_feature=\"rcpc2\"\ntarget_feature=\"rdm\"\ntarget_feature=\"sb\"\ntarget_feature=\"sha2\"\ntarget_feature=\"sha3\"\ntarget_feature=\"ssbs\"\ntarget_feature=\"vh\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"macos\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"apple\"\nunix\n","stderr":""}},"successes":{}} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/.rustc_info.json b/src-tauri/tms_service/target/owl/.rustc_info.json new file mode 100644 index 0000000..fc511ad --- /dev/null +++ b/src-tauri/tms_service/target/owl/.rustc_info.json @@ -0,0 +1 @@ +{"rustc_fingerprint":9158950504090421981,"outputs":{"1611179108920590944":{"success":true,"status":"","code":0,"stdout":"rustc 1.87.0 (17067e9ac 2025-05-09)\nbinary: rustc\ncommit-hash: 17067e9ac6d7ecb70e50f92c1944e545188d2359\ncommit-date: 2025-05-09\nhost: aarch64-apple-darwin\nrelease: 1.87.0\nLLVM version: 20.1.1\n","stderr":""},"16695856322010688557":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin\noff\npacked\nunpacked\n___\ndebug_assertions\nfmt_debug=\"full\"\noverflow_checks\npanic=\"unwind\"\nproc_macro\nrelocation_model=\"pic\"\ntarget_abi=\"\"\ntarget_arch=\"aarch64\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_family=\"unix\"\ntarget_feature=\"aes\"\ntarget_feature=\"crc\"\ntarget_feature=\"dit\"\ntarget_feature=\"dotprod\"\ntarget_feature=\"dpb\"\ntarget_feature=\"dpb2\"\ntarget_feature=\"fcma\"\ntarget_feature=\"fhm\"\ntarget_feature=\"flagm\"\ntarget_feature=\"flagm2\"\ntarget_feature=\"fp16\"\ntarget_feature=\"frintts\"\ntarget_feature=\"jsconv\"\ntarget_feature=\"lor\"\ntarget_feature=\"lse\"\ntarget_feature=\"lse2\"\ntarget_feature=\"neon\"\ntarget_feature=\"paca\"\ntarget_feature=\"pacg\"\ntarget_feature=\"pan\"\ntarget_feature=\"pmuv3\"\ntarget_feature=\"ras\"\ntarget_feature=\"rcpc\"\ntarget_feature=\"rcpc2\"\ntarget_feature=\"rdm\"\ntarget_feature=\"sb\"\ntarget_feature=\"sha2\"\ntarget_feature=\"sha3\"\ntarget_feature=\"ssbs\"\ntarget_feature=\"v8.1a\"\ntarget_feature=\"v8.2a\"\ntarget_feature=\"v8.3a\"\ntarget_feature=\"v8.4a\"\ntarget_feature=\"vh\"\ntarget_has_atomic\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_has_atomic_equal_alignment=\"128\"\ntarget_has_atomic_equal_alignment=\"16\"\ntarget_has_atomic_equal_alignment=\"32\"\ntarget_has_atomic_equal_alignment=\"64\"\ntarget_has_atomic_equal_alignment=\"8\"\ntarget_has_atomic_equal_alignment=\"ptr\"\ntarget_has_atomic_load_store\ntarget_has_atomic_load_store=\"128\"\ntarget_has_atomic_load_store=\"16\"\ntarget_has_atomic_load_store=\"32\"\ntarget_has_atomic_load_store=\"64\"\ntarget_has_atomic_load_store=\"8\"\ntarget_has_atomic_load_store=\"ptr\"\ntarget_os=\"macos\"\ntarget_pointer_width=\"64\"\ntarget_thread_local\ntarget_vendor=\"apple\"\nub_checks\nunix\n","stderr":""}},"successes":{}} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/cache.json b/src-tauri/tms_service/target/owl/cache.json new file mode 100644 index 0000000..d11b0e9 --- /dev/null +++ b/src-tauri/tms_service/target/owl/cache.json @@ -0,0 +1 @@ +{"/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs":{"items":[{"fn_id":8,"basic_blocks":[{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":8},"ty":"impl std::future::Future>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":8},"ty":"&str","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":8},"ty":"&str","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":8},"ty":"&str","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":8},"ty":"std::option::Option<&str>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":8},"ty":"std::option::Option<&str>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":11,"basic_blocks":[{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":11},"ty":"impl std::future::Future>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":11},"ty":"&str","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":11},"ty":"&str","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":11},"ty":"&str","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":14,"basic_blocks":[{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":14},"ty":"impl std::future::Future>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":14},"ty":"&str","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":14},"ty":"&str","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":19,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":19},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":19},"ty":"()","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":58,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":4,"fn_id":58},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":2,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":58},"range":{"from":100,"until":111},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":1,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":58},"range":{"from":100,"until":111},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":0,"fn_id":58},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":58},"ty":"&[&str]","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":58},"ty":"&[&str; 1]","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":58},"ty":"&[&str; 1]","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":58},"ty":"[&str; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":58},"ty":"&[&str; 1]","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":23,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":23},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":1,"fn_id":23},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":4,"fn_id":23},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":5,"fn_id":23},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":3,"fn_id":23},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":23},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":23},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":23},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":23},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":23},"ty":"std::result::Result>::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":23},"name":"__deserializer","span":{"from":100,"until":111},"ty":"__D","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":23},"ty":"__D","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":23},"ty":"_:: for ApiResponse>::deserialize::__Visitor<'_>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":23},"ty":"std::marker::PhantomData","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":23},"ty":"std::marker::PhantomData<&()>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":35,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":35},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":35},"range":{"from":100,"until":111},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":5,"fn_id":35},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":4,"fn_id":35},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":5,"fn_id":35},"range":{"from":100,"until":111},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":35},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":35},"ty":"std::result::Result<(), std::fmt::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":35},"name":"self","span":{"from":100,"until":111},"ty":"&_:: for ApiResponse>::deserialize::__FieldVisitor","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":35},"name":"__formatter","span":{"from":100,"until":111},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[{"from":100,"until":111}],"drop":false,"drop_range":[],"must_live_at":[{"from":100,"until":111}]},{"type":"other","local":{"id":3,"fn_id":35},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":35},"ty":"&str","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":35},"ty":"&str","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":8,"basic_blocks":[{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":8},"ty":"impl std::future::Future>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":8},"ty":"&str","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":8},"ty":"&str","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":8},"ty":"&str","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":8},"ty":"std::option::Option<&str>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":8},"ty":"std::option::Option<&str>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":11,"basic_blocks":[{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":11},"ty":"impl std::future::Future>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":11},"ty":"&str","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":11},"ty":"&str","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":11},"ty":"&str","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":14,"basic_blocks":[{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":14},"ty":"impl std::future::Future>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":14},"ty":"&str","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":14},"ty":"&str","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":21,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":21},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":21},"ty":"()","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":60,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":4,"fn_id":60},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":2,"fn_id":60},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":60},"range":{"from":100,"until":111},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":1,"fn_id":60},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":60},"range":{"from":100,"until":111},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":0,"fn_id":60},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":60},"ty":"&[&str]","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":60},"ty":"&[&str; 1]","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":60},"ty":"&[&str; 1]","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":60},"ty":"[&str; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":60},"ty":"&[&str; 1]","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":36,"basic_blocks":[{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":4,"fn_id":36},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":36},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":36},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":36},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":36},"ty":"std::result::Result<_:: for ApiResponse>::deserialize::__Field, __E>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":36},"name":"self","span":{"from":100,"until":111},"ty":"_:: for ApiResponse>::deserialize::__FieldVisitor","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":36},"name":"__value","span":{"from":100,"until":111},"ty":"u64","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":36},"ty":"_:: for ApiResponse>::deserialize::__Field","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":36},"ty":"_:: for ApiResponse>::deserialize::__Field","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":38,"basic_blocks":[{"statements":[],"terminator":{"type":"call","destination_local":{"id":3,"fn_id":38},"fn_span":{"from":139,"until":142}}},{"statements":[{"type":"assign","target_local":{"id":5,"fn_id":38},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":38},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":4,"fn_id":38},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":38},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":38},"ty":"std::result::Result<_:: for ApiResponse>::deserialize::__Field, __E>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":38},"name":"self","span":{"from":100,"until":111},"ty":"_:: for ApiResponse>::deserialize::__FieldVisitor","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":38},"name":"__value","span":{"from":100,"until":111},"ty":"&str","lives":[{"from":100,"until":111},{"from":139,"until":142}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":38},"ty":"bool","lives":[{"from":139,"until":142}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":38},"ty":"_:: for ApiResponse>::deserialize::__Field","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":38},"ty":"_:: for ApiResponse>::deserialize::__Field","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":63,"basic_blocks":[{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":63},"fn_span":{"from":6994,"until":7078}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":63},"ty":"std::result::Result<(), std::string::String>","lives":[{"from":7077,"until":7078}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":63},"ty":"&{closure@src/lib.rs:201:5: 204:6}","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":63},"ty":"()","lives":[{"from":6994,"until":7078}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":40,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":40},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":4,"fn_id":40},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":5,"fn_id":40},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":7,"fn_id":40},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":40},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":6,"fn_id":40},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":40},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":40},"ty":"std::result::Result<_:: for ApiResponse>::deserialize::__Field, __E>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":40},"name":"self","span":{"from":100,"until":111},"ty":"_:: for ApiResponse>::deserialize::__FieldVisitor","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":40},"name":"__value","span":{"from":100,"until":111},"ty":"&[u8]","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":40},"ty":"usize","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":40},"ty":"usize","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":40},"ty":"bool","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":40},"ty":"_:: for ApiResponse>::deserialize::__Field","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":40},"ty":"_:: for ApiResponse>::deserialize::__Field","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":44,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":44},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":1,"fn_id":44},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":3,"fn_id":44},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":44},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":44},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":44},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":44},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":44},"ty":"std::result::Result<_:: for ApiResponse>::deserialize::__Field, <__D as _::_serde::Deserializer<'_>>::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":44},"name":"__deserializer","span":{"from":100,"until":111},"ty":"__D","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":44},"ty":"__D","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":44},"ty":"_:: for ApiResponse>::deserialize::__FieldVisitor","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":53,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":53},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":53},"range":{"from":100,"until":111},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":5,"fn_id":53},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":4,"fn_id":53},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":5,"fn_id":53},"range":{"from":100,"until":111},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":53},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":53},"ty":"std::result::Result<(), std::fmt::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":53},"name":"self","span":{"from":100,"until":111},"ty":"&_:: for ApiResponse>::deserialize::__Visitor<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":53},"name":"__formatter","span":{"from":100,"until":111},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[{"from":100,"until":111}],"drop":false,"drop_range":[],"must_live_at":[{"from":100,"until":111}]},{"type":"other","local":{"id":3,"fn_id":53},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":53},"ty":"&str","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":53},"ty":"&str","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":62,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":62},"range":{"from":6994,"until":7078},"rval":null},{"type":"assign","target_local":{"id":3,"fn_id":62},"range":{"from":6994,"until":7078},"rval":null},{"type":"assign","target_local":{"id":4,"fn_id":62},"range":{"from":6994,"until":7078},"rval":null},{"type":"assign","target_local":{"id":5,"fn_id":62},"range":{"from":6994,"until":7078},"rval":null},{"type":"assign","target_local":{"id":1,"fn_id":62},"range":{"from":6994,"until":7078},"rval":null}],"terminator":{"type":"drop","local":{"id":2,"fn_id":62},"range":{"from":7077,"until":7078}}},{"statements":[{"type":"assign","target_local":{"id":8,"fn_id":62},"range":{"from":6994,"until":7078},"rval":null},{"type":"assign","target_local":{"id":7,"fn_id":62},"range":{"from":6994,"until":7078},"rval":null},{"type":"assign","target_local":{"id":6,"fn_id":62},"range":{"from":6994,"until":7078},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":62},"range":{"from":6994,"until":7078},"rval":null}],"terminator":{"type":"drop","local":{"id":6,"fn_id":62},"range":{"from":7077,"until":7078}}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":62},"range":{"from":7077,"until":7078}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":62},"range":{"from":7077,"until":7078}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":62},"ty":"tests::test::TestDescAndFn","lives":[{"from":6994,"until":7078}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":62},"ty":"tests::test::TestDesc","lives":[{"from":6994,"until":7078}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":7077,"until":7078}],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":62},"ty":"tests::test::TestName","lives":[{"from":6994,"until":7078}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":62},"ty":"std::option::Option<&str>","lives":[{"from":6994,"until":7078}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":62},"ty":"tests::test::ShouldPanic","lives":[{"from":6994,"until":7078}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":62},"ty":"tests::test::TestType","lives":[{"from":6994,"until":7078}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":62},"ty":"tests::test::TestFn","lives":[{"from":6994,"until":7078}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":62},"ty":"fn() -> std::result::Result<(), std::string::String>","lives":[{"from":6994,"until":7078}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":62},"ty":"{closure@src/lib.rs:201:5: 204:6}","lives":[{"from":6994,"until":7078}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":25,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":25},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":1,"fn_id":25},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":4,"fn_id":25},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":5,"fn_id":25},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":3,"fn_id":25},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":25},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":25},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":25},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":25},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":25},"ty":"std::result::Result>::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":25},"name":"__deserializer","span":{"from":100,"until":111},"ty":"__D","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":25},"ty":"__D","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":25},"ty":"_:: for ApiResponse>::deserialize::__Visitor<'_>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":25},"ty":"std::marker::PhantomData","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":25},"ty":"std::marker::PhantomData<&()>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":37,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":37},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":37},"range":{"from":100,"until":111},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":5,"fn_id":37},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":4,"fn_id":37},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":5,"fn_id":37},"range":{"from":100,"until":111},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":37},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":37},"ty":"std::result::Result<(), std::fmt::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":37},"name":"self","span":{"from":100,"until":111},"ty":"&_:: for ApiResponse>::deserialize::__FieldVisitor","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":37},"name":"__formatter","span":{"from":100,"until":111},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[{"from":100,"until":111}],"drop":false,"drop_range":[],"must_live_at":[{"from":100,"until":111}]},{"type":"other","local":{"id":3,"fn_id":37},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":37},"ty":"&str","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":37},"ty":"&str","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":38,"basic_blocks":[{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":4,"fn_id":38},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":38},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":38},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":38},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":38},"ty":"std::result::Result<_:: for ApiResponse>::deserialize::__Field, __E>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":38},"name":"self","span":{"from":100,"until":111},"ty":"_:: for ApiResponse>::deserialize::__FieldVisitor","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":38},"name":"__value","span":{"from":100,"until":111},"ty":"u64","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":38},"ty":"_:: for ApiResponse>::deserialize::__Field","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":38},"ty":"_:: for ApiResponse>::deserialize::__Field","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":40,"basic_blocks":[{"statements":[],"terminator":{"type":"call","destination_local":{"id":3,"fn_id":40},"fn_span":{"from":139,"until":142}}},{"statements":[{"type":"assign","target_local":{"id":5,"fn_id":40},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":40},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":4,"fn_id":40},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":40},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":40},"ty":"std::result::Result<_:: for ApiResponse>::deserialize::__Field, __E>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":40},"name":"self","span":{"from":100,"until":111},"ty":"_:: for ApiResponse>::deserialize::__FieldVisitor","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":40},"name":"__value","span":{"from":100,"until":111},"ty":"&str","lives":[{"from":100,"until":111},{"from":139,"until":142}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":40},"ty":"bool","lives":[{"from":139,"until":142}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":40},"ty":"_:: for ApiResponse>::deserialize::__Field","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":40},"ty":"_:: for ApiResponse>::deserialize::__Field","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":42,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":42},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":4,"fn_id":42},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":5,"fn_id":42},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":7,"fn_id":42},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":42},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":6,"fn_id":42},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":42},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":42},"ty":"std::result::Result<_:: for ApiResponse>::deserialize::__Field, __E>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":42},"name":"self","span":{"from":100,"until":111},"ty":"_:: for ApiResponse>::deserialize::__FieldVisitor","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":42},"name":"__value","span":{"from":100,"until":111},"ty":"&[u8]","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":42},"ty":"usize","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":42},"ty":"usize","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":42},"ty":"bool","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":42},"ty":"_:: for ApiResponse>::deserialize::__Field","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":42},"ty":"_:: for ApiResponse>::deserialize::__Field","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":46,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":46},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":1,"fn_id":46},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":3,"fn_id":46},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":46},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":46},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":46},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":46},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":46},"ty":"std::result::Result<_:: for ApiResponse>::deserialize::__Field, <__D as _::_serde::Deserializer<'_>>::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":46},"name":"__deserializer","span":{"from":100,"until":111},"ty":"__D","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":46},"ty":"__D","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":46},"ty":"_:: for ApiResponse>::deserialize::__FieldVisitor","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":55,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":55},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":55},"range":{"from":100,"until":111},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":5,"fn_id":55},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":4,"fn_id":55},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":5,"fn_id":55},"range":{"from":100,"until":111},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":55},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":55},"ty":"std::result::Result<(), std::fmt::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":55},"name":"self","span":{"from":100,"until":111},"ty":"&_:: for ApiResponse>::deserialize::__Visitor<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":55},"name":"__formatter","span":{"from":100,"until":111},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[{"from":100,"until":111}],"drop":false,"drop_range":[],"must_live_at":[{"from":100,"until":111}]},{"type":"other","local":{"id":3,"fn_id":55},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":55},"ty":"&str","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":55},"ty":"&str","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":54,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":8,"fn_id":54},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":54},"range":{"from":100,"until":111},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":54},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":8,"fn_id":54},"range":{"from":100,"until":111},"mutable":true,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":6,"fn_id":54},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":5,"fn_id":54},"fn_span":{"from":100,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":9,"fn_id":54},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":13,"fn_id":54},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":5,"fn_id":54},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":4,"fn_id":54},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":13,"fn_id":54},"range":{"from":100,"until":111}}}],"terminator":{"type":"drop","local":{"id":13,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":10,"fn_id":54},"range":{"from":110,"until":111},"rval":{"type":"move","target_local":{"id":5,"fn_id":54},"range":{"from":110,"until":111}}},{"type":"assign","target_local":{"id":12,"fn_id":54},"range":{"from":110,"until":111},"rval":{"type":"move","target_local":{"id":10,"fn_id":54},"range":{"from":110,"until":111}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":54},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":10,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":14,"fn_id":54},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":24,"fn_id":54},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":20,"fn_id":54},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":24,"fn_id":54},"range":{"from":100,"until":111},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":19,"fn_id":54},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":20,"fn_id":54},"range":{"from":100,"until":111},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":18,"fn_id":54},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"call","destination_local":{"id":17,"fn_id":54},"fn_span":{"from":100,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":15,"fn_id":54},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":4,"fn_id":54},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":3,"fn_id":54},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":15,"fn_id":54},"range":{"from":100,"until":111}}}],"terminator":{"type":"drop","local":{"id":15,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":54},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"drop","local":{"id":17,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":23,"fn_id":54},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":3,"fn_id":54},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":22,"fn_id":54},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"drop","local":{"id":23,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":54},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"drop","local":{"id":22,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":22,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":12,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":10,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":6,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":54},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":54},"ty":"std::result::Result>::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":54},"name":"self","span":{"from":100,"until":111},"ty":"_:: for ApiResponse>::deserialize::__Visitor<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":54},"name":"__seq","span":{"from":100,"until":111},"ty":"__A","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[{"from":100,"until":111}],"drop":true,"drop_range":[{"from":100,"until":111}],"must_live_at":[{"from":100,"until":111}]},{"type":"user","local":{"id":3,"fn_id":54},"name":"__field0","span":{"from":100,"until":111},"ty":"std::string::String","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":100,"until":111}],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":54},"ty":"std::option::Option","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":100,"until":111}],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":54},"ty":"std::ops::ControlFlow>::Error>, std::option::Option>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":100,"until":111}],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":54},"ty":"std::result::Result, <__A as _::_serde::de::SeqAccess<'_>>::Error>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":54},"ty":"&mut __A","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":54},"ty":"&mut __A","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[{"from":100,"until":111}],"drop":false,"drop_range":[],"must_live_at":[{"from":100,"until":111}]},{"type":"other","local":{"id":9,"fn_id":54},"ty":"isize","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":10,"fn_id":54},"name":"residual","span":{"from":110,"until":111},"ty":"std::result::Result>::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":54},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":54},"ty":"std::result::Result>::Error>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":13,"fn_id":54},"name":"val","span":{"from":100,"until":111},"ty":"std::option::Option","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":54},"ty":"isize","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":15,"fn_id":54},"name":"__value","span":{"from":100,"until":111},"ty":"std::string::String","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":54},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":54},"ty":"<__A as _::_serde::de::SeqAccess<'_>>::Error","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":54},"ty":"&dyn _::_serde::de::Expected","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":54},"ty":"&&str","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":20,"fn_id":54},"ty":"&&str","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":21,"fn_id":54},"ty":"&str","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":22,"fn_id":54},"ty":"ApiResponse","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":110,"until":111}],"must_live_at":[]},{"type":"other","local":{"id":23,"fn_id":54},"ty":"std::string::String","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":24,"fn_id":54},"ty":"&&str","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":7,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":7},"range":{"from":202,"until":206},"rval":null},{"type":"assign","target_local":{"id":4,"fn_id":7},"range":{"from":209,"until":214},"rval":null},{"type":"assign","target_local":{"id":5,"fn_id":7},"range":{"from":202,"until":214},"rval":null}],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":7},"range":{"from":202,"until":214},"rval":{"type":"move","target_local":{"id":5,"fn_id":7},"range":{"from":202,"until":214}}}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":7},"ty":"u64","lives":[{"from":213,"until":214}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":7},"name":"left","span":{"from":166,"until":170},"ty":"u64","lives":[{"from":202,"until":206}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":7},"name":"right","span":{"from":177,"until":182},"ty":"u64","lives":[{"from":202,"until":206},{"from":209,"until":214}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":7},"ty":"u64","lives":[{"from":202,"until":214}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":7},"ty":"u64","lives":[{"from":202,"until":214}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":7},"ty":"(u64, bool)","lives":[{"from":202,"until":214}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":10,"basic_blocks":[{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":10},"ty":"std::result::Result","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":10},"ty":"{async fn body of create_ticket()}","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":10},"ty":"std::future::ResumeTy","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":13,"basic_blocks":[{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":13},"ty":"std::result::Result","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":13},"ty":"{async fn body of feedback()}","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":13},"ty":"std::future::ResumeTy","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":16,"basic_blocks":[{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":16},"ty":"std::result::Result","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":16},"ty":"{async fn body of close()}","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":16},"ty":"std::future::ResumeTy","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":56,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":8,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":56},"range":{"from":100,"until":111},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":8,"fn_id":56},"range":{"from":100,"until":111},"mutable":true,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":6,"fn_id":56},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":5,"fn_id":56},"fn_span":{"from":100,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":9,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":13,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":5,"fn_id":56},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":4,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":13,"fn_id":56},"range":{"from":100,"until":111}}}],"terminator":{"type":"drop","local":{"id":13,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":10,"fn_id":56},"range":{"from":110,"until":111},"rval":{"type":"move","target_local":{"id":5,"fn_id":56},"range":{"from":110,"until":111}}},{"type":"assign","target_local":{"id":12,"fn_id":56},"range":{"from":110,"until":111},"rval":{"type":"move","target_local":{"id":10,"fn_id":56},"range":{"from":110,"until":111}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":56},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":10,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":14,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":24,"fn_id":56},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":20,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":24,"fn_id":56},"range":{"from":100,"until":111},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":19,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":20,"fn_id":56},"range":{"from":100,"until":111},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":18,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"call","destination_local":{"id":17,"fn_id":56},"fn_span":{"from":100,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":15,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":4,"fn_id":56},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":3,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":15,"fn_id":56},"range":{"from":100,"until":111}}}],"terminator":{"type":"drop","local":{"id":15,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"drop","local":{"id":17,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":23,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":3,"fn_id":56},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":22,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"drop","local":{"id":23,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"drop","local":{"id":22,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":22,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":12,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":10,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":6,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":56},"ty":"std::result::Result>::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":56},"name":"self","span":{"from":100,"until":111},"ty":"_:: for ApiResponse>::deserialize::__Visitor<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":56},"name":"__seq","span":{"from":100,"until":111},"ty":"__A","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[{"from":100,"until":111}],"drop":true,"drop_range":[{"from":100,"until":111}],"must_live_at":[{"from":100,"until":111}]},{"type":"user","local":{"id":3,"fn_id":56},"name":"__field0","span":{"from":100,"until":111},"ty":"std::string::String","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":100,"until":111}],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":56},"ty":"std::option::Option","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":100,"until":111}],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":56},"ty":"std::ops::ControlFlow>::Error>, std::option::Option>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":100,"until":111}],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":56},"ty":"std::result::Result, <__A as _::_serde::de::SeqAccess<'_>>::Error>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":56},"ty":"&mut __A","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":56},"ty":"&mut __A","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[{"from":100,"until":111}],"drop":false,"drop_range":[],"must_live_at":[{"from":100,"until":111}]},{"type":"other","local":{"id":9,"fn_id":56},"ty":"isize","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":10,"fn_id":56},"name":"residual","span":{"from":110,"until":111},"ty":"std::result::Result>::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":56},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":56},"ty":"std::result::Result>::Error>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":13,"fn_id":56},"name":"val","span":{"from":100,"until":111},"ty":"std::option::Option","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":56},"ty":"isize","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":15,"fn_id":56},"name":"__value","span":{"from":100,"until":111},"ty":"std::string::String","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":56},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":56},"ty":"<__A as _::_serde::de::SeqAccess<'_>>::Error","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":56},"ty":"&dyn _::_serde::de::Expected","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":56},"ty":"&&str","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":20,"fn_id":56},"ty":"&&str","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":21,"fn_id":56},"ty":"&str","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":22,"fn_id":56},"ty":"ApiResponse","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":110,"until":111}],"must_live_at":[]},{"type":"other","local":{"id":23,"fn_id":56},"ty":"std::string::String","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":24,"fn_id":56},"ty":"&&str","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":7,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":7},"range":{"from":202,"until":206},"rval":null},{"type":"assign","target_local":{"id":4,"fn_id":7},"range":{"from":209,"until":214},"rval":null},{"type":"assign","target_local":{"id":5,"fn_id":7},"range":{"from":202,"until":214},"rval":null}],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":7},"range":{"from":202,"until":214},"rval":{"type":"move","target_local":{"id":5,"fn_id":7},"range":{"from":202,"until":214}}}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":7},"ty":"u64","lives":[{"from":213,"until":214}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":7},"name":"left","span":{"from":166,"until":170},"ty":"u64","lives":[{"from":202,"until":206}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":7},"name":"right","span":{"from":177,"until":182},"ty":"u64","lives":[{"from":202,"until":206},{"from":209,"until":214}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":7},"ty":"u64","lives":[{"from":202,"until":214}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":7},"ty":"u64","lives":[{"from":202,"until":214}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":7},"ty":"(u64, bool)","lives":[{"from":202,"until":214}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":10,"basic_blocks":[{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":10},"ty":"std::result::Result","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":10},"ty":"{async fn body of create_ticket()}","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":10},"ty":"std::future::ResumeTy","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":13,"basic_blocks":[{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":13},"ty":"std::result::Result","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":13},"ty":"{async fn body of feedback()}","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":13},"ty":"std::future::ResumeTy","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":16,"basic_blocks":[{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":16},"ty":"std::result::Result","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":16},"ty":"{async fn body of close()}","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":16},"ty":"std::future::ResumeTy","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":65,"basic_blocks":[{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":65},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":65},"ty":"&[&tests::test::TestDescAndFn]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":65},"ty":"&[&tests::test::TestDescAndFn; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":65},"ty":"&[&tests::test::TestDescAndFn; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":65},"ty":"[&tests::test::TestDescAndFn; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":65},"ty":"&tests::test::TestDescAndFn","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":65},"ty":"&tests::test::TestDescAndFn","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":65},"ty":"tests::test::TestDescAndFn","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":65},"ty":"&[&tests::test::TestDescAndFn; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":64,"basic_blocks":[{"statements":[],"terminator":{"type":"call","destination_local":{"id":1,"fn_id":64},"fn_span":{"from":7031,"until":7040}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":64},"range":{"from":7008,"until":7078},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":64},"ty":"()","lives":[{"from":7077,"until":7078}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":64},"name":"result","span":{"from":7022,"until":7028},"ty":"u64","lives":[{"from":7022,"until":7028}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":64},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":64},"ty":"(&u64, &u64)","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":64},"ty":"&u64","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":64},"ty":"&u64","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":64},"ty":"u64","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":64},"ty":"&u64","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":64},"ty":"&u64","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":64},"ty":"bool","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":64},"ty":"u64","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":64},"ty":"u64","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":64},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":64},"ty":"core::panicking::AssertKind","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":64},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":15,"fn_id":64},"ty":"core::panicking::AssertKind","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":64},"ty":"&u64","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":64},"ty":"&u64","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":64},"ty":"&u64","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":64},"ty":"&u64","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":20,"fn_id":64},"ty":"std::option::Option>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":21,"fn_id":64},"ty":"&u64","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":56,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":10,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":56},"range":{"from":100,"until":111},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":9,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":10,"fn_id":56},"range":{"from":100,"until":111},"mutable":true,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":8,"fn_id":56},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":7,"fn_id":56},"fn_span":{"from":100,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":11,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":15,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":7,"fn_id":56},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":6,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":15,"fn_id":56},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":16,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":12,"fn_id":56},"range":{"from":110,"until":111},"rval":{"type":"move","target_local":{"id":7,"fn_id":56},"range":{"from":110,"until":111}}},{"type":"assign","target_local":{"id":14,"fn_id":56},"range":{"from":110,"until":111},"rval":{"type":"move","target_local":{"id":12,"fn_id":56},"range":{"from":110,"until":111}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":56},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":12,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":4,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"drop","local":{"id":7,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":17,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":6,"fn_id":56},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":18,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":40,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":56},"range":{"from":100,"until":111},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":39,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":40,"fn_id":56},"range":{"from":100,"until":111},"mutable":true,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":38,"fn_id":56},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":22,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":3,"fn_id":56},"range":{"from":100,"until":111},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":21,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":22,"fn_id":56},"range":{"from":100,"until":111},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":20,"fn_id":56},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":24,"fn_id":56},"fn_span":{"from":100,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"drop","local":{"id":24,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":30,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":56},"range":{"from":100,"until":111},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":29,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":30,"fn_id":56},"range":{"from":100,"until":111},"mutable":true,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":28,"fn_id":56},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":27,"fn_id":56},"fn_span":{"from":100,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":31,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":35,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":27,"fn_id":56},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":26,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":35,"fn_id":56},"range":{"from":100,"until":111}}}],"terminator":{"type":"drop","local":{"id":35,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":32,"fn_id":56},"range":{"from":110,"until":111},"rval":{"type":"move","target_local":{"id":27,"fn_id":56},"range":{"from":110,"until":111}}},{"type":"assign","target_local":{"id":34,"fn_id":56},"range":{"from":110,"until":111},"rval":{"type":"move","target_local":{"id":32,"fn_id":56},"range":{"from":110,"until":111}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":56},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":32,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":25,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"drop","local":{"id":26,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":56},"range":{"from":100,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":25,"fn_id":56},"range":{"from":100,"until":111}}}],"terminator":{"type":"drop","local":{"id":25,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":25,"fn_id":56},"range":{"from":100,"until":111}}}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":27,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":5,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":37,"fn_id":56},"fn_span":{"from":100,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":41,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":45,"fn_id":56},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":36,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"drop","local":{"id":37,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":42,"fn_id":56},"range":{"from":110,"until":111},"rval":{"type":"move","target_local":{"id":37,"fn_id":56},"range":{"from":110,"until":111}}},{"type":"assign","target_local":{"id":44,"fn_id":56},"range":{"from":110,"until":111},"rval":{"type":"move","target_local":{"id":42,"fn_id":56},"range":{"from":110,"until":111}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":56},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":42,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":5,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":7,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":50,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":53,"fn_id":56},"fn_span":{"from":100,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":51,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":3,"fn_id":56},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":49,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":51,"fn_id":56},"range":{"from":100,"until":111}}}],"terminator":{"type":"drop","local":{"id":51,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":52,"fn_id":56},"fn_span":{"from":100,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":54,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":58,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":52,"fn_id":56},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":49,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":58,"fn_id":56},"range":{"from":100,"until":111}}}],"terminator":{"type":"drop","local":{"id":58,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":55,"fn_id":56},"range":{"from":110,"until":111},"rval":{"type":"move","target_local":{"id":52,"fn_id":56},"range":{"from":110,"until":111}}},{"type":"assign","target_local":{"id":57,"fn_id":56},"range":{"from":110,"until":111},"rval":{"type":"move","target_local":{"id":55,"fn_id":56},"range":{"from":110,"until":111}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":56},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":55,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":52,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":60,"fn_id":56},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":49,"fn_id":56},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":59,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"drop","local":{"id":60,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":56},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"drop","local":{"id":59,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":49,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":52,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":37,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":27,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":7,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":59,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":49,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":57,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":55,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":52,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":53,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":44,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":42,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":37,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":38,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":25,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":34,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":32,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":27,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":28,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":14,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":12,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":7,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":8,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":56},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":56},"ty":"std::result::Result>::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":56},"name":"self","span":{"from":100,"until":111},"ty":"_:: for ApiResponse>::deserialize::__Visitor<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":56},"name":"__map","span":{"from":100,"until":111},"ty":"__A","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[{"from":100,"until":111}],"drop":true,"drop_range":[{"from":100,"until":111}],"must_live_at":[{"from":100,"until":111}]},{"type":"user","local":{"id":3,"fn_id":56},"name":"__field0","span":{"from":100,"until":111},"ty":"std::option::Option","lives":[{"from":100,"until":111}],"shared_borrow":[{"from":100,"until":111}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":100,"until":111}],"must_live_at":[{"from":100,"until":111}]},{"type":"other","local":{"id":4,"fn_id":56},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":56},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":56},"ty":"std::option::Option<_:: for ApiResponse>::deserialize::__Field>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":56},"ty":"std::ops::ControlFlow>::Error>, std::option::Option<_:: for ApiResponse>::deserialize::__Field>>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":100,"until":111}],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":56},"ty":"std::result::Result for ApiResponse>::deserialize::__Field>, <__A as _::_serde::de::MapAccess<'_>>::Error>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":56},"ty":"&mut __A","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":56},"ty":"&mut __A","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[{"from":100,"until":111}],"drop":false,"drop_range":[],"must_live_at":[{"from":100,"until":111}]},{"type":"other","local":{"id":11,"fn_id":56},"ty":"isize","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":12,"fn_id":56},"name":"residual","span":{"from":110,"until":111},"ty":"std::result::Result>::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":56},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":56},"ty":"std::result::Result>::Error>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":15,"fn_id":56},"name":"val","span":{"from":100,"until":111},"ty":"std::option::Option<_:: for ApiResponse>::deserialize::__Field>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":56},"ty":"isize","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":17,"fn_id":56},"name":"__key","span":{"from":100,"until":111},"ty":"_:: for ApiResponse>::deserialize::__Field","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":56},"ty":"isize","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":56},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":20,"fn_id":56},"ty":"bool","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":21,"fn_id":56},"ty":"&std::option::Option","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":22,"fn_id":56},"ty":"&std::option::Option","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":23,"fn_id":56},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":24,"fn_id":56},"ty":"<__A as _::_serde::de::MapAccess<'_>>::Error","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":25,"fn_id":56},"ty":"std::option::Option","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":110,"until":111}],"must_live_at":[]},{"type":"other","local":{"id":26,"fn_id":56},"ty":"std::string::String","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":27,"fn_id":56},"ty":"std::ops::ControlFlow>::Error>, std::string::String>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":100,"until":111}],"must_live_at":[]},{"type":"other","local":{"id":28,"fn_id":56},"ty":"std::result::Result>::Error>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":29,"fn_id":56},"ty":"&mut __A","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":30,"fn_id":56},"ty":"&mut __A","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[{"from":100,"until":111}],"drop":false,"drop_range":[],"must_live_at":[{"from":100,"until":111}]},{"type":"other","local":{"id":31,"fn_id":56},"ty":"isize","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":32,"fn_id":56},"name":"residual","span":{"from":110,"until":111},"ty":"std::result::Result>::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":33,"fn_id":56},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":34,"fn_id":56},"ty":"std::result::Result>::Error>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":35,"fn_id":56},"name":"val","span":{"from":100,"until":111},"ty":"std::string::String","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":36,"fn_id":56},"ty":"_::_serde::de::IgnoredAny","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":37,"fn_id":56},"ty":"std::ops::ControlFlow>::Error>, _::_serde::de::IgnoredAny>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":100,"until":111}],"must_live_at":[]},{"type":"other","local":{"id":38,"fn_id":56},"ty":"std::result::Result<_::_serde::de::IgnoredAny, <__A as _::_serde::de::MapAccess<'_>>::Error>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":39,"fn_id":56},"ty":"&mut __A","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":40,"fn_id":56},"ty":"&mut __A","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[{"from":100,"until":111}],"drop":false,"drop_range":[],"must_live_at":[{"from":100,"until":111}]},{"type":"other","local":{"id":41,"fn_id":56},"ty":"isize","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":42,"fn_id":56},"name":"residual","span":{"from":110,"until":111},"ty":"std::result::Result>::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":43,"fn_id":56},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":44,"fn_id":56},"ty":"std::result::Result>::Error>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":45,"fn_id":56},"name":"val","span":{"from":100,"until":111},"ty":"_::_serde::de::IgnoredAny","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":46,"fn_id":56},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":47,"fn_id":56},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":48,"fn_id":56},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":49,"fn_id":56},"name":"__field0","span":{"from":100,"until":111},"ty":"std::string::String","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":50,"fn_id":56},"ty":"isize","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":51,"fn_id":56},"name":"__field0","span":{"from":100,"until":111},"ty":"std::string::String","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":52,"fn_id":56},"ty":"std::ops::ControlFlow>::Error>, std::string::String>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":100,"until":111}],"must_live_at":[]},{"type":"other","local":{"id":53,"fn_id":56},"ty":"std::result::Result>::Error>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":54,"fn_id":56},"ty":"isize","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":55,"fn_id":56},"name":"residual","span":{"from":110,"until":111},"ty":"std::result::Result>::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":56,"fn_id":56},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":57,"fn_id":56},"ty":"std::result::Result>::Error>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":58,"fn_id":56},"name":"val","span":{"from":100,"until":111},"ty":"std::string::String","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":59,"fn_id":56},"ty":"ApiResponse","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":110,"until":111}],"must_live_at":[]},{"type":"other","local":{"id":60,"fn_id":56},"ty":"std::string::String","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]}]},{"fn_id":58,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":58},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":10,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":58},"range":{"from":100,"until":111},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":9,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":10,"fn_id":58},"range":{"from":100,"until":111},"mutable":true,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":8,"fn_id":58},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":7,"fn_id":58},"fn_span":{"from":100,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":11,"fn_id":58},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":15,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":7,"fn_id":58},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":6,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":15,"fn_id":58},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":16,"fn_id":58},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":12,"fn_id":58},"range":{"from":110,"until":111},"rval":{"type":"move","target_local":{"id":7,"fn_id":58},"range":{"from":110,"until":111}}},{"type":"assign","target_local":{"id":14,"fn_id":58},"range":{"from":110,"until":111},"rval":{"type":"move","target_local":{"id":12,"fn_id":58},"range":{"from":110,"until":111}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":58},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":12,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":4,"fn_id":58},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"drop","local":{"id":7,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":17,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":6,"fn_id":58},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":18,"fn_id":58},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":40,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":58},"range":{"from":100,"until":111},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":39,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":40,"fn_id":58},"range":{"from":100,"until":111},"mutable":true,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":38,"fn_id":58},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":22,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":3,"fn_id":58},"range":{"from":100,"until":111},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":21,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":22,"fn_id":58},"range":{"from":100,"until":111},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":20,"fn_id":58},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":24,"fn_id":58},"fn_span":{"from":100,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":58},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"drop","local":{"id":24,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":30,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":58},"range":{"from":100,"until":111},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":29,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"borrow","target_local":{"id":30,"fn_id":58},"range":{"from":100,"until":111},"mutable":true,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":28,"fn_id":58},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":27,"fn_id":58},"fn_span":{"from":100,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":31,"fn_id":58},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":35,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":27,"fn_id":58},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":26,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":35,"fn_id":58},"range":{"from":100,"until":111}}}],"terminator":{"type":"drop","local":{"id":35,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":32,"fn_id":58},"range":{"from":110,"until":111},"rval":{"type":"move","target_local":{"id":27,"fn_id":58},"range":{"from":110,"until":111}}},{"type":"assign","target_local":{"id":34,"fn_id":58},"range":{"from":110,"until":111},"rval":{"type":"move","target_local":{"id":32,"fn_id":58},"range":{"from":110,"until":111}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":58},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":32,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":25,"fn_id":58},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"drop","local":{"id":26,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":58},"range":{"from":100,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":25,"fn_id":58},"range":{"from":100,"until":111}}}],"terminator":{"type":"drop","local":{"id":25,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":25,"fn_id":58},"range":{"from":100,"until":111}}}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":27,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":5,"fn_id":58},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":37,"fn_id":58},"fn_span":{"from":100,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":41,"fn_id":58},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":45,"fn_id":58},"range":{"from":100,"until":111},"rval":null},{"type":"assign","target_local":{"id":36,"fn_id":58},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"drop","local":{"id":37,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":42,"fn_id":58},"range":{"from":110,"until":111},"rval":{"type":"move","target_local":{"id":37,"fn_id":58},"range":{"from":110,"until":111}}},{"type":"assign","target_local":{"id":44,"fn_id":58},"range":{"from":110,"until":111},"rval":{"type":"move","target_local":{"id":42,"fn_id":58},"range":{"from":110,"until":111}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":58},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":42,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":5,"fn_id":58},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":7,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":50,"fn_id":58},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":53,"fn_id":58},"fn_span":{"from":100,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":51,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":3,"fn_id":58},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":49,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":51,"fn_id":58},"range":{"from":100,"until":111}}}],"terminator":{"type":"drop","local":{"id":51,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":52,"fn_id":58},"fn_span":{"from":100,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":54,"fn_id":58},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":58,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":52,"fn_id":58},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":49,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":58,"fn_id":58},"range":{"from":100,"until":111}}}],"terminator":{"type":"drop","local":{"id":58,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":55,"fn_id":58},"range":{"from":110,"until":111},"rval":{"type":"move","target_local":{"id":52,"fn_id":58},"range":{"from":110,"until":111}}},{"type":"assign","target_local":{"id":57,"fn_id":58},"range":{"from":110,"until":111},"rval":{"type":"move","target_local":{"id":55,"fn_id":58},"range":{"from":110,"until":111}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":58},"fn_span":{"from":100,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":55,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":52,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":60,"fn_id":58},"range":{"from":100,"until":111},"rval":{"type":"move","target_local":{"id":49,"fn_id":58},"range":{"from":100,"until":111}}},{"type":"assign","target_local":{"id":59,"fn_id":58},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"drop","local":{"id":60,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":58},"range":{"from":100,"until":111},"rval":null}],"terminator":{"type":"drop","local":{"id":59,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":49,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":52,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":37,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":27,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":7,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":59,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":49,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":57,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":55,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":52,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":53,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":44,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":42,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":37,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":38,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":25,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":34,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":32,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":27,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":28,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":14,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":12,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":7,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":8,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":58},"range":{"from":110,"until":111}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":58},"ty":"std::result::Result>::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":58},"name":"self","span":{"from":100,"until":111},"ty":"_:: for ApiResponse>::deserialize::__Visitor<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":58},"name":"__map","span":{"from":100,"until":111},"ty":"__A","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[{"from":100,"until":111}],"drop":true,"drop_range":[{"from":100,"until":111}],"must_live_at":[{"from":100,"until":111}]},{"type":"user","local":{"id":3,"fn_id":58},"name":"__field0","span":{"from":100,"until":111},"ty":"std::option::Option","lives":[{"from":100,"until":111}],"shared_borrow":[{"from":100,"until":111}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":100,"until":111}],"must_live_at":[{"from":100,"until":111}]},{"type":"other","local":{"id":4,"fn_id":58},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":58},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":58},"ty":"std::option::Option<_:: for ApiResponse>::deserialize::__Field>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":58},"ty":"std::ops::ControlFlow>::Error>, std::option::Option<_:: for ApiResponse>::deserialize::__Field>>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":100,"until":111}],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":58},"ty":"std::result::Result for ApiResponse>::deserialize::__Field>, <__A as _::_serde::de::MapAccess<'_>>::Error>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":58},"ty":"&mut __A","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":58},"ty":"&mut __A","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[{"from":100,"until":111}],"drop":false,"drop_range":[],"must_live_at":[{"from":100,"until":111}]},{"type":"other","local":{"id":11,"fn_id":58},"ty":"isize","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":12,"fn_id":58},"name":"residual","span":{"from":110,"until":111},"ty":"std::result::Result>::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":58},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":58},"ty":"std::result::Result>::Error>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":15,"fn_id":58},"name":"val","span":{"from":100,"until":111},"ty":"std::option::Option<_:: for ApiResponse>::deserialize::__Field>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":58},"ty":"isize","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":17,"fn_id":58},"name":"__key","span":{"from":100,"until":111},"ty":"_:: for ApiResponse>::deserialize::__Field","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":58},"ty":"isize","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":58},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":20,"fn_id":58},"ty":"bool","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":21,"fn_id":58},"ty":"&std::option::Option","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":22,"fn_id":58},"ty":"&std::option::Option","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":23,"fn_id":58},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":24,"fn_id":58},"ty":"<__A as _::_serde::de::MapAccess<'_>>::Error","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":25,"fn_id":58},"ty":"std::option::Option","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":110,"until":111}],"must_live_at":[]},{"type":"other","local":{"id":26,"fn_id":58},"ty":"std::string::String","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":27,"fn_id":58},"ty":"std::ops::ControlFlow>::Error>, std::string::String>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":100,"until":111}],"must_live_at":[]},{"type":"other","local":{"id":28,"fn_id":58},"ty":"std::result::Result>::Error>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":29,"fn_id":58},"ty":"&mut __A","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":30,"fn_id":58},"ty":"&mut __A","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[{"from":100,"until":111}],"drop":false,"drop_range":[],"must_live_at":[{"from":100,"until":111}]},{"type":"other","local":{"id":31,"fn_id":58},"ty":"isize","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":32,"fn_id":58},"name":"residual","span":{"from":110,"until":111},"ty":"std::result::Result>::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":33,"fn_id":58},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":34,"fn_id":58},"ty":"std::result::Result>::Error>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":35,"fn_id":58},"name":"val","span":{"from":100,"until":111},"ty":"std::string::String","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":36,"fn_id":58},"ty":"_::_serde::de::IgnoredAny","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":37,"fn_id":58},"ty":"std::ops::ControlFlow>::Error>, _::_serde::de::IgnoredAny>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":100,"until":111}],"must_live_at":[]},{"type":"other","local":{"id":38,"fn_id":58},"ty":"std::result::Result<_::_serde::de::IgnoredAny, <__A as _::_serde::de::MapAccess<'_>>::Error>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":39,"fn_id":58},"ty":"&mut __A","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":40,"fn_id":58},"ty":"&mut __A","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[{"from":100,"until":111}],"drop":false,"drop_range":[],"must_live_at":[{"from":100,"until":111}]},{"type":"other","local":{"id":41,"fn_id":58},"ty":"isize","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":42,"fn_id":58},"name":"residual","span":{"from":110,"until":111},"ty":"std::result::Result>::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":43,"fn_id":58},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":44,"fn_id":58},"ty":"std::result::Result>::Error>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":45,"fn_id":58},"name":"val","span":{"from":100,"until":111},"ty":"_::_serde::de::IgnoredAny","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":46,"fn_id":58},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":47,"fn_id":58},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":48,"fn_id":58},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":49,"fn_id":58},"name":"__field0","span":{"from":100,"until":111},"ty":"std::string::String","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":50,"fn_id":58},"ty":"isize","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":51,"fn_id":58},"name":"__field0","span":{"from":100,"until":111},"ty":"std::string::String","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":52,"fn_id":58},"ty":"std::ops::ControlFlow>::Error>, std::string::String>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":100,"until":111}],"must_live_at":[]},{"type":"other","local":{"id":53,"fn_id":58},"ty":"std::result::Result>::Error>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":54,"fn_id":58},"ty":"isize","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":55,"fn_id":58},"name":"residual","span":{"from":110,"until":111},"ty":"std::result::Result>::Error>","lives":[{"from":110,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":56,"fn_id":58},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":57,"fn_id":58},"ty":"std::result::Result>::Error>","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":58,"fn_id":58},"name":"val","span":{"from":100,"until":111},"ty":"std::string::String","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":59,"fn_id":58},"ty":"ApiResponse","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":110,"until":111}],"must_live_at":[]},{"type":"other","local":{"id":60,"fn_id":58},"ty":"std::string::String","lives":[{"from":100,"until":111}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]}]}]},"/Users/hokori/code/rust/tms_tools/src-tauri/build.rs":{"items":[{"fn_id":3,"basic_blocks":[{"statements":[],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":3},"fn_span":{"from":16,"until":36}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":3},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]}]},"/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs":{"items":[{"fn_id":21,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":21},"range":{"from":105,"until":110},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":21},"range":{"from":105,"until":110},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":21},"range":{"from":105,"until":110},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":21},"range":{"from":105,"until":110},"rval":{"type":"borrow","target_local":{"id":3,"fn_id":21},"range":{"from":105,"until":110},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":6,"fn_id":21},"fn_span":{"from":295,"until":299}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":21},"range":{"from":105,"until":110},"rval":null}],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":5,"fn_id":21},"range":{"from":105,"until":110},"rval":{"type":"borrow","target_local":{"id":6,"fn_id":21},"range":{"from":105,"until":110},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":4,"fn_id":21},"range":{"from":105,"until":110},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":21},"range":{"from":105,"until":110},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":21},"ty":"std::option::Option<&dyn std::error::Error>","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":21},"name":"self","span":{"from":105,"until":110},"ty":"&ScrapeError","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":21},"ty":"isize","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":3,"fn_id":21},"name":"source","span":{"from":105,"until":110},"ty":"®ex::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":21},"ty":"&dyn std::error::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":21},"ty":"&dyn std::error::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":21},"ty":"&dyn std::error::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":21},"ty":"®ex::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":19,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":19},"range":{"from":98,"until":103},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":11,"fn_id":19},"range":{"from":301,"until":313},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":19},"range":{"from":301,"until":313},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":12,"fn_id":19},"range":{"from":98,"until":103},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":19},"range":{"from":98,"until":103},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":14,"fn_id":19},"range":{"from":98,"until":103},"rval":null},{"type":"assign","target_local":{"id":13,"fn_id":19},"range":{"from":98,"until":103},"rval":{"type":"borrow","target_local":{"id":14,"fn_id":19},"range":{"from":98,"until":103},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":17,"fn_id":19},"range":{"from":301,"until":313},"rval":{"type":"borrow","target_local":{"id":11,"fn_id":19},"range":{"from":301,"until":313},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":16,"fn_id":19},"range":{"from":301,"until":313},"rval":{"type":"borrow","target_local":{"id":17,"fn_id":19},"range":{"from":301,"until":313},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":15,"fn_id":19},"range":{"from":301,"until":313},"rval":null}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":19},"fn_span":{"from":98,"until":103}}},{"statements":[{"type":"assign","target_local":{"id":4,"fn_id":19},"range":{"from":214,"until":220},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":19},"range":{"from":214,"until":220},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":5,"fn_id":19},"range":{"from":98,"until":103},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":19},"range":{"from":98,"until":103},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":19},"range":{"from":98,"until":103},"rval":null},{"type":"assign","target_local":{"id":6,"fn_id":19},"range":{"from":98,"until":103},"rval":{"type":"borrow","target_local":{"id":7,"fn_id":19},"range":{"from":98,"until":103},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":10,"fn_id":19},"range":{"from":214,"until":220},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":19},"range":{"from":214,"until":220},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":9,"fn_id":19},"range":{"from":214,"until":220},"rval":{"type":"borrow","target_local":{"id":10,"fn_id":19},"range":{"from":214,"until":220},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":8,"fn_id":19},"range":{"from":214,"until":220},"rval":null}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":19},"fn_span":{"from":98,"until":103}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":19},"ty":"std::result::Result<(), std::fmt::Error>","lives":[{"from":102,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":19},"name":"self","span":{"from":98,"until":103},"ty":"&ScrapeError","lives":[{"from":98,"until":103},{"from":301,"until":313},{"from":214,"until":220}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":19},"name":"f","span":{"from":98,"until":103},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":98,"until":103},{"from":301,"until":313},{"from":214,"until":220}],"shared_borrow":[],"mutable_borrow":[{"from":98,"until":103},{"from":301,"until":313},{"from":214,"until":220}],"drop":false,"drop_range":[],"must_live_at":[{"from":98,"until":103},{"from":301,"until":313},{"from":214,"until":220}]},{"type":"other","local":{"id":3,"fn_id":19},"ty":"isize","lives":[{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":4,"fn_id":19},"name":"__self_0","span":{"from":214,"until":220},"ty":"&std::string::String","lives":[{"from":98,"until":103},{"from":214,"until":220}],"shared_borrow":[{"from":214,"until":220},{"from":98,"until":103}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":214,"until":220},{"from":98,"until":103}]},{"type":"other","local":{"id":5,"fn_id":19},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":98,"until":103},{"from":214,"until":220}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":19},"ty":"&str","lives":[{"from":214,"until":220},{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":19},"ty":"&str","lives":[{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":19},"ty":"&dyn std::fmt::Debug","lives":[{"from":219,"until":220},{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":19},"ty":"&&std::string::String","lives":[{"from":214,"until":220}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":19},"ty":"&&std::string::String","lives":[{"from":214,"until":220}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":11,"fn_id":19},"name":"__self_0","span":{"from":301,"until":313},"ty":"®ex::Error","lives":[{"from":98,"until":103},{"from":301,"until":313}],"shared_borrow":[{"from":301,"until":313},{"from":98,"until":103}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":301,"until":313},{"from":98,"until":103}]},{"type":"other","local":{"id":12,"fn_id":19},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":98,"until":103},{"from":301,"until":313}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":19},"ty":"&str","lives":[{"from":301,"until":313},{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":19},"ty":"&str","lives":[{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":15,"fn_id":19},"ty":"&dyn std::fmt::Debug","lives":[{"from":312,"until":313},{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":19},"ty":"&®ex::Error","lives":[{"from":301,"until":313}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":19},"ty":"&®ex::Error","lives":[{"from":301,"until":313}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":27,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":27},"range":{"from":105,"until":110},"rval":{"type":"move","target_local":{"id":1,"fn_id":27},"range":{"from":105,"until":110}}},{"type":"assign","target_local":{"id":0,"fn_id":27},"range":{"from":105,"until":110},"rval":null}],"terminator":{"type":"drop","local":{"id":2,"fn_id":27},"range":{"from":109,"until":110}}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":27},"range":{"from":109,"until":110}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":27},"range":{"from":109,"until":110}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":27},"ty":"ScrapeError","lives":[{"from":109,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":27},"name":"source","span":{"from":105,"until":110},"ty":"regex::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":27},"ty":"regex::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]}]},{"fn_id":10,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":5,"fn_id":10},"range":{"from":738,"until":742},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":10},"range":{"from":738,"until":742},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":4,"fn_id":10},"fn_span":{"from":743,"until":749}}},{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":10},"range":{"from":738,"until":749},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":10},"range":{"from":738,"until":749},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":6,"fn_id":10},"range":{"from":753,"until":762},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":10},"range":{"from":753,"until":762},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":10},"fn_span":{"from":738,"until":762}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":10},"ty":"bool","lives":[{"from":761,"until":762}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":10},"name":"link_text","span":{"from":405,"until":414},"ty":"&mut {closure@src/lib.rs:24:31: 24:37}","lives":[{"from":738,"until":749},{"from":753,"until":762}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":10},"name":"text","span":{"from":732,"until":736},"ty":"&str","lives":[{"from":738,"until":749}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":10},"ty":"&&str","lives":[{"from":738,"until":762}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":10},"ty":"&str","lives":[{"from":738,"until":749}],"shared_borrow":[{"from":738,"until":762}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":748,"until":749},{"from":753,"until":762}]},{"type":"other","local":{"id":5,"fn_id":10},"ty":"&str","lives":[{"from":738,"until":749}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":10},"ty":"&&str","lives":[{"from":738,"until":762}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":24,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":24},"range":{"from":105,"until":110},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":18,"fn_id":24},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":24},"range":{"from":258,"until":273},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":19,"fn_id":24},"range":{"from":105,"until":110},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":24},"range":{"from":105,"until":110},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":32,"fn_id":24},"range":{"from":258,"until":273},"rval":null},{"type":"assign","target_local":{"id":22,"fn_id":24},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":32,"fn_id":24},"range":{"from":258,"until":273},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":21,"fn_id":24},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":22,"fn_id":24},"range":{"from":258,"until":273},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":31,"fn_id":24},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":18,"fn_id":24},"range":{"from":258,"until":273},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":30,"fn_id":24},"fn_span":{"from":258,"until":273}}},{"statements":[{"type":"assign","target_local":{"id":4,"fn_id":24},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":24},"range":{"from":175,"until":191},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":5,"fn_id":24},"range":{"from":105,"until":110},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":24},"range":{"from":105,"until":110},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":33,"fn_id":24},"range":{"from":175,"until":191},"rval":null},{"type":"assign","target_local":{"id":8,"fn_id":24},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":33,"fn_id":24},"range":{"from":175,"until":191},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":24},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":8,"fn_id":24},"range":{"from":175,"until":191},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":17,"fn_id":24},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":24},"range":{"from":175,"until":191},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":16,"fn_id":24},"fn_span":{"from":175,"until":191}}},{"statements":[{"type":"assign","target_local":{"id":15,"fn_id":24},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":16,"fn_id":24},"range":{"from":175,"until":191},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":14,"fn_id":24},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":24},"range":{"from":175,"until":191},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":13,"fn_id":24},"fn_span":{"from":175,"until":191}}},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":29,"fn_id":24},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":30,"fn_id":24},"range":{"from":258,"until":273},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":28,"fn_id":24},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":29,"fn_id":24},"range":{"from":258,"until":273},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":27,"fn_id":24},"fn_span":{"from":258,"until":273}}},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":24},"ty":"std::result::Result<(), std::fmt::Error>","lives":[{"from":109,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":24},"name":"self","span":{"from":105,"until":110},"ty":"&ScrapeError","lives":[{"from":105,"until":110},{"from":258,"until":273},{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":24},"name":"__formatter","span":{"from":105,"until":110},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":105,"until":110},{"from":258,"until":273},{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[{"from":258,"until":273},{"from":175,"until":191}],"drop":false,"drop_range":[],"must_live_at":[{"from":258,"until":273},{"from":175,"until":191}]},{"type":"other","local":{"id":3,"fn_id":24},"ty":"isize","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":4,"fn_id":24},"name":"_0","span":{"from":175,"until":191},"ty":"&std::string::String","lives":[{"from":105,"until":110},{"from":175,"until":191}],"shared_borrow":[{"from":175,"until":191}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":175,"until":191}]},{"type":"other","local":{"id":5,"fn_id":24},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":24},"ty":"std::fmt::Arguments<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":24},"ty":"&[&str; 1]","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":24},"ty":"&[&str; 1]","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":24},"ty":"[&str; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":24},"ty":"&[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":24},"ty":"&[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":24},"ty":"[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":24},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":190,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":24},"ty":"&&std::string::String","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":15,"fn_id":24},"ty":"&&std::string::String","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":24},"ty":"&std::string::String","lives":[{"from":175,"until":191}],"shared_borrow":[{"from":175,"until":191}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":175,"until":191}]},{"type":"other","local":{"id":17,"fn_id":24},"ty":"&&std::string::String","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":18,"fn_id":24},"name":"_0","span":{"from":258,"until":273},"ty":"®ex::Error","lives":[{"from":105,"until":110},{"from":258,"until":273}],"shared_borrow":[{"from":258,"until":273}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":258,"until":273}]},{"type":"other","local":{"id":19,"fn_id":24},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":20,"fn_id":24},"ty":"std::fmt::Arguments<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":21,"fn_id":24},"ty":"&[&str; 1]","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":22,"fn_id":24},"ty":"&[&str; 1]","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":23,"fn_id":24},"ty":"[&str; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":24,"fn_id":24},"ty":"&[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":25,"fn_id":24},"ty":"&[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":26,"fn_id":24},"ty":"[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":27,"fn_id":24},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":272,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":28,"fn_id":24},"ty":"&®ex::Error","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":29,"fn_id":24},"ty":"&®ex::Error","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":30,"fn_id":24},"ty":"®ex::Error","lives":[{"from":258,"until":273}],"shared_borrow":[{"from":258,"until":273}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":258,"until":273}]},{"type":"other","local":{"id":31,"fn_id":24},"ty":"&®ex::Error","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":32,"fn_id":24},"ty":"&[&str; 1]","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":33,"fn_id":24},"ty":"&[&str; 1]","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":38,"basic_blocks":[{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":38},"fn_span":{"from":3141,"until":3225}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":38},"ty":"std::result::Result<(), std::string::String>","lives":[{"from":3224,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":38},"ty":"&{closure@src/lib.rs:100:5: 103:6}","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":38},"ty":"()","lives":[{"from":3141,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":37,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":37},"range":{"from":3141,"until":3225},"rval":null},{"type":"assign","target_local":{"id":3,"fn_id":37},"range":{"from":3141,"until":3225},"rval":null},{"type":"assign","target_local":{"id":4,"fn_id":37},"range":{"from":3141,"until":3225},"rval":null},{"type":"assign","target_local":{"id":5,"fn_id":37},"range":{"from":3141,"until":3225},"rval":null},{"type":"assign","target_local":{"id":1,"fn_id":37},"range":{"from":3141,"until":3225},"rval":null}],"terminator":{"type":"drop","local":{"id":2,"fn_id":37},"range":{"from":3224,"until":3225}}},{"statements":[{"type":"assign","target_local":{"id":8,"fn_id":37},"range":{"from":3141,"until":3225},"rval":null},{"type":"assign","target_local":{"id":7,"fn_id":37},"range":{"from":3141,"until":3225},"rval":null},{"type":"assign","target_local":{"id":6,"fn_id":37},"range":{"from":3141,"until":3225},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":37},"range":{"from":3141,"until":3225},"rval":null}],"terminator":{"type":"drop","local":{"id":6,"fn_id":37},"range":{"from":3224,"until":3225}}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":37},"range":{"from":3224,"until":3225}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":37},"range":{"from":3224,"until":3225}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":37},"ty":"tests::test::TestDescAndFn","lives":[{"from":3141,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":37},"ty":"tests::test::TestDesc","lives":[{"from":3141,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":3224,"until":3225}],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":37},"ty":"tests::test::TestName","lives":[{"from":3141,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":37},"ty":"std::option::Option<&str>","lives":[{"from":3141,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":37},"ty":"tests::test::ShouldPanic","lives":[{"from":3141,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":37},"ty":"tests::test::TestType","lives":[{"from":3141,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":37},"ty":"tests::test::TestFn","lives":[{"from":3141,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":37},"ty":"fn() -> std::result::Result<(), std::string::String>","lives":[{"from":3141,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":37},"ty":"{closure@src/lib.rs:100:5: 103:6}","lives":[{"from":3141,"until":3225}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":23,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":23},"range":{"from":105,"until":110},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":23},"range":{"from":105,"until":110},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":23},"range":{"from":105,"until":110},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":23},"range":{"from":105,"until":110},"rval":{"type":"borrow","target_local":{"id":3,"fn_id":23},"range":{"from":105,"until":110},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":6,"fn_id":23},"fn_span":{"from":295,"until":299}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":23},"range":{"from":105,"until":110},"rval":null}],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":5,"fn_id":23},"range":{"from":105,"until":110},"rval":{"type":"borrow","target_local":{"id":6,"fn_id":23},"range":{"from":105,"until":110},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":4,"fn_id":23},"range":{"from":105,"until":110},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":23},"range":{"from":105,"until":110},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":23},"ty":"std::option::Option<&dyn std::error::Error>","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":23},"name":"self","span":{"from":105,"until":110},"ty":"&ScrapeError","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":23},"ty":"isize","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":3,"fn_id":23},"name":"source","span":{"from":105,"until":110},"ty":"®ex::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":23},"ty":"&dyn std::error::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":23},"ty":"&dyn std::error::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":23},"ty":"&dyn std::error::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":23},"ty":"®ex::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":21,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":21},"range":{"from":98,"until":103},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":11,"fn_id":21},"range":{"from":301,"until":313},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":21},"range":{"from":301,"until":313},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":12,"fn_id":21},"range":{"from":98,"until":103},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":21},"range":{"from":98,"until":103},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":14,"fn_id":21},"range":{"from":98,"until":103},"rval":null},{"type":"assign","target_local":{"id":13,"fn_id":21},"range":{"from":98,"until":103},"rval":{"type":"borrow","target_local":{"id":14,"fn_id":21},"range":{"from":98,"until":103},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":17,"fn_id":21},"range":{"from":301,"until":313},"rval":{"type":"borrow","target_local":{"id":11,"fn_id":21},"range":{"from":301,"until":313},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":16,"fn_id":21},"range":{"from":301,"until":313},"rval":{"type":"borrow","target_local":{"id":17,"fn_id":21},"range":{"from":301,"until":313},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":15,"fn_id":21},"range":{"from":301,"until":313},"rval":null}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":21},"fn_span":{"from":98,"until":103}}},{"statements":[{"type":"assign","target_local":{"id":4,"fn_id":21},"range":{"from":214,"until":220},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":21},"range":{"from":214,"until":220},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":5,"fn_id":21},"range":{"from":98,"until":103},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":21},"range":{"from":98,"until":103},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":21},"range":{"from":98,"until":103},"rval":null},{"type":"assign","target_local":{"id":6,"fn_id":21},"range":{"from":98,"until":103},"rval":{"type":"borrow","target_local":{"id":7,"fn_id":21},"range":{"from":98,"until":103},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":10,"fn_id":21},"range":{"from":214,"until":220},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":21},"range":{"from":214,"until":220},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":9,"fn_id":21},"range":{"from":214,"until":220},"rval":{"type":"borrow","target_local":{"id":10,"fn_id":21},"range":{"from":214,"until":220},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":8,"fn_id":21},"range":{"from":214,"until":220},"rval":null}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":21},"fn_span":{"from":98,"until":103}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":21},"ty":"std::result::Result<(), std::fmt::Error>","lives":[{"from":102,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":21},"name":"self","span":{"from":98,"until":103},"ty":"&ScrapeError","lives":[{"from":98,"until":103},{"from":301,"until":313},{"from":214,"until":220}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":21},"name":"f","span":{"from":98,"until":103},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":98,"until":103},{"from":301,"until":313},{"from":214,"until":220}],"shared_borrow":[],"mutable_borrow":[{"from":98,"until":103},{"from":301,"until":313},{"from":214,"until":220}],"drop":false,"drop_range":[],"must_live_at":[{"from":98,"until":103},{"from":301,"until":313},{"from":214,"until":220}]},{"type":"other","local":{"id":3,"fn_id":21},"ty":"isize","lives":[{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":4,"fn_id":21},"name":"__self_0","span":{"from":214,"until":220},"ty":"&std::string::String","lives":[{"from":98,"until":103},{"from":214,"until":220}],"shared_borrow":[{"from":214,"until":220},{"from":98,"until":103}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":214,"until":220},{"from":98,"until":103}]},{"type":"other","local":{"id":5,"fn_id":21},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":98,"until":103},{"from":214,"until":220}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":21},"ty":"&str","lives":[{"from":214,"until":220},{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":21},"ty":"&str","lives":[{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":21},"ty":"&dyn std::fmt::Debug","lives":[{"from":219,"until":220},{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":21},"ty":"&&std::string::String","lives":[{"from":214,"until":220}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":21},"ty":"&&std::string::String","lives":[{"from":214,"until":220}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":11,"fn_id":21},"name":"__self_0","span":{"from":301,"until":313},"ty":"®ex::Error","lives":[{"from":98,"until":103},{"from":301,"until":313}],"shared_borrow":[{"from":301,"until":313},{"from":98,"until":103}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":301,"until":313},{"from":98,"until":103}]},{"type":"other","local":{"id":12,"fn_id":21},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":98,"until":103},{"from":301,"until":313}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":21},"ty":"&str","lives":[{"from":301,"until":313},{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":21},"ty":"&str","lives":[{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":15,"fn_id":21},"ty":"&dyn std::fmt::Debug","lives":[{"from":312,"until":313},{"from":98,"until":103}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":21},"ty":"&®ex::Error","lives":[{"from":301,"until":313}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":21},"ty":"&®ex::Error","lives":[{"from":301,"until":313}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":29,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":29},"range":{"from":105,"until":110},"rval":{"type":"move","target_local":{"id":1,"fn_id":29},"range":{"from":105,"until":110}}},{"type":"assign","target_local":{"id":0,"fn_id":29},"range":{"from":105,"until":110},"rval":null}],"terminator":{"type":"drop","local":{"id":2,"fn_id":29},"range":{"from":109,"until":110}}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":29},"range":{"from":109,"until":110}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":1,"fn_id":29},"range":{"from":109,"until":110}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":29},"ty":"ScrapeError","lives":[{"from":109,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":29},"name":"source","span":{"from":105,"until":110},"ty":"regex::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":29},"ty":"regex::Error","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]}]},{"fn_id":9,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":19,"fn_id":9},"range":{"from":570,"until":593},"rval":null},{"type":"assign","target_local":{"id":8,"fn_id":9},"range":{"from":570,"until":593},"rval":{"type":"borrow","target_local":{"id":19,"fn_id":9},"range":{"from":570,"until":593},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":9},"range":{"from":570,"until":593},"rval":{"type":"borrow","target_local":{"id":8,"fn_id":9},"range":{"from":570,"until":593},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":15,"fn_id":9},"range":{"from":572,"until":586},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":9},"range":{"from":572,"until":586},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":14,"fn_id":9},"range":{"from":572,"until":586},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":9},"range":{"from":572,"until":586},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":13,"fn_id":9},"fn_span":{"from":572,"until":586}}},{"statements":[{"type":"assign","target_local":{"id":18,"fn_id":9},"range":{"from":589,"until":592},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":9},"range":{"from":589,"until":592},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":17,"fn_id":9},"range":{"from":589,"until":592},"rval":{"type":"borrow","target_local":{"id":18,"fn_id":9},"range":{"from":589,"until":592},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":16,"fn_id":9},"fn_span":{"from":589,"until":592}}},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":9},"range":{"from":533,"until":595},"rval":null}],"terminator":{"type":"drop","local":{"id":3,"fn_id":9},"range":{"from":594,"until":595}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":9},"range":{"from":594,"until":595}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":9},"range":{"from":594,"until":595}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":9},"ty":"ScrapeError","lives":[{"from":594,"until":595}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":9},"name":"selector_str","span":{"from":385,"until":397},"ty":"{closure@src/lib.rs:19:18: 19:21}","lives":[{"from":570,"until":593}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":9},"name":"e","span":{"from":530,"until":531},"ty":"scraper::error::SelectorErrorKind<'_>","lives":[{"from":570,"until":593}],"shared_borrow":[{"from":589,"until":592}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":533,"until":595}],"must_live_at":[{"from":589,"until":592}]},{"type":"other","local":{"id":3,"fn_id":9},"ty":"std::string::String","lives":[{"from":533,"until":595}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":9},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":9},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":9},"ty":"std::fmt::Arguments<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":9},"ty":"&[&str; 2]","lives":[{"from":572,"until":586},{"from":589,"until":592}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":9},"ty":"&[&str; 2]","lives":[{"from":570,"until":593}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":9},"ty":"[&str; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":9},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":9},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":9},"ty":"[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":9},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":585,"until":586},{"from":589,"until":592}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":9},"ty":"&&str","lives":[{"from":572,"until":586}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":15,"fn_id":9},"ty":"&&str","lives":[{"from":572,"until":586}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":9},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":591,"until":592}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":9},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":589,"until":592}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":9},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":589,"until":592}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":9},"ty":"&[&str; 2]","lives":[{"from":570,"until":593}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":11,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":11},"range":{"from":1063,"until":1072},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":11},"range":{"from":1063,"until":1072},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":4,"fn_id":11},"range":{"from":1074,"until":1104},"rval":null},{"type":"assign","target_local":{"id":3,"fn_id":11},"range":{"from":1074,"until":1104},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":11},"range":{"from":1074,"until":1104},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":6,"fn_id":11},"range":{"from":1106,"until":1110},"rval":null},{"type":"assign","target_local":{"id":5,"fn_id":11},"range":{"from":1106,"until":1110},"rval":{"type":"borrow","target_local":{"id":6,"fn_id":11},"range":{"from":1106,"until":1110},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":11},"fn_span":{"from":1045,"until":1111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":11},"ty":"std::result::Result, ScrapeError>","lives":[{"from":1110,"until":1111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":11},"name":"html_body","span":{"from":983,"until":992},"ty":"&str","lives":[{"from":1063,"until":1072}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":11},"ty":"&str","lives":[{"from":1045,"until":1111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":11},"ty":"&str","lives":[{"from":1045,"until":1111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":11},"ty":"&str","lives":[{"from":1074,"until":1104}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":11},"ty":"&str","lives":[{"from":1045,"until":1111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":11},"ty":"&str","lives":[{"from":1106,"until":1110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":12,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":12},"range":{"from":1255,"until":1264},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":12},"range":{"from":1255,"until":1264},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":4,"fn_id":12},"range":{"from":1266,"until":1296},"rval":null},{"type":"assign","target_local":{"id":3,"fn_id":12},"range":{"from":1266,"until":1296},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":12},"range":{"from":1266,"until":1296},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":6,"fn_id":12},"range":{"from":1298,"until":1305},"rval":null},{"type":"assign","target_local":{"id":5,"fn_id":12},"range":{"from":1298,"until":1305},"rval":{"type":"borrow","target_local":{"id":6,"fn_id":12},"range":{"from":1298,"until":1305},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":12},"fn_span":{"from":1237,"until":1306}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":12},"ty":"std::result::Result, ScrapeError>","lives":[{"from":1305,"until":1306}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":12},"name":"html_body","span":{"from":1175,"until":1184},"ty":"&str","lives":[{"from":1255,"until":1264}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":12},"ty":"&str","lives":[{"from":1237,"until":1306}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":12},"ty":"&str","lives":[{"from":1237,"until":1306}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":12},"ty":"&str","lives":[{"from":1266,"until":1296}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":12},"ty":"&str","lives":[{"from":1237,"until":1306}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":12},"ty":"&str","lives":[{"from":1298,"until":1305}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":14,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":19,"fn_id":14},"range":{"from":1625,"until":1648},"rval":null},{"type":"assign","target_local":{"id":8,"fn_id":14},"range":{"from":1625,"until":1648},"rval":{"type":"borrow","target_local":{"id":19,"fn_id":14},"range":{"from":1625,"until":1648},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":14},"range":{"from":1625,"until":1648},"rval":{"type":"borrow","target_local":{"id":8,"fn_id":14},"range":{"from":1625,"until":1648},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":15,"fn_id":14},"range":{"from":1627,"until":1641},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":14},"range":{"from":1627,"until":1641},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":14,"fn_id":14},"range":{"from":1627,"until":1641},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":14},"range":{"from":1627,"until":1641},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":13,"fn_id":14},"fn_span":{"from":1627,"until":1641}}},{"statements":[{"type":"assign","target_local":{"id":18,"fn_id":14},"range":{"from":1644,"until":1647},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":14},"range":{"from":1644,"until":1647},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":17,"fn_id":14},"range":{"from":1644,"until":1647},"rval":{"type":"borrow","target_local":{"id":18,"fn_id":14},"range":{"from":1644,"until":1647},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":16,"fn_id":14},"fn_span":{"from":1644,"until":1647}}},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":14},"range":{"from":1588,"until":1650},"rval":null}],"terminator":{"type":"drop","local":{"id":3,"fn_id":14},"range":{"from":1649,"until":1650}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":14},"range":{"from":1649,"until":1650}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":14},"range":{"from":1649,"until":1650}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":14},"ty":"ScrapeError","lives":[{"from":1649,"until":1650}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":14},"name":"selector_str","span":{"from":1471,"until":1483},"ty":"{closure@src/lib.rs:50:18: 50:21}","lives":[{"from":1625,"until":1648}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":14},"name":"e","span":{"from":1585,"until":1586},"ty":"scraper::error::SelectorErrorKind<'_>","lives":[{"from":1625,"until":1648}],"shared_borrow":[{"from":1644,"until":1647}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":1588,"until":1650}],"must_live_at":[{"from":1644,"until":1647}]},{"type":"other","local":{"id":3,"fn_id":14},"ty":"std::string::String","lives":[{"from":1588,"until":1650}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":14},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":14},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":14},"ty":"std::fmt::Arguments<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":14},"ty":"&[&str; 2]","lives":[{"from":1627,"until":1641},{"from":1644,"until":1647}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":14},"ty":"&[&str; 2]","lives":[{"from":1625,"until":1648}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":14},"ty":"[&str; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":14},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":14},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":14},"ty":"[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":14},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":1640,"until":1641},{"from":1644,"until":1647}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":14},"ty":"&&str","lives":[{"from":1627,"until":1641}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":15,"fn_id":14},"ty":"&&str","lives":[{"from":1627,"until":1641}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":14},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":1646,"until":1647}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":14},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":1644,"until":1647}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":14},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":1644,"until":1647}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":14},"ty":"&[&str; 2]","lives":[{"from":1625,"until":1648}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":26,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":26},"range":{"from":105,"until":110},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":18,"fn_id":26},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":26},"range":{"from":258,"until":273},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":19,"fn_id":26},"range":{"from":105,"until":110},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":26},"range":{"from":105,"until":110},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":32,"fn_id":26},"range":{"from":258,"until":273},"rval":null},{"type":"assign","target_local":{"id":22,"fn_id":26},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":32,"fn_id":26},"range":{"from":258,"until":273},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":21,"fn_id":26},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":22,"fn_id":26},"range":{"from":258,"until":273},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":31,"fn_id":26},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":18,"fn_id":26},"range":{"from":258,"until":273},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":30,"fn_id":26},"fn_span":{"from":258,"until":273}}},{"statements":[{"type":"assign","target_local":{"id":4,"fn_id":26},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":26},"range":{"from":175,"until":191},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":5,"fn_id":26},"range":{"from":105,"until":110},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":26},"range":{"from":105,"until":110},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":33,"fn_id":26},"range":{"from":175,"until":191},"rval":null},{"type":"assign","target_local":{"id":8,"fn_id":26},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":33,"fn_id":26},"range":{"from":175,"until":191},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":26},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":8,"fn_id":26},"range":{"from":175,"until":191},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":17,"fn_id":26},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":26},"range":{"from":175,"until":191},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":16,"fn_id":26},"fn_span":{"from":175,"until":191}}},{"statements":[{"type":"assign","target_local":{"id":15,"fn_id":26},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":16,"fn_id":26},"range":{"from":175,"until":191},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":14,"fn_id":26},"range":{"from":175,"until":191},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":26},"range":{"from":175,"until":191},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":13,"fn_id":26},"fn_span":{"from":175,"until":191}}},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":29,"fn_id":26},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":30,"fn_id":26},"range":{"from":258,"until":273},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":28,"fn_id":26},"range":{"from":258,"until":273},"rval":{"type":"borrow","target_local":{"id":29,"fn_id":26},"range":{"from":258,"until":273},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":27,"fn_id":26},"fn_span":{"from":258,"until":273}}},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":26},"ty":"std::result::Result<(), std::fmt::Error>","lives":[{"from":109,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":26},"name":"self","span":{"from":105,"until":110},"ty":"&ScrapeError","lives":[{"from":105,"until":110},{"from":258,"until":273},{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":26},"name":"__formatter","span":{"from":105,"until":110},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":105,"until":110},{"from":258,"until":273},{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[{"from":258,"until":273},{"from":175,"until":191}],"drop":false,"drop_range":[],"must_live_at":[{"from":258,"until":273},{"from":175,"until":191}]},{"type":"other","local":{"id":3,"fn_id":26},"ty":"isize","lives":[{"from":105,"until":110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":4,"fn_id":26},"name":"_0","span":{"from":175,"until":191},"ty":"&std::string::String","lives":[{"from":105,"until":110},{"from":175,"until":191}],"shared_borrow":[{"from":175,"until":191}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":175,"until":191}]},{"type":"other","local":{"id":5,"fn_id":26},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":26},"ty":"std::fmt::Arguments<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":26},"ty":"&[&str; 1]","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":26},"ty":"&[&str; 1]","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":26},"ty":"[&str; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":26},"ty":"&[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":26},"ty":"&[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":26},"ty":"[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":26},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":190,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":26},"ty":"&&std::string::String","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":15,"fn_id":26},"ty":"&&std::string::String","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":26},"ty":"&std::string::String","lives":[{"from":175,"until":191}],"shared_borrow":[{"from":175,"until":191}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":175,"until":191}]},{"type":"other","local":{"id":17,"fn_id":26},"ty":"&&std::string::String","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":18,"fn_id":26},"name":"_0","span":{"from":258,"until":273},"ty":"®ex::Error","lives":[{"from":105,"until":110},{"from":258,"until":273}],"shared_borrow":[{"from":258,"until":273}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":258,"until":273}]},{"type":"other","local":{"id":19,"fn_id":26},"ty":"&mut std::fmt::Formatter<'_>","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":20,"fn_id":26},"ty":"std::fmt::Arguments<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":21,"fn_id":26},"ty":"&[&str; 1]","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":22,"fn_id":26},"ty":"&[&str; 1]","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":23,"fn_id":26},"ty":"[&str; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":24,"fn_id":26},"ty":"&[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":25,"fn_id":26},"ty":"&[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":26,"fn_id":26},"ty":"[core::fmt::rt::Argument<'_>; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":27,"fn_id":26},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":272,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":28,"fn_id":26},"ty":"&®ex::Error","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":29,"fn_id":26},"ty":"&®ex::Error","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":30,"fn_id":26},"ty":"®ex::Error","lives":[{"from":258,"until":273}],"shared_borrow":[{"from":258,"until":273}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":258,"until":273}]},{"type":"other","local":{"id":31,"fn_id":26},"ty":"&®ex::Error","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":32,"fn_id":26},"ty":"&[&str; 1]","lives":[{"from":258,"until":273}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":33,"fn_id":26},"ty":"&[&str; 1]","lives":[{"from":175,"until":191}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":10,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":5,"fn_id":10},"range":{"from":738,"until":742},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":10},"range":{"from":738,"until":742},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":4,"fn_id":10},"fn_span":{"from":743,"until":749}}},{"statements":[{"type":"assign","target_local":{"id":3,"fn_id":10},"range":{"from":738,"until":749},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":10},"range":{"from":738,"until":749},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":6,"fn_id":10},"range":{"from":753,"until":762},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":10},"range":{"from":753,"until":762},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":10},"fn_span":{"from":738,"until":762}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":10},"ty":"bool","lives":[{"from":761,"until":762}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":10},"name":"link_text","span":{"from":405,"until":414},"ty":"&mut {closure@src/lib.rs:24:31: 24:37}","lives":[{"from":738,"until":749},{"from":753,"until":762}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":10},"name":"text","span":{"from":732,"until":736},"ty":"&str","lives":[{"from":738,"until":749}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":10},"ty":"&&str","lives":[{"from":738,"until":762}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":10},"ty":"&str","lives":[{"from":738,"until":749}],"shared_borrow":[{"from":738,"until":762}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":748,"until":749},{"from":753,"until":762}]},{"type":"other","local":{"id":5,"fn_id":10},"ty":"&str","lives":[{"from":738,"until":749}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":10},"ty":"&&str","lives":[{"from":738,"until":762}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":16,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":19,"fn_id":16},"range":{"from":2374,"until":2397},"rval":null},{"type":"assign","target_local":{"id":8,"fn_id":16},"range":{"from":2374,"until":2397},"rval":{"type":"borrow","target_local":{"id":19,"fn_id":16},"range":{"from":2374,"until":2397},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":16},"range":{"from":2374,"until":2397},"rval":{"type":"borrow","target_local":{"id":8,"fn_id":16},"range":{"from":2374,"until":2397},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":15,"fn_id":16},"range":{"from":2376,"until":2390},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":16},"range":{"from":2376,"until":2390},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":14,"fn_id":16},"range":{"from":2376,"until":2390},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":16},"range":{"from":2376,"until":2390},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":13,"fn_id":16},"fn_span":{"from":2376,"until":2390}}},{"statements":[{"type":"assign","target_local":{"id":18,"fn_id":16},"range":{"from":2393,"until":2396},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":16},"range":{"from":2393,"until":2396},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":17,"fn_id":16},"range":{"from":2393,"until":2396},"rval":{"type":"borrow","target_local":{"id":18,"fn_id":16},"range":{"from":2393,"until":2396},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":16,"fn_id":16},"fn_span":{"from":2393,"until":2396}}},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":16},"range":{"from":2337,"until":2399},"rval":null}],"terminator":{"type":"drop","local":{"id":3,"fn_id":16},"range":{"from":2398,"until":2399}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":16},"range":{"from":2398,"until":2399}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":16},"range":{"from":2398,"until":2399}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":16},"ty":"ScrapeError","lives":[{"from":2398,"until":2399}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":16},"name":"selector_str","span":{"from":2205,"until":2217},"ty":"{closure@src/lib.rs:71:18: 71:21}","lives":[{"from":2374,"until":2397}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":16},"name":"e","span":{"from":2334,"until":2335},"ty":"scraper::error::SelectorErrorKind<'_>","lives":[{"from":2374,"until":2397}],"shared_borrow":[{"from":2393,"until":2396}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":2337,"until":2399}],"must_live_at":[{"from":2393,"until":2396}]},{"type":"other","local":{"id":3,"fn_id":16},"ty":"std::string::String","lives":[{"from":2337,"until":2399}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":16},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":16},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":16},"ty":"std::fmt::Arguments<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":16},"ty":"&[&str; 2]","lives":[{"from":2376,"until":2390},{"from":2393,"until":2396}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":16},"ty":"&[&str; 2]","lives":[{"from":2374,"until":2397}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":16},"ty":"[&str; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":16},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":16},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":16},"ty":"[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":16},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":2389,"until":2390},{"from":2393,"until":2396}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":16},"ty":"&&str","lives":[{"from":2376,"until":2390}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":15,"fn_id":16},"ty":"&&str","lives":[{"from":2376,"until":2390}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":16},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":2395,"until":2396}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":16},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":2393,"until":2396}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":16},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":2393,"until":2396}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":16},"ty":"&[&str; 2]","lives":[{"from":2374,"until":2397}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":9,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":19,"fn_id":9},"range":{"from":570,"until":593},"rval":null},{"type":"assign","target_local":{"id":8,"fn_id":9},"range":{"from":570,"until":593},"rval":{"type":"borrow","target_local":{"id":19,"fn_id":9},"range":{"from":570,"until":593},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":9},"range":{"from":570,"until":593},"rval":{"type":"borrow","target_local":{"id":8,"fn_id":9},"range":{"from":570,"until":593},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":15,"fn_id":9},"range":{"from":572,"until":586},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":9},"range":{"from":572,"until":586},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":14,"fn_id":9},"range":{"from":572,"until":586},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":9},"range":{"from":572,"until":586},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":13,"fn_id":9},"fn_span":{"from":572,"until":586}}},{"statements":[{"type":"assign","target_local":{"id":18,"fn_id":9},"range":{"from":589,"until":592},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":9},"range":{"from":589,"until":592},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":17,"fn_id":9},"range":{"from":589,"until":592},"rval":{"type":"borrow","target_local":{"id":18,"fn_id":9},"range":{"from":589,"until":592},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":16,"fn_id":9},"fn_span":{"from":589,"until":592}}},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":9},"range":{"from":533,"until":595},"rval":null}],"terminator":{"type":"drop","local":{"id":3,"fn_id":9},"range":{"from":594,"until":595}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":9},"range":{"from":594,"until":595}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":9},"range":{"from":594,"until":595}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":9},"ty":"ScrapeError","lives":[{"from":594,"until":595}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":9},"name":"selector_str","span":{"from":385,"until":397},"ty":"{closure@src/lib.rs:19:18: 19:21}","lives":[{"from":570,"until":593}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":9},"name":"e","span":{"from":530,"until":531},"ty":"scraper::error::SelectorErrorKind<'_>","lives":[{"from":570,"until":593}],"shared_borrow":[{"from":589,"until":592}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":533,"until":595}],"must_live_at":[{"from":589,"until":592}]},{"type":"other","local":{"id":3,"fn_id":9},"ty":"std::string::String","lives":[{"from":533,"until":595}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":9},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":9},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":9},"ty":"std::fmt::Arguments<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":9},"ty":"&[&str; 2]","lives":[{"from":572,"until":586},{"from":589,"until":592}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":9},"ty":"&[&str; 2]","lives":[{"from":570,"until":593}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":9},"ty":"[&str; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":9},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":9},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":9},"ty":"[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":9},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":585,"until":586},{"from":589,"until":592}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":9},"ty":"&&str","lives":[{"from":572,"until":586}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":15,"fn_id":9},"ty":"&&str","lives":[{"from":572,"until":586}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":9},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":591,"until":592}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":9},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":589,"until":592}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":9},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":589,"until":592}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":9},"ty":"&[&str; 2]","lives":[{"from":570,"until":593}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":11,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":11},"range":{"from":1063,"until":1072},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":11},"range":{"from":1063,"until":1072},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":4,"fn_id":11},"range":{"from":1074,"until":1104},"rval":null},{"type":"assign","target_local":{"id":3,"fn_id":11},"range":{"from":1074,"until":1104},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":11},"range":{"from":1074,"until":1104},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":6,"fn_id":11},"range":{"from":1106,"until":1110},"rval":null},{"type":"assign","target_local":{"id":5,"fn_id":11},"range":{"from":1106,"until":1110},"rval":{"type":"borrow","target_local":{"id":6,"fn_id":11},"range":{"from":1106,"until":1110},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":11},"fn_span":{"from":1045,"until":1111}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":11},"ty":"std::result::Result, ScrapeError>","lives":[{"from":1110,"until":1111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":11},"name":"html_body","span":{"from":983,"until":992},"ty":"&str","lives":[{"from":1063,"until":1072}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":11},"ty":"&str","lives":[{"from":1045,"until":1111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":11},"ty":"&str","lives":[{"from":1045,"until":1111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":11},"ty":"&str","lives":[{"from":1074,"until":1104}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":11},"ty":"&str","lives":[{"from":1045,"until":1111}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":11},"ty":"&str","lives":[{"from":1106,"until":1110}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":12,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":12},"range":{"from":1255,"until":1264},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":12},"range":{"from":1255,"until":1264},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":4,"fn_id":12},"range":{"from":1266,"until":1296},"rval":null},{"type":"assign","target_local":{"id":3,"fn_id":12},"range":{"from":1266,"until":1296},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":12},"range":{"from":1266,"until":1296},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":6,"fn_id":12},"range":{"from":1298,"until":1305},"rval":null},{"type":"assign","target_local":{"id":5,"fn_id":12},"range":{"from":1298,"until":1305},"rval":{"type":"borrow","target_local":{"id":6,"fn_id":12},"range":{"from":1298,"until":1305},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":12},"fn_span":{"from":1237,"until":1306}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":12},"ty":"std::result::Result, ScrapeError>","lives":[{"from":1305,"until":1306}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":12},"name":"html_body","span":{"from":1175,"until":1184},"ty":"&str","lives":[{"from":1255,"until":1264}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":12},"ty":"&str","lives":[{"from":1237,"until":1306}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":12},"ty":"&str","lives":[{"from":1237,"until":1306}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":12},"ty":"&str","lives":[{"from":1266,"until":1296}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":12},"ty":"&str","lives":[{"from":1237,"until":1306}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":12},"ty":"&str","lives":[{"from":1298,"until":1305}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":14,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":19,"fn_id":14},"range":{"from":1625,"until":1648},"rval":null},{"type":"assign","target_local":{"id":8,"fn_id":14},"range":{"from":1625,"until":1648},"rval":{"type":"borrow","target_local":{"id":19,"fn_id":14},"range":{"from":1625,"until":1648},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":14},"range":{"from":1625,"until":1648},"rval":{"type":"borrow","target_local":{"id":8,"fn_id":14},"range":{"from":1625,"until":1648},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":15,"fn_id":14},"range":{"from":1627,"until":1641},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":14},"range":{"from":1627,"until":1641},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":14,"fn_id":14},"range":{"from":1627,"until":1641},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":14},"range":{"from":1627,"until":1641},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":13,"fn_id":14},"fn_span":{"from":1627,"until":1641}}},{"statements":[{"type":"assign","target_local":{"id":18,"fn_id":14},"range":{"from":1644,"until":1647},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":14},"range":{"from":1644,"until":1647},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":17,"fn_id":14},"range":{"from":1644,"until":1647},"rval":{"type":"borrow","target_local":{"id":18,"fn_id":14},"range":{"from":1644,"until":1647},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":16,"fn_id":14},"fn_span":{"from":1644,"until":1647}}},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":14},"range":{"from":1588,"until":1650},"rval":null}],"terminator":{"type":"drop","local":{"id":3,"fn_id":14},"range":{"from":1649,"until":1650}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":14},"range":{"from":1649,"until":1650}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":14},"range":{"from":1649,"until":1650}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":14},"ty":"ScrapeError","lives":[{"from":1649,"until":1650}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":14},"name":"selector_str","span":{"from":1471,"until":1483},"ty":"{closure@src/lib.rs:50:18: 50:21}","lives":[{"from":1625,"until":1648}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":14},"name":"e","span":{"from":1585,"until":1586},"ty":"scraper::error::SelectorErrorKind<'_>","lives":[{"from":1625,"until":1648}],"shared_borrow":[{"from":1644,"until":1647}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":1588,"until":1650}],"must_live_at":[{"from":1644,"until":1647}]},{"type":"other","local":{"id":3,"fn_id":14},"ty":"std::string::String","lives":[{"from":1588,"until":1650}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":14},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":14},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":14},"ty":"std::fmt::Arguments<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":14},"ty":"&[&str; 2]","lives":[{"from":1627,"until":1641},{"from":1644,"until":1647}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":14},"ty":"&[&str; 2]","lives":[{"from":1625,"until":1648}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":14},"ty":"[&str; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":14},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":14},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":14},"ty":"[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":14},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":1640,"until":1641},{"from":1644,"until":1647}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":14},"ty":"&&str","lives":[{"from":1627,"until":1641}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":15,"fn_id":14},"ty":"&&str","lives":[{"from":1627,"until":1641}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":14},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":1646,"until":1647}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":14},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":1644,"until":1647}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":14},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":1644,"until":1647}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":14},"ty":"&[&str; 2]","lives":[{"from":1625,"until":1648}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":16,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":19,"fn_id":16},"range":{"from":2374,"until":2397},"rval":null},{"type":"assign","target_local":{"id":8,"fn_id":16},"range":{"from":2374,"until":2397},"rval":{"type":"borrow","target_local":{"id":19,"fn_id":16},"range":{"from":2374,"until":2397},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":7,"fn_id":16},"range":{"from":2374,"until":2397},"rval":{"type":"borrow","target_local":{"id":8,"fn_id":16},"range":{"from":2374,"until":2397},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":15,"fn_id":16},"range":{"from":2376,"until":2390},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":16},"range":{"from":2376,"until":2390},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":14,"fn_id":16},"range":{"from":2376,"until":2390},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":16},"range":{"from":2376,"until":2390},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":13,"fn_id":16},"fn_span":{"from":2376,"until":2390}}},{"statements":[{"type":"assign","target_local":{"id":18,"fn_id":16},"range":{"from":2393,"until":2396},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":16},"range":{"from":2393,"until":2396},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":17,"fn_id":16},"range":{"from":2393,"until":2396},"rval":{"type":"borrow","target_local":{"id":18,"fn_id":16},"range":{"from":2393,"until":2396},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":16,"fn_id":16},"fn_span":{"from":2393,"until":2396}}},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[],"terminator":null},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":16},"range":{"from":2337,"until":2399},"rval":null}],"terminator":{"type":"drop","local":{"id":3,"fn_id":16},"range":{"from":2398,"until":2399}}},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":16},"range":{"from":2398,"until":2399}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"drop","local":{"id":2,"fn_id":16},"range":{"from":2398,"until":2399}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":16},"ty":"ScrapeError","lives":[{"from":2398,"until":2399}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":16},"name":"selector_str","span":{"from":2205,"until":2217},"ty":"{closure@src/lib.rs:71:18: 71:21}","lives":[{"from":2374,"until":2397}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":16},"name":"e","span":{"from":2334,"until":2335},"ty":"scraper::error::SelectorErrorKind<'_>","lives":[{"from":2374,"until":2397}],"shared_borrow":[{"from":2393,"until":2396}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":2337,"until":2399}],"must_live_at":[{"from":2393,"until":2396}]},{"type":"other","local":{"id":3,"fn_id":16},"ty":"std::string::String","lives":[{"from":2337,"until":2399}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":16},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":16},"ty":"std::string::String","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":16},"ty":"std::fmt::Arguments<'_>","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":16},"ty":"&[&str; 2]","lives":[{"from":2376,"until":2390},{"from":2393,"until":2396}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":16},"ty":"&[&str; 2]","lives":[{"from":2374,"until":2397}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":16},"ty":"[&str; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":16},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":16},"ty":"&[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":16},"ty":"[core::fmt::rt::Argument<'_>; 2]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":16},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":2389,"until":2390},{"from":2393,"until":2396}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":16},"ty":"&&str","lives":[{"from":2376,"until":2390}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":15,"fn_id":16},"ty":"&&str","lives":[{"from":2376,"until":2390}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":16,"fn_id":16},"ty":"core::fmt::rt::Argument<'_>","lives":[{"from":2395,"until":2396}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":16},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":2393,"until":2396}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":16},"ty":"&scraper::error::SelectorErrorKind<'_>","lives":[{"from":2393,"until":2396}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":16},"ty":"&[&str; 2]","lives":[{"from":2374,"until":2397}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":8,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":8,"fn_id":8},"range":{"from":498,"until":510},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":8},"range":{"from":498,"until":510},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":7,"fn_id":8},"fn_span":{"from":482,"until":511}}},{"statements":[{"type":"assign","target_local":{"id":10,"fn_id":8},"range":{"from":529,"until":595},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":8},"range":{"from":529,"until":595},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":9,"fn_id":8},"range":{"from":529,"until":595},"rval":null}],"terminator":{"type":"call","destination_local":{"id":6,"fn_id":8},"fn_span":{"from":521,"until":596}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":5,"fn_id":8},"fn_span":{"from":482,"until":597}}},{"statements":[{"type":"assign","target_local":{"id":11,"fn_id":8},"range":{"from":482,"until":597},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":15,"fn_id":8},"range":{"from":482,"until":597},"rval":{"type":"move","target_local":{"id":5,"fn_id":8},"range":{"from":482,"until":597}}},{"type":"assign","target_local":{"id":4,"fn_id":8},"range":{"from":482,"until":597},"rval":{"type":"move","target_local":{"id":15,"fn_id":8},"range":{"from":482,"until":597}}}],"terminator":{"type":"drop","local":{"id":15,"fn_id":8},"range":{"from":596,"until":597}}},{"statements":[{"type":"assign","target_local":{"id":12,"fn_id":8},"range":{"from":596,"until":597},"rval":{"type":"move","target_local":{"id":5,"fn_id":8},"range":{"from":596,"until":597}}},{"type":"assign","target_local":{"id":14,"fn_id":8},"range":{"from":596,"until":597},"rval":{"type":"move","target_local":{"id":12,"fn_id":8},"range":{"from":596,"until":597}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":8},"fn_span":{"from":482,"until":597}}},{"statements":[],"terminator":{"type":"drop","local":{"id":12,"fn_id":8},"range":{"from":596,"until":597}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":8},"range":{"from":597,"until":598}}},{"statements":[{"type":"assign","target_local":{"id":17,"fn_id":8},"range":{"from":640,"until":649},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":8},"range":{"from":640,"until":649},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":16,"fn_id":8},"fn_span":{"from":619,"until":650}}},{"statements":[{"type":"assign","target_local":{"id":21,"fn_id":8},"range":{"from":672,"until":680},"rval":{"type":"borrow","target_local":{"id":16,"fn_id":8},"range":{"from":672,"until":680},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":23,"fn_id":8},"range":{"from":688,"until":697},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":8},"range":{"from":688,"until":697},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":22,"fn_id":8},"range":{"from":688,"until":697},"rval":{"type":"borrow","target_local":{"id":23,"fn_id":8},"range":{"from":688,"until":697},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":20,"fn_id":8},"fn_span":{"from":681,"until":698}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":19,"fn_id":8},"fn_span":{"from":672,"until":698}}},{"statements":[{"type":"assign","target_local":{"id":24,"fn_id":8},"range":{"from":672,"until":698},"rval":{"type":"move","target_local":{"id":19,"fn_id":8},"range":{"from":672,"until":698}}}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":29,"fn_id":8},"range":{"from":672,"until":698},"rval":{"type":"borrow","target_local":{"id":24,"fn_id":8},"range":{"from":672,"until":698},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":28,"fn_id":8},"range":{"from":672,"until":698},"rval":{"type":"borrow","target_local":{"id":29,"fn_id":8},"range":{"from":672,"until":698},"mutable":true,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":27,"fn_id":8},"fn_span":{"from":672,"until":698}}},{"statements":[{"type":"assign","target_local":{"id":30,"fn_id":8},"range":{"from":672,"until":698},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":32,"fn_id":8},"range":{"from":661,"until":668},"rval":null},{"type":"assign","target_local":{"id":36,"fn_id":8},"range":{"from":712,"until":719},"rval":{"type":"borrow","target_local":{"id":32,"fn_id":8},"range":{"from":712,"until":719},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":35,"fn_id":8},"fn_span":{"from":720,"until":726}}},{"statements":[{"type":"assign","target_local":{"id":18,"fn_id":8},"range":{"from":657,"until":909},"rval":null}],"terminator":{"type":"drop","local":{"id":24,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[{"type":"assign","target_local":{"id":34,"fn_id":8},"range":{"from":712,"until":726},"rval":{"type":"borrow","target_local":{"id":35,"fn_id":8},"range":{"from":712,"until":726},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":38,"fn_id":8},"range":{"from":731,"until":762},"rval":{"type":"borrow","target_local":{"id":3,"fn_id":8},"range":{"from":731,"until":762},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":37,"fn_id":8},"range":{"from":731,"until":762},"rval":null}],"terminator":{"type":"call","destination_local":{"id":33,"fn_id":8},"fn_span":{"from":727,"until":763}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":42,"fn_id":8},"range":{"from":798,"until":805},"rval":{"type":"borrow","target_local":{"id":32,"fn_id":8},"range":{"from":798,"until":805},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":41,"fn_id":8},"fn_span":{"from":806,"until":813}}},{"statements":[{"type":"assign","target_local":{"id":40,"fn_id":8},"range":{"from":798,"until":813},"rval":{"type":"borrow","target_local":{"id":41,"fn_id":8},"range":{"from":798,"until":813},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":44,"fn_id":8},"range":{"from":819,"until":825},"rval":null},{"type":"assign","target_local":{"id":43,"fn_id":8},"range":{"from":819,"until":825},"rval":{"type":"borrow","target_local":{"id":44,"fn_id":8},"range":{"from":819,"until":825},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":39,"fn_id":8},"fn_span":{"from":814,"until":826}}},{"statements":[{"type":"assign","target_local":{"id":45,"fn_id":8},"range":{"from":798,"until":826},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":46,"fn_id":8},"range":{"from":790,"until":794},"rval":null},{"type":"assign","target_local":{"id":50,"fn_id":8},"range":{"from":860,"until":864},"rval":{"type":"borrow","target_local":{"id":46,"fn_id":8},"range":{"from":860,"until":864},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":49,"fn_id":8},"fn_span":{"from":865,"until":876}}},{"statements":[{"type":"assign","target_local":{"id":48,"fn_id":8},"range":{"from":855,"until":877},"rval":null}],"terminator":{"type":"drop","local":{"id":49,"fn_id":8},"range":{"from":876,"until":877}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":8},"range":{"from":852,"until":878},"rval":null}],"terminator":{"type":"drop","local":{"id":48,"fn_id":8},"range":{"from":877,"until":878}}},{"statements":[],"terminator":{"type":"drop","local":{"id":24,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":25,"fn_id":8},"range":{"from":657,"until":909},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":19,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[{"type":"assign","target_local":{"id":51,"fn_id":8},"range":{"from":918,"until":922},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":8},"range":{"from":915,"until":923},"rval":null}],"terminator":{"type":"drop","local":{"id":51,"fn_id":8},"range":{"from":922,"until":923}}},{"statements":[],"terminator":{"type":"drop","local":{"id":16,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":19,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[],"terminator":{"type":"drop","local":{"id":16,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":8},"range":{"from":597,"until":598}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":48,"fn_id":8},"range":{"from":877,"until":878}}},{"statements":[],"terminator":{"type":"drop","local":{"id":24,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[],"terminator":{"type":"drop","local":{"id":19,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":8},"range":{"from":697,"until":698}}},{"statements":[],"terminator":{"type":"drop","local":{"id":16,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"drop","local":{"id":14,"fn_id":8},"range":{"from":596,"until":597}}},{"statements":[],"terminator":{"type":"drop","local":{"id":12,"fn_id":8},"range":{"from":596,"until":597}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":8},"range":{"from":597,"until":598}}},{"statements":[],"terminator":{"type":"drop","local":{"id":6,"fn_id":8},"range":{"from":596,"until":597}}},{"statements":[],"terminator":{"type":"drop","local":{"id":7,"fn_id":8},"range":{"from":595,"until":596}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":8},"ty":"std::result::Result, ScrapeError>","lives":[{"from":596,"until":598},{"from":877,"until":878},{"from":892,"until":893},{"from":902,"until":903},{"from":908,"until":909},{"from":922,"until":923},{"from":924,"until":925}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":8},"name":"html_body","span":{"from":368,"until":377},"ty":"&str","lives":[{"from":471,"until":479},{"from":482,"until":598},{"from":608,"until":616},{"from":640,"until":649}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":8},"name":"selector_str","span":{"from":385,"until":397},"ty":"&str","lives":[{"from":471,"until":479},{"from":482,"until":597}],"shared_borrow":[{"from":482,"until":596}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":529,"until":595}]},{"type":"user","local":{"id":3,"fn_id":8},"name":"link_text","span":{"from":405,"until":414},"ty":"&str","lives":[{"from":471,"until":479},{"from":482,"until":598},{"from":608,"until":616},{"from":619,"until":650},{"from":657,"until":909}],"shared_borrow":[{"from":712,"until":763}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":731,"until":762}]},{"type":"user","local":{"id":4,"fn_id":8},"name":"selector","span":{"from":471,"until":479},"ty":"scraper::Selector","lives":[{"from":596,"until":598},{"from":471,"until":479},{"from":608,"until":616},{"from":619,"until":650},{"from":657,"until":909}],"shared_borrow":[{"from":657,"until":909}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":596,"until":598},{"from":471,"until":479},{"from":608,"until":616},{"from":619,"until":650},{"from":657,"until":909},{"from":915,"until":923},{"from":924,"until":925}],"must_live_at":[{"from":688,"until":698},{"from":661,"until":668},{"from":712,"until":763},{"from":798,"until":826},{"from":785,"until":795},{"from":892,"until":893},{"from":902,"until":903},{"from":908,"until":909}]},{"type":"other","local":{"id":5,"fn_id":8},"ty":"std::ops::ControlFlow, scraper::Selector>","lives":[{"from":482,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":482,"until":598},{"from":471,"until":479}],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":8},"ty":"std::result::Result","lives":[{"from":482,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":8},"ty":"std::result::Result>","lives":[{"from":482,"until":596}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":8},"ty":"&str","lives":[{"from":482,"until":511}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":8},"ty":"{closure@src/lib.rs:19:18: 19:21}","lives":[{"from":482,"until":596}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":8},"ty":"&&str","lives":[{"from":529,"until":595}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":8},"ty":"isize","lives":[{"from":482,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":12,"fn_id":8},"name":"residual","span":{"from":596,"until":597},"ty":"std::result::Result","lives":[{"from":596,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":8},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":8},"ty":"std::result::Result","lives":[{"from":482,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":15,"fn_id":8},"name":"val","span":{"from":482,"until":597},"ty":"scraper::Selector","lives":[{"from":482,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":16,"fn_id":8},"name":"document","span":{"from":608,"until":616},"ty":"scraper::Html","lives":[{"from":649,"until":650},{"from":608,"until":616},{"from":657,"until":909}],"shared_borrow":[{"from":657,"until":909}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":649,"until":650},{"from":608,"until":616},{"from":657,"until":909},{"from":915,"until":923},{"from":924,"until":925}],"must_live_at":[{"from":688,"until":698},{"from":661,"until":668},{"from":712,"until":763},{"from":798,"until":826},{"from":785,"until":795},{"from":855,"until":877},{"from":892,"until":893},{"from":902,"until":903},{"from":908,"until":909}]},{"type":"other","local":{"id":17,"fn_id":8},"ty":"&str","lives":[{"from":619,"until":650}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":8},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":8},"ty":"scraper::html::Select<'_, '_>","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":20,"fn_id":8},"ty":"scraper::html::Select<'_, '_>","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":21,"fn_id":8},"ty":"&scraper::Html","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":22,"fn_id":8},"ty":"&scraper::Selector","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":23,"fn_id":8},"ty":"&scraper::Selector","lives":[{"from":688,"until":697}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":24,"fn_id":8},"name":"iter","span":{"from":672,"until":698},"ty":"scraper::html::Select<'_, '_>","lives":[{"from":657,"until":909}],"shared_borrow":[],"mutable_borrow":[{"from":672,"until":698}],"drop":true,"drop_range":[{"from":657,"until":909}],"must_live_at":[{"from":672,"until":698}]},{"type":"other","local":{"id":25,"fn_id":8},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":26,"fn_id":8},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":27,"fn_id":8},"ty":"std::option::Option>","lives":[{"from":657,"until":909}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":28,"fn_id":8},"ty":"&mut scraper::html::Select<'_, '_>","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":29,"fn_id":8},"ty":"&mut scraper::html::Select<'_, '_>","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[{"from":672,"until":698}],"drop":false,"drop_range":[],"must_live_at":[{"from":672,"until":698}]},{"type":"other","local":{"id":30,"fn_id":8},"ty":"isize","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":31,"fn_id":8},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":32,"fn_id":8},"name":"element","span":{"from":661,"until":668},"ty":"scraper::ElementRef<'_>","lives":[{"from":712,"until":763},{"from":798,"until":826}],"shared_borrow":[{"from":712,"until":726},{"from":798,"until":813}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":712,"until":726},{"from":798,"until":813}]},{"type":"other","local":{"id":33,"fn_id":8},"ty":"bool","lives":[{"from":712,"until":763}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":34,"fn_id":8},"ty":"&mut scraper::element_ref::Text<'_>","lives":[{"from":712,"until":763}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":35,"fn_id":8},"ty":"scraper::element_ref::Text<'_>","lives":[{"from":712,"until":726}],"shared_borrow":[],"mutable_borrow":[{"from":712,"until":763}],"drop":false,"drop_range":[],"must_live_at":[{"from":725,"until":726},{"from":731,"until":762}]},{"type":"other","local":{"id":36,"fn_id":8},"ty":"&scraper::ElementRef<'_>","lives":[{"from":712,"until":726}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":37,"fn_id":8},"ty":"{closure@src/lib.rs:24:31: 24:37}","lives":[{"from":712,"until":763}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":38,"fn_id":8},"ty":"&&str","lives":[{"from":731,"until":762}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":39,"fn_id":8},"ty":"std::option::Option<&str>","lives":[{"from":798,"until":826},{"from":785,"until":795}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":40,"fn_id":8},"ty":"&scraper::node::Element","lives":[{"from":798,"until":826}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":41,"fn_id":8},"ty":"&scraper::node::Element","lives":[{"from":798,"until":813}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":42,"fn_id":8},"ty":"&scraper::ElementRef<'_>","lives":[{"from":798,"until":813}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":43,"fn_id":8},"ty":"&str","lives":[{"from":798,"until":826}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":44,"fn_id":8},"ty":"&str","lives":[{"from":819,"until":825}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":45,"fn_id":8},"ty":"isize","lives":[{"from":785,"until":795}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":46,"fn_id":8},"name":"link","span":{"from":790,"until":794},"ty":"&str","lives":[{"from":855,"until":877}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":47,"fn_id":8},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":48,"fn_id":8},"ty":"std::option::Option","lives":[{"from":852,"until":878}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":876,"until":878}],"must_live_at":[]},{"type":"other","local":{"id":49,"fn_id":8},"ty":"std::string::String","lives":[{"from":855,"until":877}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":50,"fn_id":8},"ty":"&str","lives":[{"from":860,"until":876}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":51,"fn_id":8},"ty":"std::option::Option","lives":[{"from":915,"until":923}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]}]},{"fn_id":13,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":13},"range":{"from":1486,"until":1510},"rval":null},{"type":"assign","target_local":{"id":7,"fn_id":13},"range":{"from":1553,"until":1565},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":13},"range":{"from":1553,"until":1565},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":6,"fn_id":13},"fn_span":{"from":1537,"until":1566}}},{"statements":[{"type":"assign","target_local":{"id":9,"fn_id":13},"range":{"from":1584,"until":1650},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":13},"range":{"from":1584,"until":1650},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":8,"fn_id":13},"range":{"from":1584,"until":1650},"rval":null}],"terminator":{"type":"call","destination_local":{"id":5,"fn_id":13},"fn_span":{"from":1576,"until":1651}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":4,"fn_id":13},"fn_span":{"from":1537,"until":1652}}},{"statements":[{"type":"assign","target_local":{"id":10,"fn_id":13},"range":{"from":1537,"until":1652},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":14,"fn_id":13},"range":{"from":1537,"until":1652},"rval":{"type":"move","target_local":{"id":4,"fn_id":13},"range":{"from":1537,"until":1652}}},{"type":"assign","target_local":{"id":3,"fn_id":13},"range":{"from":1537,"until":1652},"rval":{"type":"move","target_local":{"id":14,"fn_id":13},"range":{"from":1537,"until":1652}}}],"terminator":{"type":"drop","local":{"id":14,"fn_id":13},"range":{"from":1651,"until":1652}}},{"statements":[{"type":"assign","target_local":{"id":11,"fn_id":13},"range":{"from":1651,"until":1652},"rval":{"type":"move","target_local":{"id":4,"fn_id":13},"range":{"from":1651,"until":1652}}},{"type":"assign","target_local":{"id":13,"fn_id":13},"range":{"from":1651,"until":1652},"rval":{"type":"move","target_local":{"id":11,"fn_id":13},"range":{"from":1651,"until":1652}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":13},"fn_span":{"from":1537,"until":1652}}},{"statements":[],"terminator":{"type":"drop","local":{"id":11,"fn_id":13},"range":{"from":1651,"until":1652}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":13},"range":{"from":1652,"until":1653}}},{"statements":[{"type":"assign","target_local":{"id":16,"fn_id":13},"range":{"from":1695,"until":1704},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":13},"range":{"from":1695,"until":1704},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":15,"fn_id":13},"fn_span":{"from":1674,"until":1705}}},{"statements":[{"type":"assign","target_local":{"id":21,"fn_id":13},"range":{"from":1768,"until":1776},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":13},"range":{"from":1768,"until":1776},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":23,"fn_id":13},"range":{"from":1784,"until":1799},"rval":{"type":"borrow","target_local":{"id":3,"fn_id":13},"range":{"from":1784,"until":1799},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":22,"fn_id":13},"range":{"from":1784,"until":1799},"rval":{"type":"borrow","target_local":{"id":23,"fn_id":13},"range":{"from":1784,"until":1799},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":20,"fn_id":13},"fn_span":{"from":1777,"until":1800}}},{"statements":[{"type":"assign","target_local":{"id":19,"fn_id":13},"range":{"from":1768,"until":1800},"rval":{"type":"borrow","target_local":{"id":20,"fn_id":13},"range":{"from":1768,"until":1800},"mutable":true,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":18,"fn_id":13},"fn_span":{"from":1801,"until":1807}}},{"statements":[{"type":"assign","target_local":{"id":24,"fn_id":13},"range":{"from":1768,"until":1807},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":25,"fn_id":13},"range":{"from":1757,"until":1764},"rval":null},{"type":"assign","target_local":{"id":29,"fn_id":13},"range":{"from":1845,"until":1852},"rval":{"type":"borrow","target_local":{"id":25,"fn_id":13},"range":{"from":1845,"until":1852},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":28,"fn_id":13},"fn_span":{"from":1853,"until":1860}}},{"statements":[{"type":"assign","target_local":{"id":27,"fn_id":13},"range":{"from":1845,"until":1860},"rval":{"type":"borrow","target_local":{"id":28,"fn_id":13},"range":{"from":1845,"until":1860},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":31,"fn_id":13},"range":{"from":1866,"until":1873},"rval":null},{"type":"assign","target_local":{"id":30,"fn_id":13},"range":{"from":1866,"until":1873},"rval":{"type":"borrow","target_local":{"id":31,"fn_id":13},"range":{"from":1866,"until":1873},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":26,"fn_id":13},"fn_span":{"from":1861,"until":1874}}},{"statements":[{"type":"assign","target_local":{"id":32,"fn_id":13},"range":{"from":1845,"until":1874},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":33,"fn_id":13},"range":{"from":1830,"until":1841},"rval":null},{"type":"assign","target_local":{"id":37,"fn_id":13},"range":{"from":1904,"until":1915},"rval":{"type":"borrow","target_local":{"id":33,"fn_id":13},"range":{"from":1904,"until":1915},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":36,"fn_id":13},"fn_span":{"from":1916,"until":1927}}},{"statements":[{"type":"assign","target_local":{"id":35,"fn_id":13},"range":{"from":1899,"until":1928},"rval":null}],"terminator":{"type":"drop","local":{"id":36,"fn_id":13},"range":{"from":1927,"until":1928}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":13},"range":{"from":1896,"until":1929},"rval":null}],"terminator":{"type":"drop","local":{"id":35,"fn_id":13},"range":{"from":1928,"until":1929}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":13},"range":{"from":1945,"until":1946}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":13},"range":{"from":1945,"until":1946}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":13},"range":{"from":1945,"until":1946}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":38,"fn_id":13},"range":{"from":1955,"until":1959},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":13},"range":{"from":1952,"until":1960},"rval":null}],"terminator":{"type":"drop","local":{"id":38,"fn_id":13},"range":{"from":1959,"until":1960}}},{"statements":[],"terminator":{"type":"drop","local":{"id":15,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":15,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":13},"range":{"from":1652,"until":1653}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":35,"fn_id":13},"range":{"from":1928,"until":1929}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":13},"range":{"from":1945,"until":1946}}},{"statements":[],"terminator":{"type":"drop","local":{"id":15,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"drop","local":{"id":13,"fn_id":13},"range":{"from":1651,"until":1652}}},{"statements":[],"terminator":{"type":"drop","local":{"id":11,"fn_id":13},"range":{"from":1651,"until":1652}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":13},"range":{"from":1652,"until":1653}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":13},"range":{"from":1651,"until":1652}}},{"statements":[],"terminator":{"type":"drop","local":{"id":6,"fn_id":13},"range":{"from":1650,"until":1651}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":13},"ty":"std::result::Result, ScrapeError>","lives":[{"from":1651,"until":1653},{"from":1928,"until":1929},{"from":1939,"until":1940},{"from":1945,"until":1946},{"from":1959,"until":1960},{"from":1961,"until":1962}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":13},"name":"html_body","span":{"from":1378,"until":1387},"ty":"&str","lives":[{"from":1471,"until":1483},{"from":1486,"until":1510},{"from":1520,"until":1534},{"from":1537,"until":1653},{"from":1663,"until":1671},{"from":1695,"until":1704}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":13},"name":"selector_str","span":{"from":1471,"until":1483},"ty":"&str","lives":[{"from":1471,"until":1483},{"from":1520,"until":1534},{"from":1537,"until":1652}],"shared_borrow":[{"from":1537,"until":1651}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":1584,"until":1650}]},{"type":"user","local":{"id":3,"fn_id":13},"name":"token_selector","span":{"from":1520,"until":1534},"ty":"scraper::Selector","lives":[{"from":1651,"until":1653},{"from":1520,"until":1534},{"from":1663,"until":1671},{"from":1674,"until":1705},{"from":1745,"until":1946}],"shared_borrow":[{"from":1768,"until":1807}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":1651,"until":1653},{"from":1520,"until":1534},{"from":1663,"until":1671},{"from":1674,"until":1705},{"from":1745,"until":1946},{"from":1952,"until":1960},{"from":1961,"until":1962}],"must_live_at":[{"from":1784,"until":1800}]},{"type":"other","local":{"id":4,"fn_id":13},"ty":"std::ops::ControlFlow, scraper::Selector>","lives":[{"from":1537,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":1537,"until":1653},{"from":1520,"until":1534}],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":13},"ty":"std::result::Result","lives":[{"from":1537,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":13},"ty":"std::result::Result>","lives":[{"from":1537,"until":1651}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":13},"ty":"&str","lives":[{"from":1537,"until":1566}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":13},"ty":"{closure@src/lib.rs:50:18: 50:21}","lives":[{"from":1537,"until":1651}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":13},"ty":"&&str","lives":[{"from":1584,"until":1650}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":13},"ty":"isize","lives":[{"from":1537,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":11,"fn_id":13},"name":"residual","span":{"from":1651,"until":1652},"ty":"std::result::Result","lives":[{"from":1651,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":13},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":13},"ty":"std::result::Result","lives":[{"from":1537,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":14,"fn_id":13},"name":"val","span":{"from":1537,"until":1652},"ty":"scraper::Selector","lives":[{"from":1537,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":15,"fn_id":13},"name":"document","span":{"from":1663,"until":1671},"ty":"scraper::Html","lives":[{"from":1704,"until":1705},{"from":1663,"until":1671},{"from":1745,"until":1946}],"shared_borrow":[{"from":1768,"until":1807},{"from":1752,"until":1765},{"from":1845,"until":1874},{"from":1825,"until":1842},{"from":1899,"until":1928}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":1704,"until":1705},{"from":1663,"until":1671},{"from":1745,"until":1946},{"from":1952,"until":1960},{"from":1961,"until":1962}],"must_live_at":[{"from":1784,"until":1800},{"from":1806,"until":1807},{"from":1752,"until":1765},{"from":1845,"until":1874},{"from":1825,"until":1842},{"from":1899,"until":1928}]},{"type":"other","local":{"id":16,"fn_id":13},"ty":"&str","lives":[{"from":1674,"until":1705}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":13},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":13},"ty":"std::option::Option>","lives":[{"from":1768,"until":1807},{"from":1752,"until":1765}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":13},"ty":"&mut scraper::html::Select<'_, '_>","lives":[{"from":1768,"until":1807}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":20,"fn_id":13},"ty":"scraper::html::Select<'_, '_>","lives":[{"from":1768,"until":1800}],"shared_borrow":[],"mutable_borrow":[{"from":1768,"until":1807}],"drop":true,"drop_range":[{"from":1768,"until":1807},{"from":1752,"until":1765},{"from":1845,"until":1874},{"from":1825,"until":1842},{"from":1896,"until":1929},{"from":1939,"until":1940},{"from":1945,"until":1946}],"must_live_at":[{"from":1799,"until":1800}]},{"type":"other","local":{"id":21,"fn_id":13},"ty":"&scraper::Html","lives":[{"from":1768,"until":1800}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":22,"fn_id":13},"ty":"&scraper::Selector","lives":[{"from":1768,"until":1800}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":23,"fn_id":13},"ty":"&scraper::Selector","lives":[{"from":1784,"until":1799}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":24,"fn_id":13},"ty":"isize","lives":[{"from":1752,"until":1765}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":25,"fn_id":13},"name":"element","span":{"from":1757,"until":1764},"ty":"scraper::ElementRef<'_>","lives":[{"from":1845,"until":1874}],"shared_borrow":[{"from":1845,"until":1860}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":1845,"until":1860}]},{"type":"other","local":{"id":26,"fn_id":13},"ty":"std::option::Option<&str>","lives":[{"from":1845,"until":1874},{"from":1825,"until":1842}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":27,"fn_id":13},"ty":"&scraper::node::Element","lives":[{"from":1845,"until":1874}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":28,"fn_id":13},"ty":"&scraper::node::Element","lives":[{"from":1845,"until":1860}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":29,"fn_id":13},"ty":"&scraper::ElementRef<'_>","lives":[{"from":1845,"until":1860}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":30,"fn_id":13},"ty":"&str","lives":[{"from":1845,"until":1874}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":31,"fn_id":13},"ty":"&str","lives":[{"from":1866,"until":1873}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":32,"fn_id":13},"ty":"isize","lives":[{"from":1825,"until":1842}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":33,"fn_id":13},"name":"token_value","span":{"from":1830,"until":1841},"ty":"&str","lives":[{"from":1899,"until":1928}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":34,"fn_id":13},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":35,"fn_id":13},"ty":"std::option::Option","lives":[{"from":1896,"until":1929}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":1927,"until":1929}],"must_live_at":[]},{"type":"other","local":{"id":36,"fn_id":13},"ty":"std::string::String","lives":[{"from":1899,"until":1928}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":37,"fn_id":13},"ty":"&str","lives":[{"from":1904,"until":1927}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":38,"fn_id":13},"ty":"std::option::Option","lives":[{"from":1952,"until":1960}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]}]},{"fn_id":8,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":8,"fn_id":8},"range":{"from":498,"until":510},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":8},"range":{"from":498,"until":510},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":7,"fn_id":8},"fn_span":{"from":482,"until":511}}},{"statements":[{"type":"assign","target_local":{"id":10,"fn_id":8},"range":{"from":529,"until":595},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":8},"range":{"from":529,"until":595},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":9,"fn_id":8},"range":{"from":529,"until":595},"rval":null}],"terminator":{"type":"call","destination_local":{"id":6,"fn_id":8},"fn_span":{"from":521,"until":596}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":5,"fn_id":8},"fn_span":{"from":482,"until":597}}},{"statements":[{"type":"assign","target_local":{"id":11,"fn_id":8},"range":{"from":482,"until":597},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":15,"fn_id":8},"range":{"from":482,"until":597},"rval":{"type":"move","target_local":{"id":5,"fn_id":8},"range":{"from":482,"until":597}}},{"type":"assign","target_local":{"id":4,"fn_id":8},"range":{"from":482,"until":597},"rval":{"type":"move","target_local":{"id":15,"fn_id":8},"range":{"from":482,"until":597}}}],"terminator":{"type":"drop","local":{"id":15,"fn_id":8},"range":{"from":596,"until":597}}},{"statements":[{"type":"assign","target_local":{"id":12,"fn_id":8},"range":{"from":596,"until":597},"rval":{"type":"move","target_local":{"id":5,"fn_id":8},"range":{"from":596,"until":597}}},{"type":"assign","target_local":{"id":14,"fn_id":8},"range":{"from":596,"until":597},"rval":{"type":"move","target_local":{"id":12,"fn_id":8},"range":{"from":596,"until":597}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":8},"fn_span":{"from":482,"until":597}}},{"statements":[],"terminator":{"type":"drop","local":{"id":12,"fn_id":8},"range":{"from":596,"until":597}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":8},"range":{"from":597,"until":598}}},{"statements":[{"type":"assign","target_local":{"id":17,"fn_id":8},"range":{"from":640,"until":649},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":8},"range":{"from":640,"until":649},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":16,"fn_id":8},"fn_span":{"from":619,"until":650}}},{"statements":[{"type":"assign","target_local":{"id":21,"fn_id":8},"range":{"from":672,"until":680},"rval":{"type":"borrow","target_local":{"id":16,"fn_id":8},"range":{"from":672,"until":680},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":23,"fn_id":8},"range":{"from":688,"until":697},"rval":{"type":"borrow","target_local":{"id":4,"fn_id":8},"range":{"from":688,"until":697},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":22,"fn_id":8},"range":{"from":688,"until":697},"rval":{"type":"borrow","target_local":{"id":23,"fn_id":8},"range":{"from":688,"until":697},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":20,"fn_id":8},"fn_span":{"from":681,"until":698}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":19,"fn_id":8},"fn_span":{"from":672,"until":698}}},{"statements":[{"type":"assign","target_local":{"id":24,"fn_id":8},"range":{"from":672,"until":698},"rval":{"type":"move","target_local":{"id":19,"fn_id":8},"range":{"from":672,"until":698}}}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":29,"fn_id":8},"range":{"from":672,"until":698},"rval":{"type":"borrow","target_local":{"id":24,"fn_id":8},"range":{"from":672,"until":698},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":28,"fn_id":8},"range":{"from":672,"until":698},"rval":{"type":"borrow","target_local":{"id":29,"fn_id":8},"range":{"from":672,"until":698},"mutable":true,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":27,"fn_id":8},"fn_span":{"from":672,"until":698}}},{"statements":[{"type":"assign","target_local":{"id":30,"fn_id":8},"range":{"from":672,"until":698},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":32,"fn_id":8},"range":{"from":661,"until":668},"rval":null},{"type":"assign","target_local":{"id":36,"fn_id":8},"range":{"from":712,"until":719},"rval":{"type":"borrow","target_local":{"id":32,"fn_id":8},"range":{"from":712,"until":719},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":35,"fn_id":8},"fn_span":{"from":720,"until":726}}},{"statements":[{"type":"assign","target_local":{"id":18,"fn_id":8},"range":{"from":657,"until":909},"rval":null}],"terminator":{"type":"drop","local":{"id":24,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[{"type":"assign","target_local":{"id":34,"fn_id":8},"range":{"from":712,"until":726},"rval":{"type":"borrow","target_local":{"id":35,"fn_id":8},"range":{"from":712,"until":726},"mutable":true,"outlive":null}},{"type":"assign","target_local":{"id":38,"fn_id":8},"range":{"from":731,"until":762},"rval":{"type":"borrow","target_local":{"id":3,"fn_id":8},"range":{"from":731,"until":762},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":37,"fn_id":8},"range":{"from":731,"until":762},"rval":null}],"terminator":{"type":"call","destination_local":{"id":33,"fn_id":8},"fn_span":{"from":727,"until":763}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":42,"fn_id":8},"range":{"from":798,"until":805},"rval":{"type":"borrow","target_local":{"id":32,"fn_id":8},"range":{"from":798,"until":805},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":41,"fn_id":8},"fn_span":{"from":806,"until":813}}},{"statements":[{"type":"assign","target_local":{"id":40,"fn_id":8},"range":{"from":798,"until":813},"rval":{"type":"borrow","target_local":{"id":41,"fn_id":8},"range":{"from":798,"until":813},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":44,"fn_id":8},"range":{"from":819,"until":825},"rval":null},{"type":"assign","target_local":{"id":43,"fn_id":8},"range":{"from":819,"until":825},"rval":{"type":"borrow","target_local":{"id":44,"fn_id":8},"range":{"from":819,"until":825},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":39,"fn_id":8},"fn_span":{"from":814,"until":826}}},{"statements":[{"type":"assign","target_local":{"id":45,"fn_id":8},"range":{"from":798,"until":826},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":46,"fn_id":8},"range":{"from":790,"until":794},"rval":null},{"type":"assign","target_local":{"id":50,"fn_id":8},"range":{"from":860,"until":864},"rval":{"type":"borrow","target_local":{"id":46,"fn_id":8},"range":{"from":860,"until":864},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":49,"fn_id":8},"fn_span":{"from":865,"until":876}}},{"statements":[{"type":"assign","target_local":{"id":48,"fn_id":8},"range":{"from":855,"until":877},"rval":null}],"terminator":{"type":"drop","local":{"id":49,"fn_id":8},"range":{"from":876,"until":877}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":8},"range":{"from":852,"until":878},"rval":null}],"terminator":{"type":"drop","local":{"id":48,"fn_id":8},"range":{"from":877,"until":878}}},{"statements":[],"terminator":{"type":"drop","local":{"id":24,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":25,"fn_id":8},"range":{"from":657,"until":909},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":19,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[{"type":"assign","target_local":{"id":51,"fn_id":8},"range":{"from":918,"until":922},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":8},"range":{"from":915,"until":923},"rval":null}],"terminator":{"type":"drop","local":{"id":51,"fn_id":8},"range":{"from":922,"until":923}}},{"statements":[],"terminator":{"type":"drop","local":{"id":16,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":19,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[],"terminator":{"type":"drop","local":{"id":16,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":8},"range":{"from":597,"until":598}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":48,"fn_id":8},"range":{"from":877,"until":878}}},{"statements":[],"terminator":{"type":"drop","local":{"id":24,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[],"terminator":{"type":"drop","local":{"id":19,"fn_id":8},"range":{"from":908,"until":909}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":8},"range":{"from":697,"until":698}}},{"statements":[],"terminator":{"type":"drop","local":{"id":16,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":8},"range":{"from":924,"until":925}}},{"statements":[],"terminator":{"type":"drop","local":{"id":14,"fn_id":8},"range":{"from":596,"until":597}}},{"statements":[],"terminator":{"type":"drop","local":{"id":12,"fn_id":8},"range":{"from":596,"until":597}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":8},"range":{"from":597,"until":598}}},{"statements":[],"terminator":{"type":"drop","local":{"id":6,"fn_id":8},"range":{"from":596,"until":597}}},{"statements":[],"terminator":{"type":"drop","local":{"id":7,"fn_id":8},"range":{"from":595,"until":596}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":8},"ty":"std::result::Result, ScrapeError>","lives":[{"from":596,"until":598},{"from":877,"until":878},{"from":892,"until":893},{"from":902,"until":903},{"from":908,"until":909},{"from":922,"until":923},{"from":924,"until":925}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":8},"name":"html_body","span":{"from":368,"until":377},"ty":"&str","lives":[{"from":471,"until":479},{"from":482,"until":598},{"from":608,"until":616},{"from":640,"until":649}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":8},"name":"selector_str","span":{"from":385,"until":397},"ty":"&str","lives":[{"from":471,"until":479},{"from":482,"until":597}],"shared_borrow":[{"from":482,"until":596}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":529,"until":595}]},{"type":"user","local":{"id":3,"fn_id":8},"name":"link_text","span":{"from":405,"until":414},"ty":"&str","lives":[{"from":471,"until":479},{"from":482,"until":598},{"from":608,"until":616},{"from":619,"until":650},{"from":657,"until":909}],"shared_borrow":[{"from":712,"until":763}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":731,"until":762}]},{"type":"user","local":{"id":4,"fn_id":8},"name":"selector","span":{"from":471,"until":479},"ty":"scraper::Selector","lives":[{"from":596,"until":598},{"from":471,"until":479},{"from":608,"until":616},{"from":619,"until":650},{"from":657,"until":909}],"shared_borrow":[{"from":657,"until":909}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":596,"until":598},{"from":471,"until":479},{"from":608,"until":616},{"from":619,"until":650},{"from":657,"until":909},{"from":915,"until":923},{"from":924,"until":925}],"must_live_at":[{"from":688,"until":698},{"from":661,"until":668},{"from":712,"until":763},{"from":798,"until":826},{"from":785,"until":795},{"from":892,"until":893},{"from":902,"until":903},{"from":908,"until":909}]},{"type":"other","local":{"id":5,"fn_id":8},"ty":"std::ops::ControlFlow, scraper::Selector>","lives":[{"from":482,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":482,"until":598},{"from":471,"until":479}],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":8},"ty":"std::result::Result","lives":[{"from":482,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":8},"ty":"std::result::Result>","lives":[{"from":482,"until":596}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":8},"ty":"&str","lives":[{"from":482,"until":511}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":8},"ty":"{closure@src/lib.rs:19:18: 19:21}","lives":[{"from":482,"until":596}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":8},"ty":"&&str","lives":[{"from":529,"until":595}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":11,"fn_id":8},"ty":"isize","lives":[{"from":482,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":12,"fn_id":8},"name":"residual","span":{"from":596,"until":597},"ty":"std::result::Result","lives":[{"from":596,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":8},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":14,"fn_id":8},"ty":"std::result::Result","lives":[{"from":482,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":15,"fn_id":8},"name":"val","span":{"from":482,"until":597},"ty":"scraper::Selector","lives":[{"from":482,"until":597}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":16,"fn_id":8},"name":"document","span":{"from":608,"until":616},"ty":"scraper::Html","lives":[{"from":649,"until":650},{"from":608,"until":616},{"from":657,"until":909}],"shared_borrow":[{"from":657,"until":909}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":649,"until":650},{"from":608,"until":616},{"from":657,"until":909},{"from":915,"until":923},{"from":924,"until":925}],"must_live_at":[{"from":688,"until":698},{"from":661,"until":668},{"from":712,"until":763},{"from":798,"until":826},{"from":785,"until":795},{"from":855,"until":877},{"from":892,"until":893},{"from":902,"until":903},{"from":908,"until":909}]},{"type":"other","local":{"id":17,"fn_id":8},"ty":"&str","lives":[{"from":619,"until":650}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":8},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":8},"ty":"scraper::html::Select<'_, '_>","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":20,"fn_id":8},"ty":"scraper::html::Select<'_, '_>","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":21,"fn_id":8},"ty":"&scraper::Html","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":22,"fn_id":8},"ty":"&scraper::Selector","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":23,"fn_id":8},"ty":"&scraper::Selector","lives":[{"from":688,"until":697}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":24,"fn_id":8},"name":"iter","span":{"from":672,"until":698},"ty":"scraper::html::Select<'_, '_>","lives":[{"from":657,"until":909}],"shared_borrow":[],"mutable_borrow":[{"from":672,"until":698}],"drop":true,"drop_range":[{"from":657,"until":909}],"must_live_at":[{"from":672,"until":698}]},{"type":"other","local":{"id":25,"fn_id":8},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":26,"fn_id":8},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":27,"fn_id":8},"ty":"std::option::Option>","lives":[{"from":657,"until":909}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":28,"fn_id":8},"ty":"&mut scraper::html::Select<'_, '_>","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":29,"fn_id":8},"ty":"&mut scraper::html::Select<'_, '_>","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[{"from":672,"until":698}],"drop":false,"drop_range":[],"must_live_at":[{"from":672,"until":698}]},{"type":"other","local":{"id":30,"fn_id":8},"ty":"isize","lives":[{"from":672,"until":698}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":31,"fn_id":8},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":32,"fn_id":8},"name":"element","span":{"from":661,"until":668},"ty":"scraper::ElementRef<'_>","lives":[{"from":712,"until":763},{"from":798,"until":826}],"shared_borrow":[{"from":712,"until":726},{"from":798,"until":813}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":712,"until":726},{"from":798,"until":813}]},{"type":"other","local":{"id":33,"fn_id":8},"ty":"bool","lives":[{"from":712,"until":763}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":34,"fn_id":8},"ty":"&mut scraper::element_ref::Text<'_>","lives":[{"from":712,"until":763}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":35,"fn_id":8},"ty":"scraper::element_ref::Text<'_>","lives":[{"from":712,"until":726}],"shared_borrow":[],"mutable_borrow":[{"from":712,"until":763}],"drop":false,"drop_range":[],"must_live_at":[{"from":725,"until":726},{"from":731,"until":762}]},{"type":"other","local":{"id":36,"fn_id":8},"ty":"&scraper::ElementRef<'_>","lives":[{"from":712,"until":726}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":37,"fn_id":8},"ty":"{closure@src/lib.rs:24:31: 24:37}","lives":[{"from":712,"until":763}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":38,"fn_id":8},"ty":"&&str","lives":[{"from":731,"until":762}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":39,"fn_id":8},"ty":"std::option::Option<&str>","lives":[{"from":798,"until":826},{"from":785,"until":795}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":40,"fn_id":8},"ty":"&scraper::node::Element","lives":[{"from":798,"until":826}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":41,"fn_id":8},"ty":"&scraper::node::Element","lives":[{"from":798,"until":813}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":42,"fn_id":8},"ty":"&scraper::ElementRef<'_>","lives":[{"from":798,"until":813}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":43,"fn_id":8},"ty":"&str","lives":[{"from":798,"until":826}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":44,"fn_id":8},"ty":"&str","lives":[{"from":819,"until":825}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":45,"fn_id":8},"ty":"isize","lives":[{"from":785,"until":795}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":46,"fn_id":8},"name":"link","span":{"from":790,"until":794},"ty":"&str","lives":[{"from":855,"until":877}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":47,"fn_id":8},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":48,"fn_id":8},"ty":"std::option::Option","lives":[{"from":852,"until":878}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":876,"until":878}],"must_live_at":[]},{"type":"other","local":{"id":49,"fn_id":8},"ty":"std::string::String","lives":[{"from":855,"until":877}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":50,"fn_id":8},"ty":"&str","lives":[{"from":860,"until":876}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":51,"fn_id":8},"ty":"std::option::Option","lives":[{"from":915,"until":923}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]}]},{"fn_id":13,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":13},"range":{"from":1486,"until":1510},"rval":null},{"type":"assign","target_local":{"id":7,"fn_id":13},"range":{"from":1553,"until":1565},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":13},"range":{"from":1553,"until":1565},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":6,"fn_id":13},"fn_span":{"from":1537,"until":1566}}},{"statements":[{"type":"assign","target_local":{"id":9,"fn_id":13},"range":{"from":1584,"until":1650},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":13},"range":{"from":1584,"until":1650},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":8,"fn_id":13},"range":{"from":1584,"until":1650},"rval":null}],"terminator":{"type":"call","destination_local":{"id":5,"fn_id":13},"fn_span":{"from":1576,"until":1651}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":4,"fn_id":13},"fn_span":{"from":1537,"until":1652}}},{"statements":[{"type":"assign","target_local":{"id":10,"fn_id":13},"range":{"from":1537,"until":1652},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":14,"fn_id":13},"range":{"from":1537,"until":1652},"rval":{"type":"move","target_local":{"id":4,"fn_id":13},"range":{"from":1537,"until":1652}}},{"type":"assign","target_local":{"id":3,"fn_id":13},"range":{"from":1537,"until":1652},"rval":{"type":"move","target_local":{"id":14,"fn_id":13},"range":{"from":1537,"until":1652}}}],"terminator":{"type":"drop","local":{"id":14,"fn_id":13},"range":{"from":1651,"until":1652}}},{"statements":[{"type":"assign","target_local":{"id":11,"fn_id":13},"range":{"from":1651,"until":1652},"rval":{"type":"move","target_local":{"id":4,"fn_id":13},"range":{"from":1651,"until":1652}}},{"type":"assign","target_local":{"id":13,"fn_id":13},"range":{"from":1651,"until":1652},"rval":{"type":"move","target_local":{"id":11,"fn_id":13},"range":{"from":1651,"until":1652}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":13},"fn_span":{"from":1537,"until":1652}}},{"statements":[],"terminator":{"type":"drop","local":{"id":11,"fn_id":13},"range":{"from":1651,"until":1652}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":13},"range":{"from":1652,"until":1653}}},{"statements":[{"type":"assign","target_local":{"id":16,"fn_id":13},"range":{"from":1695,"until":1704},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":13},"range":{"from":1695,"until":1704},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":15,"fn_id":13},"fn_span":{"from":1674,"until":1705}}},{"statements":[{"type":"assign","target_local":{"id":21,"fn_id":13},"range":{"from":1768,"until":1776},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":13},"range":{"from":1768,"until":1776},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":23,"fn_id":13},"range":{"from":1784,"until":1799},"rval":{"type":"borrow","target_local":{"id":3,"fn_id":13},"range":{"from":1784,"until":1799},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":22,"fn_id":13},"range":{"from":1784,"until":1799},"rval":{"type":"borrow","target_local":{"id":23,"fn_id":13},"range":{"from":1784,"until":1799},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":20,"fn_id":13},"fn_span":{"from":1777,"until":1800}}},{"statements":[{"type":"assign","target_local":{"id":19,"fn_id":13},"range":{"from":1768,"until":1800},"rval":{"type":"borrow","target_local":{"id":20,"fn_id":13},"range":{"from":1768,"until":1800},"mutable":true,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":18,"fn_id":13},"fn_span":{"from":1801,"until":1807}}},{"statements":[{"type":"assign","target_local":{"id":24,"fn_id":13},"range":{"from":1768,"until":1807},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":25,"fn_id":13},"range":{"from":1757,"until":1764},"rval":null},{"type":"assign","target_local":{"id":29,"fn_id":13},"range":{"from":1845,"until":1852},"rval":{"type":"borrow","target_local":{"id":25,"fn_id":13},"range":{"from":1845,"until":1852},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":28,"fn_id":13},"fn_span":{"from":1853,"until":1860}}},{"statements":[{"type":"assign","target_local":{"id":27,"fn_id":13},"range":{"from":1845,"until":1860},"rval":{"type":"borrow","target_local":{"id":28,"fn_id":13},"range":{"from":1845,"until":1860},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":31,"fn_id":13},"range":{"from":1866,"until":1873},"rval":null},{"type":"assign","target_local":{"id":30,"fn_id":13},"range":{"from":1866,"until":1873},"rval":{"type":"borrow","target_local":{"id":31,"fn_id":13},"range":{"from":1866,"until":1873},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":26,"fn_id":13},"fn_span":{"from":1861,"until":1874}}},{"statements":[{"type":"assign","target_local":{"id":32,"fn_id":13},"range":{"from":1845,"until":1874},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":33,"fn_id":13},"range":{"from":1830,"until":1841},"rval":null},{"type":"assign","target_local":{"id":37,"fn_id":13},"range":{"from":1904,"until":1915},"rval":{"type":"borrow","target_local":{"id":33,"fn_id":13},"range":{"from":1904,"until":1915},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":36,"fn_id":13},"fn_span":{"from":1916,"until":1927}}},{"statements":[{"type":"assign","target_local":{"id":35,"fn_id":13},"range":{"from":1899,"until":1928},"rval":null}],"terminator":{"type":"drop","local":{"id":36,"fn_id":13},"range":{"from":1927,"until":1928}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":13},"range":{"from":1896,"until":1929},"rval":null}],"terminator":{"type":"drop","local":{"id":35,"fn_id":13},"range":{"from":1928,"until":1929}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":13},"range":{"from":1945,"until":1946}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":13},"range":{"from":1945,"until":1946}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":13},"range":{"from":1945,"until":1946}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":38,"fn_id":13},"range":{"from":1955,"until":1959},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":13},"range":{"from":1952,"until":1960},"rval":null}],"terminator":{"type":"drop","local":{"id":38,"fn_id":13},"range":{"from":1959,"until":1960}}},{"statements":[],"terminator":{"type":"drop","local":{"id":15,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":15,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":13},"range":{"from":1652,"until":1653}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":35,"fn_id":13},"range":{"from":1928,"until":1929}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":13},"range":{"from":1945,"until":1946}}},{"statements":[],"terminator":{"type":"drop","local":{"id":15,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":13},"range":{"from":1961,"until":1962}}},{"statements":[],"terminator":{"type":"drop","local":{"id":13,"fn_id":13},"range":{"from":1651,"until":1652}}},{"statements":[],"terminator":{"type":"drop","local":{"id":11,"fn_id":13},"range":{"from":1651,"until":1652}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":13},"range":{"from":1652,"until":1653}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":13},"range":{"from":1651,"until":1652}}},{"statements":[],"terminator":{"type":"drop","local":{"id":6,"fn_id":13},"range":{"from":1650,"until":1651}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":13},"ty":"std::result::Result, ScrapeError>","lives":[{"from":1651,"until":1653},{"from":1928,"until":1929},{"from":1939,"until":1940},{"from":1945,"until":1946},{"from":1959,"until":1960},{"from":1961,"until":1962}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":13},"name":"html_body","span":{"from":1378,"until":1387},"ty":"&str","lives":[{"from":1471,"until":1483},{"from":1486,"until":1510},{"from":1520,"until":1534},{"from":1537,"until":1653},{"from":1663,"until":1671},{"from":1695,"until":1704}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":13},"name":"selector_str","span":{"from":1471,"until":1483},"ty":"&str","lives":[{"from":1471,"until":1483},{"from":1520,"until":1534},{"from":1537,"until":1652}],"shared_borrow":[{"from":1537,"until":1651}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":1584,"until":1650}]},{"type":"user","local":{"id":3,"fn_id":13},"name":"token_selector","span":{"from":1520,"until":1534},"ty":"scraper::Selector","lives":[{"from":1651,"until":1653},{"from":1520,"until":1534},{"from":1663,"until":1671},{"from":1674,"until":1705},{"from":1745,"until":1946}],"shared_borrow":[{"from":1768,"until":1807}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":1651,"until":1653},{"from":1520,"until":1534},{"from":1663,"until":1671},{"from":1674,"until":1705},{"from":1745,"until":1946},{"from":1952,"until":1960},{"from":1961,"until":1962}],"must_live_at":[{"from":1784,"until":1800}]},{"type":"other","local":{"id":4,"fn_id":13},"ty":"std::ops::ControlFlow, scraper::Selector>","lives":[{"from":1537,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":1537,"until":1653},{"from":1520,"until":1534}],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":13},"ty":"std::result::Result","lives":[{"from":1537,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":13},"ty":"std::result::Result>","lives":[{"from":1537,"until":1651}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":13},"ty":"&str","lives":[{"from":1537,"until":1566}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":13},"ty":"{closure@src/lib.rs:50:18: 50:21}","lives":[{"from":1537,"until":1651}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":13},"ty":"&&str","lives":[{"from":1584,"until":1650}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":13},"ty":"isize","lives":[{"from":1537,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":11,"fn_id":13},"name":"residual","span":{"from":1651,"until":1652},"ty":"std::result::Result","lives":[{"from":1651,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":13},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":13},"ty":"std::result::Result","lives":[{"from":1537,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":14,"fn_id":13},"name":"val","span":{"from":1537,"until":1652},"ty":"scraper::Selector","lives":[{"from":1537,"until":1652}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":15,"fn_id":13},"name":"document","span":{"from":1663,"until":1671},"ty":"scraper::Html","lives":[{"from":1704,"until":1705},{"from":1663,"until":1671},{"from":1745,"until":1946}],"shared_borrow":[{"from":1768,"until":1807},{"from":1752,"until":1765},{"from":1845,"until":1874},{"from":1825,"until":1842},{"from":1899,"until":1928}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":1704,"until":1705},{"from":1663,"until":1671},{"from":1745,"until":1946},{"from":1952,"until":1960},{"from":1961,"until":1962}],"must_live_at":[{"from":1784,"until":1800},{"from":1806,"until":1807},{"from":1752,"until":1765},{"from":1845,"until":1874},{"from":1825,"until":1842},{"from":1899,"until":1928}]},{"type":"other","local":{"id":16,"fn_id":13},"ty":"&str","lives":[{"from":1674,"until":1705}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":13},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":13},"ty":"std::option::Option>","lives":[{"from":1768,"until":1807},{"from":1752,"until":1765}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":13},"ty":"&mut scraper::html::Select<'_, '_>","lives":[{"from":1768,"until":1807}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":20,"fn_id":13},"ty":"scraper::html::Select<'_, '_>","lives":[{"from":1768,"until":1800}],"shared_borrow":[],"mutable_borrow":[{"from":1768,"until":1807}],"drop":true,"drop_range":[{"from":1768,"until":1807},{"from":1752,"until":1765},{"from":1845,"until":1874},{"from":1825,"until":1842},{"from":1896,"until":1929},{"from":1939,"until":1940},{"from":1945,"until":1946}],"must_live_at":[{"from":1799,"until":1800}]},{"type":"other","local":{"id":21,"fn_id":13},"ty":"&scraper::Html","lives":[{"from":1768,"until":1800}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":22,"fn_id":13},"ty":"&scraper::Selector","lives":[{"from":1768,"until":1800}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":23,"fn_id":13},"ty":"&scraper::Selector","lives":[{"from":1784,"until":1799}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":24,"fn_id":13},"ty":"isize","lives":[{"from":1752,"until":1765}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":25,"fn_id":13},"name":"element","span":{"from":1757,"until":1764},"ty":"scraper::ElementRef<'_>","lives":[{"from":1845,"until":1874}],"shared_borrow":[{"from":1845,"until":1860}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":1845,"until":1860}]},{"type":"other","local":{"id":26,"fn_id":13},"ty":"std::option::Option<&str>","lives":[{"from":1845,"until":1874},{"from":1825,"until":1842}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":27,"fn_id":13},"ty":"&scraper::node::Element","lives":[{"from":1845,"until":1874}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":28,"fn_id":13},"ty":"&scraper::node::Element","lives":[{"from":1845,"until":1860}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":29,"fn_id":13},"ty":"&scraper::ElementRef<'_>","lives":[{"from":1845,"until":1860}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":30,"fn_id":13},"ty":"&str","lives":[{"from":1845,"until":1874}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":31,"fn_id":13},"ty":"&str","lives":[{"from":1866,"until":1873}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":32,"fn_id":13},"ty":"isize","lives":[{"from":1825,"until":1842}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":33,"fn_id":13},"name":"token_value","span":{"from":1830,"until":1841},"ty":"&str","lives":[{"from":1899,"until":1928}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":34,"fn_id":13},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":35,"fn_id":13},"ty":"std::option::Option","lives":[{"from":1896,"until":1929}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":1927,"until":1929}],"must_live_at":[]},{"type":"other","local":{"id":36,"fn_id":13},"ty":"std::string::String","lives":[{"from":1899,"until":1928}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":37,"fn_id":13},"ty":"&str","lives":[{"from":1904,"until":1927}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":38,"fn_id":13},"ty":"std::option::Option","lives":[{"from":1952,"until":1960}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]}]},{"fn_id":39,"basic_blocks":[{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":39},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":40,"basic_blocks":[{"statements":[],"terminator":null},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":40},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":1,"fn_id":40},"ty":"&[&tests::test::TestDescAndFn]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":2,"fn_id":40},"ty":"&[&tests::test::TestDescAndFn; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":3,"fn_id":40},"ty":"&[&tests::test::TestDescAndFn; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":4,"fn_id":40},"ty":"[&tests::test::TestDescAndFn; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":40},"ty":"&tests::test::TestDescAndFn","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":40},"ty":"&tests::test::TestDescAndFn","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":40},"ty":"tests::test::TestDescAndFn","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":40},"ty":"&[&tests::test::TestDescAndFn; 1]","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]}]},{"fn_id":15,"basic_blocks":[{"statements":[{"type":"assign","target_local":{"id":2,"fn_id":15},"range":{"from":2220,"until":2253},"rval":null},{"type":"assign","target_local":{"id":7,"fn_id":15},"range":{"from":2302,"until":2314},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":15},"range":{"from":2302,"until":2314},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":6,"fn_id":15},"fn_span":{"from":2286,"until":2315}}},{"statements":[{"type":"assign","target_local":{"id":9,"fn_id":15},"range":{"from":2333,"until":2399},"rval":{"type":"borrow","target_local":{"id":2,"fn_id":15},"range":{"from":2333,"until":2399},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":8,"fn_id":15},"range":{"from":2333,"until":2399},"rval":null}],"terminator":{"type":"call","destination_local":{"id":5,"fn_id":15},"fn_span":{"from":2325,"until":2400}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":4,"fn_id":15},"fn_span":{"from":2286,"until":2401}}},{"statements":[{"type":"assign","target_local":{"id":10,"fn_id":15},"range":{"from":2286,"until":2401},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":14,"fn_id":15},"range":{"from":2286,"until":2401},"rval":{"type":"move","target_local":{"id":4,"fn_id":15},"range":{"from":2286,"until":2401}}},{"type":"assign","target_local":{"id":3,"fn_id":15},"range":{"from":2286,"until":2401},"rval":{"type":"move","target_local":{"id":14,"fn_id":15},"range":{"from":2286,"until":2401}}}],"terminator":{"type":"drop","local":{"id":14,"fn_id":15},"range":{"from":2400,"until":2401}}},{"statements":[{"type":"assign","target_local":{"id":11,"fn_id":15},"range":{"from":2400,"until":2401},"rval":{"type":"move","target_local":{"id":4,"fn_id":15},"range":{"from":2400,"until":2401}}},{"type":"assign","target_local":{"id":13,"fn_id":15},"range":{"from":2400,"until":2401},"rval":{"type":"move","target_local":{"id":11,"fn_id":15},"range":{"from":2400,"until":2401}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":15},"fn_span":{"from":2286,"until":2401}}},{"statements":[],"terminator":{"type":"drop","local":{"id":11,"fn_id":15},"range":{"from":2400,"until":2401}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":15},"range":{"from":2401,"until":2402}}},{"statements":[{"type":"assign","target_local":{"id":16,"fn_id":15},"range":{"from":2444,"until":2453},"rval":{"type":"borrow","target_local":{"id":1,"fn_id":15},"range":{"from":2444,"until":2453},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":15,"fn_id":15},"fn_span":{"from":2423,"until":2454}}},{"statements":[{"type":"assign","target_local":{"id":21,"fn_id":15},"range":{"from":2502,"until":2510},"rval":{"type":"borrow","target_local":{"id":15,"fn_id":15},"range":{"from":2502,"until":2510},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":23,"fn_id":15},"range":{"from":2518,"until":2539},"rval":{"type":"borrow","target_local":{"id":3,"fn_id":15},"range":{"from":2518,"until":2539},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":22,"fn_id":15},"range":{"from":2518,"until":2539},"rval":{"type":"borrow","target_local":{"id":23,"fn_id":15},"range":{"from":2518,"until":2539},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":20,"fn_id":15},"fn_span":{"from":2511,"until":2540}}},{"statements":[{"type":"assign","target_local":{"id":19,"fn_id":15},"range":{"from":2502,"until":2540},"rval":{"type":"borrow","target_local":{"id":20,"fn_id":15},"range":{"from":2502,"until":2540},"mutable":true,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":18,"fn_id":15},"fn_span":{"from":2541,"until":2547}}},{"statements":[{"type":"assign","target_local":{"id":24,"fn_id":15},"range":{"from":2502,"until":2547},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":25,"fn_id":15},"range":{"from":2491,"until":2498},"rval":null},{"type":"assign","target_local":{"id":29,"fn_id":15},"range":{"from":2603,"until":2610},"rval":{"type":"borrow","target_local":{"id":25,"fn_id":15},"range":{"from":2603,"until":2610},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":28,"fn_id":15},"fn_span":{"from":2611,"until":2618}}},{"statements":[{"type":"assign","target_local":{"id":27,"fn_id":15},"range":{"from":2603,"until":2618},"rval":{"type":"borrow","target_local":{"id":28,"fn_id":15},"range":{"from":2603,"until":2618},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":31,"fn_id":15},"range":{"from":2624,"until":2630},"rval":null},{"type":"assign","target_local":{"id":30,"fn_id":15},"range":{"from":2624,"until":2630},"rval":{"type":"borrow","target_local":{"id":31,"fn_id":15},"range":{"from":2624,"until":2630},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":26,"fn_id":15},"fn_span":{"from":2619,"until":2631}}},{"statements":[{"type":"assign","target_local":{"id":32,"fn_id":15},"range":{"from":2603,"until":2631},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":33,"fn_id":15},"range":{"from":2595,"until":2599},"rval":null},{"type":"assign","target_local":{"id":38,"fn_id":15},"range":{"from":2768,"until":2779},"rval":null},{"type":"assign","target_local":{"id":37,"fn_id":15},"range":{"from":2768,"until":2779},"rval":{"type":"borrow","target_local":{"id":38,"fn_id":15},"range":{"from":2768,"until":2779},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":36,"fn_id":15},"fn_span":{"from":2757,"until":2780}}},{"statements":[],"terminator":{"type":"call","destination_local":{"id":35,"fn_id":15},"fn_span":{"from":2757,"until":2781}}},{"statements":[{"type":"assign","target_local":{"id":39,"fn_id":15},"range":{"from":2757,"until":2781},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":43,"fn_id":15},"range":{"from":2757,"until":2781},"rval":{"type":"move","target_local":{"id":35,"fn_id":15},"range":{"from":2757,"until":2781}}},{"type":"assign","target_local":{"id":34,"fn_id":15},"range":{"from":2757,"until":2781},"rval":{"type":"move","target_local":{"id":43,"fn_id":15},"range":{"from":2757,"until":2781}}}],"terminator":{"type":"drop","local":{"id":43,"fn_id":15},"range":{"from":2780,"until":2781}}},{"statements":[{"type":"assign","target_local":{"id":40,"fn_id":15},"range":{"from":2780,"until":2781},"rval":{"type":"move","target_local":{"id":35,"fn_id":15},"range":{"from":2780,"until":2781}}},{"type":"assign","target_local":{"id":42,"fn_id":15},"range":{"from":2780,"until":2781},"rval":{"type":"move","target_local":{"id":40,"fn_id":15},"range":{"from":2780,"until":2781}}}],"terminator":{"type":"call","destination_local":{"id":0,"fn_id":15},"fn_span":{"from":2757,"until":2781}}},{"statements":[],"terminator":{"type":"drop","local":{"id":40,"fn_id":15},"range":{"from":2780,"until":2781}}},{"statements":[],"terminator":{"type":"drop","local":{"id":35,"fn_id":15},"range":{"from":2781,"until":2782}}},{"statements":[{"type":"assign","target_local":{"id":45,"fn_id":15},"range":{"from":2815,"until":2817},"rval":{"type":"borrow","target_local":{"id":34,"fn_id":15},"range":{"from":2815,"until":2817},"mutable":false,"outlive":null}},{"type":"assign","target_local":{"id":46,"fn_id":15},"range":{"from":2827,"until":2831},"rval":{"type":"borrow","target_local":{"id":33,"fn_id":15},"range":{"from":2827,"until":2831},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":44,"fn_id":15},"fn_span":{"from":2818,"until":2832}}},{"statements":[{"type":"assign","target_local":{"id":47,"fn_id":15},"range":{"from":2815,"until":2832},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":48,"fn_id":15},"range":{"from":2807,"until":2811},"rval":{"type":"move","target_local":{"id":44,"fn_id":15},"range":{"from":2807,"until":2811}}},{"type":"assign","target_local":{"id":50,"fn_id":15},"range":{"from":2933,"until":2937},"rval":{"type":"borrow","target_local":{"id":48,"fn_id":15},"range":{"from":2933,"until":2937},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":49,"fn_id":15},"fn_span":{"from":2938,"until":2944}}},{"statements":[{"type":"assign","target_local":{"id":51,"fn_id":15},"range":{"from":2933,"until":2944},"rval":null}],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":52,"fn_id":15},"range":{"from":2921,"until":2929},"rval":null},{"type":"assign","target_local":{"id":58,"fn_id":15},"range":{"from":2982,"until":2990},"rval":{"type":"borrow","target_local":{"id":52,"fn_id":15},"range":{"from":2982,"until":2990},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":57,"fn_id":15},"fn_span":{"from":2991,"until":2999}}},{"statements":[{"type":"assign","target_local":{"id":56,"fn_id":15},"range":{"from":2982,"until":2999},"rval":{"type":"borrow","target_local":{"id":57,"fn_id":15},"range":{"from":2982,"until":2999},"mutable":false,"outlive":null}}],"terminator":{"type":"call","destination_local":{"id":55,"fn_id":15},"fn_span":{"from":3000,"until":3011}}},{"statements":[{"type":"assign","target_local":{"id":54,"fn_id":15},"range":{"from":2977,"until":3012},"rval":null}],"terminator":{"type":"drop","local":{"id":55,"fn_id":15},"range":{"from":3011,"until":3012}}},{"statements":[{"type":"assign","target_local":{"id":0,"fn_id":15},"range":{"from":2974,"until":3013},"rval":null}],"terminator":{"type":"drop","local":{"id":54,"fn_id":15},"range":{"from":3012,"until":3013}}},{"statements":[],"terminator":{"type":"drop","local":{"id":48,"fn_id":15},"range":{"from":3045,"until":3046}}},{"statements":[],"terminator":{"type":"drop","local":{"id":48,"fn_id":15},"range":{"from":3045,"until":3046}}},{"statements":[],"terminator":{"type":"drop","local":{"id":44,"fn_id":15},"range":{"from":3045,"until":3046}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":44,"fn_id":15},"range":{"from":3045,"until":3046}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":34,"fn_id":15},"range":{"from":3055,"until":3056}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":15},"range":{"from":3061,"until":3062}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":15},"range":{"from":3061,"until":3062}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[{"type":"assign","target_local":{"id":59,"fn_id":15},"range":{"from":3071,"until":3075},"rval":null},{"type":"assign","target_local":{"id":0,"fn_id":15},"range":{"from":3068,"until":3076},"rval":null}],"terminator":{"type":"drop","local":{"id":59,"fn_id":15},"range":{"from":3075,"until":3076}}},{"statements":[],"terminator":{"type":"drop","local":{"id":15,"fn_id":15},"range":{"from":3077,"until":3078}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":15},"range":{"from":3077,"until":3078}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":44,"fn_id":15},"range":{"from":3045,"until":3046}}},{"statements":[],"terminator":{"type":"drop","local":{"id":34,"fn_id":15},"range":{"from":3055,"until":3056}}},{"statements":[],"terminator":{"type":"drop","local":{"id":35,"fn_id":15},"range":{"from":2781,"until":2782}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":15},"range":{"from":3061,"until":3062}}},{"statements":[],"terminator":{"type":"drop","local":{"id":15,"fn_id":15},"range":{"from":3077,"until":3078}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":15},"range":{"from":3077,"until":3078}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":15},"range":{"from":2401,"until":2402}}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"other"}},{"statements":[],"terminator":{"type":"drop","local":{"id":54,"fn_id":15},"range":{"from":3012,"until":3013}}},{"statements":[],"terminator":{"type":"drop","local":{"id":48,"fn_id":15},"range":{"from":3045,"until":3046}}},{"statements":[],"terminator":{"type":"drop","local":{"id":44,"fn_id":15},"range":{"from":3045,"until":3046}}},{"statements":[],"terminator":{"type":"drop","local":{"id":34,"fn_id":15},"range":{"from":3055,"until":3056}}},{"statements":[],"terminator":{"type":"drop","local":{"id":42,"fn_id":15},"range":{"from":2780,"until":2781}}},{"statements":[],"terminator":{"type":"drop","local":{"id":40,"fn_id":15},"range":{"from":2780,"until":2781}}},{"statements":[],"terminator":{"type":"drop","local":{"id":35,"fn_id":15},"range":{"from":2781,"until":2782}}},{"statements":[],"terminator":{"type":"drop","local":{"id":36,"fn_id":15},"range":{"from":2780,"until":2781}}},{"statements":[],"terminator":{"type":"drop","local":{"id":20,"fn_id":15},"range":{"from":3061,"until":3062}}},{"statements":[],"terminator":{"type":"drop","local":{"id":15,"fn_id":15},"range":{"from":3077,"until":3078}}},{"statements":[],"terminator":{"type":"drop","local":{"id":3,"fn_id":15},"range":{"from":3077,"until":3078}}},{"statements":[],"terminator":{"type":"drop","local":{"id":13,"fn_id":15},"range":{"from":2400,"until":2401}}},{"statements":[],"terminator":{"type":"drop","local":{"id":11,"fn_id":15},"range":{"from":2400,"until":2401}}},{"statements":[],"terminator":{"type":"drop","local":{"id":4,"fn_id":15},"range":{"from":2401,"until":2402}}},{"statements":[],"terminator":{"type":"drop","local":{"id":5,"fn_id":15},"range":{"from":2400,"until":2401}}},{"statements":[],"terminator":{"type":"drop","local":{"id":6,"fn_id":15},"range":{"from":2399,"until":2400}}},{"statements":[],"terminator":{"type":"other"}}],"decls":[{"type":"other","local":{"id":0,"fn_id":15},"ty":"std::result::Result, ScrapeError>","lives":[{"from":2400,"until":2402},{"from":2780,"until":2782},{"from":3012,"until":3014},{"from":3031,"until":3032},{"from":3045,"until":3046},{"from":3075,"until":3076},{"from":3077,"until":3078},{"from":3055,"until":3056},{"from":3061,"until":3062}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":1,"fn_id":15},"name":"html_body","span":{"from":2072,"until":2081},"ty":"&str","lives":[{"from":2205,"until":2217},{"from":2220,"until":2253},{"from":2263,"until":2283},{"from":2286,"until":2402},{"from":2412,"until":2420},{"from":2444,"until":2453}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":2,"fn_id":15},"name":"selector_str","span":{"from":2205,"until":2217},"ty":"&str","lives":[{"from":2205,"until":2217},{"from":2263,"until":2283},{"from":2286,"until":2401}],"shared_borrow":[{"from":2286,"until":2400}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":2333,"until":2399}]},{"type":"user","local":{"id":3,"fn_id":15},"name":"detail_link_selector","span":{"from":2263,"until":2283},"ty":"scraper::Selector","lives":[{"from":2400,"until":2402},{"from":2263,"until":2283},{"from":2412,"until":2420},{"from":2423,"until":2454},{"from":2479,"until":3062}],"shared_borrow":[{"from":2502,"until":2547}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":2400,"until":2402},{"from":2263,"until":2283},{"from":2412,"until":2420},{"from":2423,"until":2454},{"from":2479,"until":3062},{"from":3068,"until":3076},{"from":3077,"until":3078}],"must_live_at":[{"from":2518,"until":2540}]},{"type":"other","local":{"id":4,"fn_id":15},"ty":"std::ops::ControlFlow, scraper::Selector>","lives":[{"from":2286,"until":2401}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":2286,"until":2402},{"from":2263,"until":2283}],"must_live_at":[]},{"type":"other","local":{"id":5,"fn_id":15},"ty":"std::result::Result","lives":[{"from":2286,"until":2401}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":6,"fn_id":15},"ty":"std::result::Result>","lives":[{"from":2286,"until":2400}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":7,"fn_id":15},"ty":"&str","lives":[{"from":2286,"until":2315}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":8,"fn_id":15},"ty":"{closure@src/lib.rs:71:18: 71:21}","lives":[{"from":2286,"until":2400}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":9,"fn_id":15},"ty":"&&str","lives":[{"from":2333,"until":2399}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":10,"fn_id":15},"ty":"isize","lives":[{"from":2286,"until":2401}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":11,"fn_id":15},"name":"residual","span":{"from":2400,"until":2401},"ty":"std::result::Result","lives":[{"from":2400,"until":2401}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":12,"fn_id":15},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":13,"fn_id":15},"ty":"std::result::Result","lives":[{"from":2286,"until":2401}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":14,"fn_id":15},"name":"val","span":{"from":2286,"until":2401},"ty":"scraper::Selector","lives":[{"from":2286,"until":2401}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":15,"fn_id":15},"name":"document","span":{"from":2412,"until":2420},"ty":"scraper::Html","lives":[{"from":2453,"until":2454},{"from":2412,"until":2420},{"from":2479,"until":3062}],"shared_borrow":[{"from":2502,"until":2547},{"from":2486,"until":2499},{"from":2603,"until":2631},{"from":2590,"until":2600},{"from":2752,"until":2754},{"from":2757,"until":2782},{"from":2815,"until":2832},{"from":2802,"until":2812},{"from":2933,"until":2944},{"from":2916,"until":2930},{"from":2977,"until":3012}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":2453,"until":2454},{"from":2412,"until":2420},{"from":2479,"until":3062},{"from":3068,"until":3076},{"from":3077,"until":3078}],"must_live_at":[{"from":2518,"until":2540},{"from":2546,"until":2547},{"from":2486,"until":2499},{"from":2603,"until":2631},{"from":2590,"until":2600},{"from":2752,"until":2754},{"from":2757,"until":2782},{"from":2815,"until":2832},{"from":2802,"until":2812},{"from":2933,"until":2944},{"from":2916,"until":2930},{"from":2977,"until":3012}]},{"type":"other","local":{"id":16,"fn_id":15},"ty":"&str","lives":[{"from":2423,"until":2454}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":17,"fn_id":15},"ty":"()","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":18,"fn_id":15},"ty":"std::option::Option>","lives":[{"from":2502,"until":2547},{"from":2486,"until":2499}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":19,"fn_id":15},"ty":"&mut scraper::html::Select<'_, '_>","lives":[{"from":2502,"until":2547}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":20,"fn_id":15},"ty":"scraper::html::Select<'_, '_>","lives":[{"from":2502,"until":2540}],"shared_borrow":[],"mutable_borrow":[{"from":2502,"until":2547}],"drop":true,"drop_range":[{"from":2502,"until":2547},{"from":2486,"until":2499},{"from":2583,"until":3056},{"from":3061,"until":3062}],"must_live_at":[{"from":2539,"until":2540}]},{"type":"other","local":{"id":21,"fn_id":15},"ty":"&scraper::Html","lives":[{"from":2502,"until":2540}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":22,"fn_id":15},"ty":"&scraper::Selector","lives":[{"from":2502,"until":2540}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":23,"fn_id":15},"ty":"&scraper::Selector","lives":[{"from":2518,"until":2539}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":24,"fn_id":15},"ty":"isize","lives":[{"from":2486,"until":2499}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":25,"fn_id":15},"name":"element","span":{"from":2491,"until":2498},"ty":"scraper::ElementRef<'_>","lives":[{"from":2603,"until":2631}],"shared_borrow":[{"from":2603,"until":2618}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":2603,"until":2618}]},{"type":"other","local":{"id":26,"fn_id":15},"ty":"std::option::Option<&str>","lives":[{"from":2603,"until":2631},{"from":2590,"until":2600}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":27,"fn_id":15},"ty":"&scraper::node::Element","lives":[{"from":2603,"until":2631}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":28,"fn_id":15},"ty":"&scraper::node::Element","lives":[{"from":2603,"until":2618}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":29,"fn_id":15},"ty":"&scraper::ElementRef<'_>","lives":[{"from":2603,"until":2618}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":30,"fn_id":15},"ty":"&str","lives":[{"from":2603,"until":2631}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":31,"fn_id":15},"ty":"&str","lives":[{"from":2624,"until":2630}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":32,"fn_id":15},"ty":"isize","lives":[{"from":2590,"until":2600}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":33,"fn_id":15},"name":"href","span":{"from":2595,"until":2599},"ty":"&str","lives":[{"from":2752,"until":2754},{"from":2757,"until":2782},{"from":2815,"until":2832}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":34,"fn_id":15},"name":"re","span":{"from":2752,"until":2754},"ty":"regex::Regex","lives":[{"from":2780,"until":2782},{"from":2752,"until":2754},{"from":2815,"until":2832}],"shared_borrow":[{"from":2815,"until":2832}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":2780,"until":2782},{"from":2752,"until":2754},{"from":2795,"until":3046},{"from":3055,"until":3056}],"must_live_at":[{"from":2827,"until":2831}]},{"type":"other","local":{"id":35,"fn_id":15},"ty":"std::ops::ControlFlow, regex::Regex>","lives":[{"from":2757,"until":2781}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":2757,"until":2782},{"from":2752,"until":2754}],"must_live_at":[]},{"type":"other","local":{"id":36,"fn_id":15},"ty":"std::result::Result","lives":[{"from":2757,"until":2781}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":37,"fn_id":15},"ty":"&str","lives":[{"from":2757,"until":2780}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":38,"fn_id":15},"ty":"&str","lives":[{"from":2768,"until":2779}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":39,"fn_id":15},"ty":"isize","lives":[{"from":2757,"until":2781}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":40,"fn_id":15},"name":"residual","span":{"from":2780,"until":2781},"ty":"std::result::Result","lives":[{"from":2780,"until":2781}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":41,"fn_id":15},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":42,"fn_id":15},"ty":"std::result::Result","lives":[{"from":2757,"until":2781}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":43,"fn_id":15},"name":"val","span":{"from":2757,"until":2781},"ty":"regex::Regex","lives":[{"from":2757,"until":2781}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":44,"fn_id":15},"ty":"std::option::Option>","lives":[{"from":2815,"until":2832},{"from":2802,"until":2812}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":2815,"until":2832},{"from":2802,"until":2812},{"from":2933,"until":2944},{"from":2916,"until":2930},{"from":2974,"until":3014},{"from":3031,"until":3032},{"from":3045,"until":3046}],"must_live_at":[]},{"type":"other","local":{"id":45,"fn_id":15},"ty":"®ex::Regex","lives":[{"from":2815,"until":2832}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":46,"fn_id":15},"ty":"&str","lives":[{"from":2815,"until":2832}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":47,"fn_id":15},"ty":"isize","lives":[{"from":2802,"until":2812}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":48,"fn_id":15},"name":"caps","span":{"from":2807,"until":2811},"ty":"regex::Captures<'_>","lives":[{"from":2933,"until":2944}],"shared_borrow":[{"from":2933,"until":2944}],"mutable_borrow":[],"drop":true,"drop_range":[{"from":2933,"until":2944},{"from":2916,"until":2930},{"from":2974,"until":3014},{"from":3031,"until":3032},{"from":3045,"until":3046}],"must_live_at":[{"from":2933,"until":2944}]},{"type":"other","local":{"id":49,"fn_id":15},"ty":"std::option::Option>","lives":[{"from":2933,"until":2944},{"from":2916,"until":2930}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":50,"fn_id":15},"ty":"®ex::Captures<'_>","lives":[{"from":2933,"until":2944}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":51,"fn_id":15},"ty":"isize","lives":[{"from":2916,"until":2930}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"user","local":{"id":52,"fn_id":15},"name":"id_match","span":{"from":2921,"until":2929},"ty":"regex::Match<'_>","lives":[{"from":2977,"until":3012}],"shared_borrow":[{"from":2982,"until":2999}],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[{"from":2982,"until":2999}]},{"type":"other","local":{"id":53,"fn_id":15},"ty":"!","lives":[],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":54,"fn_id":15},"ty":"std::option::Option","lives":[{"from":2974,"until":3013}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[{"from":3011,"until":3013}],"must_live_at":[]},{"type":"other","local":{"id":55,"fn_id":15},"ty":"std::string::String","lives":[{"from":2977,"until":3012}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":56,"fn_id":15},"ty":"&str","lives":[{"from":2982,"until":3011}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":57,"fn_id":15},"ty":"&str","lives":[{"from":2982,"until":2999}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":58,"fn_id":15},"ty":"®ex::Match<'_>","lives":[{"from":2982,"until":2999}],"shared_borrow":[],"mutable_borrow":[],"drop":false,"drop_range":[],"must_live_at":[]},{"type":"other","local":{"id":59,"fn_id":15},"ty":"std::option::Option","lives":[{"from":3068,"until":3076}],"shared_borrow":[],"mutable_borrow":[],"drop":true,"drop_range":[],"must_live_at":[]}]}]}} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.cargo-lock b/src-tauri/tms_service/target/owl/debug/.cargo-lock new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-1ca5fee30a3aaf49/dep-lib-ahash b/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-1ca5fee30a3aaf49/dep-lib-ahash new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-1ca5fee30a3aaf49/dep-lib-ahash differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-1ca5fee30a3aaf49/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-1ca5fee30a3aaf49/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-1ca5fee30a3aaf49/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-1ca5fee30a3aaf49/lib-ahash b/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-1ca5fee30a3aaf49/lib-ahash new file mode 100644 index 0000000..27c75a0 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-1ca5fee30a3aaf49/lib-ahash @@ -0,0 +1 @@ +d5b52a45e9a7bf93 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-1ca5fee30a3aaf49/lib-ahash.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-1ca5fee30a3aaf49/lib-ahash.json new file mode 100644 index 0000000..527186d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-1ca5fee30a3aaf49/lib-ahash.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"getrandom\", \"runtime-rng\", \"std\"]","declared_features":"[\"atomic-polyfill\", \"compile-time-rng\", \"const-random\", \"default\", \"getrandom\", \"nightly-arm-aes\", \"no-rng\", \"runtime-rng\", \"serde\", \"std\"]","target":8470944000320059508,"profile":8276155916380437441,"path":12810807120029859987,"deps":[[966925859616469517,"build_script_build",false,6292428260787988984],[3722963349756955755,"once_cell",false,9649834255008937173],[4878717189156408352,"zerocopy",false,15570063142150507149],[7667230146095136825,"cfg_if",false,9896960576737097503],[18408407127522236545,"getrandom",false,17461873113518749480]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ahash-1ca5fee30a3aaf49/dep-lib-ahash","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/build-script-build-script-build new file mode 100644 index 0000000..4a86637 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/build-script-build-script-build @@ -0,0 +1 @@ +b666e50f8cf3865f \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/build-script-build-script-build.json new file mode 100644 index 0000000..031b7ca --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"getrandom\", \"runtime-rng\", \"std\"]","declared_features":"[\"atomic-polyfill\", \"compile-time-rng\", \"const-random\", \"default\", \"getrandom\", \"nightly-arm-aes\", \"no-rng\", \"runtime-rng\", \"serde\", \"std\"]","target":17883862002600103897,"profile":3033921117576893,"path":17920999637309774808,"deps":[[5398981501050481332,"version_check",false,7805814245542558566]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ahash-3dd7d030eeabe912/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-3dd7d030eeabe912/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-c55aa2f3a000e411/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-c55aa2f3a000e411/run-build-script-build-script-build new file mode 100644 index 0000000..08eca59 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-c55aa2f3a000e411/run-build-script-build-script-build @@ -0,0 +1 @@ +f8a9e51a2a325357 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-c55aa2f3a000e411/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-c55aa2f3a000e411/run-build-script-build-script-build.json new file mode 100644 index 0000000..81ea6f4 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/ahash-c55aa2f3a000e411/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[966925859616469517,"build_script_build",false,6883456863370045110]],"local":[{"RerunIfChanged":{"output":"debug/build/ahash-c55aa2f3a000e411/output","paths":["build.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/aho-corasick-3e57f30a0d50a0f8/dep-lib-aho_corasick b/src-tauri/tms_service/target/owl/debug/.fingerprint/aho-corasick-3e57f30a0d50a0f8/dep-lib-aho_corasick new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/aho-corasick-3e57f30a0d50a0f8/dep-lib-aho_corasick differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/aho-corasick-3e57f30a0d50a0f8/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/aho-corasick-3e57f30a0d50a0f8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/aho-corasick-3e57f30a0d50a0f8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/aho-corasick-3e57f30a0d50a0f8/lib-aho_corasick b/src-tauri/tms_service/target/owl/debug/.fingerprint/aho-corasick-3e57f30a0d50a0f8/lib-aho_corasick new file mode 100644 index 0000000..67fd36f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/aho-corasick-3e57f30a0d50a0f8/lib-aho_corasick @@ -0,0 +1 @@ +c2cde6a0a30511ac \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/aho-corasick-3e57f30a0d50a0f8/lib-aho_corasick.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/aho-corasick-3e57f30a0d50a0f8/lib-aho_corasick.json new file mode 100644 index 0000000..2384762 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/aho-corasick-3e57f30a0d50a0f8/lib-aho_corasick.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"perf-literal\", \"std\"]","declared_features":"[\"default\", \"logging\", \"perf-literal\", \"std\"]","target":7534583537114156500,"profile":8276155916380437441,"path":11665866830479589083,"deps":[[1363051979936526615,"memchr",false,16612493710403741849]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/aho-corasick-3e57f30a0d50a0f8/dep-lib-aho_corasick","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-104f74026926a041/dep-lib-anyhow b/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-104f74026926a041/dep-lib-anyhow new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-104f74026926a041/dep-lib-anyhow differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-104f74026926a041/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-104f74026926a041/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-104f74026926a041/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-104f74026926a041/lib-anyhow b/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-104f74026926a041/lib-anyhow new file mode 100644 index 0000000..0107b78 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-104f74026926a041/lib-anyhow @@ -0,0 +1 @@ +cd6f7c5252b14d5b \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-104f74026926a041/lib-anyhow.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-104f74026926a041/lib-anyhow.json new file mode 100644 index 0000000..c691c01 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-104f74026926a041/lib-anyhow.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"backtrace\", \"default\", \"std\"]","target":1563897884725121975,"profile":8276155916380437441,"path":3129467258546342973,"deps":[[12478428894219133322,"build_script_build",false,15853458669319967287]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/anyhow-104f74026926a041/dep-lib-anyhow","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-7307bf59e87654c4/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-7307bf59e87654c4/run-build-script-build-script-build new file mode 100644 index 0000000..4bf92b8 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-7307bf59e87654c4/run-build-script-build-script-build @@ -0,0 +1 @@ +3752271eaacc02dc \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-7307bf59e87654c4/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-7307bf59e87654c4/run-build-script-build-script-build.json new file mode 100644 index 0000000..465a568 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-7307bf59e87654c4/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[12478428894219133322,"build_script_build",false,8182720678070138381]],"local":[{"RerunIfChanged":{"output":"debug/build/anyhow-7307bf59e87654c4/output","paths":["src/nightly.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":"1"}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-b3cd9952f5e598bd/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-b3cd9952f5e598bd/build-script-build-script-build new file mode 100644 index 0000000..57a198f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-b3cd9952f5e598bd/build-script-build-script-build @@ -0,0 +1 @@ +0d369d501add8e71 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-b3cd9952f5e598bd/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-b3cd9952f5e598bd/build-script-build-script-build.json new file mode 100644 index 0000000..e01818c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-b3cd9952f5e598bd/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"backtrace\", \"default\", \"std\"]","target":5408242616063297496,"profile":3033921117576893,"path":17582045205439300595,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/anyhow-b3cd9952f5e598bd/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-b3cd9952f5e598bd/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-b3cd9952f5e598bd/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-b3cd9952f5e598bd/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-b3cd9952f5e598bd/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-b3cd9952f5e598bd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/anyhow-b3cd9952f5e598bd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/atomic-waker-385aa95a16935540/dep-lib-atomic_waker b/src-tauri/tms_service/target/owl/debug/.fingerprint/atomic-waker-385aa95a16935540/dep-lib-atomic_waker new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/atomic-waker-385aa95a16935540/dep-lib-atomic_waker differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/atomic-waker-385aa95a16935540/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/atomic-waker-385aa95a16935540/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/atomic-waker-385aa95a16935540/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/atomic-waker-385aa95a16935540/lib-atomic_waker b/src-tauri/tms_service/target/owl/debug/.fingerprint/atomic-waker-385aa95a16935540/lib-atomic_waker new file mode 100644 index 0000000..54dfd1a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/atomic-waker-385aa95a16935540/lib-atomic_waker @@ -0,0 +1 @@ +c6711d86ff26f55d \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/atomic-waker-385aa95a16935540/lib-atomic_waker.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/atomic-waker-385aa95a16935540/lib-atomic_waker.json new file mode 100644 index 0000000..ee65d36 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/atomic-waker-385aa95a16935540/lib-atomic_waker.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"portable-atomic\"]","target":14411119108718288063,"profile":8276155916380437441,"path":6506822864042348726,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/atomic-waker-385aa95a16935540/dep-lib-atomic_waker","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/base64-7abcc3da73f67c2e/dep-lib-base64 b/src-tauri/tms_service/target/owl/debug/.fingerprint/base64-7abcc3da73f67c2e/dep-lib-base64 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/base64-7abcc3da73f67c2e/dep-lib-base64 differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/base64-7abcc3da73f67c2e/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/base64-7abcc3da73f67c2e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/base64-7abcc3da73f67c2e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/base64-7abcc3da73f67c2e/lib-base64 b/src-tauri/tms_service/target/owl/debug/.fingerprint/base64-7abcc3da73f67c2e/lib-base64 new file mode 100644 index 0000000..6518efc --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/base64-7abcc3da73f67c2e/lib-base64 @@ -0,0 +1 @@ +7004a989634c02df \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/base64-7abcc3da73f67c2e/lib-base64.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/base64-7abcc3da73f67c2e/lib-base64.json new file mode 100644 index 0000000..021d195 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/base64-7abcc3da73f67c2e/lib-base64.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":13060062996227388079,"profile":8276155916380437441,"path":17571082620248414141,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/base64-7abcc3da73f67c2e/dep-lib-base64","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/bitflags-79977254c71d3e88/dep-lib-bitflags b/src-tauri/tms_service/target/owl/debug/.fingerprint/bitflags-79977254c71d3e88/dep-lib-bitflags new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/bitflags-79977254c71d3e88/dep-lib-bitflags differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/bitflags-79977254c71d3e88/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/bitflags-79977254c71d3e88/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/bitflags-79977254c71d3e88/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/bitflags-79977254c71d3e88/lib-bitflags b/src-tauri/tms_service/target/owl/debug/.fingerprint/bitflags-79977254c71d3e88/lib-bitflags new file mode 100644 index 0000000..99be3fa --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/bitflags-79977254c71d3e88/lib-bitflags @@ -0,0 +1 @@ +ec01cbd60b739358 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/bitflags-79977254c71d3e88/lib-bitflags.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/bitflags-79977254c71d3e88/lib-bitflags.json new file mode 100644 index 0000000..adcdb41 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/bitflags-79977254c71d3e88/lib-bitflags.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"std\"]","declared_features":"[\"arbitrary\", \"bytemuck\", \"example_generated\", \"serde\", \"serde_core\", \"std\"]","target":7691312148208718491,"profile":8276155916380437441,"path":1834284448513048064,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-79977254c71d3e88/dep-lib-bitflags","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/dep-lib-byteorder b/src-tauri/tms_service/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/dep-lib-byteorder new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/dep-lib-byteorder differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/lib-byteorder b/src-tauri/tms_service/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/lib-byteorder new file mode 100644 index 0000000..1ba25f5 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/lib-byteorder @@ -0,0 +1 @@ +39424427554feebe \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/lib-byteorder.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/lib-byteorder.json new file mode 100644 index 0000000..a371276 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/lib-byteorder.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"i128\", \"std\"]","target":8344828840634961491,"profile":8276155916380437441,"path":12354199761892589061,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/dep-lib-byteorder","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/bytes-753fc20686ca74e2/dep-lib-bytes b/src-tauri/tms_service/target/owl/debug/.fingerprint/bytes-753fc20686ca74e2/dep-lib-bytes new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/bytes-753fc20686ca74e2/dep-lib-bytes differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/bytes-753fc20686ca74e2/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/bytes-753fc20686ca74e2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/bytes-753fc20686ca74e2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/bytes-753fc20686ca74e2/lib-bytes b/src-tauri/tms_service/target/owl/debug/.fingerprint/bytes-753fc20686ca74e2/lib-bytes new file mode 100644 index 0000000..651c58f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/bytes-753fc20686ca74e2/lib-bytes @@ -0,0 +1 @@ +68f0e0183ef1250b \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/bytes-753fc20686ca74e2/lib-bytes.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/bytes-753fc20686ca74e2/lib-bytes.json new file mode 100644 index 0000000..8c97773 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/bytes-753fc20686ca74e2/lib-bytes.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"extra-platforms\", \"serde\", \"std\"]","target":11402411492164584411,"profile":3883922691551601380,"path":4012883281227360657,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bytes-753fc20686ca74e2/dep-lib-bytes","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-2e62c210e224bb15/dep-lib-cfg_if b/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-2e62c210e224bb15/dep-lib-cfg_if new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-2e62c210e224bb15/dep-lib-cfg_if differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-2e62c210e224bb15/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-2e62c210e224bb15/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-2e62c210e224bb15/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-2e62c210e224bb15/lib-cfg_if b/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-2e62c210e224bb15/lib-cfg_if new file mode 100644 index 0000000..4ec0904 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-2e62c210e224bb15/lib-cfg_if @@ -0,0 +1 @@ +1fb7754c35115989 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-2e62c210e224bb15/lib-cfg_if.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-2e62c210e224bb15/lib-cfg_if.json new file mode 100644 index 0000000..b2cb39c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-2e62c210e224bb15/lib-cfg_if.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":8276155916380437441,"path":2047036823359443262,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-2e62c210e224bb15/dep-lib-cfg_if","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-c95dc1cd1ff1d759/dep-lib-cfg_if b/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-c95dc1cd1ff1d759/dep-lib-cfg_if new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-c95dc1cd1ff1d759/dep-lib-cfg_if differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-c95dc1cd1ff1d759/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-c95dc1cd1ff1d759/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-c95dc1cd1ff1d759/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-c95dc1cd1ff1d759/lib-cfg_if b/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-c95dc1cd1ff1d759/lib-cfg_if new file mode 100644 index 0000000..685e41d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-c95dc1cd1ff1d759/lib-cfg_if @@ -0,0 +1 @@ +03ce75b07d903afe \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-c95dc1cd1ff1d759/lib-cfg_if.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-c95dc1cd1ff1d759/lib-cfg_if.json new file mode 100644 index 0000000..d14fa06 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/cfg-if-c95dc1cd1ff1d759/lib-cfg_if.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":3033921117576893,"path":2047036823359443262,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-c95dc1cd1ff1d759/dep-lib-cfg_if","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-5daafef57b60e425/dep-lib-core_foundation b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-5daafef57b60e425/dep-lib-core_foundation new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-5daafef57b60e425/dep-lib-core_foundation differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-5daafef57b60e425/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-5daafef57b60e425/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-5daafef57b60e425/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-5daafef57b60e425/lib-core_foundation b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-5daafef57b60e425/lib-core_foundation new file mode 100644 index 0000000..e45d808 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-5daafef57b60e425/lib-core_foundation @@ -0,0 +1 @@ +7dc41a1bc7ab8f3e \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-5daafef57b60e425/lib-core_foundation.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-5daafef57b60e425/lib-core_foundation.json new file mode 100644 index 0000000..d37f062 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-5daafef57b60e425/lib-core_foundation.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"link\"]","declared_features":"[\"chrono\", \"default\", \"link\", \"mac_os_10_7_support\", \"mac_os_10_8_features\", \"uuid\", \"with-chrono\", \"with-uuid\"]","target":3908465493571680068,"profile":8276155916380437441,"path":13642666491994624310,"deps":[[12589608519315293066,"core_foundation_sys",false,6229227055244689248],[18365559012052052344,"libc",false,15297927699523733485]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/core-foundation-5daafef57b60e425/dep-lib-core_foundation","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-99406745fc458f43/dep-lib-core_foundation b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-99406745fc458f43/dep-lib-core_foundation new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-99406745fc458f43/dep-lib-core_foundation differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-99406745fc458f43/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-99406745fc458f43/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-99406745fc458f43/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-99406745fc458f43/lib-core_foundation b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-99406745fc458f43/lib-core_foundation new file mode 100644 index 0000000..329577e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-99406745fc458f43/lib-core_foundation @@ -0,0 +1 @@ +c4793de86fecfb27 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-99406745fc458f43/lib-core_foundation.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-99406745fc458f43/lib-core_foundation.json new file mode 100644 index 0000000..e9116b3 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-99406745fc458f43/lib-core_foundation.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"link\"]","declared_features":"[\"default\", \"link\", \"mac_os_10_7_support\", \"mac_os_10_8_features\", \"with-uuid\"]","target":1838955328922279955,"profile":3469456512666018056,"path":156359075599460624,"deps":[[12589608519315293066,"core_foundation_sys",false,6229227055244689248],[18365559012052052344,"libc",false,15297927699523733485]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/core-foundation-99406745fc458f43/dep-lib-core_foundation","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-sys-e4f1665cbb631a20/dep-lib-core_foundation_sys b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-sys-e4f1665cbb631a20/dep-lib-core_foundation_sys new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-sys-e4f1665cbb631a20/dep-lib-core_foundation_sys differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-sys-e4f1665cbb631a20/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-sys-e4f1665cbb631a20/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-sys-e4f1665cbb631a20/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-sys-e4f1665cbb631a20/lib-core_foundation_sys b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-sys-e4f1665cbb631a20/lib-core_foundation_sys new file mode 100644 index 0000000..0d884cc --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-sys-e4f1665cbb631a20/lib-core_foundation_sys @@ -0,0 +1 @@ +60bf1cbd00a97256 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-sys-e4f1665cbb631a20/lib-core_foundation_sys.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-sys-e4f1665cbb631a20/lib-core_foundation_sys.json new file mode 100644 index 0000000..32469b2 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/core-foundation-sys-e4f1665cbb631a20/lib-core_foundation_sys.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"link\"]","declared_features":"[\"default\", \"link\", \"mac_os_10_7_support\", \"mac_os_10_8_features\"]","target":18224550799097559944,"profile":8276155916380437441,"path":1345103638063617657,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/core-foundation-sys-e4f1665cbb631a20/dep-lib-core_foundation_sys","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-13b2bdcf91cb99c1/dep-lib-cssparser b/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-13b2bdcf91cb99c1/dep-lib-cssparser new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-13b2bdcf91cb99c1/dep-lib-cssparser differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-13b2bdcf91cb99c1/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-13b2bdcf91cb99c1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-13b2bdcf91cb99c1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-13b2bdcf91cb99c1/lib-cssparser b/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-13b2bdcf91cb99c1/lib-cssparser new file mode 100644 index 0000000..0d9be23 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-13b2bdcf91cb99c1/lib-cssparser @@ -0,0 +1 @@ +29c64819e7c3ba12 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-13b2bdcf91cb99c1/lib-cssparser.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-13b2bdcf91cb99c1/lib-cssparser.json new file mode 100644 index 0000000..1845b5e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-13b2bdcf91cb99c1/lib-cssparser.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"bench\", \"dummy_match_byte\", \"serde\"]","target":4051351535474248705,"profile":8276155916380437441,"path":11693278406116127147,"deps":[[3666196340704888985,"smallvec",false,6092863289377749396],[9280804215119811138,"cssparser_macros",false,6477744934764638212],[9938278000850417404,"itoa",false,5228001396796919418],[12842584195496215797,"dtoa_short",false,12141917780770916440],[17186037756130803222,"phf",false,719888053787494730]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cssparser-13b2bdcf91cb99c1/dep-lib-cssparser","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-macros-f44134ad1f28bef5/dep-lib-cssparser_macros b/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-macros-f44134ad1f28bef5/dep-lib-cssparser_macros new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-macros-f44134ad1f28bef5/dep-lib-cssparser_macros differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-macros-f44134ad1f28bef5/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-macros-f44134ad1f28bef5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-macros-f44134ad1f28bef5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-macros-f44134ad1f28bef5/lib-cssparser_macros b/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-macros-f44134ad1f28bef5/lib-cssparser_macros new file mode 100644 index 0000000..9b8eb4b --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-macros-f44134ad1f28bef5/lib-cssparser_macros @@ -0,0 +1 @@ +04703b96b292e559 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-macros-f44134ad1f28bef5/lib-cssparser_macros.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-macros-f44134ad1f28bef5/lib-cssparser_macros.json new file mode 100644 index 0000000..e089ca0 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/cssparser-macros-f44134ad1f28bef5/lib-cssparser_macros.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":4853353551047732211,"profile":3033921117576893,"path":330677744058670353,"deps":[[6100504282945712449,"quote",false,14500808875298157531],[10420560437213941093,"syn",false,935482101193759173]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cssparser-macros-f44134ad1f28bef5/dep-lib-cssparser_macros","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/derive_more-c78cbfc27dbaef26/dep-lib-derive_more b/src-tauri/tms_service/target/owl/debug/.fingerprint/derive_more-c78cbfc27dbaef26/dep-lib-derive_more new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/derive_more-c78cbfc27dbaef26/dep-lib-derive_more differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/derive_more-c78cbfc27dbaef26/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/derive_more-c78cbfc27dbaef26/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/derive_more-c78cbfc27dbaef26/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/derive_more-c78cbfc27dbaef26/lib-derive_more b/src-tauri/tms_service/target/owl/debug/.fingerprint/derive_more-c78cbfc27dbaef26/lib-derive_more new file mode 100644 index 0000000..015e223 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/derive_more-c78cbfc27dbaef26/lib-derive_more @@ -0,0 +1 @@ +533e08e3e40cc154 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/derive_more-c78cbfc27dbaef26/lib-derive_more.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/derive_more-c78cbfc27dbaef26/lib-derive_more.json new file mode 100644 index 0000000..b25b720 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/derive_more-c78cbfc27dbaef26/lib-derive_more.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"add\", \"add_assign\"]","declared_features":"[\"add\", \"add_assign\", \"as_mut\", \"as_ref\", \"constructor\", \"convert_case\", \"default\", \"deref\", \"deref_mut\", \"display\", \"error\", \"from\", \"from_str\", \"generate-parsing-rs\", \"index\", \"index_mut\", \"into\", \"into_iterator\", \"is_variant\", \"iterator\", \"mul\", \"mul_assign\", \"nightly\", \"not\", \"peg\", \"rustc_version\", \"sum\", \"testing-helpers\", \"track-caller\", \"try_into\", \"unwrap\"]","target":12153973509411789784,"profile":3033921117576893,"path":7715744502101933300,"deps":[[4289358735036141001,"proc_macro2",false,2021902520114475280],[6100504282945712449,"quote",false,14500808875298157531],[10420560437213941093,"syn",false,935482101193759173]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/derive_more-c78cbfc27dbaef26/dep-lib-derive_more","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/displaydoc-a612d43852baa8e5/dep-lib-displaydoc b/src-tauri/tms_service/target/owl/debug/.fingerprint/displaydoc-a612d43852baa8e5/dep-lib-displaydoc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/displaydoc-a612d43852baa8e5/dep-lib-displaydoc differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/displaydoc-a612d43852baa8e5/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/displaydoc-a612d43852baa8e5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/displaydoc-a612d43852baa8e5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/displaydoc-a612d43852baa8e5/lib-displaydoc b/src-tauri/tms_service/target/owl/debug/.fingerprint/displaydoc-a612d43852baa8e5/lib-displaydoc new file mode 100644 index 0000000..8d7352e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/displaydoc-a612d43852baa8e5/lib-displaydoc @@ -0,0 +1 @@ +dde764fbabc85ab7 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/displaydoc-a612d43852baa8e5/lib-displaydoc.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/displaydoc-a612d43852baa8e5/lib-displaydoc.json new file mode 100644 index 0000000..e394f38 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/displaydoc-a612d43852baa8e5/lib-displaydoc.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"default\", \"std\"]","target":9331843185013996172,"profile":3033921117576893,"path":516331065750955720,"deps":[[4289358735036141001,"proc_macro2",false,2021902520114475280],[6100504282945712449,"quote",false,14500808875298157531],[10420560437213941093,"syn",false,935482101193759173]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/displaydoc-a612d43852baa8e5/dep-lib-displaydoc","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-406b6cb38c3d02d8/dep-lib-dtoa b/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-406b6cb38c3d02d8/dep-lib-dtoa new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-406b6cb38c3d02d8/dep-lib-dtoa differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-406b6cb38c3d02d8/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-406b6cb38c3d02d8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-406b6cb38c3d02d8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-406b6cb38c3d02d8/lib-dtoa b/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-406b6cb38c3d02d8/lib-dtoa new file mode 100644 index 0000000..d64e9b1 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-406b6cb38c3d02d8/lib-dtoa @@ -0,0 +1 @@ +3c9591cff6110323 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-406b6cb38c3d02d8/lib-dtoa.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-406b6cb38c3d02d8/lib-dtoa.json new file mode 100644 index 0000000..20085d6 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-406b6cb38c3d02d8/lib-dtoa.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"no-panic\"]","target":14302215980248354484,"profile":8276155916380437441,"path":17962034554654561869,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dtoa-406b6cb38c3d02d8/dep-lib-dtoa","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-short-6de159c9c8744846/dep-lib-dtoa_short b/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-short-6de159c9c8744846/dep-lib-dtoa_short new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-short-6de159c9c8744846/dep-lib-dtoa_short differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-short-6de159c9c8744846/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-short-6de159c9c8744846/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-short-6de159c9c8744846/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-short-6de159c9c8744846/lib-dtoa_short b/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-short-6de159c9c8744846/lib-dtoa_short new file mode 100644 index 0000000..3b479d1 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-short-6de159c9c8744846/lib-dtoa_short @@ -0,0 +1 @@ +5888d916e4c180a8 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-short-6de159c9c8744846/lib-dtoa_short.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-short-6de159c9c8744846/lib-dtoa_short.json new file mode 100644 index 0000000..56e39a2 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/dtoa-short-6de159c9c8744846/lib-dtoa_short.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":14166870648037865358,"profile":8276155916380437441,"path":5752282311582272956,"deps":[[10942014875894166470,"dtoa",false,2522879967999661372]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dtoa-short-6de159c9c8744846/dep-lib-dtoa_short","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/dep-lib-ego_tree b/src-tauri/tms_service/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/dep-lib-ego_tree new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/dep-lib-ego_tree differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/lib-ego_tree b/src-tauri/tms_service/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/lib-ego_tree new file mode 100644 index 0000000..59fb563 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/lib-ego_tree @@ -0,0 +1 @@ +620853eb5714fd29 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/lib-ego_tree.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/lib-ego_tree.json new file mode 100644 index 0000000..9bd1e06 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/ego-tree-809c8514ee657827/lib-ego_tree.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":15686662276775554462,"profile":8276155916380437441,"path":3922949300094133188,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ego-tree-809c8514ee657827/dep-lib-ego_tree","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/encoding_rs-7d46cbb1301f817e/dep-lib-encoding_rs b/src-tauri/tms_service/target/owl/debug/.fingerprint/encoding_rs-7d46cbb1301f817e/dep-lib-encoding_rs new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/encoding_rs-7d46cbb1301f817e/dep-lib-encoding_rs differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/encoding_rs-7d46cbb1301f817e/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/encoding_rs-7d46cbb1301f817e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/encoding_rs-7d46cbb1301f817e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/encoding_rs-7d46cbb1301f817e/lib-encoding_rs b/src-tauri/tms_service/target/owl/debug/.fingerprint/encoding_rs-7d46cbb1301f817e/lib-encoding_rs new file mode 100644 index 0000000..d23aa8c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/encoding_rs-7d46cbb1301f817e/lib-encoding_rs @@ -0,0 +1 @@ +6bbf984d3154575c \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/encoding_rs-7d46cbb1301f817e/lib-encoding_rs.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/encoding_rs-7d46cbb1301f817e/lib-encoding_rs.json new file mode 100644 index 0000000..3a7403a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/encoding_rs-7d46cbb1301f817e/lib-encoding_rs.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"default\"]","declared_features":"[\"alloc\", \"any_all_workaround\", \"default\", \"fast-big5-hanzi-encode\", \"fast-gb-hanzi-encode\", \"fast-hangul-encode\", \"fast-hanja-encode\", \"fast-kanji-encode\", \"fast-legacy-encode\", \"less-slow-big5-hanzi-encode\", \"less-slow-gb-hanzi-encode\", \"less-slow-kanji-encode\", \"serde\", \"simd-accel\"]","target":17616512236202378241,"profile":8276155916380437441,"path":10383234194731693279,"deps":[[7667230146095136825,"cfg_if",false,9896960576737097503]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/encoding_rs-7d46cbb1301f817e/dep-lib-encoding_rs","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/equivalent-8c7877b395c811e7/dep-lib-equivalent b/src-tauri/tms_service/target/owl/debug/.fingerprint/equivalent-8c7877b395c811e7/dep-lib-equivalent new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/equivalent-8c7877b395c811e7/dep-lib-equivalent differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/equivalent-8c7877b395c811e7/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/equivalent-8c7877b395c811e7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/equivalent-8c7877b395c811e7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/equivalent-8c7877b395c811e7/lib-equivalent b/src-tauri/tms_service/target/owl/debug/.fingerprint/equivalent-8c7877b395c811e7/lib-equivalent new file mode 100644 index 0000000..5e41304 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/equivalent-8c7877b395c811e7/lib-equivalent @@ -0,0 +1 @@ +6f76188119a94dfe \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/equivalent-8c7877b395c811e7/lib-equivalent.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/equivalent-8c7877b395c811e7/lib-equivalent.json new file mode 100644 index 0000000..2460eba --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/equivalent-8c7877b395c811e7/lib-equivalent.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":1524667692659508025,"profile":8276155916380437441,"path":4632759282659430556,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/equivalent-8c7877b395c811e7/dep-lib-equivalent","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/errno-0868ecd75facc30b/dep-lib-errno b/src-tauri/tms_service/target/owl/debug/.fingerprint/errno-0868ecd75facc30b/dep-lib-errno new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/errno-0868ecd75facc30b/dep-lib-errno differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/errno-0868ecd75facc30b/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/errno-0868ecd75facc30b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/errno-0868ecd75facc30b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/errno-0868ecd75facc30b/lib-errno b/src-tauri/tms_service/target/owl/debug/.fingerprint/errno-0868ecd75facc30b/lib-errno new file mode 100644 index 0000000..010b66c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/errno-0868ecd75facc30b/lib-errno @@ -0,0 +1 @@ +6b038cb48e3056f6 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/errno-0868ecd75facc30b/lib-errno.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/errno-0868ecd75facc30b/lib-errno.json new file mode 100644 index 0000000..2073e6d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/errno-0868ecd75facc30b/lib-errno.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":17743456753391690785,"profile":8919574114734409902,"path":14231261807540883868,"deps":[[18365559012052052344,"libc",false,15297927699523733485]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/errno-0868ecd75facc30b/dep-lib-errno","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/fastrand-1f5b5e3c4d7189e6/dep-lib-fastrand b/src-tauri/tms_service/target/owl/debug/.fingerprint/fastrand-1f5b5e3c4d7189e6/dep-lib-fastrand new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/fastrand-1f5b5e3c4d7189e6/dep-lib-fastrand differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/fastrand-1f5b5e3c4d7189e6/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/fastrand-1f5b5e3c4d7189e6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/fastrand-1f5b5e3c4d7189e6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/fastrand-1f5b5e3c4d7189e6/lib-fastrand b/src-tauri/tms_service/target/owl/debug/.fingerprint/fastrand-1f5b5e3c4d7189e6/lib-fastrand new file mode 100644 index 0000000..211389f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/fastrand-1f5b5e3c4d7189e6/lib-fastrand @@ -0,0 +1 @@ +fd4970e03dd7aa30 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/fastrand-1f5b5e3c4d7189e6/lib-fastrand.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/fastrand-1f5b5e3c4d7189e6/lib-fastrand.json new file mode 100644 index 0000000..fd29637 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/fastrand-1f5b5e3c4d7189e6/lib-fastrand.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"getrandom\", \"js\", \"std\"]","target":9543367341069791401,"profile":8276155916380437441,"path":4719443972379911042,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/fastrand-1f5b5e3c4d7189e6/dep-lib-fastrand","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/fnv-cac04d70d816a166/dep-lib-fnv b/src-tauri/tms_service/target/owl/debug/.fingerprint/fnv-cac04d70d816a166/dep-lib-fnv new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/fnv-cac04d70d816a166/dep-lib-fnv differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/fnv-cac04d70d816a166/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/fnv-cac04d70d816a166/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/fnv-cac04d70d816a166/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/fnv-cac04d70d816a166/lib-fnv b/src-tauri/tms_service/target/owl/debug/.fingerprint/fnv-cac04d70d816a166/lib-fnv new file mode 100644 index 0000000..421ad1a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/fnv-cac04d70d816a166/lib-fnv @@ -0,0 +1 @@ +01463c2b8565c8f8 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/fnv-cac04d70d816a166/lib-fnv.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/fnv-cac04d70d816a166/lib-fnv.json new file mode 100644 index 0000000..f638b4a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/fnv-cac04d70d816a166/lib-fnv.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":10248144769085601448,"profile":8276155916380437441,"path":850404112116609857,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/fnv-cac04d70d816a166/dep-lib-fnv","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/form_urlencoded-f4cec7ff2ed7fa87/dep-lib-form_urlencoded b/src-tauri/tms_service/target/owl/debug/.fingerprint/form_urlencoded-f4cec7ff2ed7fa87/dep-lib-form_urlencoded new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/form_urlencoded-f4cec7ff2ed7fa87/dep-lib-form_urlencoded differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/form_urlencoded-f4cec7ff2ed7fa87/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/form_urlencoded-f4cec7ff2ed7fa87/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/form_urlencoded-f4cec7ff2ed7fa87/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/form_urlencoded-f4cec7ff2ed7fa87/lib-form_urlencoded b/src-tauri/tms_service/target/owl/debug/.fingerprint/form_urlencoded-f4cec7ff2ed7fa87/lib-form_urlencoded new file mode 100644 index 0000000..abfb904 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/form_urlencoded-f4cec7ff2ed7fa87/lib-form_urlencoded @@ -0,0 +1 @@ +08de21911fe1df3d \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/form_urlencoded-f4cec7ff2ed7fa87/lib-form_urlencoded.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/form_urlencoded-f4cec7ff2ed7fa87/lib-form_urlencoded.json new file mode 100644 index 0000000..5039aac --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/form_urlencoded-f4cec7ff2ed7fa87/lib-form_urlencoded.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":6496257856677244489,"profile":8276155916380437441,"path":9742970680841624792,"deps":[[6803352382179706244,"percent_encoding",false,14813157098544424846]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/form_urlencoded-f4cec7ff2ed7fa87/dep-lib-form_urlencoded","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/dep-lib-futf b/src-tauri/tms_service/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/dep-lib-futf new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/dep-lib-futf differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/lib-futf b/src-tauri/tms_service/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/lib-futf new file mode 100644 index 0000000..13b3699 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/lib-futf @@ -0,0 +1 @@ +9ced3c82b2b54312 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/lib-futf.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/lib-futf.json new file mode 100644 index 0000000..5644b78 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/futf-3d480dde70c9eb27/lib-futf.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":14342764474404802961,"profile":8276155916380437441,"path":8384350080134491944,"deps":[[2687729594444538932,"debug_unreachable",false,9754738614369676465],[10952224881603935644,"mac",false,3938639248673190958]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futf-3d480dde70c9eb27/dep-lib-futf","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-channel-42b8cf3f351ac3e9/dep-lib-futures_channel b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-channel-42b8cf3f351ac3e9/dep-lib-futures_channel new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-channel-42b8cf3f351ac3e9/dep-lib-futures_channel differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-channel-42b8cf3f351ac3e9/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-channel-42b8cf3f351ac3e9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-channel-42b8cf3f351ac3e9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-channel-42b8cf3f351ac3e9/lib-futures_channel b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-channel-42b8cf3f351ac3e9/lib-futures_channel new file mode 100644 index 0000000..21d1d74 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-channel-42b8cf3f351ac3e9/lib-futures_channel @@ -0,0 +1 @@ +399143b27d3a495b \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-channel-42b8cf3f351ac3e9/lib-futures_channel.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-channel-42b8cf3f351ac3e9/lib-futures_channel.json new file mode 100644 index 0000000..a638742 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-channel-42b8cf3f351ac3e9/lib-futures_channel.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"cfg-target-has-atomic\", \"default\", \"futures-sink\", \"sink\", \"std\", \"unstable\"]","target":13634065851578929263,"profile":336243669335521001,"path":4968955454901046273,"deps":[[302948626015856208,"futures_core",false,495371792585833672]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-channel-42b8cf3f351ac3e9/dep-lib-futures_channel","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-core-6ba184d1b6917bc7/dep-lib-futures_core b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-core-6ba184d1b6917bc7/dep-lib-futures_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-core-6ba184d1b6917bc7/dep-lib-futures_core differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-core-6ba184d1b6917bc7/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-core-6ba184d1b6917bc7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-core-6ba184d1b6917bc7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-core-6ba184d1b6917bc7/lib-futures_core b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-core-6ba184d1b6917bc7/lib-futures_core new file mode 100644 index 0000000..ad14030 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-core-6ba184d1b6917bc7/lib-futures_core @@ -0,0 +1 @@ +c8bcd35005eadf06 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-core-6ba184d1b6917bc7/lib-futures_core.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-core-6ba184d1b6917bc7/lib-futures_core.json new file mode 100644 index 0000000..bcd2e99 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-core-6ba184d1b6917bc7/lib-futures_core.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"cfg-target-has-atomic\", \"default\", \"portable-atomic\", \"std\", \"unstable\"]","target":9453135960607436725,"profile":336243669335521001,"path":4044486776884387631,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-core-6ba184d1b6917bc7/dep-lib-futures_core","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-sink-45af2ac4486dcddc/dep-lib-futures_sink b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-sink-45af2ac4486dcddc/dep-lib-futures_sink new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-sink-45af2ac4486dcddc/dep-lib-futures_sink differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-sink-45af2ac4486dcddc/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-sink-45af2ac4486dcddc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-sink-45af2ac4486dcddc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-sink-45af2ac4486dcddc/lib-futures_sink b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-sink-45af2ac4486dcddc/lib-futures_sink new file mode 100644 index 0000000..d1ab235 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-sink-45af2ac4486dcddc/lib-futures_sink @@ -0,0 +1 @@ +fca3809f90c65299 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-sink-45af2ac4486dcddc/lib-futures_sink.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-sink-45af2ac4486dcddc/lib-futures_sink.json new file mode 100644 index 0000000..f124dfb --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-sink-45af2ac4486dcddc/lib-futures_sink.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":10827111567014737887,"profile":336243669335521001,"path":11449427072714986471,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-sink-45af2ac4486dcddc/dep-lib-futures_sink","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-task-2042ebbb5636ef78/dep-lib-futures_task b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-task-2042ebbb5636ef78/dep-lib-futures_task new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-task-2042ebbb5636ef78/dep-lib-futures_task differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-task-2042ebbb5636ef78/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-task-2042ebbb5636ef78/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-task-2042ebbb5636ef78/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-task-2042ebbb5636ef78/lib-futures_task b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-task-2042ebbb5636ef78/lib-futures_task new file mode 100644 index 0000000..2181414 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-task-2042ebbb5636ef78/lib-futures_task @@ -0,0 +1 @@ +9b2b63505737ce35 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-task-2042ebbb5636ef78/lib-futures_task.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-task-2042ebbb5636ef78/lib-futures_task.json new file mode 100644 index 0000000..593623d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-task-2042ebbb5636ef78/lib-futures_task.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\"]","declared_features":"[\"alloc\", \"cfg-target-has-atomic\", \"default\", \"std\", \"unstable\"]","target":13518091470260541623,"profile":336243669335521001,"path":4347477800296382399,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-task-2042ebbb5636ef78/dep-lib-futures_task","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-util-21df2272dea5d737/dep-lib-futures_util b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-util-21df2272dea5d737/dep-lib-futures_util new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-util-21df2272dea5d737/dep-lib-futures_util differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-util-21df2272dea5d737/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-util-21df2272dea5d737/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-util-21df2272dea5d737/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-util-21df2272dea5d737/lib-futures_util b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-util-21df2272dea5d737/lib-futures_util new file mode 100644 index 0000000..6cce0c2 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-util-21df2272dea5d737/lib-futures_util @@ -0,0 +1 @@ +f94a2f1126e134d6 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-util-21df2272dea5d737/lib-futures_util.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-util-21df2272dea5d737/lib-futures_util.json new file mode 100644 index 0000000..c971c8e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/futures-util-21df2272dea5d737/lib-futures_util.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"slab\"]","declared_features":"[\"alloc\", \"async-await\", \"async-await-macro\", \"bilock\", \"cfg-target-has-atomic\", \"channel\", \"compat\", \"default\", \"futures-channel\", \"futures-io\", \"futures-macro\", \"futures-sink\", \"futures_01\", \"io\", \"io-compat\", \"libc\", \"memchr\", \"portable-atomic\", \"sink\", \"slab\", \"spin\", \"std\", \"tokio-io\", \"unstable\", \"write-all-vectored\"]","target":1788798584831431502,"profile":336243669335521001,"path":6508322129083936274,"deps":[[302948626015856208,"futures_core",false,495371792585833672],[1906322745568073236,"pin_project_lite",false,8594142553908325508],[12256881686772805731,"futures_task",false,3877097177362934683],[14895711841936801505,"slab",false,14500342849320516420]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-util-21df2272dea5d737/dep-lib-futures_util","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/dep-lib-fxhash b/src-tauri/tms_service/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/dep-lib-fxhash new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/dep-lib-fxhash differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/lib-fxhash b/src-tauri/tms_service/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/lib-fxhash new file mode 100644 index 0000000..bcb507b --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/lib-fxhash @@ -0,0 +1 @@ +e8ab1c5f48ebda27 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/lib-fxhash.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/lib-fxhash.json new file mode 100644 index 0000000..5fa9aba --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/fxhash-655a24a699d73c8e/lib-fxhash.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":10973188114720300281,"profile":8276155916380437441,"path":15035325997359553401,"deps":[[3712811570531045576,"byteorder",false,13758021138813043257]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/fxhash-655a24a699d73c8e/dep-lib-fxhash","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getopts-9a8144cdacd76599/dep-lib-getopts b/src-tauri/tms_service/target/owl/debug/.fingerprint/getopts-9a8144cdacd76599/dep-lib-getopts new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/getopts-9a8144cdacd76599/dep-lib-getopts differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getopts-9a8144cdacd76599/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/getopts-9a8144cdacd76599/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getopts-9a8144cdacd76599/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getopts-9a8144cdacd76599/lib-getopts b/src-tauri/tms_service/target/owl/debug/.fingerprint/getopts-9a8144cdacd76599/lib-getopts new file mode 100644 index 0000000..0353310 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getopts-9a8144cdacd76599/lib-getopts @@ -0,0 +1 @@ +c2e95a95efee5cfd \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getopts-9a8144cdacd76599/lib-getopts.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/getopts-9a8144cdacd76599/lib-getopts.json new file mode 100644 index 0000000..ef7b678 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getopts-9a8144cdacd76599/lib-getopts.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"unicode\"]","declared_features":"[\"core\", \"default\", \"rustc-dep-of-std\", \"std\", \"unicode\"]","target":14000208569025797744,"profile":8276155916380437441,"path":12630201017420769364,"deps":[[16173631546844793784,"unicode_width",false,12417936908762876456]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getopts-9a8144cdacd76599/dep-lib-getopts","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-0bd09cb686b25a43/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-0bd09cb686b25a43/run-build-script-build-script-build new file mode 100644 index 0000000..612a040 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-0bd09cb686b25a43/run-build-script-build-script-build @@ -0,0 +1 @@ +30ba4db7afbc3d59 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-0bd09cb686b25a43/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-0bd09cb686b25a43/run-build-script-build-script-build.json new file mode 100644 index 0000000..d3b7526 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-0bd09cb686b25a43/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[2764386384280758697,"build_script_build",false,3184377617286977403]],"local":[{"RerunIfChanged":{"output":"debug/build/getrandom-0bd09cb686b25a43/output","paths":["build.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-91f8b6b692854bc0/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-91f8b6b692854bc0/build-script-build-script-build new file mode 100644 index 0000000..cc921be --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-91f8b6b692854bc0/build-script-build-script-build @@ -0,0 +1 @@ +a7a80e7083f2e25a \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-91f8b6b692854bc0/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-91f8b6b692854bc0/build-script-build-script-build.json new file mode 100644 index 0000000..bb878d7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-91f8b6b692854bc0/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"std\", \"wasm_js\"]","target":5408242616063297496,"profile":2137264198672173278,"path":2380012954225864609,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-91f8b6b692854bc0/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-91f8b6b692854bc0/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-91f8b6b692854bc0/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-91f8b6b692854bc0/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-91f8b6b692854bc0/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-91f8b6b692854bc0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-91f8b6b692854bc0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-b0a0a65c90c4bca7/dep-lib-getrandom b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-b0a0a65c90c4bca7/dep-lib-getrandom new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-b0a0a65c90c4bca7/dep-lib-getrandom differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-b0a0a65c90c4bca7/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-b0a0a65c90c4bca7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-b0a0a65c90c4bca7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-b0a0a65c90c4bca7/lib-getrandom b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-b0a0a65c90c4bca7/lib-getrandom new file mode 100644 index 0000000..4d396dc --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-b0a0a65c90c4bca7/lib-getrandom @@ -0,0 +1 @@ +25641df972ec95d4 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-b0a0a65c90c4bca7/lib-getrandom.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-b0a0a65c90c4bca7/lib-getrandom.json new file mode 100644 index 0000000..d7ada36 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-b0a0a65c90c4bca7/lib-getrandom.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"std\"]","declared_features":"[\"compiler_builtins\", \"core\", \"custom\", \"js\", \"js-sys\", \"linux_disable_fallback\", \"rdrand\", \"rustc-dep-of-std\", \"std\", \"test-in-browser\", \"wasm-bindgen\"]","target":16244099637825074703,"profile":3033921117576893,"path":14823138878691228270,"deps":[[7667230146095136825,"cfg_if",false,18319113303788736003],[18365559012052052344,"libc",false,2945376947669535162]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-b0a0a65c90c4bca7/dep-lib-getrandom","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-c9aef3663a0c6675/dep-lib-getrandom b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-c9aef3663a0c6675/dep-lib-getrandom new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-c9aef3663a0c6675/dep-lib-getrandom differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-c9aef3663a0c6675/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-c9aef3663a0c6675/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-c9aef3663a0c6675/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-c9aef3663a0c6675/lib-getrandom b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-c9aef3663a0c6675/lib-getrandom new file mode 100644 index 0000000..af77982 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-c9aef3663a0c6675/lib-getrandom @@ -0,0 +1 @@ +0a67d0dfbb809132 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-c9aef3663a0c6675/lib-getrandom.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-c9aef3663a0c6675/lib-getrandom.json new file mode 100644 index 0000000..16d7a54 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-c9aef3663a0c6675/lib-getrandom.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"std\", \"sys_rng\", \"wasm_js\"]","target":5479159445871601843,"profile":4077856835531751948,"path":2803537922827230859,"deps":[[2764386384280758697,"build_script_build",false,6430503305835559472],[7667230146095136825,"cfg_if",false,9896960576737097503],[18365559012052052344,"libc",false,15297927699523733485]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-c9aef3663a0c6675/dep-lib-getrandom","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-d485936f40be71ee/dep-lib-getrandom b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-d485936f40be71ee/dep-lib-getrandom new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-d485936f40be71ee/dep-lib-getrandom differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-d485936f40be71ee/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-d485936f40be71ee/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-d485936f40be71ee/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-d485936f40be71ee/lib-getrandom b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-d485936f40be71ee/lib-getrandom new file mode 100644 index 0000000..c451498 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-d485936f40be71ee/lib-getrandom @@ -0,0 +1 @@ +28b73a6c140955f2 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-d485936f40be71ee/lib-getrandom.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-d485936f40be71ee/lib-getrandom.json new file mode 100644 index 0000000..310ea4f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-d485936f40be71ee/lib-getrandom.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"std\", \"wasm_js\"]","target":11669924403970522481,"profile":15669129585889599919,"path":14371542464520025245,"deps":[[7667230146095136825,"cfg_if",false,9896960576737097503],[18365559012052052344,"libc",false,15297927699523733485],[18408407127522236545,"build_script_build",false,15820289775350342197]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-d485936f40be71ee/dep-lib-getrandom","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-f6cefb0d0a113945/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-f6cefb0d0a113945/build-script-build-script-build new file mode 100644 index 0000000..68f6b65 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-f6cefb0d0a113945/build-script-build-script-build @@ -0,0 +1 @@ +7b571845922e312c \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-f6cefb0d0a113945/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-f6cefb0d0a113945/build-script-build-script-build.json new file mode 100644 index 0000000..3c051fa --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-f6cefb0d0a113945/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"std\", \"sys_rng\", \"wasm_js\"]","target":2835126046236718539,"profile":8373489377194613138,"path":11051765232209564013,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-f6cefb0d0a113945/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-f6cefb0d0a113945/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-f6cefb0d0a113945/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-f6cefb0d0a113945/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-f6cefb0d0a113945/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-f6cefb0d0a113945/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-f6cefb0d0a113945/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-f941f6133d918ee6/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-f941f6133d918ee6/run-build-script-build-script-build new file mode 100644 index 0000000..2cc40fb --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-f941f6133d918ee6/run-build-script-build-script-build @@ -0,0 +1 @@ +3562802fbbf58cdb \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-f941f6133d918ee6/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-f941f6133d918ee6/run-build-script-build-script-build.json new file mode 100644 index 0000000..71c4dbe --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/getrandom-f941f6133d918ee6/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[18408407127522236545,"build_script_build",false,6549063454484768935]],"local":[{"RerunIfChanged":{"output":"debug/build/getrandom-f941f6133d918ee6/output","paths":["build.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/h2-ed15e53bc017b2b4/dep-lib-h2 b/src-tauri/tms_service/target/owl/debug/.fingerprint/h2-ed15e53bc017b2b4/dep-lib-h2 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/h2-ed15e53bc017b2b4/dep-lib-h2 differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/h2-ed15e53bc017b2b4/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/h2-ed15e53bc017b2b4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/h2-ed15e53bc017b2b4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/h2-ed15e53bc017b2b4/lib-h2 b/src-tauri/tms_service/target/owl/debug/.fingerprint/h2-ed15e53bc017b2b4/lib-h2 new file mode 100644 index 0000000..067778f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/h2-ed15e53bc017b2b4/lib-h2 @@ -0,0 +1 @@ +7523eefb2b42145f \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/h2-ed15e53bc017b2b4/lib-h2.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/h2-ed15e53bc017b2b4/lib-h2.json new file mode 100644 index 0000000..8dd5ded --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/h2-ed15e53bc017b2b4/lib-h2.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"stream\", \"unstable\"]","target":15216351499943135959,"profile":7103650835353764149,"path":11764505084805463747,"deps":[[270634688040536827,"futures_sink",false,11048111160346846204],[302948626015856208,"futures_core",false,495371792585833672],[1074848931188612602,"atomic_waker",false,6770360493730001350],[1345404220202658316,"fnv",false,17926689939378685441],[2620434475832828286,"http",false,7993496129830204808],[3163899731817361221,"tokio_util",false,5891577852227423400],[3870702314125662939,"bytes",false,803313357563162728],[12821780872552529316,"indexmap",false,1720110800985309560],[12891030758458664808,"tokio",false,1167986652861127869],[14757622794040968908,"tracing",false,15551817323670632243],[14895711841936801505,"slab",false,14500342849320516420]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/h2-ed15e53bc017b2b4/dep-lib-h2","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/hashbrown-ce379e75cd4d39f2/dep-lib-hashbrown b/src-tauri/tms_service/target/owl/debug/.fingerprint/hashbrown-ce379e75cd4d39f2/dep-lib-hashbrown new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/hashbrown-ce379e75cd4d39f2/dep-lib-hashbrown differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/hashbrown-ce379e75cd4d39f2/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/hashbrown-ce379e75cd4d39f2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/hashbrown-ce379e75cd4d39f2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/hashbrown-ce379e75cd4d39f2/lib-hashbrown b/src-tauri/tms_service/target/owl/debug/.fingerprint/hashbrown-ce379e75cd4d39f2/lib-hashbrown new file mode 100644 index 0000000..6fee30f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/hashbrown-ce379e75cd4d39f2/lib-hashbrown @@ -0,0 +1 @@ +ae34893bc0b0cc95 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/hashbrown-ce379e75cd4d39f2/lib-hashbrown.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/hashbrown-ce379e75cd4d39f2/lib-hashbrown.json new file mode 100644 index 0000000..cb74335 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/hashbrown-ce379e75cd4d39f2/lib-hashbrown.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"alloc\", \"allocator-api2\", \"core\", \"default\", \"default-hasher\", \"equivalent\", \"inline-more\", \"nightly\", \"raw-entry\", \"rayon\", \"rustc-dep-of-std\", \"rustc-internal-api\", \"serde\"]","target":13796197676120832388,"profile":8276155916380437441,"path":2456607151624635847,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hashbrown-ce379e75cd4d39f2/dep-lib-hashbrown","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-3203f08401979c29/dep-lib-html5ever b/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-3203f08401979c29/dep-lib-html5ever new file mode 100644 index 0000000..a1cfff9 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-3203f08401979c29/dep-lib-html5ever differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-3203f08401979c29/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-3203f08401979c29/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-3203f08401979c29/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-3203f08401979c29/lib-html5ever b/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-3203f08401979c29/lib-html5ever new file mode 100644 index 0000000..2cd9aae --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-3203f08401979c29/lib-html5ever @@ -0,0 +1 @@ +937be768cf705426 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-3203f08401979c29/lib-html5ever.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-3203f08401979c29/lib-html5ever.json new file mode 100644 index 0000000..52dd9d7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-3203f08401979c29/lib-html5ever.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":4652384769665216062,"profile":8276155916380437441,"path":17660630867118463672,"deps":[[6894592641856567887,"build_script_build",false,13556715323945113093],[7359235151837888654,"markup5ever",false,2299144169192412402],[10630857666389190470,"log",false,13234583556802636384],[10952224881603935644,"mac",false,3938639248673190958]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/html5ever-3203f08401979c29/dep-lib-html5ever","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-67fa33fbb41b3bda/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-67fa33fbb41b3bda/build-script-build-script-build new file mode 100644 index 0000000..63d3676 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-67fa33fbb41b3bda/build-script-build-script-build @@ -0,0 +1 @@ +6cd5f5400508e619 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-67fa33fbb41b3bda/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-67fa33fbb41b3bda/build-script-build-script-build.json new file mode 100644 index 0000000..088e95c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-67fa33fbb41b3bda/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":3033921117576893,"path":14885463844166715674,"deps":[[4289358735036141001,"proc_macro2",false,2021902520114475280],[6100504282945712449,"quote",false,14500808875298157531],[10420560437213941093,"syn",false,935482101193759173]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/html5ever-67fa33fbb41b3bda/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-67fa33fbb41b3bda/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-67fa33fbb41b3bda/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-67fa33fbb41b3bda/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-67fa33fbb41b3bda/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-67fa33fbb41b3bda/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-67fa33fbb41b3bda/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-f2ef4faa050d52c7/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-f2ef4faa050d52c7/run-build-script-build-script-build new file mode 100644 index 0000000..317b1e7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-f2ef4faa050d52c7/run-build-script-build-script-build @@ -0,0 +1 @@ +05d6d7b4c22023bc \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-f2ef4faa050d52c7/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-f2ef4faa050d52c7/run-build-script-build-script-build.json new file mode 100644 index 0000000..5c6c433 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/html5ever-f2ef4faa050d52c7/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6894592641856567887,"build_script_build",false,1866187914249360748]],"local":[{"RerunIfChanged":{"output":"debug/build/html5ever-f2ef4faa050d52c7/output","paths":["src/tree_builder/rules.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/html_scraper-b4225ed1189a3c12/dep-lib-html_scraper b/src-tauri/tms_service/target/owl/debug/.fingerprint/html_scraper-b4225ed1189a3c12/dep-lib-html_scraper new file mode 100644 index 0000000..024be49 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/html_scraper-b4225ed1189a3c12/dep-lib-html_scraper differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/html_scraper-b4225ed1189a3c12/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/html_scraper-b4225ed1189a3c12/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/html_scraper-b4225ed1189a3c12/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/html_scraper-b4225ed1189a3c12/lib-html_scraper b/src-tauri/tms_service/target/owl/debug/.fingerprint/html_scraper-b4225ed1189a3c12/lib-html_scraper new file mode 100644 index 0000000..42e07f6 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/html_scraper-b4225ed1189a3c12/lib-html_scraper @@ -0,0 +1 @@ +a11b1f292d62bbc5 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/html_scraper-b4225ed1189a3c12/lib-html_scraper.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/html_scraper-b4225ed1189a3c12/lib-html_scraper.json new file mode 100644 index 0000000..25e53cf --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/html_scraper-b4225ed1189a3c12/lib-html_scraper.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":9930676247025263629,"profile":2330448797067240312,"path":2293536074549104456,"deps":[[8008191657135824715,"thiserror",false,7537977530526351934],[14847387549330244405,"scraper",false,4822961259123878563],[17109794424245468765,"regex",false,4348923980538901240]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/html_scraper-b4225ed1189a3c12/dep-lib-html_scraper","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/http-84cfa03a8e2d379e/dep-lib-http b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-84cfa03a8e2d379e/dep-lib-http new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-84cfa03a8e2d379e/dep-lib-http differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/http-84cfa03a8e2d379e/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-84cfa03a8e2d379e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-84cfa03a8e2d379e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/http-84cfa03a8e2d379e/lib-http b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-84cfa03a8e2d379e/lib-http new file mode 100644 index 0000000..feb1e3c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-84cfa03a8e2d379e/lib-http @@ -0,0 +1 @@ +8835fdf3609aee6e \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/http-84cfa03a8e2d379e/lib-http.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-84cfa03a8e2d379e/lib-http.json new file mode 100644 index 0000000..2932888 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-84cfa03a8e2d379e/lib-http.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":4766512060560342653,"profile":8276155916380437441,"path":4218029311838792280,"deps":[[3870702314125662939,"bytes",false,803313357563162728],[9938278000850417404,"itoa",false,5228001396796919418]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/http-84cfa03a8e2d379e/dep-lib-http","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-e29dae78b6ccaa97/dep-lib-http_body b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-e29dae78b6ccaa97/dep-lib-http_body new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-e29dae78b6ccaa97/dep-lib-http_body differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-e29dae78b6ccaa97/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-e29dae78b6ccaa97/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-e29dae78b6ccaa97/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-e29dae78b6ccaa97/lib-http_body b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-e29dae78b6ccaa97/lib-http_body new file mode 100644 index 0000000..7074da7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-e29dae78b6ccaa97/lib-http_body @@ -0,0 +1 @@ +f4576261fc1740f0 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-e29dae78b6ccaa97/lib-http_body.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-e29dae78b6ccaa97/lib-http_body.json new file mode 100644 index 0000000..20dff6d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-e29dae78b6ccaa97/lib-http_body.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":16652076073832724591,"profile":8276155916380437441,"path":11462841389281291345,"deps":[[2620434475832828286,"http",false,7993496129830204808],[3870702314125662939,"bytes",false,803313357563162728]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/http-body-e29dae78b6ccaa97/dep-lib-http_body","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-util-2ee8b882934db7fa/dep-lib-http_body_util b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-util-2ee8b882934db7fa/dep-lib-http_body_util new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-util-2ee8b882934db7fa/dep-lib-http_body_util differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-util-2ee8b882934db7fa/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-util-2ee8b882934db7fa/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-util-2ee8b882934db7fa/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-util-2ee8b882934db7fa/lib-http_body_util b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-util-2ee8b882934db7fa/lib-http_body_util new file mode 100644 index 0000000..18701bf --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-util-2ee8b882934db7fa/lib-http_body_util @@ -0,0 +1 @@ +34ca08b8f6030ca4 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-util-2ee8b882934db7fa/lib-http_body_util.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-util-2ee8b882934db7fa/lib-http_body_util.json new file mode 100644 index 0000000..dfcfb16 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/http-body-util-2ee8b882934db7fa/lib-http_body_util.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\"]","declared_features":"[\"channel\", \"default\", \"full\"]","target":7120517503662506348,"profile":8276155916380437441,"path":10677901112505552961,"deps":[[302948626015856208,"futures_core",false,495371792585833672],[1906322745568073236,"pin_project_lite",false,8594142553908325508],[2620434475832828286,"http",false,7993496129830204808],[3870702314125662939,"bytes",false,803313357563162728],[14084095096285906100,"http_body",false,17311863340345219060]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/http-body-util-2ee8b882934db7fa/dep-lib-http_body_util","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-61f6187f5c79b914/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-61f6187f5c79b914/build-script-build-script-build new file mode 100644 index 0000000..0c9de1d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-61f6187f5c79b914/build-script-build-script-build @@ -0,0 +1 @@ +16cb093efec777cc \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-61f6187f5c79b914/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-61f6187f5c79b914/build-script-build-script-build.json new file mode 100644 index 0000000..3cd521e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-61f6187f5c79b914/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":17883862002600103897,"profile":7951715458933780528,"path":6224047566260371145,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/httparse-61f6187f5c79b914/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-61f6187f5c79b914/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-61f6187f5c79b914/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-61f6187f5c79b914/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-61f6187f5c79b914/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-61f6187f5c79b914/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-61f6187f5c79b914/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-7c561d7147d4eef2/dep-lib-httparse b/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-7c561d7147d4eef2/dep-lib-httparse new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-7c561d7147d4eef2/dep-lib-httparse differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-7c561d7147d4eef2/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-7c561d7147d4eef2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-7c561d7147d4eef2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-7c561d7147d4eef2/lib-httparse b/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-7c561d7147d4eef2/lib-httparse new file mode 100644 index 0000000..b2dcddc --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-7c561d7147d4eef2/lib-httparse @@ -0,0 +1 @@ +331067fe95b97261 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-7c561d7147d4eef2/lib-httparse.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-7c561d7147d4eef2/lib-httparse.json new file mode 100644 index 0000000..188ccf0 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-7c561d7147d4eef2/lib-httparse.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":2257539891522735522,"profile":8758304825530816543,"path":7750472021892152657,"deps":[[6163892036024256188,"build_script_build",false,765847443596431532]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/httparse-7c561d7147d4eef2/dep-lib-httparse","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-cb0fa75e804412c8/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-cb0fa75e804412c8/run-build-script-build-script-build new file mode 100644 index 0000000..af22627 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-cb0fa75e804412c8/run-build-script-build-script-build @@ -0,0 +1 @@ +acd0b43b31d6a00a \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-cb0fa75e804412c8/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-cb0fa75e804412c8/run-build-script-build-script-build.json new file mode 100644 index 0000000..4ac5a53 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/httparse-cb0fa75e804412c8/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6163892036024256188,"build_script_build",false,14733464600742316822]],"local":[{"Precalculated":"1.10.1"}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-d3cc9636f1286ef9/dep-lib-hyper b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-d3cc9636f1286ef9/dep-lib-hyper new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-d3cc9636f1286ef9/dep-lib-hyper differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-d3cc9636f1286ef9/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-d3cc9636f1286ef9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-d3cc9636f1286ef9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-d3cc9636f1286ef9/lib-hyper b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-d3cc9636f1286ef9/lib-hyper new file mode 100644 index 0000000..d51fa39 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-d3cc9636f1286ef9/lib-hyper @@ -0,0 +1 @@ +ca1ba0226ce5c517 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-d3cc9636f1286ef9/lib-hyper.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-d3cc9636f1286ef9/lib-hyper.json new file mode 100644 index 0000000..4a3444b --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-d3cc9636f1286ef9/lib-hyper.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"client\", \"default\", \"http1\", \"http2\"]","declared_features":"[\"capi\", \"client\", \"default\", \"ffi\", \"full\", \"http1\", \"http2\", \"nightly\", \"server\", \"tracing\"]","target":9574292076208557625,"profile":3347620687548207516,"path":11524423676855454077,"deps":[[302948626015856208,"futures_core",false,495371792585833672],[1074848931188612602,"atomic_waker",false,6770360493730001350],[1569313478171189446,"want",false,2762869571849007540],[1615478164327904835,"pin_utils",false,7261584114873219364],[1906322745568073236,"pin_project_lite",false,8594142553908325508],[2620434475832828286,"http",false,7993496129830204808],[3158163345960637315,"h2",false,6851173689815081845],[3666196340704888985,"smallvec",false,6092863289377749396],[3870702314125662939,"bytes",false,803313357563162728],[6163892036024256188,"httparse",false,7021878822893457459],[9128867168860799549,"futures_channel",false,6577853042287415609],[9938278000850417404,"itoa",false,5228001396796919418],[12891030758458664808,"tokio",false,1167986652861127869],[14084095096285906100,"http_body",false,17311863340345219060]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyper-d3cc9636f1286ef9/dep-lib-hyper","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-tls-1715619fdd5e28b7/dep-lib-hyper_tls b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-tls-1715619fdd5e28b7/dep-lib-hyper_tls new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-tls-1715619fdd5e28b7/dep-lib-hyper_tls differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-tls-1715619fdd5e28b7/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-tls-1715619fdd5e28b7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-tls-1715619fdd5e28b7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-tls-1715619fdd5e28b7/lib-hyper_tls b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-tls-1715619fdd5e28b7/lib-hyper_tls new file mode 100644 index 0000000..2f6d52a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-tls-1715619fdd5e28b7/lib-hyper_tls @@ -0,0 +1 @@ +40416c5e9ddf98b0 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-tls-1715619fdd5e28b7/lib-hyper_tls.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-tls-1715619fdd5e28b7/lib-hyper_tls.json new file mode 100644 index 0000000..a967db7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-tls-1715619fdd5e28b7/lib-hyper_tls.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"alpn\", \"vendored\"]","target":11005878871305885301,"profile":8276155916380437441,"path":250417808038047596,"deps":[[784494742817713399,"tower_service",false,3963567562716476514],[3870702314125662939,"bytes",false,803313357563162728],[4160778395972110362,"hyper",false,1713027485884488650],[9144560277883153344,"native_tls",false,12641891443652989489],[11976082518617474977,"hyper_util",false,15860460920476440401],[12186126227181294540,"tokio_native_tls",false,2256678380334445433],[12891030758458664808,"tokio",false,1167986652861127869],[16900715236047033623,"http_body_util",false,11820827480125131316]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyper-tls-1715619fdd5e28b7/dep-lib-hyper_tls","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-util-27bb15f3b2b6299f/dep-lib-hyper_util b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-util-27bb15f3b2b6299f/dep-lib-hyper_util new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-util-27bb15f3b2b6299f/dep-lib-hyper_util differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-util-27bb15f3b2b6299f/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-util-27bb15f3b2b6299f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-util-27bb15f3b2b6299f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-util-27bb15f3b2b6299f/lib-hyper_util b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-util-27bb15f3b2b6299f/lib-hyper_util new file mode 100644 index 0000000..a2b548d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-util-27bb15f3b2b6299f/lib-hyper_util @@ -0,0 +1 @@ +5197f6c22cad1bdc \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-util-27bb15f3b2b6299f/lib-hyper_util.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-util-27bb15f3b2b6299f/lib-hyper_util.json new file mode 100644 index 0000000..4296238 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/hyper-util-27bb15f3b2b6299f/lib-hyper_util.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"client\", \"client-legacy\", \"client-proxy\", \"client-proxy-system\", \"default\", \"http1\", \"http2\", \"tokio\"]","declared_features":"[\"__internal_happy_eyeballs_tests\", \"client\", \"client-legacy\", \"client-pool\", \"client-proxy\", \"client-proxy-system\", \"default\", \"full\", \"http1\", \"http2\", \"server\", \"server-auto\", \"server-graceful\", \"service\", \"tokio\", \"tracing\"]","target":11100538814903412163,"profile":8276155916380437441,"path":11957893759160436085,"deps":[[95042085696191081,"ipnet",false,16041971024301230525],[784494742817713399,"tower_service",false,3963567562716476514],[1906322745568073236,"pin_project_lite",false,8594142553908325508],[2620434475832828286,"http",false,7993496129830204808],[3870702314125662939,"bytes",false,803313357563162728],[4160778395972110362,"hyper",false,1713027485884488650],[5898568623609459682,"futures_util",false,15435209376518851321],[6803352382179706244,"percent_encoding",false,14813157098544424846],[9128867168860799549,"futures_channel",false,6577853042287415609],[12891030758458664808,"tokio",false,1167986652861127869],[13077212702700853852,"base64",false,16069490410806379632],[14084095096285906100,"http_body",false,17311863340345219060],[14271021400703034441,"socket2",false,2044150730969864097],[14425619450980614985,"system_configuration",false,1732936536482959487],[14757622794040968908,"tracing",false,15551817323670632243],[18365559012052052344,"libc",false,15297927699523733485]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyper-util-27bb15f3b2b6299f/dep-lib-hyper_util","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_collections-69708450be497605/dep-lib-icu_collections b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_collections-69708450be497605/dep-lib-icu_collections new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_collections-69708450be497605/dep-lib-icu_collections differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_collections-69708450be497605/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_collections-69708450be497605/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_collections-69708450be497605/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_collections-69708450be497605/lib-icu_collections b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_collections-69708450be497605/lib-icu_collections new file mode 100644 index 0000000..b8f1c5c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_collections-69708450be497605/lib-icu_collections @@ -0,0 +1 @@ +be5ee86900284b6d \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_collections-69708450be497605/lib-icu_collections.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_collections-69708450be497605/lib-icu_collections.json new file mode 100644 index 0000000..db4994e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_collections-69708450be497605/lib-icu_collections.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"alloc\", \"databake\", \"serde\"]","target":8741949119514994751,"profile":8276155916380437441,"path":6623456219716738449,"deps":[[697207654067905947,"yoke",false,2917220015127875808],[1847693542725807353,"potential_utf",false,8243583219438826595],[5298260564258778412,"displaydoc",false,13212093097827428317],[14563910249377136032,"zerovec",false,5351667558201935435],[17046516144589451410,"zerofrom",false,9940195494606636217]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_collections-69708450be497605/dep-lib-icu_collections","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_locale_core-8eb1e9ef0ba9f436/dep-lib-icu_locale_core b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_locale_core-8eb1e9ef0ba9f436/dep-lib-icu_locale_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_locale_core-8eb1e9ef0ba9f436/dep-lib-icu_locale_core differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_locale_core-8eb1e9ef0ba9f436/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_locale_core-8eb1e9ef0ba9f436/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_locale_core-8eb1e9ef0ba9f436/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_locale_core-8eb1e9ef0ba9f436/lib-icu_locale_core b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_locale_core-8eb1e9ef0ba9f436/lib-icu_locale_core new file mode 100644 index 0000000..c1461a7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_locale_core-8eb1e9ef0ba9f436/lib-icu_locale_core @@ -0,0 +1 @@ +2763862d9989828d \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_locale_core-8eb1e9ef0ba9f436/lib-icu_locale_core.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_locale_core-8eb1e9ef0ba9f436/lib-icu_locale_core.json new file mode 100644 index 0000000..c8c7a56 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_locale_core-8eb1e9ef0ba9f436/lib-icu_locale_core.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"zerovec\"]","declared_features":"[\"alloc\", \"databake\", \"serde\", \"zerovec\"]","target":7234736894702847895,"profile":8276155916380437441,"path":7417319904862128158,"deps":[[5298260564258778412,"displaydoc",false,13212093097827428317],[11782995109291648529,"tinystr",false,12637162543003576737],[13225456964504773423,"writeable",false,3395843765770070659],[13749468390089984218,"litemap",false,12439429586929008330],[14563910249377136032,"zerovec",false,5351667558201935435]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_locale_core-8eb1e9ef0ba9f436/dep-lib-icu_locale_core","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer-cfc2a9aa2d96aeda/dep-lib-icu_normalizer b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer-cfc2a9aa2d96aeda/dep-lib-icu_normalizer new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer-cfc2a9aa2d96aeda/dep-lib-icu_normalizer differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer-cfc2a9aa2d96aeda/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer-cfc2a9aa2d96aeda/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer-cfc2a9aa2d96aeda/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer-cfc2a9aa2d96aeda/lib-icu_normalizer b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer-cfc2a9aa2d96aeda/lib-icu_normalizer new file mode 100644 index 0000000..43fdffd --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer-cfc2a9aa2d96aeda/lib-icu_normalizer @@ -0,0 +1 @@ +29b69e2992038c08 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer-cfc2a9aa2d96aeda/lib-icu_normalizer.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer-cfc2a9aa2d96aeda/lib-icu_normalizer.json new file mode 100644 index 0000000..e8110d8 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer-cfc2a9aa2d96aeda/lib-icu_normalizer.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"compiled_data\"]","declared_features":"[\"compiled_data\", \"datagen\", \"default\", \"experimental\", \"icu_properties\", \"serde\", \"utf16_iter\", \"utf8_iter\", \"write16\"]","target":4082895731217690114,"profile":6954320141071726532,"path":13380700576376210758,"deps":[[3666196340704888985,"smallvec",false,6092863289377749396],[5251024081607271245,"icu_provider",false,14658771323400827975],[8584278803131124045,"icu_normalizer_data",false,16525126524907295759],[14324911895384364736,"icu_collections",false,7875432355629391550],[14563910249377136032,"zerovec",false,5351667558201935435]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_normalizer-cfc2a9aa2d96aeda/dep-lib-icu_normalizer","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-781ca7a9e1ba8bd3/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-781ca7a9e1ba8bd3/build-script-build-script-build new file mode 100644 index 0000000..b501cd1 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-781ca7a9e1ba8bd3/build-script-build-script-build @@ -0,0 +1 @@ +e6d66bd312c77ea7 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-781ca7a9e1ba8bd3/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-781ca7a9e1ba8bd3/build-script-build-script-build.json new file mode 100644 index 0000000..896130c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-781ca7a9e1ba8bd3/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":12587308339056959103,"path":14458475630725952431,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_normalizer_data-781ca7a9e1ba8bd3/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-781ca7a9e1ba8bd3/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-781ca7a9e1ba8bd3/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-781ca7a9e1ba8bd3/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-781ca7a9e1ba8bd3/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-781ca7a9e1ba8bd3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-781ca7a9e1ba8bd3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-792d8ca86354cd8b/dep-lib-icu_normalizer_data b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-792d8ca86354cd8b/dep-lib-icu_normalizer_data new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-792d8ca86354cd8b/dep-lib-icu_normalizer_data differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-792d8ca86354cd8b/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-792d8ca86354cd8b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-792d8ca86354cd8b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-792d8ca86354cd8b/lib-icu_normalizer_data b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-792d8ca86354cd8b/lib-icu_normalizer_data new file mode 100644 index 0000000..174fc9c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-792d8ca86354cd8b/lib-icu_normalizer_data @@ -0,0 +1 @@ +0f147c41050b55e5 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-792d8ca86354cd8b/lib-icu_normalizer_data.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-792d8ca86354cd8b/lib-icu_normalizer_data.json new file mode 100644 index 0000000..74b432f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-792d8ca86354cd8b/lib-icu_normalizer_data.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":17980939898269686983,"profile":15962471266562725207,"path":15804392053385998995,"deps":[[8584278803131124045,"build_script_build",false,15104788744497497717]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_normalizer_data-792d8ca86354cd8b/dep-lib-icu_normalizer_data","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-7af115ad377b4518/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-7af115ad377b4518/run-build-script-build-script-build new file mode 100644 index 0000000..1a664aa --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-7af115ad377b4518/run-build-script-build-script-build @@ -0,0 +1 @@ +758617a355fd9ed1 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-7af115ad377b4518/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-7af115ad377b4518/run-build-script-build-script-build.json new file mode 100644 index 0000000..4d53a59 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_normalizer_data-7af115ad377b4518/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8584278803131124045,"build_script_build",false,12069302935069906662]],"local":[{"RerunIfEnvChanged":{"var":"ICU4X_DATA_DIR","val":null}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties-31fec4cc4c700256/dep-lib-icu_properties b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties-31fec4cc4c700256/dep-lib-icu_properties new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties-31fec4cc4c700256/dep-lib-icu_properties differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties-31fec4cc4c700256/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties-31fec4cc4c700256/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties-31fec4cc4c700256/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties-31fec4cc4c700256/lib-icu_properties b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties-31fec4cc4c700256/lib-icu_properties new file mode 100644 index 0000000..6c64495 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties-31fec4cc4c700256/lib-icu_properties @@ -0,0 +1 @@ +b379354893827a72 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties-31fec4cc4c700256/lib-icu_properties.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties-31fec4cc4c700256/lib-icu_properties.json new file mode 100644 index 0000000..15a74a7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties-31fec4cc4c700256/lib-icu_properties.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"compiled_data\"]","declared_features":"[\"alloc\", \"compiled_data\", \"datagen\", \"default\", \"serde\", \"unicode_bidi\"]","target":12882061015678277883,"profile":8276155916380437441,"path":10050441659936003260,"deps":[[3966877249195716185,"icu_locale_core",false,10196863797307007783],[5251024081607271245,"icu_provider",false,14658771323400827975],[5858954507332936698,"icu_properties_data",false,18294306838803808043],[6160379875186348458,"zerotrie",false,9262455763603856355],[14324911895384364736,"icu_collections",false,7875432355629391550],[14563910249377136032,"zerovec",false,5351667558201935435]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_properties-31fec4cc4c700256/dep-lib-icu_properties","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-2b84c2e6a3ebdd72/dep-lib-icu_properties_data b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-2b84c2e6a3ebdd72/dep-lib-icu_properties_data new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-2b84c2e6a3ebdd72/dep-lib-icu_properties_data differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-2b84c2e6a3ebdd72/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-2b84c2e6a3ebdd72/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-2b84c2e6a3ebdd72/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-2b84c2e6a3ebdd72/lib-icu_properties_data b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-2b84c2e6a3ebdd72/lib-icu_properties_data new file mode 100644 index 0000000..c5ec2d1 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-2b84c2e6a3ebdd72/lib-icu_properties_data @@ -0,0 +1 @@ +2b7fe67a246fe2fd \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-2b84c2e6a3ebdd72/lib-icu_properties_data.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-2b84c2e6a3ebdd72/lib-icu_properties_data.json new file mode 100644 index 0000000..ec469f1 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-2b84c2e6a3ebdd72/lib-icu_properties_data.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":9037757742335137726,"profile":15962471266562725207,"path":9977788599959400380,"deps":[[5858954507332936698,"build_script_build",false,15998354941738730240]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_properties_data-2b84c2e6a3ebdd72/dep-lib-icu_properties_data","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-48cf7e7b9d5d4b83/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-48cf7e7b9d5d4b83/run-build-script-build-script-build new file mode 100644 index 0000000..39722a3 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-48cf7e7b9d5d4b83/run-build-script-build-script-build @@ -0,0 +1 @@ +00c3f37c0e9305de \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-48cf7e7b9d5d4b83/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-48cf7e7b9d5d4b83/run-build-script-build-script-build.json new file mode 100644 index 0000000..8426212 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-48cf7e7b9d5d4b83/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[5858954507332936698,"build_script_build",false,16884414721264524708]],"local":[{"RerunIfEnvChanged":{"var":"ICU4X_DATA_DIR","val":null}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-74d6608750720d14/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-74d6608750720d14/build-script-build-script-build new file mode 100644 index 0000000..392fd09 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-74d6608750720d14/build-script-build-script-build @@ -0,0 +1 @@ +a41d5945bb7d51ea \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-74d6608750720d14/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-74d6608750720d14/build-script-build-script-build.json new file mode 100644 index 0000000..f1f1a42 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-74d6608750720d14/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":12587308339056959103,"path":3048159451419205689,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_properties_data-74d6608750720d14/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-74d6608750720d14/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-74d6608750720d14/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-74d6608750720d14/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-74d6608750720d14/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-74d6608750720d14/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_properties_data-74d6608750720d14/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_provider-83d11719cf981b96/dep-lib-icu_provider b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_provider-83d11719cf981b96/dep-lib-icu_provider new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_provider-83d11719cf981b96/dep-lib-icu_provider differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_provider-83d11719cf981b96/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_provider-83d11719cf981b96/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_provider-83d11719cf981b96/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_provider-83d11719cf981b96/lib-icu_provider b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_provider-83d11719cf981b96/lib-icu_provider new file mode 100644 index 0000000..df4351e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_provider-83d11719cf981b96/lib-icu_provider @@ -0,0 +1 @@ +4734fd66da6a6ecb \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_provider-83d11719cf981b96/lib-icu_provider.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_provider-83d11719cf981b96/lib-icu_provider.json new file mode 100644 index 0000000..abb8f55 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/icu_provider-83d11719cf981b96/lib-icu_provider.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"baked\"]","declared_features":"[\"alloc\", \"baked\", \"deserialize_bincode_1\", \"deserialize_json\", \"deserialize_postcard_1\", \"export\", \"logging\", \"serde\", \"std\", \"sync\", \"zerotrie\"]","target":8134314816311233441,"profile":8276155916380437441,"path":6332926888920940788,"deps":[[697207654067905947,"yoke",false,2917220015127875808],[3966877249195716185,"icu_locale_core",false,10196863797307007783],[5298260564258778412,"displaydoc",false,13212093097827428317],[6160379875186348458,"zerotrie",false,9262455763603856355],[13225456964504773423,"writeable",false,3395843765770070659],[14563910249377136032,"zerovec",false,5351667558201935435],[17046516144589451410,"zerofrom",false,9940195494606636217]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_provider-83d11719cf981b96/dep-lib-icu_provider","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/idna-3d2e662b022b3a75/dep-lib-idna b/src-tauri/tms_service/target/owl/debug/.fingerprint/idna-3d2e662b022b3a75/dep-lib-idna new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/idna-3d2e662b022b3a75/dep-lib-idna differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/idna-3d2e662b022b3a75/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/idna-3d2e662b022b3a75/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/idna-3d2e662b022b3a75/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/idna-3d2e662b022b3a75/lib-idna b/src-tauri/tms_service/target/owl/debug/.fingerprint/idna-3d2e662b022b3a75/lib-idna new file mode 100644 index 0000000..4472a4f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/idna-3d2e662b022b3a75/lib-idna @@ -0,0 +1 @@ +83cc2a696aadd5ae \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/idna-3d2e662b022b3a75/lib-idna.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/idna-3d2e662b022b3a75/lib-idna.json new file mode 100644 index 0000000..3d80fb9 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/idna-3d2e662b022b3a75/lib-idna.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"compiled_data\", \"std\"]","declared_features":"[\"alloc\", \"compiled_data\", \"default\", \"std\"]","target":2602963282308965300,"profile":8276155916380437441,"path":10547410369630404716,"deps":[[3666196340704888985,"smallvec",false,6092863289377749396],[5078124415930854154,"utf8_iter",false,17415133064479650565],[15512052560677395824,"idna_adapter",false,4299928330951398067]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/idna-3d2e662b022b3a75/dep-lib-idna","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/idna_adapter-5d4613f05c9c3e16/dep-lib-idna_adapter b/src-tauri/tms_service/target/owl/debug/.fingerprint/idna_adapter-5d4613f05c9c3e16/dep-lib-idna_adapter new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/idna_adapter-5d4613f05c9c3e16/dep-lib-idna_adapter differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/idna_adapter-5d4613f05c9c3e16/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/idna_adapter-5d4613f05c9c3e16/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/idna_adapter-5d4613f05c9c3e16/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/idna_adapter-5d4613f05c9c3e16/lib-idna_adapter b/src-tauri/tms_service/target/owl/debug/.fingerprint/idna_adapter-5d4613f05c9c3e16/lib-idna_adapter new file mode 100644 index 0000000..9d5f3c6 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/idna_adapter-5d4613f05c9c3e16/lib-idna_adapter @@ -0,0 +1 @@ +b312fff5086aac3b \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/idna_adapter-5d4613f05c9c3e16/lib-idna_adapter.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/idna_adapter-5d4613f05c9c3e16/lib-idna_adapter.json new file mode 100644 index 0000000..ed703e5 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/idna_adapter-5d4613f05c9c3e16/lib-idna_adapter.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"compiled_data\"]","declared_features":"[\"compiled_data\"]","target":9682399050268992880,"profile":8276155916380437441,"path":8807401405475201768,"deps":[[13090240085421024152,"icu_normalizer",false,615871175341291049],[18157230703293167834,"icu_properties",false,8249049236565752243]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/idna_adapter-5d4613f05c9c3e16/dep-lib-idna_adapter","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/indexmap-1653418857da0d7c/dep-lib-indexmap b/src-tauri/tms_service/target/owl/debug/.fingerprint/indexmap-1653418857da0d7c/dep-lib-indexmap new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/indexmap-1653418857da0d7c/dep-lib-indexmap differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/indexmap-1653418857da0d7c/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/indexmap-1653418857da0d7c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/indexmap-1653418857da0d7c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/indexmap-1653418857da0d7c/lib-indexmap b/src-tauri/tms_service/target/owl/debug/.fingerprint/indexmap-1653418857da0d7c/lib-indexmap new file mode 100644 index 0000000..07f5c67 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/indexmap-1653418857da0d7c/lib-indexmap @@ -0,0 +1 @@ +78c10af3a80fdf17 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/indexmap-1653418857da0d7c/lib-indexmap.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/indexmap-1653418857da0d7c/lib-indexmap.json new file mode 100644 index 0000000..644cbda --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/indexmap-1653418857da0d7c/lib-indexmap.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"arbitrary\", \"borsh\", \"default\", \"quickcheck\", \"rayon\", \"serde\", \"std\", \"sval\", \"test_debug\"]","target":10391229881554802429,"profile":10735569672703643688,"path":5950204250132736491,"deps":[[5230392855116717286,"equivalent",false,18324488385845556847],[17037126617600641945,"hashbrown",false,10794196746579293358]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/indexmap-1653418857da0d7c/dep-lib-indexmap","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ipnet-846995f364125de3/dep-lib-ipnet b/src-tauri/tms_service/target/owl/debug/.fingerprint/ipnet-846995f364125de3/dep-lib-ipnet new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/ipnet-846995f364125de3/dep-lib-ipnet differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ipnet-846995f364125de3/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/ipnet-846995f364125de3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/ipnet-846995f364125de3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ipnet-846995f364125de3/lib-ipnet b/src-tauri/tms_service/target/owl/debug/.fingerprint/ipnet-846995f364125de3/lib-ipnet new file mode 100644 index 0000000..7f182a4 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/ipnet-846995f364125de3/lib-ipnet @@ -0,0 +1 @@ +bd899510a787a0de \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ipnet-846995f364125de3/lib-ipnet.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/ipnet-846995f364125de3/lib-ipnet.json new file mode 100644 index 0000000..f53ba39 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/ipnet-846995f364125de3/lib-ipnet.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"heapless\", \"json\", \"schemars\", \"ser_as_str\", \"serde\", \"std\"]","target":2684928858108222948,"profile":8276155916380437441,"path":15391036429859290226,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ipnet-846995f364125de3/dep-lib-ipnet","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/iri-string-57a60e3ff0c3e1ce/dep-lib-iri_string b/src-tauri/tms_service/target/owl/debug/.fingerprint/iri-string-57a60e3ff0c3e1ce/dep-lib-iri_string new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/iri-string-57a60e3ff0c3e1ce/dep-lib-iri_string differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/iri-string-57a60e3ff0c3e1ce/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/iri-string-57a60e3ff0c3e1ce/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/iri-string-57a60e3ff0c3e1ce/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/iri-string-57a60e3ff0c3e1ce/lib-iri_string b/src-tauri/tms_service/target/owl/debug/.fingerprint/iri-string-57a60e3ff0c3e1ce/lib-iri_string new file mode 100644 index 0000000..ee5078c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/iri-string-57a60e3ff0c3e1ce/lib-iri_string @@ -0,0 +1 @@ +83a7511ae4781345 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/iri-string-57a60e3ff0c3e1ce/lib-iri_string.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/iri-string-57a60e3ff0c3e1ce/lib-iri_string.json new file mode 100644 index 0000000..1eb3a36 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/iri-string-57a60e3ff0c3e1ce/lib-iri_string.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"memchr\", \"serde\", \"std\"]","target":12413245532915438876,"profile":8276155916380437441,"path":13978236485868218472,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/iri-string-57a60e3ff0c3e1ce/dep-lib-iri_string","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/itoa-17d034c4879a625d/dep-lib-itoa b/src-tauri/tms_service/target/owl/debug/.fingerprint/itoa-17d034c4879a625d/dep-lib-itoa new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/itoa-17d034c4879a625d/dep-lib-itoa differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/itoa-17d034c4879a625d/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/itoa-17d034c4879a625d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/itoa-17d034c4879a625d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/itoa-17d034c4879a625d/lib-itoa b/src-tauri/tms_service/target/owl/debug/.fingerprint/itoa-17d034c4879a625d/lib-itoa new file mode 100644 index 0000000..b4985ad --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/itoa-17d034c4879a625d/lib-itoa @@ -0,0 +1 @@ +7a8e533d92978d48 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/itoa-17d034c4879a625d/lib-itoa.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/itoa-17d034c4879a625d/lib-itoa.json new file mode 100644 index 0000000..bd12bc6 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/itoa-17d034c4879a625d/lib-itoa.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"no-panic\"]","target":18426369533666673425,"profile":8276155916380437441,"path":15237649451830770655,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/itoa-17d034c4879a625d/dep-lib-itoa","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-1b76c6780cc870c3/dep-lib-libc b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-1b76c6780cc870c3/dep-lib-libc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-1b76c6780cc870c3/dep-lib-libc differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-1b76c6780cc870c3/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-1b76c6780cc870c3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-1b76c6780cc870c3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-1b76c6780cc870c3/lib-libc b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-1b76c6780cc870c3/lib-libc new file mode 100644 index 0000000..3e0bdfa --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-1b76c6780cc870c3/lib-libc @@ -0,0 +1 @@ +ba897787ba14e028 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-1b76c6780cc870c3/lib-libc.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-1b76c6780cc870c3/lib-libc.json new file mode 100644 index 0000000..5d6b86b --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-1b76c6780cc870c3/lib-libc.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":17682796336736096309,"profile":3039969951022573740,"path":7425155946983642742,"deps":[[18365559012052052344,"build_script_build",false,17026913185906786850]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-1b76c6780cc870c3/dep-lib-libc","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-24444cb59b979421/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-24444cb59b979421/build-script-build-script-build new file mode 100644 index 0000000..0ef3a8c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-24444cb59b979421/build-script-build-script-build @@ -0,0 +1 @@ +3acc8687cf9dc611 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-24444cb59b979421/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-24444cb59b979421/build-script-build-script-build.json new file mode 100644 index 0000000..3a23caa --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-24444cb59b979421/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":5408242616063297496,"profile":3039969951022573740,"path":2889256362757670297,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-24444cb59b979421/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-24444cb59b979421/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-24444cb59b979421/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-24444cb59b979421/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-24444cb59b979421/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-24444cb59b979421/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-24444cb59b979421/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-9d01b46b1edd8d96/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-9d01b46b1edd8d96/run-build-script-build-script-build new file mode 100644 index 0000000..5db0b0d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-9d01b46b1edd8d96/run-build-script-build-script-build @@ -0,0 +1 @@ +2474fb1fe8cf8e91 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-9d01b46b1edd8d96/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-9d01b46b1edd8d96/run-build-script-build-script-build.json new file mode 100644 index 0000000..841d8e4 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-9d01b46b1edd8d96/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[18365559012052052344,"build_script_build",false,1539537082349420758]],"local":[{"RerunIfChanged":{"output":"debug/build/libc-9d01b46b1edd8d96/output","paths":["build.rs"]}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_FREEBSD_VERSION","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_MUSL_V1_2_3","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_TIME_BITS","val":null}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-a48f6672a612f883/dep-lib-libc b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-a48f6672a612f883/dep-lib-libc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-a48f6672a612f883/dep-lib-libc differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-a48f6672a612f883/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-a48f6672a612f883/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-a48f6672a612f883/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-a48f6672a612f883/lib-libc b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-a48f6672a612f883/lib-libc new file mode 100644 index 0000000..8b5062b --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-a48f6672a612f883/lib-libc @@ -0,0 +1 @@ +ed87b8d930284dd4 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-a48f6672a612f883/lib-libc.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-a48f6672a612f883/lib-libc.json new file mode 100644 index 0000000..2a32218 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-a48f6672a612f883/lib-libc.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":17682796336736096309,"profile":9845369694348380695,"path":7425155946983642742,"deps":[[18365559012052052344,"build_script_build",false,10488549178068399140]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-a48f6672a612f883/dep-lib-libc","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-b87c7187feddc612/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-b87c7187feddc612/build-script-build-script-build new file mode 100644 index 0000000..86b98aa --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-b87c7187feddc612/build-script-build-script-build @@ -0,0 +1 @@ +d680facfd1885d15 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-b87c7187feddc612/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-b87c7187feddc612/build-script-build-script-build.json new file mode 100644 index 0000000..aed9a39 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-b87c7187feddc612/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":5408242616063297496,"profile":3039969951022573740,"path":2889256362757670297,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-b87c7187feddc612/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-b87c7187feddc612/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-b87c7187feddc612/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-b87c7187feddc612/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-b87c7187feddc612/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-b87c7187feddc612/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-b87c7187feddc612/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-d13ba0f46c43dc65/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-d13ba0f46c43dc65/run-build-script-build-script-build new file mode 100644 index 0000000..3c91869 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-d13ba0f46c43dc65/run-build-script-build-script-build @@ -0,0 +1 @@ +2282638354bf4bec \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-d13ba0f46c43dc65/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-d13ba0f46c43dc65/run-build-script-build-script-build.json new file mode 100644 index 0000000..46c7093 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/libc-d13ba0f46c43dc65/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[18365559012052052344,"build_script_build",false,1280884658691034170]],"local":[{"RerunIfChanged":{"output":"debug/build/libc-d13ba0f46c43dc65/output","paths":["build.rs"]}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_FREEBSD_VERSION","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_MUSL_V1_2_3","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_TIME_BITS","val":null}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/litemap-517a131136202ae6/dep-lib-litemap b/src-tauri/tms_service/target/owl/debug/.fingerprint/litemap-517a131136202ae6/dep-lib-litemap new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/litemap-517a131136202ae6/dep-lib-litemap differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/litemap-517a131136202ae6/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/litemap-517a131136202ae6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/litemap-517a131136202ae6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/litemap-517a131136202ae6/lib-litemap b/src-tauri/tms_service/target/owl/debug/.fingerprint/litemap-517a131136202ae6/lib-litemap new file mode 100644 index 0000000..7a422bc --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/litemap-517a131136202ae6/lib-litemap @@ -0,0 +1 @@ +ca3e63694dbba1ac \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/litemap-517a131136202ae6/lib-litemap.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/litemap-517a131136202ae6/lib-litemap.json new file mode 100644 index 0000000..8350076 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/litemap-517a131136202ae6/lib-litemap.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"alloc\", \"databake\", \"default\", \"serde\", \"testing\", \"yoke\"]","target":6548088149557820361,"profile":8276155916380437441,"path":18348122261627957824,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/litemap-517a131136202ae6/dep-lib-litemap","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/lock_api-c41db7abd93774ff/dep-lib-lock_api b/src-tauri/tms_service/target/owl/debug/.fingerprint/lock_api-c41db7abd93774ff/dep-lib-lock_api new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/lock_api-c41db7abd93774ff/dep-lib-lock_api differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/lock_api-c41db7abd93774ff/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/lock_api-c41db7abd93774ff/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/lock_api-c41db7abd93774ff/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/lock_api-c41db7abd93774ff/lib-lock_api b/src-tauri/tms_service/target/owl/debug/.fingerprint/lock_api-c41db7abd93774ff/lib-lock_api new file mode 100644 index 0000000..5a1bf41 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/lock_api-c41db7abd93774ff/lib-lock_api @@ -0,0 +1 @@ +6ebd5e705a5f0e77 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/lock_api-c41db7abd93774ff/lib-lock_api.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/lock_api-c41db7abd93774ff/lib-lock_api.json new file mode 100644 index 0000000..20aedc0 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/lock_api-c41db7abd93774ff/lib-lock_api.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"atomic_usize\", \"default\"]","declared_features":"[\"arc_lock\", \"atomic_usize\", \"default\", \"nightly\", \"owning_ref\", \"serde\"]","target":16157403318809843794,"profile":8276155916380437441,"path":15700759355335084198,"deps":[[15358414700195712381,"scopeguard",false,3583690820382550625]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/lock_api-c41db7abd93774ff/dep-lib-lock_api","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/log-7b87799170767125/dep-lib-log b/src-tauri/tms_service/target/owl/debug/.fingerprint/log-7b87799170767125/dep-lib-log new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/log-7b87799170767125/dep-lib-log differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/log-7b87799170767125/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/log-7b87799170767125/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/log-7b87799170767125/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/log-7b87799170767125/lib-log b/src-tauri/tms_service/target/owl/debug/.fingerprint/log-7b87799170767125/lib-log new file mode 100644 index 0000000..3f91562 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/log-7b87799170767125/lib-log @@ -0,0 +1 @@ +606a7205a0afaab7 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/log-7b87799170767125/lib-log.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/log-7b87799170767125/lib-log.json new file mode 100644 index 0000000..386d561 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/log-7b87799170767125/lib-log.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"kv\", \"kv_serde\", \"kv_std\", \"kv_sval\", \"kv_unstable\", \"kv_unstable_serde\", \"kv_unstable_std\", \"kv_unstable_sval\", \"max_level_debug\", \"max_level_error\", \"max_level_info\", \"max_level_off\", \"max_level_trace\", \"max_level_warn\", \"release_max_level_debug\", \"release_max_level_error\", \"release_max_level_info\", \"release_max_level_off\", \"release_max_level_trace\", \"release_max_level_warn\", \"serde\", \"serde_core\", \"std\", \"sval\", \"sval_ref\", \"value-bag\"]","target":6550155848337067049,"profile":8276155916380437441,"path":7527110268752113777,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/log-7b87799170767125/dep-lib-log","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/dep-lib-mac b/src-tauri/tms_service/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/dep-lib-mac new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/dep-lib-mac differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/lib-mac b/src-tauri/tms_service/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/lib-mac new file mode 100644 index 0000000..83f0563 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/lib-mac @@ -0,0 +1 @@ +2eb4936387dba836 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/lib-mac.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/lib-mac.json new file mode 100644 index 0000000..cc466d9 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/mac-8bcbbf2eea6c88e0/lib-mac.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":4071246351868317718,"profile":8276155916380437441,"path":13915823805326551209,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/mac-8bcbbf2eea6c88e0/dep-lib-mac","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-c18c3c633226999e/dep-lib-markup5ever b/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-c18c3c633226999e/dep-lib-markup5ever new file mode 100644 index 0000000..86ee467 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-c18c3c633226999e/dep-lib-markup5ever differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-c18c3c633226999e/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-c18c3c633226999e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-c18c3c633226999e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-c18c3c633226999e/lib-markup5ever b/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-c18c3c633226999e/lib-markup5ever new file mode 100644 index 0000000..fa91a0e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-c18c3c633226999e/lib-markup5ever @@ -0,0 +1 @@ +f2d41fc47033e81f \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-c18c3c633226999e/lib-markup5ever.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-c18c3c633226999e/lib-markup5ever.json new file mode 100644 index 0000000..d455116 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-c18c3c633226999e/lib-markup5ever.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":7456125560412827427,"profile":8276155916380437441,"path":16090091400190184061,"deps":[[2399633497816108991,"tendril",false,8130818123392665286],[3791929332532787956,"string_cache",false,12291272028438946940],[7359235151837888654,"build_script_build",false,14698892952572412552],[10630857666389190470,"log",false,13234583556802636384],[17186037756130803222,"phf",false,719888053787494730]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/markup5ever-c18c3c633226999e/dep-lib-markup5ever","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-d58ef83ba55c1305/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-d58ef83ba55c1305/run-build-script-build-script-build new file mode 100644 index 0000000..bc4640c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-d58ef83ba55c1305/run-build-script-build-script-build @@ -0,0 +1 @@ +8842922543f5fccb \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-d58ef83ba55c1305/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-d58ef83ba55c1305/run-build-script-build-script-build.json new file mode 100644 index 0000000..81c69e4 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-d58ef83ba55c1305/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[7359235151837888654,"build_script_build",false,6634922086416712734]],"local":[{"Precalculated":"0.12.1"}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-f4ab27bb4a83fcb5/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-f4ab27bb4a83fcb5/build-script-build-script-build new file mode 100644 index 0000000..d2ef980 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-f4ab27bb4a83fcb5/build-script-build-script-build @@ -0,0 +1 @@ +1e0443f97bfa135c \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-f4ab27bb4a83fcb5/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-f4ab27bb4a83fcb5/build-script-build-script-build.json new file mode 100644 index 0000000..d1c2073 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-f4ab27bb4a83fcb5/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":3033921117576893,"path":17205600533683944716,"deps":[[1280075590338009456,"phf_codegen",false,13285031643703246496],[11594986142849509546,"string_cache_codegen",false,13900183946269808174]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/markup5ever-f4ab27bb4a83fcb5/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-f4ab27bb4a83fcb5/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-f4ab27bb4a83fcb5/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-f4ab27bb4a83fcb5/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-f4ab27bb4a83fcb5/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-f4ab27bb4a83fcb5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/markup5ever-f4ab27bb4a83fcb5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/memchr-2d24d0bb92e43ade/dep-lib-memchr b/src-tauri/tms_service/target/owl/debug/.fingerprint/memchr-2d24d0bb92e43ade/dep-lib-memchr new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/memchr-2d24d0bb92e43ade/dep-lib-memchr differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/memchr-2d24d0bb92e43ade/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/memchr-2d24d0bb92e43ade/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/memchr-2d24d0bb92e43ade/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/memchr-2d24d0bb92e43ade/lib-memchr b/src-tauri/tms_service/target/owl/debug/.fingerprint/memchr-2d24d0bb92e43ade/lib-memchr new file mode 100644 index 0000000..1208251 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/memchr-2d24d0bb92e43ade/lib-memchr @@ -0,0 +1 @@ +99a8064a036f8be6 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/memchr-2d24d0bb92e43ade/lib-memchr.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/memchr-2d24d0bb92e43ade/lib-memchr.json new file mode 100644 index 0000000..6aacaeb --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/memchr-2d24d0bb92e43ade/lib-memchr.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"core\", \"default\", \"libc\", \"logging\", \"rustc-dep-of-std\", \"std\", \"use_std\"]","target":11745930252914242013,"profile":8276155916380437441,"path":1649453231475320305,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/memchr-2d24d0bb92e43ade/dep-lib-memchr","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/mime-6cb8d6c929e91b9a/dep-lib-mime b/src-tauri/tms_service/target/owl/debug/.fingerprint/mime-6cb8d6c929e91b9a/dep-lib-mime new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/mime-6cb8d6c929e91b9a/dep-lib-mime differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/mime-6cb8d6c929e91b9a/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/mime-6cb8d6c929e91b9a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/mime-6cb8d6c929e91b9a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/mime-6cb8d6c929e91b9a/lib-mime b/src-tauri/tms_service/target/owl/debug/.fingerprint/mime-6cb8d6c929e91b9a/lib-mime new file mode 100644 index 0000000..2b94ca7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/mime-6cb8d6c929e91b9a/lib-mime @@ -0,0 +1 @@ +d2057c22bc6304de \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/mime-6cb8d6c929e91b9a/lib-mime.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/mime-6cb8d6c929e91b9a/lib-mime.json new file mode 100644 index 0000000..7d4ae91 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/mime-6cb8d6c929e91b9a/lib-mime.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":2764086469773243511,"profile":8276155916380437441,"path":4986930804777546766,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/mime-6cb8d6c929e91b9a/dep-lib-mime","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/mio-46b41530ef20a618/dep-lib-mio b/src-tauri/tms_service/target/owl/debug/.fingerprint/mio-46b41530ef20a618/dep-lib-mio new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/mio-46b41530ef20a618/dep-lib-mio differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/mio-46b41530ef20a618/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/mio-46b41530ef20a618/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/mio-46b41530ef20a618/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/mio-46b41530ef20a618/lib-mio b/src-tauri/tms_service/target/owl/debug/.fingerprint/mio-46b41530ef20a618/lib-mio new file mode 100644 index 0000000..f188f35 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/mio-46b41530ef20a618/lib-mio @@ -0,0 +1 @@ +59500ae0f8f08dac \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/mio-46b41530ef20a618/lib-mio.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/mio-46b41530ef20a618/lib-mio.json new file mode 100644 index 0000000..8736fc8 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/mio-46b41530ef20a618/lib-mio.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"net\", \"os-ext\", \"os-poll\"]","declared_features":"[\"default\", \"log\", \"net\", \"os-ext\", \"os-poll\"]","target":5157902839847266895,"profile":12629022873115078082,"path":10615652944025322719,"deps":[[18365559012052052344,"libc",false,15297927699523733485]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/mio-46b41530ef20a618/dep-lib-mio","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-2850d7a33d8eef3a/dep-lib-native_tls b/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-2850d7a33d8eef3a/dep-lib-native_tls new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-2850d7a33d8eef3a/dep-lib-native_tls differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-2850d7a33d8eef3a/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-2850d7a33d8eef3a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-2850d7a33d8eef3a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-2850d7a33d8eef3a/lib-native_tls b/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-2850d7a33d8eef3a/lib-native_tls new file mode 100644 index 0000000..3fc6e88 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-2850d7a33d8eef3a/lib-native_tls @@ -0,0 +1 @@ +3192fcd3490571af \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-2850d7a33d8eef3a/lib-native_tls.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-2850d7a33d8eef3a/lib-native_tls.json new file mode 100644 index 0000000..0ec8b7e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-2850d7a33d8eef3a/lib-native_tls.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\"]","declared_features":"[\"alpn\", \"alpn-accept\", \"default\", \"vendored\"]","target":8591250366494295618,"profile":8276155916380437441,"path":9603337274094149691,"deps":[[3103006427892492725,"tempfile",false,14691829487270105765],[4680129552337248908,"security_framework_sys",false,17099870692615274098],[9144560277883153344,"build_script_build",false,1678675208588812155],[11320925355492709191,"security_framework",false,2752755174160116705],[18365559012052052344,"libc",false,15297927699523733485]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/native-tls-2850d7a33d8eef3a/dep-lib-native_tls","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-baaa5add28f621bf/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-baaa5add28f621bf/build-script-build-script-build new file mode 100644 index 0000000..e577960 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-baaa5add28f621bf/build-script-build-script-build @@ -0,0 +1 @@ +0683c124d1de8fba \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-baaa5add28f621bf/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-baaa5add28f621bf/build-script-build-script-build.json new file mode 100644 index 0000000..db388ad --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-baaa5add28f621bf/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\"]","declared_features":"[\"alpn\", \"alpn-accept\", \"default\", \"vendored\"]","target":5408242616063297496,"profile":3033921117576893,"path":14699090151988203523,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/native-tls-baaa5add28f621bf/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-baaa5add28f621bf/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-baaa5add28f621bf/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-baaa5add28f621bf/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-baaa5add28f621bf/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-baaa5add28f621bf/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-baaa5add28f621bf/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-c5cbe88a7e59497f/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-c5cbe88a7e59497f/run-build-script-build-script-build new file mode 100644 index 0000000..7938c84 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-c5cbe88a7e59497f/run-build-script-build-script-build @@ -0,0 +1 @@ +7bdf304d35da4b17 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-c5cbe88a7e59497f/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-c5cbe88a7e59497f/run-build-script-build-script-build.json new file mode 100644 index 0000000..6f12b71 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/native-tls-c5cbe88a7e59497f/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[9144560277883153344,"build_script_build",false,13443208402570412806]],"local":[{"Precalculated":"0.2.18"}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/dep-lib-debug_unreachable b/src-tauri/tms_service/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/dep-lib-debug_unreachable new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/dep-lib-debug_unreachable differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/lib-debug_unreachable b/src-tauri/tms_service/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/lib-debug_unreachable new file mode 100644 index 0000000..7b68d84 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/lib-debug_unreachable @@ -0,0 +1 @@ +b16c4a4216cb5f87 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/lib-debug_unreachable.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/lib-debug_unreachable.json new file mode 100644 index 0000000..df964a6 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/lib-debug_unreachable.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":7622437403250301378,"profile":8276155916380437441,"path":4262947987712254272,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/new_debug_unreachable-de20d0d9fb09bc9f/dep-lib-debug_unreachable","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/dep-lib-once_cell b/src-tauri/tms_service/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/dep-lib-once_cell new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/dep-lib-once_cell differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/lib-once_cell b/src-tauri/tms_service/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/lib-once_cell new file mode 100644 index 0000000..f61e22b --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/lib-once_cell @@ -0,0 +1 @@ +d53434bf2019eb85 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/lib-once_cell.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/lib-once_cell.json new file mode 100644 index 0000000..1627d84 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/once_cell-4c5c529dad6841fd/lib-once_cell.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"default\", \"race\", \"std\"]","declared_features":"[\"alloc\", \"atomic-polyfill\", \"critical-section\", \"default\", \"parking_lot\", \"portable-atomic\", \"race\", \"std\", \"unstable\"]","target":17524666916136250164,"profile":8276155916380437441,"path":2764379529893184722,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/once_cell-4c5c529dad6841fd/dep-lib-once_cell","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot-e5a4693dad116906/dep-lib-parking_lot b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot-e5a4693dad116906/dep-lib-parking_lot new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot-e5a4693dad116906/dep-lib-parking_lot differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot-e5a4693dad116906/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot-e5a4693dad116906/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot-e5a4693dad116906/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot-e5a4693dad116906/lib-parking_lot b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot-e5a4693dad116906/lib-parking_lot new file mode 100644 index 0000000..d63aa20 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot-e5a4693dad116906/lib-parking_lot @@ -0,0 +1 @@ +06e27903bedf04f1 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot-e5a4693dad116906/lib-parking_lot.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot-e5a4693dad116906/lib-parking_lot.json new file mode 100644 index 0000000..cac5bc2 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot-e5a4693dad116906/lib-parking_lot.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\"]","declared_features":"[\"arc_lock\", \"deadlock_detection\", \"default\", \"hardware-lock-elision\", \"nightly\", \"owning_ref\", \"send_guard\", \"serde\"]","target":9887373948397848517,"profile":8276155916380437441,"path":13372656015584342853,"deps":[[2555121257709722468,"lock_api",false,8578899182224325998],[6545091685033313457,"parking_lot_core",false,8486862183585358215]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/parking_lot-e5a4693dad116906/dep-lib-parking_lot","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-14f276a156fe5f64/dep-lib-parking_lot_core b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-14f276a156fe5f64/dep-lib-parking_lot_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-14f276a156fe5f64/dep-lib-parking_lot_core differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-14f276a156fe5f64/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-14f276a156fe5f64/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-14f276a156fe5f64/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-14f276a156fe5f64/lib-parking_lot_core b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-14f276a156fe5f64/lib-parking_lot_core new file mode 100644 index 0000000..1e0d824 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-14f276a156fe5f64/lib-parking_lot_core @@ -0,0 +1 @@ +87214dce3064c775 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-14f276a156fe5f64/lib-parking_lot_core.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-14f276a156fe5f64/lib-parking_lot_core.json new file mode 100644 index 0000000..3660dbd --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-14f276a156fe5f64/lib-parking_lot_core.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"backtrace\", \"deadlock_detection\", \"nightly\", \"petgraph\"]","target":12558056885032795287,"profile":8276155916380437441,"path":558987611046322390,"deps":[[3666196340704888985,"smallvec",false,6092863289377749396],[6545091685033313457,"build_script_build",false,14086723020987062219],[7667230146095136825,"cfg_if",false,9896960576737097503],[18365559012052052344,"libc",false,15297927699523733485]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/parking_lot_core-14f276a156fe5f64/dep-lib-parking_lot_core","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-bc347394e967b28d/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-bc347394e967b28d/build-script-build-script-build new file mode 100644 index 0000000..ac597fd --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-bc347394e967b28d/build-script-build-script-build @@ -0,0 +1 @@ +986f6d2d845a80d4 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-bc347394e967b28d/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-bc347394e967b28d/build-script-build-script-build.json new file mode 100644 index 0000000..ea380b0 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-bc347394e967b28d/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"backtrace\", \"deadlock_detection\", \"nightly\", \"petgraph\"]","target":5408242616063297496,"profile":3033921117576893,"path":5333789828210065403,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/parking_lot_core-bc347394e967b28d/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-bc347394e967b28d/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-bc347394e967b28d/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-bc347394e967b28d/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-bc347394e967b28d/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-bc347394e967b28d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-bc347394e967b28d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-d98f93d13955bb2e/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-d98f93d13955bb2e/run-build-script-build-script-build new file mode 100644 index 0000000..310cff4 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-d98f93d13955bb2e/run-build-script-build-script-build @@ -0,0 +1 @@ +cb5740f3f3177ec3 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-d98f93d13955bb2e/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-d98f93d13955bb2e/run-build-script-build-script-build.json new file mode 100644 index 0000000..f5af0e7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/parking_lot_core-d98f93d13955bb2e/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6545091685033313457,"build_script_build",false,15312338256804016024]],"local":[{"RerunIfChanged":{"output":"debug/build/parking_lot_core-d98f93d13955bb2e/output","paths":["build.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/percent-encoding-b65fc5a43e05656a/dep-lib-percent_encoding b/src-tauri/tms_service/target/owl/debug/.fingerprint/percent-encoding-b65fc5a43e05656a/dep-lib-percent_encoding new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/percent-encoding-b65fc5a43e05656a/dep-lib-percent_encoding differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/percent-encoding-b65fc5a43e05656a/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/percent-encoding-b65fc5a43e05656a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/percent-encoding-b65fc5a43e05656a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/percent-encoding-b65fc5a43e05656a/lib-percent_encoding b/src-tauri/tms_service/target/owl/debug/.fingerprint/percent-encoding-b65fc5a43e05656a/lib-percent_encoding new file mode 100644 index 0000000..6bf70ed --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/percent-encoding-b65fc5a43e05656a/lib-percent_encoding @@ -0,0 +1 @@ +8ee7cbcce5e792cd \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/percent-encoding-b65fc5a43e05656a/lib-percent_encoding.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/percent-encoding-b65fc5a43e05656a/lib-percent_encoding.json new file mode 100644 index 0000000..1820c91 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/percent-encoding-b65fc5a43e05656a/lib-percent_encoding.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":6219969305134610909,"profile":8276155916380437441,"path":11104829917061304528,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/percent-encoding-b65fc5a43e05656a/dep-lib-percent_encoding","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-238aac8c7b9a320e/dep-lib-phf b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-238aac8c7b9a320e/dep-lib-phf new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-238aac8c7b9a320e/dep-lib-phf differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-238aac8c7b9a320e/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-238aac8c7b9a320e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-238aac8c7b9a320e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-238aac8c7b9a320e/lib-phf b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-238aac8c7b9a320e/lib-phf new file mode 100644 index 0000000..d67e5b5 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-238aac8c7b9a320e/lib-phf @@ -0,0 +1 @@ +4a090dec5e8efd09 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-238aac8c7b9a320e/lib-phf.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-238aac8c7b9a320e/lib-phf.json new file mode 100644 index 0000000..a0604e0 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-238aac8c7b9a320e/lib-phf.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"macros\", \"phf_macros\", \"std\"]","declared_features":"[\"default\", \"macros\", \"phf_macros\", \"serde\", \"std\", \"uncased\", \"unicase\"]","target":10640910166656384580,"profile":8276155916380437441,"path":3770551232215580075,"deps":[[7564874552398678785,"phf_macros",false,6497538976987764397],[9060940869921439196,"phf_shared",false,9360327763364191838]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf-238aac8c7b9a320e/dep-lib-phf","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-a5e281d909db600d/dep-lib-phf b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-a5e281d909db600d/dep-lib-phf new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-a5e281d909db600d/dep-lib-phf differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-a5e281d909db600d/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-a5e281d909db600d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-a5e281d909db600d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-a5e281d909db600d/lib-phf b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-a5e281d909db600d/lib-phf new file mode 100644 index 0000000..6e1669f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-a5e281d909db600d/lib-phf @@ -0,0 +1 @@ +f0b28af7985bd2d9 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-a5e281d909db600d/lib-phf.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-a5e281d909db600d/lib-phf.json new file mode 100644 index 0000000..e770c78 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf-a5e281d909db600d/lib-phf.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"macros\", \"phf_macros\", \"proc-macro-hack\", \"serde\", \"std\", \"uncased\", \"unicase\"]","target":3117898612494421391,"profile":8276155916380437441,"path":13050512348035577473,"deps":[[2132929450596319411,"phf_shared",false,6596027217312206874]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf-a5e281d909db600d/dep-lib-phf","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-46f97fb85db18d14/dep-lib-phf_codegen b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-46f97fb85db18d14/dep-lib-phf_codegen new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-46f97fb85db18d14/dep-lib-phf_codegen differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-46f97fb85db18d14/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-46f97fb85db18d14/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-46f97fb85db18d14/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-46f97fb85db18d14/lib-phf_codegen b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-46f97fb85db18d14/lib-phf_codegen new file mode 100644 index 0000000..67b610e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-46f97fb85db18d14/lib-phf_codegen @@ -0,0 +1 @@ +279b2a1d621e9cf1 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-46f97fb85db18d14/lib-phf_codegen.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-46f97fb85db18d14/lib-phf_codegen.json new file mode 100644 index 0000000..c141556 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-46f97fb85db18d14/lib-phf_codegen.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":10627201688748800353,"profile":3033921117576893,"path":2640184637354120304,"deps":[[2132929450596319411,"phf_shared",false,16989110608943260674],[15690706847525356077,"phf_generator",false,15407109216165066049]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_codegen-46f97fb85db18d14/dep-lib-phf_codegen","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-744d5939194bb193/dep-lib-phf_codegen b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-744d5939194bb193/dep-lib-phf_codegen new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-744d5939194bb193/dep-lib-phf_codegen differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-744d5939194bb193/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-744d5939194bb193/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-744d5939194bb193/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-744d5939194bb193/lib-phf_codegen b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-744d5939194bb193/lib-phf_codegen new file mode 100644 index 0000000..1036b81 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-744d5939194bb193/lib-phf_codegen @@ -0,0 +1 @@ +a07ec190e4e95db8 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-744d5939194bb193/lib-phf_codegen.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-744d5939194bb193/lib-phf_codegen.json new file mode 100644 index 0000000..6c2c923 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_codegen-744d5939194bb193/lib-phf_codegen.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":4007019473634205266,"profile":3033921117576893,"path":16114921603904541884,"deps":[[9060940869921439196,"phf_shared",false,5938943122988981220],[18124350542602697595,"phf_generator",false,16521466806229273500]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_codegen-744d5939194bb193/dep-lib-phf_codegen","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-84046bf9ebb00ed7/dep-lib-phf_generator b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-84046bf9ebb00ed7/dep-lib-phf_generator new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-84046bf9ebb00ed7/dep-lib-phf_generator differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-84046bf9ebb00ed7/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-84046bf9ebb00ed7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-84046bf9ebb00ed7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-84046bf9ebb00ed7/lib-phf_generator b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-84046bf9ebb00ed7/lib-phf_generator new file mode 100644 index 0000000..40360ea --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-84046bf9ebb00ed7/lib-phf_generator @@ -0,0 +1 @@ +41752aa5330cd1d5 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-84046bf9ebb00ed7/lib-phf_generator.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-84046bf9ebb00ed7/lib-phf_generator.json new file mode 100644 index 0000000..7c2b227 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-84046bf9ebb00ed7/lib-phf_generator.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"criterion\"]","target":10230150387258866563,"profile":3033921117576893,"path":10252491202899702061,"deps":[[2132929450596319411,"phf_shared",false,16989110608943260674],[13208667028893622512,"rand",false,4564912293636729617]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_generator-84046bf9ebb00ed7/dep-lib-phf_generator","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-ca66433ef357a1d7/dep-lib-phf_generator b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-ca66433ef357a1d7/dep-lib-phf_generator new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-ca66433ef357a1d7/dep-lib-phf_generator differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-ca66433ef357a1d7/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-ca66433ef357a1d7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-ca66433ef357a1d7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-ca66433ef357a1d7/lib-phf_generator b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-ca66433ef357a1d7/lib-phf_generator new file mode 100644 index 0000000..22d5278 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-ca66433ef357a1d7/lib-phf_generator @@ -0,0 +1 @@ +9c0bb499860a48e5 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-ca66433ef357a1d7/lib-phf_generator.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-ca66433ef357a1d7/lib-phf_generator.json new file mode 100644 index 0000000..8958307 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_generator-ca66433ef357a1d7/lib-phf_generator.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"criterion\"]","target":4203241669981453472,"profile":3033921117576893,"path":11230546398072409261,"deps":[[9060940869921439196,"phf_shared",false,5938943122988981220],[13208667028893622512,"rand",false,4564912293636729617]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_generator-ca66433ef357a1d7/dep-lib-phf_generator","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_macros-2959eca873977a97/dep-lib-phf_macros b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_macros-2959eca873977a97/dep-lib-phf_macros new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_macros-2959eca873977a97/dep-lib-phf_macros differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_macros-2959eca873977a97/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_macros-2959eca873977a97/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_macros-2959eca873977a97/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_macros-2959eca873977a97/lib-phf_macros b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_macros-2959eca873977a97/lib-phf_macros new file mode 100644 index 0000000..5d3215b --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_macros-2959eca873977a97/lib-phf_macros @@ -0,0 +1 @@ +ad569c2d46e52b5a \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_macros-2959eca873977a97/lib-phf_macros.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_macros-2959eca873977a97/lib-phf_macros.json new file mode 100644 index 0000000..244d237 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_macros-2959eca873977a97/lib-phf_macros.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"unicase\", \"unicase_\"]","target":17891898593638043230,"profile":3033921117576893,"path":11697858029674195464,"deps":[[4289358735036141001,"proc_macro2",false,2021902520114475280],[6100504282945712449,"quote",false,14500808875298157531],[9060940869921439196,"phf_shared",false,5938943122988981220],[10420560437213941093,"syn",false,935482101193759173],[18124350542602697595,"phf_generator",false,16521466806229273500]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_macros-2959eca873977a97/dep-lib-phf_macros","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-72272db6351fa71b/dep-lib-phf_shared b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-72272db6351fa71b/dep-lib-phf_shared new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-72272db6351fa71b/dep-lib-phf_shared differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-72272db6351fa71b/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-72272db6351fa71b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-72272db6351fa71b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-72272db6351fa71b/lib-phf_shared b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-72272db6351fa71b/lib-phf_shared new file mode 100644 index 0000000..e3fb5ce --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-72272db6351fa71b/lib-phf_shared @@ -0,0 +1 @@ +e4db01f34d5d6b52 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-72272db6351fa71b/lib-phf_shared.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-72272db6351fa71b/lib-phf_shared.json new file mode 100644 index 0000000..59a5f73 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-72272db6351fa71b/lib-phf_shared.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\", \"uncased\", \"unicase\"]","target":13191988717353488301,"profile":3033921117576893,"path":16045028260159766411,"deps":[[6052281619638306186,"siphasher",false,4013655685839373605]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_shared-72272db6351fa71b/dep-lib-phf_shared","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/dep-lib-phf_shared b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/dep-lib-phf_shared new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/dep-lib-phf_shared differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/lib-phf_shared b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/lib-phf_shared new file mode 100644 index 0000000..7bba37b --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/lib-phf_shared @@ -0,0 +1 @@ +0224e22f1672c5eb \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/lib-phf_shared.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/lib-phf_shared.json new file mode 100644 index 0000000..4b54de7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/lib-phf_shared.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\", \"uncased\", \"unicase\"]","target":886472421596331379,"profile":3033921117576893,"path":17563638565876096459,"deps":[[8079500665534101559,"siphasher",false,6568460692945467855]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_shared-cdf7b96f714c2ffe/dep-lib-phf_shared","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/dep-lib-phf_shared b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/dep-lib-phf_shared new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/dep-lib-phf_shared differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/lib-phf_shared b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/lib-phf_shared new file mode 100644 index 0000000..071a7b2 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/lib-phf_shared @@ -0,0 +1 @@ +1ad0b390cecb895b \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/lib-phf_shared.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/lib-phf_shared.json new file mode 100644 index 0000000..db0f268 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-d820095d9f30a958/lib-phf_shared.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"std\"]","declared_features":"[\"default\", \"std\", \"uncased\", \"unicase\"]","target":886472421596331379,"profile":8276155916380437441,"path":17563638565876096459,"deps":[[8079500665534101559,"siphasher",false,9978222342595387305]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_shared-d820095d9f30a958/dep-lib-phf_shared","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-e86ba43a3113a033/dep-lib-phf_shared b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-e86ba43a3113a033/dep-lib-phf_shared new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-e86ba43a3113a033/dep-lib-phf_shared differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-e86ba43a3113a033/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-e86ba43a3113a033/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-e86ba43a3113a033/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-e86ba43a3113a033/lib-phf_shared b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-e86ba43a3113a033/lib-phf_shared new file mode 100644 index 0000000..9eb852a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-e86ba43a3113a033/lib-phf_shared @@ -0,0 +1 @@ +5e9e8cf48190e681 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-e86ba43a3113a033/lib-phf_shared.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-e86ba43a3113a033/lib-phf_shared.json new file mode 100644 index 0000000..52d16d8 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/phf_shared-e86ba43a3113a033/lib-phf_shared.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\", \"uncased\", \"unicase\"]","target":13191988717353488301,"profile":8276155916380437441,"path":16045028260159766411,"deps":[[6052281619638306186,"siphasher",false,15749051606356482015]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/phf_shared-e86ba43a3113a033/dep-lib-phf_shared","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-project-lite-fdb6f2f737f0a416/dep-lib-pin_project_lite b/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-project-lite-fdb6f2f737f0a416/dep-lib-pin_project_lite new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-project-lite-fdb6f2f737f0a416/dep-lib-pin_project_lite differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-project-lite-fdb6f2f737f0a416/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-project-lite-fdb6f2f737f0a416/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-project-lite-fdb6f2f737f0a416/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-project-lite-fdb6f2f737f0a416/lib-pin_project_lite b/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-project-lite-fdb6f2f737f0a416/lib-pin_project_lite new file mode 100644 index 0000000..96771d8 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-project-lite-fdb6f2f737f0a416/lib-pin_project_lite @@ -0,0 +1 @@ +842cc67a1e874477 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-project-lite-fdb6f2f737f0a416/lib-pin_project_lite.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-project-lite-fdb6f2f737f0a416/lib-pin_project_lite.json new file mode 100644 index 0000000..884a415 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-project-lite-fdb6f2f737f0a416/lib-pin_project_lite.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":7529200858990304138,"profile":7836895014288040385,"path":9867252742390408431,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/pin-project-lite-fdb6f2f737f0a416/dep-lib-pin_project_lite","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-utils-b7fd3d9367579158/dep-lib-pin_utils b/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-utils-b7fd3d9367579158/dep-lib-pin_utils new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-utils-b7fd3d9367579158/dep-lib-pin_utils differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-utils-b7fd3d9367579158/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-utils-b7fd3d9367579158/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-utils-b7fd3d9367579158/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-utils-b7fd3d9367579158/lib-pin_utils b/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-utils-b7fd3d9367579158/lib-pin_utils new file mode 100644 index 0000000..be96fcd --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-utils-b7fd3d9367579158/lib-pin_utils @@ -0,0 +1 @@ +2439a3694754c664 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-utils-b7fd3d9367579158/lib-pin_utils.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-utils-b7fd3d9367579158/lib-pin_utils.json new file mode 100644 index 0000000..98d3502 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/pin-utils-b7fd3d9367579158/lib-pin_utils.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":6142422912982997569,"profile":8276155916380437441,"path":335752549325231146,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/pin-utils-b7fd3d9367579158/dep-lib-pin_utils","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/potential_utf-55b7962b8a2ea7d6/dep-lib-potential_utf b/src-tauri/tms_service/target/owl/debug/.fingerprint/potential_utf-55b7962b8a2ea7d6/dep-lib-potential_utf new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/potential_utf-55b7962b8a2ea7d6/dep-lib-potential_utf differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/potential_utf-55b7962b8a2ea7d6/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/potential_utf-55b7962b8a2ea7d6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/potential_utf-55b7962b8a2ea7d6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/potential_utf-55b7962b8a2ea7d6/lib-potential_utf b/src-tauri/tms_service/target/owl/debug/.fingerprint/potential_utf-55b7962b8a2ea7d6/lib-potential_utf new file mode 100644 index 0000000..2ec1e3c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/potential_utf-55b7962b8a2ea7d6/lib-potential_utf @@ -0,0 +1 @@ +63b405ff42176772 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/potential_utf-55b7962b8a2ea7d6/lib-potential_utf.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/potential_utf-55b7962b8a2ea7d6/lib-potential_utf.json new file mode 100644 index 0000000..84b1874 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/potential_utf-55b7962b8a2ea7d6/lib-potential_utf.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"zerovec\"]","declared_features":"[\"alloc\", \"databake\", \"default\", \"serde\", \"writeable\", \"zerovec\"]","target":16089386906944150126,"profile":8276155916380437441,"path":10065084979137686580,"deps":[[14563910249377136032,"zerovec",false,5351667558201935435]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/potential_utf-55b7962b8a2ea7d6/dep-lib-potential_utf","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ppv-lite86-05224697cc478126/dep-lib-ppv_lite86 b/src-tauri/tms_service/target/owl/debug/.fingerprint/ppv-lite86-05224697cc478126/dep-lib-ppv_lite86 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/ppv-lite86-05224697cc478126/dep-lib-ppv_lite86 differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ppv-lite86-05224697cc478126/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/ppv-lite86-05224697cc478126/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/ppv-lite86-05224697cc478126/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ppv-lite86-05224697cc478126/lib-ppv_lite86 b/src-tauri/tms_service/target/owl/debug/.fingerprint/ppv-lite86-05224697cc478126/lib-ppv_lite86 new file mode 100644 index 0000000..8c50bb3 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/ppv-lite86-05224697cc478126/lib-ppv_lite86 @@ -0,0 +1 @@ +92afa2f3c7a406e3 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ppv-lite86-05224697cc478126/lib-ppv_lite86.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/ppv-lite86-05224697cc478126/lib-ppv_lite86.json new file mode 100644 index 0000000..ac508cf --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/ppv-lite86-05224697cc478126/lib-ppv_lite86.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"simd\", \"std\"]","declared_features":"[\"default\", \"no_simd\", \"simd\", \"std\"]","target":2607852365283500179,"profile":3033921117576893,"path":16631539534317957071,"deps":[[4878717189156408352,"zerocopy",false,12517459631018254328]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ppv-lite86-05224697cc478126/dep-lib-ppv_lite86","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/dep-lib-precomputed_hash b/src-tauri/tms_service/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/dep-lib-precomputed_hash new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/dep-lib-precomputed_hash differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/lib-precomputed_hash b/src-tauri/tms_service/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/lib-precomputed_hash new file mode 100644 index 0000000..c2fba69 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/lib-precomputed_hash @@ -0,0 +1 @@ +98171ea8cd449914 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/lib-precomputed_hash.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/lib-precomputed_hash.json new file mode 100644 index 0000000..b547a6c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/lib-precomputed_hash.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":18034549675578888011,"profile":8276155916380437441,"path":12339682501616810603,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/precomputed-hash-8ff83f9112c5d0ff/dep-lib-precomputed_hash","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-56b97d3ca67ea318/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-56b97d3ca67ea318/run-build-script-build-script-build new file mode 100644 index 0000000..322a324 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-56b97d3ca67ea318/run-build-script-build-script-build @@ -0,0 +1 @@ +9d6d4ed08a778ab7 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-56b97d3ca67ea318/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-56b97d3ca67ea318/run-build-script-build-script-build.json new file mode 100644 index 0000000..c62a469 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-56b97d3ca67ea318/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[4289358735036141001,"build_script_build",false,4220117515141734033]],"local":[{"RerunIfChanged":{"output":"debug/build/proc-macro2-56b97d3ca67ea318/output","paths":["src/probe/proc_macro_span.rs","src/probe/proc_macro_span.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-c68f226c30305477/dep-lib-proc_macro2 b/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-c68f226c30305477/dep-lib-proc_macro2 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-c68f226c30305477/dep-lib-proc_macro2 differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-c68f226c30305477/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-c68f226c30305477/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-c68f226c30305477/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-c68f226c30305477/lib-proc_macro2 b/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-c68f226c30305477/lib-proc_macro2 new file mode 100644 index 0000000..b0cc25f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-c68f226c30305477/lib-proc_macro2 @@ -0,0 +1 @@ +10f1e329a13d0f1c \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-c68f226c30305477/lib-proc_macro2.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-c68f226c30305477/lib-proc_macro2.json new file mode 100644 index 0000000..971dac8 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-c68f226c30305477/lib-proc_macro2.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":369203346396300798,"profile":3033921117576893,"path":10560241727464767472,"deps":[[4289358735036141001,"build_script_build",false,13225514693810875805],[8901712065508858692,"unicode_ident",false,16512481524021805875]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-c68f226c30305477/dep-lib-proc_macro2","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-f28970d9177e04fe/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-f28970d9177e04fe/build-script-build-script-build new file mode 100644 index 0000000..0aa50b0 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-f28970d9177e04fe/build-script-build-script-build @@ -0,0 +1 @@ +915e6d5885de903a \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-f28970d9177e04fe/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-f28970d9177e04fe/build-script-build-script-build.json new file mode 100644 index 0000000..09c0cf0 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-f28970d9177e04fe/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":5408242616063297496,"profile":3033921117576893,"path":9751624034905129368,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-f28970d9177e04fe/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-f28970d9177e04fe/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-f28970d9177e04fe/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-f28970d9177e04fe/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-f28970d9177e04fe/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-f28970d9177e04fe/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/proc-macro2-f28970d9177e04fe/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-320b6bd63425449d/dep-lib-quote b/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-320b6bd63425449d/dep-lib-quote new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-320b6bd63425449d/dep-lib-quote differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-320b6bd63425449d/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-320b6bd63425449d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-320b6bd63425449d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-320b6bd63425449d/lib-quote b/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-320b6bd63425449d/lib-quote new file mode 100644 index 0000000..41978dd --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-320b6bd63425449d/lib-quote @@ -0,0 +1 @@ +db73faefd7383dc9 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-320b6bd63425449d/lib-quote.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-320b6bd63425449d/lib-quote.json new file mode 100644 index 0000000..fe0a96e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-320b6bd63425449d/lib-quote.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":8313845041260779044,"profile":3033921117576893,"path":5892381817693324739,"deps":[[4289358735036141001,"proc_macro2",false,2021902520114475280],[6100504282945712449,"build_script_build",false,10076323795752250218]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/quote-320b6bd63425449d/dep-lib-quote","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-3927105fa2133ed9/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-3927105fa2133ed9/build-script-build-script-build new file mode 100644 index 0000000..23e0e65 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-3927105fa2133ed9/build-script-build-script-build @@ -0,0 +1 @@ +657ade1f0d0a0c12 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-3927105fa2133ed9/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-3927105fa2133ed9/build-script-build-script-build.json new file mode 100644 index 0000000..d1f2f9c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-3927105fa2133ed9/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":5408242616063297496,"profile":3033921117576893,"path":5699338728127542177,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/quote-3927105fa2133ed9/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-3927105fa2133ed9/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-3927105fa2133ed9/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-3927105fa2133ed9/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-3927105fa2133ed9/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-3927105fa2133ed9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-3927105fa2133ed9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-991ed0d757635f6d/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-991ed0d757635f6d/run-build-script-build-script-build new file mode 100644 index 0000000..b5a4e02 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-991ed0d757635f6d/run-build-script-build-script-build @@ -0,0 +1 @@ +6aeba0071b4bd68b \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-991ed0d757635f6d/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-991ed0d757635f6d/run-build-script-build-script-build.json new file mode 100644 index 0000000..b5d4486 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/quote-991ed0d757635f6d/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6100504282945712449,"build_script_build",false,1300425443888757349]],"local":[{"RerunIfChanged":{"output":"debug/build/quote-991ed0d757635f6d/output","paths":["build.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rand-bbca310661266201/dep-lib-rand b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand-bbca310661266201/dep-lib-rand new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand-bbca310661266201/dep-lib-rand differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rand-bbca310661266201/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand-bbca310661266201/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand-bbca310661266201/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rand-bbca310661266201/lib-rand b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand-bbca310661266201/lib-rand new file mode 100644 index 0000000..e8715cb --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand-bbca310661266201/lib-rand @@ -0,0 +1 @@ +11eb078d8bd3593f \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rand-bbca310661266201/lib-rand.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand-bbca310661266201/lib-rand.json new file mode 100644 index 0000000..fc6eaa0 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand-bbca310661266201/lib-rand.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"rand_chacha\", \"small_rng\", \"std\", \"std_rng\"]","declared_features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"log\", \"min_const_gen\", \"nightly\", \"packed_simd\", \"rand_chacha\", \"serde\", \"serde1\", \"simd_support\", \"small_rng\", \"std\", \"std_rng\"]","target":8827111241893198906,"profile":3033921117576893,"path":2297357063441996956,"deps":[[1573238666360410412,"rand_chacha",false,18217892689529921852],[18130209639506977569,"rand_core",false,14411989606177048413],[18365559012052052344,"libc",false,2945376947669535162]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand-bbca310661266201/dep-lib-rand","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_chacha-31ec861a020a01e9/dep-lib-rand_chacha b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_chacha-31ec861a020a01e9/dep-lib-rand_chacha new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_chacha-31ec861a020a01e9/dep-lib-rand_chacha differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_chacha-31ec861a020a01e9/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_chacha-31ec861a020a01e9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_chacha-31ec861a020a01e9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_chacha-31ec861a020a01e9/lib-rand_chacha b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_chacha-31ec861a020a01e9/lib-rand_chacha new file mode 100644 index 0000000..aff9066 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_chacha-31ec861a020a01e9/lib-rand_chacha @@ -0,0 +1 @@ +3ce19debe0f4d2fc \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_chacha-31ec861a020a01e9/lib-rand_chacha.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_chacha-31ec861a020a01e9/lib-rand_chacha.json new file mode 100644 index 0000000..a9e0f36 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_chacha-31ec861a020a01e9/lib-rand_chacha.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"std\"]","declared_features":"[\"default\", \"serde\", \"serde1\", \"simd\", \"std\"]","target":15766068575093147603,"profile":3033921117576893,"path":15469373326032794104,"deps":[[12919011715531272606,"ppv_lite86",false,16358943875162877842],[18130209639506977569,"rand_core",false,14411989606177048413]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_chacha-31ec861a020a01e9/dep-lib-rand_chacha","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_core-d91b9ad9e43e8e8a/dep-lib-rand_core b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_core-d91b9ad9e43e8e8a/dep-lib-rand_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_core-d91b9ad9e43e8e8a/dep-lib-rand_core differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_core-d91b9ad9e43e8e8a/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_core-d91b9ad9e43e8e8a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_core-d91b9ad9e43e8e8a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_core-d91b9ad9e43e8e8a/lib-rand_core b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_core-d91b9ad9e43e8e8a/lib-rand_core new file mode 100644 index 0000000..7ecf8b8 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_core-d91b9ad9e43e8e8a/lib-rand_core @@ -0,0 +1 @@ +5d07ce5630ac01c8 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_core-d91b9ad9e43e8e8a/lib-rand_core.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_core-d91b9ad9e43e8e8a/lib-rand_core.json new file mode 100644 index 0000000..0d8ec5d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/rand_core-d91b9ad9e43e8e8a/lib-rand_core.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"getrandom\", \"std\"]","declared_features":"[\"alloc\", \"getrandom\", \"serde\", \"serde1\", \"std\"]","target":13770603672348587087,"profile":3033921117576893,"path":12942933456727152248,"deps":[[11023519408959114924,"getrandom",false,15318409686120490021]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_core-d91b9ad9e43e8e8a/dep-lib-rand_core","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-7948c90605c550d5/dep-lib-regex b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-7948c90605c550d5/dep-lib-regex new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-7948c90605c550d5/dep-lib-regex differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-7948c90605c550d5/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-7948c90605c550d5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-7948c90605c550d5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-7948c90605c550d5/lib-regex b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-7948c90605c550d5/lib-regex new file mode 100644 index 0000000..7eabfe4 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-7948c90605c550d5/lib-regex @@ -0,0 +1 @@ +f8f23297517b5a3c \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-7948c90605c550d5/lib-regex.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-7948c90605c550d5/lib-regex.json new file mode 100644 index 0000000..a948f9d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-7948c90605c550d5/lib-regex.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"perf\", \"perf-backtrack\", \"perf-cache\", \"perf-dfa\", \"perf-inline\", \"perf-literal\", \"perf-onepass\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","declared_features":"[\"default\", \"logging\", \"pattern\", \"perf\", \"perf-backtrack\", \"perf-cache\", \"perf-dfa\", \"perf-dfa-full\", \"perf-inline\", \"perf-literal\", \"perf-onepass\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unstable\", \"use_std\"]","target":5796931310894148030,"profile":11044013486051932311,"path":384709317777545400,"deps":[[1363051979936526615,"memchr",false,16612493710403741849],[3621165330500844947,"regex_automata",false,10155931991498138690],[10416805354619491843,"regex_syntax",false,17814408054920895643],[15324871377471570981,"aho_corasick",false,12398697449464974786]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-7948c90605c550d5/dep-lib-regex","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-automata-7a08b7f502c7937e/dep-lib-regex_automata b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-automata-7a08b7f502c7937e/dep-lib-regex_automata new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-automata-7a08b7f502c7937e/dep-lib-regex_automata differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-automata-7a08b7f502c7937e/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-automata-7a08b7f502c7937e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-automata-7a08b7f502c7937e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-automata-7a08b7f502c7937e/lib-regex_automata b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-automata-7a08b7f502c7937e/lib-regex_automata new file mode 100644 index 0000000..202d651 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-automata-7a08b7f502c7937e/lib-regex_automata @@ -0,0 +1 @@ +42a4457c561ef18c \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-automata-7a08b7f502c7937e/lib-regex_automata.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-automata-7a08b7f502c7937e/lib-regex_automata.json new file mode 100644 index 0000000..1d504d9 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-automata-7a08b7f502c7937e/lib-regex_automata.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"dfa-onepass\", \"hybrid\", \"meta\", \"nfa-backtrack\", \"nfa-pikevm\", \"nfa-thompson\", \"perf-inline\", \"perf-literal\", \"perf-literal-multisubstring\", \"perf-literal-substring\", \"std\", \"syntax\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unicode-word-boundary\"]","declared_features":"[\"alloc\", \"default\", \"dfa\", \"dfa-build\", \"dfa-onepass\", \"dfa-search\", \"hybrid\", \"internal-instrument\", \"internal-instrument-pikevm\", \"logging\", \"meta\", \"nfa\", \"nfa-backtrack\", \"nfa-pikevm\", \"nfa-thompson\", \"perf\", \"perf-inline\", \"perf-literal\", \"perf-literal-multisubstring\", \"perf-literal-substring\", \"std\", \"syntax\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unicode-word-boundary\"]","target":4726246767843925232,"profile":11044013486051932311,"path":12042693391456671126,"deps":[[1363051979936526615,"memchr",false,16612493710403741849],[10416805354619491843,"regex_syntax",false,17814408054920895643],[15324871377471570981,"aho_corasick",false,12398697449464974786]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-automata-7a08b7f502c7937e/dep-lib-regex_automata","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-syntax-0b33485b2d934ee7/dep-lib-regex_syntax b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-syntax-0b33485b2d934ee7/dep-lib-regex_syntax new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-syntax-0b33485b2d934ee7/dep-lib-regex_syntax differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-syntax-0b33485b2d934ee7/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-syntax-0b33485b2d934ee7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-syntax-0b33485b2d934ee7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-syntax-0b33485b2d934ee7/lib-regex_syntax b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-syntax-0b33485b2d934ee7/lib-regex_syntax new file mode 100644 index 0000000..e94ac89 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-syntax-0b33485b2d934ee7/lib-regex_syntax @@ -0,0 +1 @@ +9bdc6abdbd7d39f7 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-syntax-0b33485b2d934ee7/lib-regex_syntax.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-syntax-0b33485b2d934ee7/lib-regex_syntax.json new file mode 100644 index 0000000..d47c9ef --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/regex-syntax-0b33485b2d934ee7/lib-regex_syntax.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","declared_features":"[\"arbitrary\", \"default\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","target":742186494246220192,"profile":11044013486051932311,"path":3054408465721289592,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-syntax-0b33485b2d934ee7/dep-lib-regex_syntax","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/reqwest-e3265ed90e9fba04/dep-lib-reqwest b/src-tauri/tms_service/target/owl/debug/.fingerprint/reqwest-e3265ed90e9fba04/dep-lib-reqwest new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/reqwest-e3265ed90e9fba04/dep-lib-reqwest differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/reqwest-e3265ed90e9fba04/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/reqwest-e3265ed90e9fba04/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/reqwest-e3265ed90e9fba04/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/reqwest-e3265ed90e9fba04/lib-reqwest b/src-tauri/tms_service/target/owl/debug/.fingerprint/reqwest-e3265ed90e9fba04/lib-reqwest new file mode 100644 index 0000000..cd3c8ee --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/reqwest-e3265ed90e9fba04/lib-reqwest @@ -0,0 +1 @@ +68307940100b3c0a \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/reqwest-e3265ed90e9fba04/lib-reqwest.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/reqwest-e3265ed90e9fba04/lib-reqwest.json new file mode 100644 index 0000000..2c4398a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/reqwest-e3265ed90e9fba04/lib-reqwest.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"__tls\", \"charset\", \"default\", \"default-tls\", \"h2\", \"http2\", \"system-proxy\"]","declared_features":"[\"__rustls\", \"__rustls-ring\", \"__tls\", \"blocking\", \"brotli\", \"charset\", \"cookies\", \"default\", \"default-tls\", \"deflate\", \"gzip\", \"h2\", \"hickory-dns\", \"http2\", \"http3\", \"json\", \"macos-system-configuration\", \"multipart\", \"native-tls\", \"native-tls-alpn\", \"native-tls-vendored\", \"rustls-tls\", \"rustls-tls-manual-roots\", \"rustls-tls-manual-roots-no-provider\", \"rustls-tls-native-roots\", \"rustls-tls-native-roots-no-provider\", \"rustls-tls-no-provider\", \"rustls-tls-webpki-roots\", \"rustls-tls-webpki-roots-no-provider\", \"socks\", \"stream\", \"system-proxy\", \"trust-dns\", \"zstd\"]","target":8885864859914201979,"profile":10900257523021023328,"path":3589951992368773297,"deps":[[302948626015856208,"futures_core",false,495371792585833672],[784494742817713399,"tower_service",false,3963567562716476514],[1528297757488249563,"url",false,14598316748566273988],[1906322745568073236,"pin_project_lite",false,8594142553908325508],[2517136641825875337,"sync_wrapper",false,5460373350006244066],[2620434475832828286,"http",false,7993496129830204808],[3158163345960637315,"h2",false,6851173689815081845],[3632162862999675140,"tower",false,18140702944381726056],[3870702314125662939,"bytes",false,803313357563162728],[4160778395972110362,"hyper",false,1713027485884488650],[6803352382179706244,"percent_encoding",false,14813157098544424846],[8434721349366383850,"tower_http",false,6221996239368989304],[9144560277883153344,"native_tls_crate",false,12641891443652989489],[10229185211513642314,"mime",false,15998021436010399186],[10630857666389190470,"log",false,13234583556802636384],[11976082518617474977,"hyper_util",false,15860460920476440401],[12186126227181294540,"tokio_native_tls",false,2256678380334445433],[12891030758458664808,"tokio",false,1167986652861127869],[13077212702700853852,"base64",false,16069490410806379632],[13548984313718623784,"serde",false,9442752412494499714],[14084095096285906100,"http_body",false,17311863340345219060],[14564311161534545801,"encoding_rs",false,6653879545195183979],[16542808166767769916,"serde_urlencoded",false,7359399924123683069],[16900715236047033623,"http_body_util",false,11820827480125131316],[17894305664988315121,"rustls_pki_types",false,16863062667314264923],[18273243456331255970,"hyper_tls",false,12725166614122348864]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/reqwest-e3265ed90e9fba04/dep-lib-reqwest","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-5126330b377e73ba/dep-lib-rustix b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-5126330b377e73ba/dep-lib-rustix new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-5126330b377e73ba/dep-lib-rustix differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-5126330b377e73ba/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-5126330b377e73ba/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-5126330b377e73ba/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-5126330b377e73ba/lib-rustix b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-5126330b377e73ba/lib-rustix new file mode 100644 index 0000000..8951d25 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-5126330b377e73ba/lib-rustix @@ -0,0 +1 @@ +f11afd0bb609847c \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-5126330b377e73ba/lib-rustix.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-5126330b377e73ba/lib-rustix.json new file mode 100644 index 0000000..3f48309 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-5126330b377e73ba/lib-rustix.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"default\", \"fs\", \"std\"]","declared_features":"[\"all-apis\", \"alloc\", \"core\", \"default\", \"event\", \"fs\", \"io_uring\", \"libc\", \"libc_errno\", \"linux_4_11\", \"linux_5_1\", \"linux_5_11\", \"linux_latest\", \"mm\", \"mount\", \"net\", \"param\", \"pipe\", \"process\", \"pty\", \"rand\", \"runtime\", \"rustc-dep-of-std\", \"rustc-std-workspace-alloc\", \"shm\", \"std\", \"stdio\", \"system\", \"termios\", \"thread\", \"time\", \"try_close\", \"use-explicitly-provided-auxv\", \"use-libc\", \"use-libc-auxv\"]","target":16221545317719767766,"profile":1635897669010708261,"path":17989335153338113738,"deps":[[3666973139609465052,"libc_errno",false,17750428370799952747],[16909888598953886583,"bitflags",false,6382571591599587820],[18365559012052052344,"libc",false,15297927699523733485],[18407532691439737072,"build_script_build",false,10298672119970411550]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rustix-5126330b377e73ba/dep-lib-rustix","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-a1a15ac22aba0ae5/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-a1a15ac22aba0ae5/run-build-script-build-script-build new file mode 100644 index 0000000..be8b294 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-a1a15ac22aba0ae5/run-build-script-build-script-build @@ -0,0 +1 @@ +1e340e79ba3bec8e \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-a1a15ac22aba0ae5/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-a1a15ac22aba0ae5/run-build-script-build-script-build.json new file mode 100644 index 0000000..edc0ae1 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-a1a15ac22aba0ae5/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[18407532691439737072,"build_script_build",false,15780934705924718365]],"local":[{"RerunIfChanged":{"output":"debug/build/rustix-a1a15ac22aba0ae5/output","paths":["build.rs"]}},{"RerunIfEnvChanged":{"var":"CARGO_CFG_RUSTIX_USE_EXPERIMENTAL_ASM","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_CFG_RUSTIX_USE_LIBC","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_FEATURE_USE_LIBC","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_FEATURE_RUSTC_DEP_OF_STD","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_CFG_MIRI","val":null}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-a3aa635e15144d4d/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-a3aa635e15144d4d/build-script-build-script-build new file mode 100644 index 0000000..b5ebc73 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-a3aa635e15144d4d/build-script-build-script-build @@ -0,0 +1 @@ +1dbf460a812401db \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-a3aa635e15144d4d/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-a3aa635e15144d4d/build-script-build-script-build.json new file mode 100644 index 0000000..244690c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-a3aa635e15144d4d/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"default\", \"fs\", \"std\"]","declared_features":"[\"all-apis\", \"alloc\", \"core\", \"default\", \"event\", \"fs\", \"io_uring\", \"libc\", \"libc_errno\", \"linux_4_11\", \"linux_5_1\", \"linux_5_11\", \"linux_latest\", \"mm\", \"mount\", \"net\", \"param\", \"pipe\", \"process\", \"pty\", \"rand\", \"runtime\", \"rustc-dep-of-std\", \"rustc-std-workspace-alloc\", \"shm\", \"std\", \"stdio\", \"system\", \"termios\", \"thread\", \"time\", \"try_close\", \"use-explicitly-provided-auxv\", \"use-libc\", \"use-libc-auxv\"]","target":5408242616063297496,"profile":14761406958021643763,"path":11746126020057690315,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rustix-a3aa635e15144d4d/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-a3aa635e15144d4d/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-a3aa635e15144d4d/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-a3aa635e15144d4d/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-a3aa635e15144d4d/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-a3aa635e15144d4d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustix-a3aa635e15144d4d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rustls-pki-types-dd4dd9abcfd7f488/dep-lib-rustls_pki_types b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustls-pki-types-dd4dd9abcfd7f488/dep-lib-rustls_pki_types new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustls-pki-types-dd4dd9abcfd7f488/dep-lib-rustls_pki_types differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rustls-pki-types-dd4dd9abcfd7f488/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustls-pki-types-dd4dd9abcfd7f488/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustls-pki-types-dd4dd9abcfd7f488/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rustls-pki-types-dd4dd9abcfd7f488/lib-rustls_pki_types b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustls-pki-types-dd4dd9abcfd7f488/lib-rustls_pki_types new file mode 100644 index 0000000..4064bed --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustls-pki-types-dd4dd9abcfd7f488/lib-rustls_pki_types @@ -0,0 +1 @@ +5bfb6ace26a205ea \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/rustls-pki-types-dd4dd9abcfd7f488/lib-rustls_pki_types.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustls-pki-types-dd4dd9abcfd7f488/lib-rustls_pki_types.json new file mode 100644 index 0000000..d12fe5c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/rustls-pki-types-dd4dd9abcfd7f488/lib-rustls_pki_types.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\", \"web\", \"web-time\"]","target":10881799483833257506,"profile":18120794694162342111,"path":10126596726253165674,"deps":[[12865141776541797048,"zeroize",false,15044213292279427496]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rustls-pki-types-dd4dd9abcfd7f488/dep-lib-rustls_pki_types","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ryu-6fbd47e41f3a3ca2/dep-lib-ryu b/src-tauri/tms_service/target/owl/debug/.fingerprint/ryu-6fbd47e41f3a3ca2/dep-lib-ryu new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/ryu-6fbd47e41f3a3ca2/dep-lib-ryu differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ryu-6fbd47e41f3a3ca2/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/ryu-6fbd47e41f3a3ca2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/ryu-6fbd47e41f3a3ca2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ryu-6fbd47e41f3a3ca2/lib-ryu b/src-tauri/tms_service/target/owl/debug/.fingerprint/ryu-6fbd47e41f3a3ca2/lib-ryu new file mode 100644 index 0000000..73a194e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/ryu-6fbd47e41f3a3ca2/lib-ryu @@ -0,0 +1 @@ +1ff9406dfdf7c923 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/ryu-6fbd47e41f3a3ca2/lib-ryu.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/ryu-6fbd47e41f3a3ca2/lib-ryu.json new file mode 100644 index 0000000..3056029 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/ryu-6fbd47e41f3a3ca2/lib-ryu.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"no-panic\", \"small\"]","target":13763186580977333631,"profile":8276155916380437441,"path":16160553467772167436,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ryu-6fbd47e41f3a3ca2/dep-lib-ryu","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/dep-lib-scopeguard b/src-tauri/tms_service/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/dep-lib-scopeguard new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/dep-lib-scopeguard differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/lib-scopeguard b/src-tauri/tms_service/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/lib-scopeguard new file mode 100644 index 0000000..7183bbc --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/lib-scopeguard @@ -0,0 +1 @@ +61eaba5dd0d3bb31 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/lib-scopeguard.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/lib-scopeguard.json new file mode 100644 index 0000000..689d980 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/lib-scopeguard.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"default\", \"use_std\"]","target":3556356971060988614,"profile":8276155916380437441,"path":885833570584633668,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/scopeguard-c08493d5b2a6fcb7/dep-lib-scopeguard","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/scraper-5b1a306f108dc975/dep-lib-scraper b/src-tauri/tms_service/target/owl/debug/.fingerprint/scraper-5b1a306f108dc975/dep-lib-scraper new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/scraper-5b1a306f108dc975/dep-lib-scraper differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/scraper-5b1a306f108dc975/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/scraper-5b1a306f108dc975/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/scraper-5b1a306f108dc975/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/scraper-5b1a306f108dc975/lib-scraper b/src-tauri/tms_service/target/owl/debug/.fingerprint/scraper-5b1a306f108dc975/lib-scraper new file mode 100644 index 0000000..8c7584a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/scraper-5b1a306f108dc975/lib-scraper @@ -0,0 +1 @@ +a3aa8c47b699ee42 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/scraper-5b1a306f108dc975/lib-scraper.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/scraper-5b1a306f108dc975/lib-scraper.json new file mode 100644 index 0000000..ee3af1f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/scraper-5b1a306f108dc975/lib-scraper.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"errors\", \"getopts\", \"main\"]","declared_features":"[\"atomic\", \"default\", \"deterministic\", \"errors\", \"getopts\", \"indexmap\", \"main\"]","target":678004358678959319,"profile":8276155916380437441,"path":123666986528478429,"deps":[[966925859616469517,"ahash",false,10646412664456787413],[2399633497816108991,"tendril",false,8130818123392665286],[3722963349756955755,"once_cell",false,9649834255008937173],[5658260411229319297,"selectors",false,16439431125471509221],[6894592641856567887,"html5ever",false,2761956507605498771],[7492350663910880704,"cssparser",false,1349606435679946281],[12290581011641529047,"ego_tree",false,3025596892505639010],[14686689205187145500,"getopts",false,18256729702223505858]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/scraper-5b1a306f108dc975/dep-lib-scraper","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-fc1afd27b787b4d4/dep-lib-security_framework b/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-fc1afd27b787b4d4/dep-lib-security_framework new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-fc1afd27b787b4d4/dep-lib-security_framework differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-fc1afd27b787b4d4/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-fc1afd27b787b4d4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-fc1afd27b787b4d4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-fc1afd27b787b4d4/lib-security_framework b/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-fc1afd27b787b4d4/lib-security_framework new file mode 100644 index 0000000..44ef879 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-fc1afd27b787b4d4/lib-security_framework @@ -0,0 +1 @@ +e1ab6e053fc03326 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-fc1afd27b787b4d4/lib-security_framework.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-fc1afd27b787b4d4/lib-security_framework.json new file mode 100644 index 0000000..313beab --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-fc1afd27b787b4d4/lib-security_framework.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"OSX_10_14\", \"alpn\", \"default\", \"session-tickets\"]","declared_features":"[\"OSX_10_12\", \"OSX_10_13\", \"OSX_10_14\", \"OSX_10_15\", \"alpn\", \"default\", \"job-bless\", \"log\", \"macos-12\", \"nightly\", \"session-tickets\", \"sync-keychain\"]","target":7511979608159941554,"profile":3257467264450303931,"path":12711383708967369142,"deps":[[4680129552337248908,"security_framework_sys",false,17099870692615274098],[12589608519315293066,"core_foundation_sys",false,6229227055244689248],[15780690857268675611,"core_foundation",false,2881156352015432132],[16909888598953886583,"bitflags",false,6382571591599587820],[18365559012052052344,"libc",false,15297927699523733485]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/security-framework-fc1afd27b787b4d4/dep-lib-security_framework","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-sys-3735606d09f09fa0/dep-lib-security_framework_sys b/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-sys-3735606d09f09fa0/dep-lib-security_framework_sys new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-sys-3735606d09f09fa0/dep-lib-security_framework_sys differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-sys-3735606d09f09fa0/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-sys-3735606d09f09fa0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-sys-3735606d09f09fa0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-sys-3735606d09f09fa0/lib-security_framework_sys b/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-sys-3735606d09f09fa0/lib-security_framework_sys new file mode 100644 index 0000000..1b29a7a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-sys-3735606d09f09fa0/lib-security_framework_sys @@ -0,0 +1 @@ +723e72c2cbf14eed \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-sys-3735606d09f09fa0/lib-security_framework_sys.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-sys-3735606d09f09fa0/lib-security_framework_sys.json new file mode 100644 index 0000000..0ddbda3 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/security-framework-sys-3735606d09f09fa0/lib-security_framework_sys.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"OSX_10_13\", \"default\"]","declared_features":"[\"OSX_10_10\", \"OSX_10_11\", \"OSX_10_12\", \"OSX_10_13\", \"OSX_10_14\", \"OSX_10_15\", \"OSX_10_9\", \"default\", \"macos-12\"]","target":16383770981727416183,"profile":3257467264450303931,"path":16258914532428213104,"deps":[[12589608519315293066,"core_foundation_sys",false,6229227055244689248],[18365559012052052344,"libc",false,15297927699523733485]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/security-framework-sys-3735606d09f09fa0/dep-lib-security_framework_sys","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-5eab97f267ab567b/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-5eab97f267ab567b/run-build-script-build-script-build new file mode 100644 index 0000000..bb4e6f4 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-5eab97f267ab567b/run-build-script-build-script-build @@ -0,0 +1 @@ +37c2d3ccc997aac0 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-5eab97f267ab567b/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-5eab97f267ab567b/run-build-script-build-script-build.json new file mode 100644 index 0000000..22c04c5 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-5eab97f267ab567b/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[5658260411229319297,"build_script_build",false,8680297529022842902]],"local":[{"Precalculated":"0.25.0"}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-643d1d3996810645/dep-lib-selectors b/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-643d1d3996810645/dep-lib-selectors new file mode 100644 index 0000000..cd56cd9 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-643d1d3996810645/dep-lib-selectors differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-643d1d3996810645/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-643d1d3996810645/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-643d1d3996810645/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-643d1d3996810645/lib-selectors b/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-643d1d3996810645/lib-selectors new file mode 100644 index 0000000..73bec24 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-643d1d3996810645/lib-selectors @@ -0,0 +1 @@ +e5ba3a3f829724e4 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-643d1d3996810645/lib-selectors.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-643d1d3996810645/lib-selectors.json new file mode 100644 index 0000000..766b6ba --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-643d1d3996810645/lib-selectors.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"bench\"]","target":18301272685162166244,"profile":8276155916380437441,"path":2177853817784095536,"deps":[[403167652641725433,"servo_arc",false,372391610833776846],[1764276339024939380,"phf",false,15695708363885818608],[2687729594444538932,"debug_unreachable",false,9754738614369676465],[3666196340704888985,"smallvec",false,6092863289377749396],[5658260411229319297,"build_script_build",false,13883075694303625783],[6995234255362136112,"precomputed_hash",false,1484293202274817944],[7492350663910880704,"cssparser",false,1349606435679946281],[7521345276086848634,"fxhash",false,2871866408467999720],[9504753771229857410,"derive_more",false,6107176746892148307],[10630857666389190470,"log",false,13234583556802636384],[16909888598953886583,"bitflags",false,6382571591599587820]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/selectors-643d1d3996810645/dep-lib-selectors","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-9d4294a412797c05/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-9d4294a412797c05/build-script-build-script-build new file mode 100644 index 0000000..848222e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-9d4294a412797c05/build-script-build-script-build @@ -0,0 +1 @@ +16881bca9c9c7678 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-9d4294a412797c05/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-9d4294a412797c05/build-script-build-script-build.json new file mode 100644 index 0000000..fbefb46 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-9d4294a412797c05/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"bench\"]","target":12318548087768197662,"profile":3033921117576893,"path":13472646309042386456,"deps":[[8351446744408386070,"phf_codegen",false,17409823666252454695]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/selectors-9d4294a412797c05/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-9d4294a412797c05/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-9d4294a412797c05/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-9d4294a412797c05/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-9d4294a412797c05/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-9d4294a412797c05/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/selectors-9d4294a412797c05/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-0bbedde18dd46c3e/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-0bbedde18dd46c3e/build-script-build-script-build new file mode 100644 index 0000000..bb2fdee --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-0bbedde18dd46c3e/build-script-build-script-build @@ -0,0 +1 @@ +b5ddaf794c96a536 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-0bbedde18dd46c3e/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-0bbedde18dd46c3e/build-script-build-script-build.json new file mode 100644 index 0000000..95f2eb6 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-0bbedde18dd46c3e/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"derive\", \"serde_derive\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":3033921117576893,"path":3915824776746520114,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-0bbedde18dd46c3e/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-0bbedde18dd46c3e/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-0bbedde18dd46c3e/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-0bbedde18dd46c3e/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-0bbedde18dd46c3e/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-0bbedde18dd46c3e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-0bbedde18dd46c3e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-364c5a38eb656508/dep-lib-serde b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-364c5a38eb656508/dep-lib-serde new file mode 100644 index 0000000..f73ac06 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-364c5a38eb656508/dep-lib-serde differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-364c5a38eb656508/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-364c5a38eb656508/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-364c5a38eb656508/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-364c5a38eb656508/lib-serde b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-364c5a38eb656508/lib-serde new file mode 100644 index 0000000..be3bcd1 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-364c5a38eb656508/lib-serde @@ -0,0 +1 @@ +828fb2104a650b83 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-364c5a38eb656508/lib-serde.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-364c5a38eb656508/lib-serde.json new file mode 100644 index 0000000..32db20e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-364c5a38eb656508/lib-serde.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"derive\", \"serde_derive\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":11327258112168116673,"profile":8276155916380437441,"path":17963407281273521723,"deps":[[3051629642231505422,"serde_derive",false,12729093203795118660],[11899261697793765154,"serde_core",false,16577982008370097196],[13548984313718623784,"build_script_build",false,10083373468310674860]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-364c5a38eb656508/dep-lib-serde","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-a42d2041820f825d/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-a42d2041820f825d/run-build-script-build-script-build new file mode 100644 index 0000000..61101eb --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-a42d2041820f825d/run-build-script-build-script-build @@ -0,0 +1 @@ +ac9d41d4be56ef8b \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-a42d2041820f825d/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-a42d2041820f825d/run-build-script-build-script-build.json new file mode 100644 index 0000000..caf7ac5 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde-a42d2041820f825d/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13548984313718623784,"build_script_build",false,3937718704408616373]],"local":[{"RerunIfChanged":{"output":"debug/build/serde-a42d2041820f825d/output","paths":["build.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-02c6f34449303cd1/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-02c6f34449303cd1/build-script-build-script-build new file mode 100644 index 0000000..2e9149c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-02c6f34449303cd1/build-script-build-script-build @@ -0,0 +1 @@ +ab85f3306e7e135c \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-02c6f34449303cd1/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-02c6f34449303cd1/build-script-build-script-build.json new file mode 100644 index 0000000..b69d2ac --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-02c6f34449303cd1/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":3033921117576893,"path":12796296926014631343,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_core-02c6f34449303cd1/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-02c6f34449303cd1/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-02c6f34449303cd1/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-02c6f34449303cd1/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-02c6f34449303cd1/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-02c6f34449303cd1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-02c6f34449303cd1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-ac9f929e4e902d24/dep-lib-serde_core b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-ac9f929e4e902d24/dep-lib-serde_core new file mode 100644 index 0000000..b873b60 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-ac9f929e4e902d24/dep-lib-serde_core differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-ac9f929e4e902d24/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-ac9f929e4e902d24/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-ac9f929e4e902d24/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-ac9f929e4e902d24/lib-serde_core b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-ac9f929e4e902d24/lib-serde_core new file mode 100644 index 0000000..8be4e87 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-ac9f929e4e902d24/lib-serde_core @@ -0,0 +1 @@ +2c6cb77dcdd210e6 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-ac9f929e4e902d24/lib-serde_core.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-ac9f929e4e902d24/lib-serde_core.json new file mode 100644 index 0000000..9eec1ff --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-ac9f929e4e902d24/lib-serde_core.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":6810695588070812737,"profile":8276155916380437441,"path":9766448819007106899,"deps":[[11899261697793765154,"build_script_build",false,11788663787468271315]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_core-ac9f929e4e902d24/dep-lib-serde_core","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-bf2ebacef49fbf2e/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-bf2ebacef49fbf2e/run-build-script-build-script-build new file mode 100644 index 0000000..ec9b5e5 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-bf2ebacef49fbf2e/run-build-script-build-script-build @@ -0,0 +1 @@ +d3ae8e7441bf99a3 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-bf2ebacef49fbf2e/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-bf2ebacef49fbf2e/run-build-script-build-script-build.json new file mode 100644 index 0000000..36fbea3 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_core-bf2ebacef49fbf2e/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[11899261697793765154,"build_script_build",false,6634785687779640747]],"local":[{"RerunIfChanged":{"output":"debug/build/serde_core-bf2ebacef49fbf2e/output","paths":["build.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_derive-1fbad4c3b8df2638/dep-lib-serde_derive b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_derive-1fbad4c3b8df2638/dep-lib-serde_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_derive-1fbad4c3b8df2638/dep-lib-serde_derive differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_derive-1fbad4c3b8df2638/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_derive-1fbad4c3b8df2638/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_derive-1fbad4c3b8df2638/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_derive-1fbad4c3b8df2638/lib-serde_derive b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_derive-1fbad4c3b8df2638/lib-serde_derive new file mode 100644 index 0000000..2fe9e39 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_derive-1fbad4c3b8df2638/lib-serde_derive @@ -0,0 +1 @@ +440a0cc5d3d2a6b0 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_derive-1fbad4c3b8df2638/lib-serde_derive.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_derive-1fbad4c3b8df2638/lib-serde_derive.json new file mode 100644 index 0000000..80ab8f7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_derive-1fbad4c3b8df2638/lib-serde_derive.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\"]","declared_features":"[\"default\", \"deserialize_in_place\"]","target":13076129734743110817,"profile":3033921117576893,"path":3777954115321416927,"deps":[[4289358735036141001,"proc_macro2",false,2021902520114475280],[6100504282945712449,"quote",false,14500808875298157531],[10420560437213941093,"syn",false,935482101193759173]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_derive-1fbad4c3b8df2638/dep-lib-serde_derive","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-303d64a5f023c5ab/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-303d64a5f023c5ab/run-build-script-build-script-build new file mode 100644 index 0000000..8397081 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-303d64a5f023c5ab/run-build-script-build-script-build @@ -0,0 +1 @@ +77aeddd3bc4b703d \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-303d64a5f023c5ab/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-303d64a5f023c5ab/run-build-script-build-script-build.json new file mode 100644 index 0000000..4a53c99 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-303d64a5f023c5ab/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13795362694956882968,"build_script_build",false,8080518666880737036]],"local":[{"RerunIfChanged":{"output":"debug/build/serde_json-303d64a5f023c5ab/output","paths":["build.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-9d8dbe36d7a1d64c/dep-lib-serde_json b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-9d8dbe36d7a1d64c/dep-lib-serde_json new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-9d8dbe36d7a1d64c/dep-lib-serde_json differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-9d8dbe36d7a1d64c/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-9d8dbe36d7a1d64c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-9d8dbe36d7a1d64c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-9d8dbe36d7a1d64c/lib-serde_json b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-9d8dbe36d7a1d64c/lib-serde_json new file mode 100644 index 0000000..5fd09f9 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-9d8dbe36d7a1d64c/lib-serde_json @@ -0,0 +1 @@ +173836ba19ba2da3 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-9d8dbe36d7a1d64c/lib-serde_json.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-9d8dbe36d7a1d64c/lib-serde_json.json new file mode 100644 index 0000000..3dbb8b5 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-9d8dbe36d7a1d64c/lib-serde_json.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"alloc\", \"arbitrary_precision\", \"default\", \"float_roundtrip\", \"indexmap\", \"preserve_order\", \"raw_value\", \"std\", \"unbounded_depth\"]","target":9592559880233824070,"profile":8276155916380437441,"path":9416140298761719589,"deps":[[1363051979936526615,"memchr",false,16612493710403741849],[9938278000850417404,"itoa",false,5228001396796919418],[11899261697793765154,"serde_core",false,16577982008370097196],[12347024475581975995,"zmij",false,5038223313190767641],[13795362694956882968,"build_script_build",false,4427121708085653111]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_json-9d8dbe36d7a1d64c/dep-lib-serde_json","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-ada7ef9db8800ce4/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-ada7ef9db8800ce4/build-script-build-script-build new file mode 100644 index 0000000..31bd22d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-ada7ef9db8800ce4/build-script-build-script-build @@ -0,0 +1 @@ +0cdf5644eac42370 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-ada7ef9db8800ce4/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-ada7ef9db8800ce4/build-script-build-script-build.json new file mode 100644 index 0000000..643bb5f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-ada7ef9db8800ce4/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"alloc\", \"arbitrary_precision\", \"default\", \"float_roundtrip\", \"indexmap\", \"preserve_order\", \"raw_value\", \"std\", \"unbounded_depth\"]","target":5408242616063297496,"profile":3033921117576893,"path":2870803366087968517,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_json-ada7ef9db8800ce4/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-ada7ef9db8800ce4/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-ada7ef9db8800ce4/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-ada7ef9db8800ce4/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-ada7ef9db8800ce4/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-ada7ef9db8800ce4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_json-ada7ef9db8800ce4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_urlencoded-45d4f0973fae8729/dep-lib-serde_urlencoded b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_urlencoded-45d4f0973fae8729/dep-lib-serde_urlencoded new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_urlencoded-45d4f0973fae8729/dep-lib-serde_urlencoded differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_urlencoded-45d4f0973fae8729/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_urlencoded-45d4f0973fae8729/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_urlencoded-45d4f0973fae8729/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_urlencoded-45d4f0973fae8729/lib-serde_urlencoded b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_urlencoded-45d4f0973fae8729/lib-serde_urlencoded new file mode 100644 index 0000000..db86e89 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_urlencoded-45d4f0973fae8729/lib-serde_urlencoded @@ -0,0 +1 @@ +fdc86d3d3dd72166 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_urlencoded-45d4f0973fae8729/lib-serde_urlencoded.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_urlencoded-45d4f0973fae8729/lib-serde_urlencoded.json new file mode 100644 index 0000000..581095e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/serde_urlencoded-45d4f0973fae8729/lib-serde_urlencoded.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":13961612944102757082,"profile":8276155916380437441,"path":479878411397984937,"deps":[[1074175012458081222,"form_urlencoded",false,4458529681815232008],[6400797066282925533,"ryu",false,2578864929478080799],[9938278000850417404,"itoa",false,5228001396796919418],[13548984313718623784,"serde",false,9442752412494499714]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_urlencoded-45d4f0973fae8729/dep-lib-serde_urlencoded","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/servo_arc-7a74396eafcd2c81/dep-lib-servo_arc b/src-tauri/tms_service/target/owl/debug/.fingerprint/servo_arc-7a74396eafcd2c81/dep-lib-servo_arc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/servo_arc-7a74396eafcd2c81/dep-lib-servo_arc differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/servo_arc-7a74396eafcd2c81/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/servo_arc-7a74396eafcd2c81/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/servo_arc-7a74396eafcd2c81/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/servo_arc-7a74396eafcd2c81/lib-servo_arc b/src-tauri/tms_service/target/owl/debug/.fingerprint/servo_arc-7a74396eafcd2c81/lib-servo_arc new file mode 100644 index 0000000..c9c0e64 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/servo_arc-7a74396eafcd2c81/lib-servo_arc @@ -0,0 +1 @@ +ce30157132002b05 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/servo_arc-7a74396eafcd2c81/lib-servo_arc.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/servo_arc-7a74396eafcd2c81/lib-servo_arc.json new file mode 100644 index 0000000..0543a1f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/servo_arc-7a74396eafcd2c81/lib-servo_arc.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"gecko_refcount_logging\", \"serde\", \"servo\"]","target":7827887664671662080,"profile":8276155916380437441,"path":17267836162935998812,"deps":[[12669569555400633618,"stable_deref_trait",false,13471445890328560067]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/servo_arc-7a74396eafcd2c81/dep-lib-servo_arc","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/signal-hook-registry-08ef1889931339d8/dep-lib-signal_hook_registry b/src-tauri/tms_service/target/owl/debug/.fingerprint/signal-hook-registry-08ef1889931339d8/dep-lib-signal_hook_registry new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/signal-hook-registry-08ef1889931339d8/dep-lib-signal_hook_registry differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/signal-hook-registry-08ef1889931339d8/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/signal-hook-registry-08ef1889931339d8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/signal-hook-registry-08ef1889931339d8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/signal-hook-registry-08ef1889931339d8/lib-signal_hook_registry b/src-tauri/tms_service/target/owl/debug/.fingerprint/signal-hook-registry-08ef1889931339d8/lib-signal_hook_registry new file mode 100644 index 0000000..c886df3 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/signal-hook-registry-08ef1889931339d8/lib-signal_hook_registry @@ -0,0 +1 @@ +9d3815dc2cde0133 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/signal-hook-registry-08ef1889931339d8/lib-signal_hook_registry.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/signal-hook-registry-08ef1889931339d8/lib-signal_hook_registry.json new file mode 100644 index 0000000..2ce6d13 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/signal-hook-registry-08ef1889931339d8/lib-signal_hook_registry.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":17877812014956321412,"profile":10948163360653302055,"path":8997839642791368847,"deps":[[3666973139609465052,"errno",false,17750428370799952747],[18365559012052052344,"libc",false,15297927699523733485]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/signal-hook-registry-08ef1889931339d8/dep-lib-signal_hook_registry","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/dep-lib-siphasher b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/dep-lib-siphasher new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/dep-lib-siphasher differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/lib-siphasher b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/lib-siphasher new file mode 100644 index 0000000..3557181 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/lib-siphasher @@ -0,0 +1 @@ +a99f438c5ac4798a \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/lib-siphasher.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/lib-siphasher.json new file mode 100644 index 0000000..0af3c8d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-3fafa0cf348dee4c/lib-siphasher.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"serde\", \"serde_json\", \"serde_no_std\", \"serde_std\", \"std\"]","target":6846127388476139628,"profile":8276155916380437441,"path":14427627578243790336,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/siphasher-3fafa0cf348dee4c/dep-lib-siphasher","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/dep-lib-siphasher b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/dep-lib-siphasher new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/dep-lib-siphasher differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/lib-siphasher b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/lib-siphasher new file mode 100644 index 0000000..adff3ad --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/lib-siphasher @@ -0,0 +1 @@ +cf7921f432dc275b \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/lib-siphasher.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/lib-siphasher.json new file mode 100644 index 0000000..c5482b8 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-e9d3e929006ac3ab/lib-siphasher.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"serde\", \"serde_json\", \"serde_no_std\", \"serde_std\", \"std\"]","target":6846127388476139628,"profile":3033921117576893,"path":14427627578243790336,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/siphasher-e9d3e929006ac3ab/dep-lib-siphasher","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-efe855fcb6cfbccd/dep-lib-siphasher b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-efe855fcb6cfbccd/dep-lib-siphasher new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-efe855fcb6cfbccd/dep-lib-siphasher differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-efe855fcb6cfbccd/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-efe855fcb6cfbccd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-efe855fcb6cfbccd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-efe855fcb6cfbccd/lib-siphasher b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-efe855fcb6cfbccd/lib-siphasher new file mode 100644 index 0000000..253ad60 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-efe855fcb6cfbccd/lib-siphasher @@ -0,0 +1 @@ +25c52ebd945eb337 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-efe855fcb6cfbccd/lib-siphasher.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-efe855fcb6cfbccd/lib-siphasher.json new file mode 100644 index 0000000..a55b4bd --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-efe855fcb6cfbccd/lib-siphasher.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"serde\", \"serde_json\", \"serde_no_std\", \"serde_std\", \"std\"]","target":4119152769974956727,"profile":3033921117576893,"path":13072432356281951076,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/siphasher-efe855fcb6cfbccd/dep-lib-siphasher","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-fb228e665810d0be/dep-lib-siphasher b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-fb228e665810d0be/dep-lib-siphasher new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-fb228e665810d0be/dep-lib-siphasher differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-fb228e665810d0be/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-fb228e665810d0be/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-fb228e665810d0be/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-fb228e665810d0be/lib-siphasher b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-fb228e665810d0be/lib-siphasher new file mode 100644 index 0000000..fa94bb4 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-fb228e665810d0be/lib-siphasher @@ -0,0 +1 @@ +df572c72fede8fda \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-fb228e665810d0be/lib-siphasher.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-fb228e665810d0be/lib-siphasher.json new file mode 100644 index 0000000..b96f066 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/siphasher-fb228e665810d0be/lib-siphasher.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"serde\", \"serde_json\", \"serde_no_std\", \"serde_std\", \"std\"]","target":4119152769974956727,"profile":8276155916380437441,"path":13072432356281951076,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/siphasher-fb228e665810d0be/dep-lib-siphasher","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/slab-f4ffe8281bf66e19/dep-lib-slab b/src-tauri/tms_service/target/owl/debug/.fingerprint/slab-f4ffe8281bf66e19/dep-lib-slab new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/slab-f4ffe8281bf66e19/dep-lib-slab differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/slab-f4ffe8281bf66e19/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/slab-f4ffe8281bf66e19/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/slab-f4ffe8281bf66e19/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/slab-f4ffe8281bf66e19/lib-slab b/src-tauri/tms_service/target/owl/debug/.fingerprint/slab-f4ffe8281bf66e19/lib-slab new file mode 100644 index 0000000..f6d16af --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/slab-f4ffe8281bf66e19/lib-slab @@ -0,0 +1 @@ +44fb1fcffe903bc9 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/slab-f4ffe8281bf66e19/lib-slab.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/slab-f4ffe8281bf66e19/lib-slab.json new file mode 100644 index 0000000..b8fb566 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/slab-f4ffe8281bf66e19/lib-slab.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"serde\", \"std\"]","target":7798044754532116308,"profile":8276155916380437441,"path":11331165863142193730,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/slab-f4ffe8281bf66e19/dep-lib-slab","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/smallvec-281c3c7607d183db/dep-lib-smallvec b/src-tauri/tms_service/target/owl/debug/.fingerprint/smallvec-281c3c7607d183db/dep-lib-smallvec new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/smallvec-281c3c7607d183db/dep-lib-smallvec differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/smallvec-281c3c7607d183db/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/smallvec-281c3c7607d183db/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/smallvec-281c3c7607d183db/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/smallvec-281c3c7607d183db/lib-smallvec b/src-tauri/tms_service/target/owl/debug/.fingerprint/smallvec-281c3c7607d183db/lib-smallvec new file mode 100644 index 0000000..6568c0e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/smallvec-281c3c7607d183db/lib-smallvec @@ -0,0 +1 @@ +94f9605ce1328e54 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/smallvec-281c3c7607d183db/lib-smallvec.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/smallvec-281c3c7607d183db/lib-smallvec.json new file mode 100644 index 0000000..cb4eea9 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/smallvec-281c3c7607d183db/lib-smallvec.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"const_generics\", \"const_new\"]","declared_features":"[\"arbitrary\", \"bincode\", \"const_generics\", \"const_new\", \"debugger_visualizer\", \"drain_filter\", \"drain_keep_rest\", \"impl_bincode\", \"malloc_size_of\", \"may_dangle\", \"serde\", \"specialization\", \"union\", \"unty\", \"write\"]","target":9091769176333489034,"profile":8276155916380437441,"path":10967196498251714325,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/smallvec-281c3c7607d183db/dep-lib-smallvec","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/socket2-ee336cb6d6fa0fbc/dep-lib-socket2 b/src-tauri/tms_service/target/owl/debug/.fingerprint/socket2-ee336cb6d6fa0fbc/dep-lib-socket2 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/socket2-ee336cb6d6fa0fbc/dep-lib-socket2 differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/socket2-ee336cb6d6fa0fbc/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/socket2-ee336cb6d6fa0fbc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/socket2-ee336cb6d6fa0fbc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/socket2-ee336cb6d6fa0fbc/lib-socket2 b/src-tauri/tms_service/target/owl/debug/.fingerprint/socket2-ee336cb6d6fa0fbc/lib-socket2 new file mode 100644 index 0000000..5f7fcf7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/socket2-ee336cb6d6fa0fbc/lib-socket2 @@ -0,0 +1 @@ +a157d06a42485e1c \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/socket2-ee336cb6d6fa0fbc/lib-socket2.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/socket2-ee336cb6d6fa0fbc/lib-socket2.json new file mode 100644 index 0000000..8a2a936 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/socket2-ee336cb6d6fa0fbc/lib-socket2.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"all\"]","declared_features":"[\"all\"]","target":2270514485357617025,"profile":8276155916380437441,"path":8248625315987640054,"deps":[[18365559012052052344,"libc",false,15297927699523733485]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/socket2-ee336cb6d6fa0fbc/dep-lib-socket2","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/stable_deref_trait-08da8da309d755be/dep-lib-stable_deref_trait b/src-tauri/tms_service/target/owl/debug/.fingerprint/stable_deref_trait-08da8da309d755be/dep-lib-stable_deref_trait new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/stable_deref_trait-08da8da309d755be/dep-lib-stable_deref_trait differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/stable_deref_trait-08da8da309d755be/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/stable_deref_trait-08da8da309d755be/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/stable_deref_trait-08da8da309d755be/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/stable_deref_trait-08da8da309d755be/lib-stable_deref_trait b/src-tauri/tms_service/target/owl/debug/.fingerprint/stable_deref_trait-08da8da309d755be/lib-stable_deref_trait new file mode 100644 index 0000000..3033077 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/stable_deref_trait-08da8da309d755be/lib-stable_deref_trait @@ -0,0 +1 @@ +c301ee97a930f4ba \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/stable_deref_trait-08da8da309d755be/lib-stable_deref_trait.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/stable_deref_trait-08da8da309d755be/lib-stable_deref_trait.json new file mode 100644 index 0000000..e2966eb --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/stable_deref_trait-08da8da309d755be/lib-stable_deref_trait.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":5616890217583455155,"profile":8276155916380437441,"path":14641888013748079155,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/stable_deref_trait-08da8da309d755be/dep-lib-stable_deref_trait","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache-27f9f262bec26a3e/dep-lib-string_cache b/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache-27f9f262bec26a3e/dep-lib-string_cache new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache-27f9f262bec26a3e/dep-lib-string_cache differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache-27f9f262bec26a3e/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache-27f9f262bec26a3e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache-27f9f262bec26a3e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache-27f9f262bec26a3e/lib-string_cache b/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache-27f9f262bec26a3e/lib-string_cache new file mode 100644 index 0000000..0422831 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache-27f9f262bec26a3e/lib-string_cache @@ -0,0 +1 @@ +7c64ccb4c95e93aa \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache-27f9f262bec26a3e/lib-string_cache.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache-27f9f262bec26a3e/lib-string_cache.json new file mode 100644 index 0000000..fac54de --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache-27f9f262bec26a3e/lib-string_cache.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"serde\", \"serde_support\"]","declared_features":"[\"default\", \"malloc_size_of\", \"serde\", \"serde_support\"]","target":8038205195467990777,"profile":8276155916380437441,"path":17223908927111041296,"deps":[[2687729594444538932,"debug_unreachable",false,9754738614369676465],[6995234255362136112,"precomputed_hash",false,1484293202274817944],[9060940869921439196,"phf_shared",false,9360327763364191838],[12459942763388630573,"parking_lot",false,17367252070242574854],[13548984313718623784,"serde",false,9442752412494499714]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/string_cache-27f9f262bec26a3e/dep-lib-string_cache","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache_codegen-6210dda31e8b801c/dep-lib-string_cache_codegen b/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache_codegen-6210dda31e8b801c/dep-lib-string_cache_codegen new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache_codegen-6210dda31e8b801c/dep-lib-string_cache_codegen differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache_codegen-6210dda31e8b801c/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache_codegen-6210dda31e8b801c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache_codegen-6210dda31e8b801c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache_codegen-6210dda31e8b801c/lib-string_cache_codegen b/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache_codegen-6210dda31e8b801c/lib-string_cache_codegen new file mode 100644 index 0000000..bcded2b --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache_codegen-6210dda31e8b801c/lib-string_cache_codegen @@ -0,0 +1 @@ +2ed6ff1da75fe7c0 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache_codegen-6210dda31e8b801c/lib-string_cache_codegen.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache_codegen-6210dda31e8b801c/lib-string_cache_codegen.json new file mode 100644 index 0000000..340dec8 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/string_cache_codegen-6210dda31e8b801c/lib-string_cache_codegen.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":4822312724886654266,"profile":3033921117576893,"path":13298400039011249331,"deps":[[4289358735036141001,"proc_macro2",false,2021902520114475280],[6100504282945712449,"quote",false,14500808875298157531],[9060940869921439196,"phf_shared",false,5938943122988981220],[18124350542602697595,"phf_generator",false,16521466806229273500]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/string_cache_codegen-6210dda31e8b801c/dep-lib-string_cache_codegen","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/syn-98ebbc84c0eda716/dep-lib-syn b/src-tauri/tms_service/target/owl/debug/.fingerprint/syn-98ebbc84c0eda716/dep-lib-syn new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/syn-98ebbc84c0eda716/dep-lib-syn differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/syn-98ebbc84c0eda716/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/syn-98ebbc84c0eda716/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/syn-98ebbc84c0eda716/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/syn-98ebbc84c0eda716/lib-syn b/src-tauri/tms_service/target/owl/debug/.fingerprint/syn-98ebbc84c0eda716/lib-syn new file mode 100644 index 0000000..cc75423 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/syn-98ebbc84c0eda716/lib-syn @@ -0,0 +1 @@ +c5d963bf0380fb0c \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/syn-98ebbc84c0eda716/lib-syn.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/syn-98ebbc84c0eda716/lib-syn.json new file mode 100644 index 0000000..29557ee --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/syn-98ebbc84c0eda716/lib-syn.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"visit\"]","declared_features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"test\", \"visit\", \"visit-mut\"]","target":9442126953582868550,"profile":3033921117576893,"path":11376120597584518501,"deps":[[4289358735036141001,"proc_macro2",false,2021902520114475280],[6100504282945712449,"quote",false,14500808875298157531],[8901712065508858692,"unicode_ident",false,16512481524021805875]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/syn-98ebbc84c0eda716/dep-lib-syn","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/sync_wrapper-44e20235d97e5720/dep-lib-sync_wrapper b/src-tauri/tms_service/target/owl/debug/.fingerprint/sync_wrapper-44e20235d97e5720/dep-lib-sync_wrapper new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/sync_wrapper-44e20235d97e5720/dep-lib-sync_wrapper differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/sync_wrapper-44e20235d97e5720/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/sync_wrapper-44e20235d97e5720/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/sync_wrapper-44e20235d97e5720/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/sync_wrapper-44e20235d97e5720/lib-sync_wrapper b/src-tauri/tms_service/target/owl/debug/.fingerprint/sync_wrapper-44e20235d97e5720/lib-sync_wrapper new file mode 100644 index 0000000..257d693 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/sync_wrapper-44e20235d97e5720/lib-sync_wrapper @@ -0,0 +1 @@ +e2c221aca124c74b \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/sync_wrapper-44e20235d97e5720/lib-sync_wrapper.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/sync_wrapper-44e20235d97e5720/lib-sync_wrapper.json new file mode 100644 index 0000000..b8425d3 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/sync_wrapper-44e20235d97e5720/lib-sync_wrapper.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"futures\", \"futures-core\"]","declared_features":"[\"futures\", \"futures-core\"]","target":4931834116445848126,"profile":8276155916380437441,"path":17002245264631348836,"deps":[[302948626015856208,"futures_core",false,495371792585833672]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/sync_wrapper-44e20235d97e5720/dep-lib-sync_wrapper","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/synstructure-a800b782c6c0869f/dep-lib-synstructure b/src-tauri/tms_service/target/owl/debug/.fingerprint/synstructure-a800b782c6c0869f/dep-lib-synstructure new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/synstructure-a800b782c6c0869f/dep-lib-synstructure differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/synstructure-a800b782c6c0869f/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/synstructure-a800b782c6c0869f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/synstructure-a800b782c6c0869f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/synstructure-a800b782c6c0869f/lib-synstructure b/src-tauri/tms_service/target/owl/debug/.fingerprint/synstructure-a800b782c6c0869f/lib-synstructure new file mode 100644 index 0000000..74915ce --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/synstructure-a800b782c6c0869f/lib-synstructure @@ -0,0 +1 @@ +da5fdde592d62911 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/synstructure-a800b782c6c0869f/lib-synstructure.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/synstructure-a800b782c6c0869f/lib-synstructure.json new file mode 100644 index 0000000..287365a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/synstructure-a800b782c6c0869f/lib-synstructure.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":14291004384071580589,"profile":3033921117576893,"path":9724845061387424019,"deps":[[4289358735036141001,"proc_macro2",false,2021902520114475280],[6100504282945712449,"quote",false,14500808875298157531],[10420560437213941093,"syn",false,935482101193759173]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/synstructure-a800b782c6c0869f/dep-lib-synstructure","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-e68e3063c397917f/dep-lib-system_configuration b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-e68e3063c397917f/dep-lib-system_configuration new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-e68e3063c397917f/dep-lib-system_configuration differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-e68e3063c397917f/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-e68e3063c397917f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-e68e3063c397917f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-e68e3063c397917f/lib-system_configuration b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-e68e3063c397917f/lib-system_configuration new file mode 100644 index 0000000..52a22a9 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-e68e3063c397917f/lib-system_configuration @@ -0,0 +1 @@ +7fd05c3399a00c18 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-e68e3063c397917f/lib-system_configuration.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-e68e3063c397917f/lib-system_configuration.json new file mode 100644 index 0000000..414aaf3 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-e68e3063c397917f/lib-system_configuration.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":10027106265155018342,"profile":8276155916380437441,"path":13989323970765110213,"deps":[[1725443235882504449,"system_configuration_sys",false,15054308347568561700],[6802582374312323307,"core_foundation",false,4508010623662736509],[16909888598953886583,"bitflags",false,6382571591599587820]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/system-configuration-e68e3063c397917f/dep-lib-system_configuration","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-3601a182f2822148/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-3601a182f2822148/build-script-build-script-build new file mode 100644 index 0000000..aabf3f7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-3601a182f2822148/build-script-build-script-build @@ -0,0 +1 @@ +769c9b90fce2f971 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-3601a182f2822148/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-3601a182f2822148/build-script-build-script-build.json new file mode 100644 index 0000000..f13fe8c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-3601a182f2822148/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":3033921117576893,"path":13833143768557633957,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/system-configuration-sys-3601a182f2822148/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-3601a182f2822148/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-3601a182f2822148/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-3601a182f2822148/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-3601a182f2822148/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-3601a182f2822148/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-3601a182f2822148/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-8be43dd656017233/dep-lib-system_configuration_sys b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-8be43dd656017233/dep-lib-system_configuration_sys new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-8be43dd656017233/dep-lib-system_configuration_sys differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-8be43dd656017233/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-8be43dd656017233/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-8be43dd656017233/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-8be43dd656017233/lib-system_configuration_sys b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-8be43dd656017233/lib-system_configuration_sys new file mode 100644 index 0000000..f3a71f2 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-8be43dd656017233/lib-system_configuration_sys @@ -0,0 +1 @@ +249e0554aea5ebd0 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-8be43dd656017233/lib-system_configuration_sys.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-8be43dd656017233/lib-system_configuration_sys.json new file mode 100644 index 0000000..5763c52 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-8be43dd656017233/lib-system_configuration_sys.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":8517095135847510326,"profile":8276155916380437441,"path":16217523246779487124,"deps":[[1725443235882504449,"build_script_build",false,18046120415001762056],[12589608519315293066,"core_foundation_sys",false,6229227055244689248],[18365559012052052344,"libc",false,15297927699523733485]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/system-configuration-sys-8be43dd656017233/dep-lib-system_configuration_sys","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-9fb37f9fa01fc53f/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-9fb37f9fa01fc53f/run-build-script-build-script-build new file mode 100644 index 0000000..d8ec7d2 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-9fb37f9fa01fc53f/run-build-script-build-script-build @@ -0,0 +1 @@ +08d91aaee7b270fa \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-9fb37f9fa01fc53f/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-9fb37f9fa01fc53f/run-build-script-build-script-build.json new file mode 100644 index 0000000..d5c71da --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/system-configuration-sys-9fb37f9fa01fc53f/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[1725443235882504449,"build_script_build",false,8212844969872563318]],"local":[{"Precalculated":"0.6.0"}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tempfile-7f57f09d263301b0/dep-lib-tempfile b/src-tauri/tms_service/target/owl/debug/.fingerprint/tempfile-7f57f09d263301b0/dep-lib-tempfile new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/tempfile-7f57f09d263301b0/dep-lib-tempfile differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tempfile-7f57f09d263301b0/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/tempfile-7f57f09d263301b0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tempfile-7f57f09d263301b0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tempfile-7f57f09d263301b0/lib-tempfile b/src-tauri/tms_service/target/owl/debug/.fingerprint/tempfile-7f57f09d263301b0/lib-tempfile new file mode 100644 index 0000000..97bce6a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tempfile-7f57f09d263301b0/lib-tempfile @@ -0,0 +1 @@ +a51258f913dde3cb \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tempfile-7f57f09d263301b0/lib-tempfile.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/tempfile-7f57f09d263301b0/lib-tempfile.json new file mode 100644 index 0000000..4e7f2b8 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tempfile-7f57f09d263301b0/lib-tempfile.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"getrandom\"]","declared_features":"[\"default\", \"getrandom\", \"nightly\"]","target":44311651032485388,"profile":8276155916380437441,"path":12811542349733930858,"deps":[[2764386384280758697,"getrandom",false,3643835117921658634],[3722963349756955755,"once_cell",false,9649834255008937173],[12285238697122577036,"fastrand",false,3506851920619784701],[18407532691439737072,"rustix",false,8972307035118705393]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tempfile-7f57f09d263301b0/dep-lib-tempfile","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/dep-lib-tendril b/src-tauri/tms_service/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/dep-lib-tendril new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/dep-lib-tendril differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/lib-tendril b/src-tauri/tms_service/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/lib-tendril new file mode 100644 index 0000000..8c40f39 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/lib-tendril @@ -0,0 +1 @@ +c6c6201a0178d670 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/lib-tendril.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/lib-tendril.json new file mode 100644 index 0000000..ed773d4 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tendril-117c4ad9dedd98e9/lib-tendril.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"bench\", \"encoding\", \"encoding_rs\"]","target":11953572604185802203,"profile":8276155916380437441,"path":1567848641023780023,"deps":[[3353245243264097488,"futf",false,1316095294416154012],[4359956005902820838,"utf8",false,6829597203760734528],[10952224881603935644,"mac",false,3938639248673190958]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tendril-117c4ad9dedd98e9/dep-lib-tendril","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-1c93938e89dffc58/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-1c93938e89dffc58/run-build-script-build-script-build new file mode 100644 index 0000000..477a173 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-1c93938e89dffc58/run-build-script-build-script-build @@ -0,0 +1 @@ +2a84409ace9a8634 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-1c93938e89dffc58/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-1c93938e89dffc58/run-build-script-build-script-build.json new file mode 100644 index 0000000..2779e29 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-1c93938e89dffc58/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8008191657135824715,"build_script_build",false,14983509580146283819]],"local":[{"RerunIfChanged":{"output":"debug/build/thiserror-1c93938e89dffc58/output","paths":["build/probe.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":"1"}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/build-script-build-script-build new file mode 100644 index 0000000..ded9bc3 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/build-script-build-script-build @@ -0,0 +1 @@ +2b1548bd931ef0cf \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/build-script-build-script-build.json new file mode 100644 index 0000000..f64629b --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":3033921117576893,"path":3465689967842960980,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-6457224d9763f31b/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-6457224d9763f31b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-ac29da89a1c81bcc/dep-lib-thiserror b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-ac29da89a1c81bcc/dep-lib-thiserror new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-ac29da89a1c81bcc/dep-lib-thiserror differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-ac29da89a1c81bcc/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-ac29da89a1c81bcc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-ac29da89a1c81bcc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-ac29da89a1c81bcc/lib-thiserror b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-ac29da89a1c81bcc/lib-thiserror new file mode 100644 index 0000000..5fb84da --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-ac29da89a1c81bcc/lib-thiserror @@ -0,0 +1 @@ +3e42e647a0469c68 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-ac29da89a1c81bcc/lib-thiserror.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-ac29da89a1c81bcc/lib-thiserror.json new file mode 100644 index 0000000..45a6bf7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-ac29da89a1c81bcc/lib-thiserror.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":13586076721141200315,"profile":8276155916380437441,"path":8330822632269504242,"deps":[[8008191657135824715,"build_script_build",false,3784882748993340458],[15291996789830541733,"thiserror_impl",false,1284280385087261376]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-ac29da89a1c81bcc/dep-lib-thiserror","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-impl-292fb996ca998392/dep-lib-thiserror_impl b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-impl-292fb996ca998392/dep-lib-thiserror_impl new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-impl-292fb996ca998392/dep-lib-thiserror_impl differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-impl-292fb996ca998392/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-impl-292fb996ca998392/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-impl-292fb996ca998392/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-impl-292fb996ca998392/lib-thiserror_impl b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-impl-292fb996ca998392/lib-thiserror_impl new file mode 100644 index 0000000..4c9825c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-impl-292fb996ca998392/lib-thiserror_impl @@ -0,0 +1 @@ +c0ca20b134aed211 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-impl-292fb996ca998392/lib-thiserror_impl.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-impl-292fb996ca998392/lib-thiserror_impl.json new file mode 100644 index 0000000..805ce00 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/thiserror-impl-292fb996ca998392/lib-thiserror_impl.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":6216210811039475267,"profile":3033921117576893,"path":13901972743864971099,"deps":[[4289358735036141001,"proc_macro2",false,2021902520114475280],[6100504282945712449,"quote",false,14500808875298157531],[10420560437213941093,"syn",false,935482101193759173]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-impl-292fb996ca998392/dep-lib-thiserror_impl","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tinystr-6694724cea174978/dep-lib-tinystr b/src-tauri/tms_service/target/owl/debug/.fingerprint/tinystr-6694724cea174978/dep-lib-tinystr new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/tinystr-6694724cea174978/dep-lib-tinystr differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tinystr-6694724cea174978/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/tinystr-6694724cea174978/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tinystr-6694724cea174978/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tinystr-6694724cea174978/lib-tinystr b/src-tauri/tms_service/target/owl/debug/.fingerprint/tinystr-6694724cea174978/lib-tinystr new file mode 100644 index 0000000..58ed0d2 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tinystr-6694724cea174978/lib-tinystr @@ -0,0 +1 @@ +a1a999d8603860af \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tinystr-6694724cea174978/lib-tinystr.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/tinystr-6694724cea174978/lib-tinystr.json new file mode 100644 index 0000000..e95aede --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tinystr-6694724cea174978/lib-tinystr.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"zerovec\"]","declared_features":"[\"alloc\", \"databake\", \"default\", \"serde\", \"std\", \"zerovec\"]","target":161691779326313357,"profile":8276155916380437441,"path":18073102315699467944,"deps":[[5298260564258778412,"displaydoc",false,13212093097827428317],[14563910249377136032,"zerovec",false,5351667558201935435]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tinystr-6694724cea174978/dep-lib-tinystr","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tms_service-350c08684f3b9dcb/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/tms_service-350c08684f3b9dcb/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tms_service-350c08684f3b9dcb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tms_service-350c08684f3b9dcb/output-test-lib-tms_service b/src-tauri/tms_service/target/owl/debug/.fingerprint/tms_service-350c08684f3b9dcb/output-test-lib-tms_service new file mode 100644 index 0000000..1561eee --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tms_service-350c08684f3b9dcb/output-test-lib-tms_service @@ -0,0 +1,160 @@ +{"$message_type":"diagnostic","message":"unresolved import `reqwest::cookie`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018 or later, paths in `use` statements are relative to the current\nmodule unless they begin with the name of a crate or a literal `crate::`, in\nwhich case they start from the crate root. As in Rust 2015 code, the `self::`\nand `super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nSince Rust 2018 the `extern crate` declaration is not required and\nyou can instead just `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":13,"byte_end":19,"line_start":1,"line_end":1,"column_start":14,"column_end":20,"is_primary":true,"text":[{"text":"use reqwest::cookie::Jar;","highlight_start":14,"highlight_end":20}],"label":"could not find `cookie` in `reqwest`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"found an item that was configured out","code":null,"level":"note","spans":[{"file_name":"/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/lib.rs","byte_start":12278,"byte_end":12284,"line_start":375,"line_end":375,"column_start":13,"column_end":19,"is_primary":true,"text":[{"text":" pub mod cookie;","highlight_start":13,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"the item is gated behind the `cookies` feature","code":null,"level":"note","spans":[{"file_name":"/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/lib.rs","byte_start":12244,"byte_end":12263,"line_start":374,"line_end":374,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":" #[cfg(feature = \"cookies\")]","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `reqwest::cookie`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:1:14\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse reqwest::cookie::Jar;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mcould not find `cookie` in `reqwest`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: found an item that was configured out\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/lib.rs:375:13\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m375\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub mod cookie;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;10m^^^^^^\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: the item is gated behind the `cookies` feature\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/lib.rs:374:11\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m374\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m #[cfg(feature = \"cookies\")]\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;10m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"no method named `cookie_provider` found for struct `reqwest::ClientBuilder` in the current scope","code":{"code":"E0599","explanation":"This error occurs when a method is used on a type which doesn't implement it:\n\nErroneous code example:\n\n```compile_fail,E0599\nstruct Mouth;\n\nlet x = Mouth;\nx.chocolate(); // error: no method named `chocolate` found for type `Mouth`\n // in the current scope\n```\n\nIn this case, you need to implement the `chocolate` method to fix the error:\n\n```\nstruct Mouth;\n\nimpl Mouth {\n fn chocolate(&self) { // We implement the `chocolate` method here.\n println!(\"Hmmm! I love chocolate!\");\n }\n}\n\nlet x = Mouth;\nx.chocolate(); // ok!\n```\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":1024,"byte_end":1060,"line_start":31,"line_end":32,"column_start":18,"column_end":10,"is_primary":false,"text":[{"text":" let client = reqwest::Client::builder()","highlight_start":18,"highlight_end":44},{"text":" .cookie_provider(jar.clone())","highlight_start":1,"highlight_end":10}],"label":"","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src/lib.rs","byte_start":1060,"byte_end":1075,"line_start":32,"line_end":32,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":" .cookie_provider(jar.clone())","highlight_start":10,"highlight_end":25}],"label":"method not found in `ClientBuilder`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0599]\u001b[0m\u001b[0m\u001b[1m: no method named `cookie_provider` found for struct `reqwest::ClientBuilder` in the current scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:32:10\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m31\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let client = reqwest::Client::builder()\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m __________________-\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m32\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m .cookie_provider(jar.clone())\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m-\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mmethod not found in `ClientBuilder`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|_________|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":1322,"byte_end":1332,"line_start":38,"line_end":38,"column_start":9,"column_end":19,"is_primary":true,"text":[{"text":" let body_bytes = res.bytes().await?;","highlight_start":9,"highlight_end":19}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:38:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m38\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let body_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":1335,"byte_end":1353,"line_start":38,"line_end":38,"column_start":22,"column_end":40,"is_primary":true,"text":[{"text":" let body_bytes = res.bytes().await?;","highlight_start":22,"highlight_end":40}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:38:22\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m38\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let body_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":1352,"byte_end":1353,"line_start":38,"line_end":38,"column_start":39,"column_end":40,"is_primary":true,"text":[{"text":" let body_bytes = res.bytes().await?;","highlight_start":39,"highlight_end":40}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"src/lib.rs","byte_start":1352,"byte_end":1353,"line_start":38,"line_end":38,"column_start":39,"column_end":40,"is_primary":false,"text":[{"text":" let body_bytes = res.bytes().await?;","highlight_start":39,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},"macro_decl_name":"desugaring of operator `?`","def_site_span":{"file_name":"src/lib.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":false,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"required by a bound in `std::ops::ControlFlow::Break`","code":null,"level":"note","spans":[{"file_name":"/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs","byte_start":3026,"byte_end":3031,"line_start":95,"line_end":95,"column_start":5,"column_end":10,"is_primary":true,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:38:39\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m38\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let body_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: required by a bound in `std::ops::ControlFlow::Break`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs:95:5\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":1884,"byte_end":1895,"line_start":52,"line_end":52,"column_start":9,"column_end":20,"is_primary":true,"text":[{"text":" let body2_bytes = res2.bytes().await?;","highlight_start":9,"highlight_end":20}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:52:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m52\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let body2_bytes = res2.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":1898,"byte_end":1917,"line_start":52,"line_end":52,"column_start":23,"column_end":42,"is_primary":true,"text":[{"text":" let body2_bytes = res2.bytes().await?;","highlight_start":23,"highlight_end":42}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:52:23\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m52\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let body2_bytes = res2.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":1916,"byte_end":1917,"line_start":52,"line_end":52,"column_start":41,"column_end":42,"is_primary":true,"text":[{"text":" let body2_bytes = res2.bytes().await?;","highlight_start":41,"highlight_end":42}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"src/lib.rs","byte_start":1916,"byte_end":1917,"line_start":52,"line_end":52,"column_start":41,"column_end":42,"is_primary":false,"text":[{"text":" let body2_bytes = res2.bytes().await?;","highlight_start":41,"highlight_end":42}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},"macro_decl_name":"desugaring of operator `?`","def_site_span":{"file_name":"src/lib.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":false,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"required by a bound in `std::ops::ControlFlow::Break`","code":null,"level":"note","spans":[{"file_name":"/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs","byte_start":3026,"byte_end":3031,"line_start":95,"line_end":95,"column_start":5,"column_end":10,"is_primary":true,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:52:41\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m52\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let body2_bytes = res2.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: required by a bound in `std::ops::ControlFlow::Break`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs:95:5\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":2477,"byte_end":2488,"line_start":65,"line_end":65,"column_start":9,"column_end":20,"is_primary":true,"text":[{"text":" let body3_bytes = res3.bytes().await?;","highlight_start":9,"highlight_end":20}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:65:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m65\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let body3_bytes = res3.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":2491,"byte_end":2510,"line_start":65,"line_end":65,"column_start":23,"column_end":42,"is_primary":true,"text":[{"text":" let body3_bytes = res3.bytes().await?;","highlight_start":23,"highlight_end":42}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:65:23\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m65\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let body3_bytes = res3.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":2509,"byte_end":2510,"line_start":65,"line_end":65,"column_start":41,"column_end":42,"is_primary":true,"text":[{"text":" let body3_bytes = res3.bytes().await?;","highlight_start":41,"highlight_end":42}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"src/lib.rs","byte_start":2509,"byte_end":2510,"line_start":65,"line_end":65,"column_start":41,"column_end":42,"is_primary":false,"text":[{"text":" let body3_bytes = res3.bytes().await?;","highlight_start":41,"highlight_end":42}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},"macro_decl_name":"desugaring of operator `?`","def_site_span":{"file_name":"src/lib.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":false,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"required by a bound in `std::ops::ControlFlow::Break`","code":null,"level":"note","spans":[{"file_name":"/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs","byte_start":3026,"byte_end":3031,"line_start":95,"line_end":95,"column_start":5,"column_end":10,"is_primary":true,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:65:41\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m65\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let body3_bytes = res3.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: required by a bound in `std::ops::ControlFlow::Break`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs:95:5\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":3747,"byte_end":3761,"line_start":100,"line_end":100,"column_start":9,"column_end":23,"is_primary":true,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":9,"highlight_end":23}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:100:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m100\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let response_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":3764,"byte_end":3782,"line_start":100,"line_end":100,"column_start":26,"column_end":44,"is_primary":true,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":26,"highlight_end":44}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:100:26\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m100\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let response_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":3781,"byte_end":3782,"line_start":100,"line_end":100,"column_start":43,"column_end":44,"is_primary":true,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":43,"highlight_end":44}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"src/lib.rs","byte_start":3781,"byte_end":3782,"line_start":100,"line_end":100,"column_start":43,"column_end":44,"is_primary":false,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":43,"highlight_end":44}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},"macro_decl_name":"desugaring of operator `?`","def_site_span":{"file_name":"src/lib.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":false,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"required by a bound in `std::ops::ControlFlow::Break`","code":null,"level":"note","spans":[{"file_name":"/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs","byte_start":3026,"byte_end":3031,"line_start":95,"line_end":95,"column_start":5,"column_end":10,"is_primary":true,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:100:43\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m100\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let response_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: required by a bound in `std::ops::ControlFlow::Break`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs:95:5\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":4556,"byte_end":4571,"line_start":121,"line_end":121,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":" let workorder_bytes = workorder_res.bytes().await?;","highlight_start":9,"highlight_end":24}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:121:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m121\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let workorder_bytes = workorder_res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":4574,"byte_end":4602,"line_start":121,"line_end":121,"column_start":27,"column_end":55,"is_primary":true,"text":[{"text":" let workorder_bytes = workorder_res.bytes().await?;","highlight_start":27,"highlight_end":55}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:121:27\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m121\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let workorder_bytes = workorder_res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":4601,"byte_end":4602,"line_start":121,"line_end":121,"column_start":54,"column_end":55,"is_primary":true,"text":[{"text":" let workorder_bytes = workorder_res.bytes().await?;","highlight_start":54,"highlight_end":55}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"src/lib.rs","byte_start":4601,"byte_end":4602,"line_start":121,"line_end":121,"column_start":54,"column_end":55,"is_primary":false,"text":[{"text":" let workorder_bytes = workorder_res.bytes().await?;","highlight_start":54,"highlight_end":55}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},"macro_decl_name":"desugaring of operator `?`","def_site_span":{"file_name":"src/lib.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":false,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"required by a bound in `std::ops::ControlFlow::Break`","code":null,"level":"note","spans":[{"file_name":"/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs","byte_start":3026,"byte_end":3031,"line_start":95,"line_end":95,"column_start":5,"column_end":10,"is_primary":true,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:121:54\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m121\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let workorder_bytes = workorder_res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: required by a bound in `std::ops::ControlFlow::Break`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs:95:5\u001b[0m\n\n"} +2026-02-24T07:50:54.147Z INFO [rustowlc::core] start borrowck of DefId(0:8 ~ tms_service[a410]::create_ticket) +2026-02-24T07:50:54.148Z INFO [rustowlc::core::analyze] facts of DefId(0:8 ~ tms_service[a410]::create_ticket) prepared; start analyze of DefId(0:8 ~ tms_service[a410]::create_ticket) +2026-02-24T07:50:54.148Z INFO [rustowlc::core] borrow checked: 1 / 22 +2026-02-24T07:50:54.148Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.149Z INFO [rustowlc::core::analyze] borrow check finished +{"$message_type":"diagnostic","message":"no method named `cookie_provider` found for struct `reqwest::ClientBuilder` in the current scope","code":{"code":"E0599","explanation":"This error occurs when a method is used on a type which doesn't implement it:\n\nErroneous code example:\n\n```compile_fail,E0599\nstruct Mouth;\n\nlet x = Mouth;\nx.chocolate(); // error: no method named `chocolate` found for type `Mouth`\n // in the current scope\n```\n\nIn this case, you need to implement the `chocolate` method to fix the error:\n\n```\nstruct Mouth;\n\nimpl Mouth {\n fn chocolate(&self) { // We implement the `chocolate` method here.\n println!(\"Hmmm! I love chocolate!\");\n }\n}\n\nlet x = Mouth;\nx.chocolate(); // ok!\n```\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":5572,"byte_end":5608,"line_start":144,"line_end":145,"column_start":18,"column_end":10,"is_primary":false,"text":[{"text":" let client = reqwest::Client::builder()","highlight_start":18,"highlight_end":44},{"text":" .cookie_provider(jar.clone())","highlight_start":1,"highlight_end":10}],"label":"","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src/lib.rs","byte_start":5608,"byte_end":5623,"line_start":145,"line_end":145,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":" .cookie_provider(jar.clone())","highlight_start":10,"highlight_end":25}],"label":"method not found in `ClientBuilder`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0599]\u001b[0m\u001b[0m\u001b[1m: no method named `cookie_provider` found for struct `reqwest::ClientBuilder` in the current scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:145:10\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m144\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let client = reqwest::Client::builder()\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m __________________-\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m145\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m .cookie_provider(jar.clone())\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m-\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mmethod not found in `ClientBuilder`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|_________|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":6011,"byte_end":6025,"line_start":159,"line_end":159,"column_start":9,"column_end":23,"is_primary":true,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":9,"highlight_end":23}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:159:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m159\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let response_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":6028,"byte_end":6046,"line_start":159,"line_end":159,"column_start":26,"column_end":44,"is_primary":true,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":26,"highlight_end":44}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:159:26\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m159\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let response_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":6045,"byte_end":6046,"line_start":159,"line_end":159,"column_start":43,"column_end":44,"is_primary":true,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":43,"highlight_end":44}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"src/lib.rs","byte_start":6045,"byte_end":6046,"line_start":159,"line_end":159,"column_start":43,"column_end":44,"is_primary":false,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":43,"highlight_end":44}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},"macro_decl_name":"desugaring of operator `?`","def_site_span":{"file_name":"src/lib.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":false,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"required by a bound in `std::ops::ControlFlow::Break`","code":null,"level":"note","spans":[{"file_name":"/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs","byte_start":3026,"byte_end":3031,"line_start":95,"line_end":95,"column_start":5,"column_end":10,"is_primary":true,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:159:43\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m159\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let response_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: required by a bound in `std::ops::ControlFlow::Break`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs:95:5\u001b[0m\n\n"} +2026-02-24T07:50:54.165Z INFO [rustowlc::core] start borrowck of DefId(0:11 ~ tms_service[a410]::feedback) +2026-02-24T07:50:54.165Z INFO [rustowlc::core::analyze] facts of DefId(0:11 ~ tms_service[a410]::feedback) prepared; start analyze of DefId(0:11 ~ tms_service[a410]::feedback) +2026-02-24T07:50:54.165Z INFO [rustowlc::core] borrow checked: 2 / 22 +2026-02-24T07:50:54.165Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.165Z INFO [rustowlc::core::analyze] borrow check finished +{"$message_type":"diagnostic","message":"no method named `cookie_provider` found for struct `reqwest::ClientBuilder` in the current scope","code":{"code":"E0599","explanation":"This error occurs when a method is used on a type which doesn't implement it:\n\nErroneous code example:\n\n```compile_fail,E0599\nstruct Mouth;\n\nlet x = Mouth;\nx.chocolate(); // error: no method named `chocolate` found for type `Mouth`\n // in the current scope\n```\n\nIn this case, you need to implement the `chocolate` method to fix the error:\n\n```\nstruct Mouth;\n\nimpl Mouth {\n fn chocolate(&self) { // We implement the `chocolate` method here.\n println!(\"Hmmm! I love chocolate!\");\n }\n}\n\nlet x = Mouth;\nx.chocolate(); // ok!\n```\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":6628,"byte_end":6664,"line_start":175,"line_end":176,"column_start":18,"column_end":10,"is_primary":false,"text":[{"text":" let client = reqwest::Client::builder()","highlight_start":18,"highlight_end":44},{"text":" .cookie_provider(jar.clone())","highlight_start":1,"highlight_end":10}],"label":"","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src/lib.rs","byte_start":6664,"byte_end":6679,"line_start":176,"line_end":176,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":" .cookie_provider(jar.clone())","highlight_start":10,"highlight_end":25}],"label":"method not found in `ClientBuilder`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0599]\u001b[0m\u001b[0m\u001b[1m: no method named `cookie_provider` found for struct `reqwest::ClientBuilder` in the current scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:176:10\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m175\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let client = reqwest::Client::builder()\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m __________________-\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m176\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m .cookie_provider(jar.clone())\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m-\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mmethod not found in `ClientBuilder`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|_________|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":7005,"byte_end":7019,"line_start":188,"line_end":188,"column_start":9,"column_end":23,"is_primary":true,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":9,"highlight_end":23}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:188:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m188\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let response_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":7022,"byte_end":7040,"line_start":188,"line_end":188,"column_start":26,"column_end":44,"is_primary":true,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":26,"highlight_end":44}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:188:26\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m188\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let response_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":7039,"byte_end":7040,"line_start":188,"line_end":188,"column_start":43,"column_end":44,"is_primary":true,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":43,"highlight_end":44}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"src/lib.rs","byte_start":7039,"byte_end":7040,"line_start":188,"line_end":188,"column_start":43,"column_end":44,"is_primary":false,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":43,"highlight_end":44}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},"macro_decl_name":"desugaring of operator `?`","def_site_span":{"file_name":"src/lib.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":false,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"required by a bound in `std::ops::ControlFlow::Break`","code":null,"level":"note","spans":[{"file_name":"/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs","byte_start":3026,"byte_end":3031,"line_start":95,"line_end":95,"column_start":5,"column_end":10,"is_primary":true,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:188:43\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m188\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let response_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: required by a bound in `std::ops::ControlFlow::Break`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs:95:5\u001b[0m\n\n"} +2026-02-24T07:50:54.184Z INFO [rustowlc::core] start borrowck of DefId(0:14 ~ tms_service[a410]::close) +2026-02-24T07:50:54.184Z INFO [rustowlc::core::analyze] facts of DefId(0:14 ~ tms_service[a410]::close) prepared; start analyze of DefId(0:14 ~ tms_service[a410]::close) +2026-02-24T07:50:54.184Z INFO [rustowlc::core] borrow checked: 3 / 22 +2026-02-24T07:50:54.184Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.184Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.185Z INFO [rustowlc::core] start borrowck of DefId(0:21 ~ tms_service[a410]::_) +2026-02-24T07:50:54.185Z INFO [rustowlc::core::analyze] facts of DefId(0:21 ~ tms_service[a410]::_) prepared; start analyze of DefId(0:21 ~ tms_service[a410]::_) +2026-02-24T07:50:54.185Z INFO [rustowlc::core] borrow checked: 4 / 22 +2026-02-24T07:50:54.185Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.185Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.185Z INFO [rustowlc::core] start borrowck of DefId(0:60 ~ tms_service[a410]::_::{impl#0}::deserialize::FIELDS) +2026-02-24T07:50:54.186Z INFO [rustowlc::core::analyze] facts of DefId(0:60 ~ tms_service[a410]::_::{impl#0}::deserialize::FIELDS) prepared; start analyze of DefId(0:60 ~ tms_service[a410]::_::{impl#0}::deserialize::FIELDS) +2026-02-24T07:50:54.186Z INFO [rustowlc::core] borrow checked: 5 / 22 +2026-02-24T07:50:54.186Z INFO [rustowlc::core] start borrowck of DefId(0:62 ~ tms_service[a410]::tests::it_works) +2026-02-24T07:50:54.186Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.186Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.187Z INFO [rustowlc::core] start borrowck of DefId(0:63 ~ tms_service[a410]::tests::it_works::{closure#0}) +2026-02-24T07:50:54.187Z INFO [rustowlc::core::analyze] facts of DefId(0:63 ~ tms_service[a410]::tests::it_works::{closure#0}) prepared; start analyze of DefId(0:63 ~ tms_service[a410]::tests::it_works::{closure#0}) +2026-02-24T07:50:54.188Z INFO [rustowlc::core] borrow checked: 6 / 22 +2026-02-24T07:50:54.188Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.188Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.188Z INFO [rustowlc::core::analyze] facts of DefId(0:62 ~ tms_service[a410]::tests::it_works) prepared; start analyze of DefId(0:62 ~ tms_service[a410]::tests::it_works) +2026-02-24T07:50:54.189Z INFO [rustowlc::core] borrow checked: 7 / 22 +2026-02-24T07:50:54.189Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.190Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.195Z INFO [rustowlc::core] start borrowck of DefId(0:25 ~ tms_service[a410]::_::{impl#0}::deserialize) +2026-02-24T07:50:54.195Z INFO [rustowlc::core::analyze] facts of DefId(0:25 ~ tms_service[a410]::_::{impl#0}::deserialize) prepared; start analyze of DefId(0:25 ~ tms_service[a410]::_::{impl#0}::deserialize) +2026-02-24T07:50:54.195Z INFO [rustowlc::core] borrow checked: 8 / 22 +2026-02-24T07:50:54.195Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.195Z INFO [rustowlc::core] start borrowck of DefId(0:37 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#0}::expecting) +2026-02-24T07:50:54.196Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.196Z INFO [rustowlc::core::analyze] facts of DefId(0:37 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#0}::expecting) prepared; start analyze of DefId(0:37 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#0}::expecting) +2026-02-24T07:50:54.196Z INFO [rustowlc::core] borrow checked: 9 / 22 +2026-02-24T07:50:54.196Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.196Z INFO [rustowlc::core] start borrowck of DefId(0:38 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#0}::visit_u64) +2026-02-24T07:50:54.197Z INFO [rustowlc::core::analyze] facts of DefId(0:38 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#0}::visit_u64) prepared; start analyze of DefId(0:38 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#0}::visit_u64) +2026-02-24T07:50:54.197Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.197Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.197Z INFO [rustowlc::core] borrow checked: 10 / 22 +2026-02-24T07:50:54.197Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.203Z INFO [rustowlc::core] start borrowck of DefId(0:40 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#0}::visit_str) +2026-02-24T07:50:54.203Z INFO [rustowlc::core::analyze] facts of DefId(0:40 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#0}::visit_str) prepared; start analyze of DefId(0:40 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#0}::visit_str) +2026-02-24T07:50:54.203Z INFO [rustowlc::core] borrow checked: 11 / 22 +2026-02-24T07:50:54.203Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.204Z INFO [rustowlc::core] start borrowck of DefId(0:42 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#0}::visit_bytes) +2026-02-24T07:50:54.204Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.204Z INFO [rustowlc::core::analyze] facts of DefId(0:42 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#0}::visit_bytes) prepared; start analyze of DefId(0:42 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#0}::visit_bytes) +2026-02-24T07:50:54.204Z INFO [rustowlc::core] borrow checked: 12 / 22 +2026-02-24T07:50:54.204Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.204Z INFO [rustowlc::core] start borrowck of DefId(0:46 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#1}::deserialize) +2026-02-24T07:50:54.205Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.205Z INFO [rustowlc::core::analyze] facts of DefId(0:46 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#1}::deserialize) prepared; start analyze of DefId(0:46 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#1}::deserialize) +2026-02-24T07:50:54.205Z INFO [rustowlc::core] borrow checked: 13 / 22 +2026-02-24T07:50:54.205Z INFO [rustowlc::core] start borrowck of DefId(0:55 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#2}::expecting) +2026-02-24T07:50:54.205Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.205Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.205Z INFO [rustowlc::core::analyze] facts of DefId(0:55 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#2}::expecting) prepared; start analyze of DefId(0:55 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#2}::expecting) +2026-02-24T07:50:54.206Z INFO [rustowlc::core] borrow checked: 14 / 22 +2026-02-24T07:50:54.206Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.206Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.206Z INFO [rustowlc::core] start borrowck of DefId(0:56 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#2}::visit_seq) +2026-02-24T07:50:54.210Z INFO [rustowlc::core::analyze] facts of DefId(0:56 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#2}::visit_seq) prepared; start analyze of DefId(0:56 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#2}::visit_seq) +2026-02-24T07:50:54.211Z INFO [rustowlc::core] borrow checked: 15 / 22 +2026-02-24T07:50:54.211Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.212Z INFO [rustowlc::core] start borrowck of DefId(0:58 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#2}::visit_map) +2026-02-24T07:50:54.218Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.232Z INFO [rustowlc::core::analyze] facts of DefId(0:58 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#2}::visit_map) prepared; start analyze of DefId(0:58 ~ tms_service[a410]::_::{impl#0}::deserialize::{impl#2}::visit_map) +2026-02-24T07:50:54.233Z INFO [rustowlc::core] borrow checked: 16 / 22 +2026-02-24T07:50:54.233Z INFO [rustowlc::core] start borrowck of DefId(0:7 ~ tms_service[a410]::add) +2026-02-24T07:50:54.233Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.234Z INFO [rustowlc::core::analyze] facts of DefId(0:7 ~ tms_service[a410]::add) prepared; start analyze of DefId(0:7 ~ tms_service[a410]::add) +2026-02-24T07:50:54.234Z INFO [rustowlc::core] borrow checked: 17 / 22 +2026-02-24T07:50:54.234Z INFO [rustowlc::core] start borrowck of DefId(0:10 ~ tms_service[a410]::create_ticket::{closure#0}) +2026-02-24T07:50:54.234Z INFO [rustowlc::core::analyze] facts of DefId(0:10 ~ tms_service[a410]::create_ticket::{closure#0}) prepared; start analyze of DefId(0:10 ~ tms_service[a410]::create_ticket::{closure#0}) +2026-02-24T07:50:54.234Z INFO [rustowlc::core] borrow checked: 18 / 22 +2026-02-24T07:50:54.234Z INFO [rustowlc::core] start borrowck of DefId(0:13 ~ tms_service[a410]::feedback::{closure#0}) +2026-02-24T07:50:54.234Z INFO [rustowlc::core::analyze] facts of DefId(0:13 ~ tms_service[a410]::feedback::{closure#0}) prepared; start analyze of DefId(0:13 ~ tms_service[a410]::feedback::{closure#0}) +2026-02-24T07:50:54.234Z INFO [rustowlc::core] borrow checked: 19 / 22 +2026-02-24T07:50:54.234Z INFO [rustowlc::core] start borrowck of DefId(0:16 ~ tms_service[a410]::close::{closure#0}) +2026-02-24T07:50:54.234Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.234Z INFO [rustowlc::core::analyze] facts of DefId(0:16 ~ tms_service[a410]::close::{closure#0}) prepared; start analyze of DefId(0:16 ~ tms_service[a410]::close::{closure#0}) +2026-02-24T07:50:54.234Z INFO [rustowlc::core] borrow checked: 20 / 22 +2026-02-24T07:50:54.234Z INFO [rustowlc::core] start borrowck of DefId(0:64 ~ tms_service[a410]::tests::it_works#1) +2026-02-24T07:50:54.235Z INFO [rustowlc::core::analyze] facts of DefId(0:64 ~ tms_service[a410]::tests::it_works#1) prepared; start analyze of DefId(0:64 ~ tms_service[a410]::tests::it_works#1) +2026-02-24T07:50:54.236Z INFO [rustowlc::core] borrow checked: 21 / 22 +2026-02-24T07:50:54.236Z INFO [rustowlc::core] start borrowck of DefId(0:65 ~ tms_service[a410]::main) +2026-02-24T07:50:54.236Z INFO [rustowlc::core::analyze] facts of DefId(0:65 ~ tms_service[a410]::main) prepared; start analyze of DefId(0:65 ~ tms_service[a410]::main) +2026-02-24T07:50:54.236Z INFO [rustowlc::core] borrow checked: 22 / 22 +2026-02-24T07:50:54.236Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.236Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.236Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.236Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.236Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.236Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.236Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.236Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.236Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.236Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.236Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.236Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.236Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.237Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.237Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.237Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.238Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.243Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.244Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.245Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.245Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.246Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.246Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.247Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.247Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.254Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.254Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.255Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.255Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.255Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.255Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.273Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.282Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.313Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +{"$message_type":"diagnostic","message":"aborting due to 25 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 25 previous errors\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"Some errors have detailed explanations: E0277, E0432, E0599.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mSome errors have detailed explanations: E0277, E0432, E0599.\u001b[0m\n"} +{"$message_type":"diagnostic","message":"For more information about an error, try `rustc --explain E0277`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about an error, try `rustc --explain E0277`.\u001b[0m\n"} diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tms_service-6a45200a24436e01/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/tms_service-6a45200a24436e01/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tms_service-6a45200a24436e01/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tms_service-6a45200a24436e01/output-lib-tms_service b/src-tauri/tms_service/target/owl/debug/.fingerprint/tms_service-6a45200a24436e01/output-lib-tms_service new file mode 100644 index 0000000..2e3f594 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tms_service-6a45200a24436e01/output-lib-tms_service @@ -0,0 +1,136 @@ +{"$message_type":"diagnostic","message":"unresolved import `reqwest::cookie`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018 or later, paths in `use` statements are relative to the current\nmodule unless they begin with the name of a crate or a literal `crate::`, in\nwhich case they start from the crate root. As in Rust 2015 code, the `self::`\nand `super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nSince Rust 2018 the `extern crate` declaration is not required and\nyou can instead just `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":13,"byte_end":19,"line_start":1,"line_end":1,"column_start":14,"column_end":20,"is_primary":true,"text":[{"text":"use reqwest::cookie::Jar;","highlight_start":14,"highlight_end":20}],"label":"could not find `cookie` in `reqwest`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"found an item that was configured out","code":null,"level":"note","spans":[{"file_name":"/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/lib.rs","byte_start":12278,"byte_end":12284,"line_start":375,"line_end":375,"column_start":13,"column_end":19,"is_primary":true,"text":[{"text":" pub mod cookie;","highlight_start":13,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"the item is gated behind the `cookies` feature","code":null,"level":"note","spans":[{"file_name":"/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/lib.rs","byte_start":12244,"byte_end":12263,"line_start":374,"line_end":374,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":" #[cfg(feature = \"cookies\")]","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `reqwest::cookie`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:1:14\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse reqwest::cookie::Jar;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mcould not find `cookie` in `reqwest`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: found an item that was configured out\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/lib.rs:375:13\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m375\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub mod cookie;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;10m^^^^^^\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: the item is gated behind the `cookies` feature\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/lib.rs:374:11\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m374\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m #[cfg(feature = \"cookies\")]\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;10m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"no method named `cookie_provider` found for struct `reqwest::ClientBuilder` in the current scope","code":{"code":"E0599","explanation":"This error occurs when a method is used on a type which doesn't implement it:\n\nErroneous code example:\n\n```compile_fail,E0599\nstruct Mouth;\n\nlet x = Mouth;\nx.chocolate(); // error: no method named `chocolate` found for type `Mouth`\n // in the current scope\n```\n\nIn this case, you need to implement the `chocolate` method to fix the error:\n\n```\nstruct Mouth;\n\nimpl Mouth {\n fn chocolate(&self) { // We implement the `chocolate` method here.\n println!(\"Hmmm! I love chocolate!\");\n }\n}\n\nlet x = Mouth;\nx.chocolate(); // ok!\n```\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":1024,"byte_end":1060,"line_start":31,"line_end":32,"column_start":18,"column_end":10,"is_primary":false,"text":[{"text":" let client = reqwest::Client::builder()","highlight_start":18,"highlight_end":44},{"text":" .cookie_provider(jar.clone())","highlight_start":1,"highlight_end":10}],"label":"","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src/lib.rs","byte_start":1060,"byte_end":1075,"line_start":32,"line_end":32,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":" .cookie_provider(jar.clone())","highlight_start":10,"highlight_end":25}],"label":"method not found in `ClientBuilder`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0599]\u001b[0m\u001b[0m\u001b[1m: no method named `cookie_provider` found for struct `reqwest::ClientBuilder` in the current scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:32:10\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m31\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let client = reqwest::Client::builder()\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m __________________-\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m32\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m .cookie_provider(jar.clone())\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m-\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mmethod not found in `ClientBuilder`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|_________|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":1322,"byte_end":1332,"line_start":38,"line_end":38,"column_start":9,"column_end":19,"is_primary":true,"text":[{"text":" let body_bytes = res.bytes().await?;","highlight_start":9,"highlight_end":19}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:38:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m38\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let body_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":1335,"byte_end":1353,"line_start":38,"line_end":38,"column_start":22,"column_end":40,"is_primary":true,"text":[{"text":" let body_bytes = res.bytes().await?;","highlight_start":22,"highlight_end":40}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:38:22\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m38\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let body_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":1352,"byte_end":1353,"line_start":38,"line_end":38,"column_start":39,"column_end":40,"is_primary":true,"text":[{"text":" let body_bytes = res.bytes().await?;","highlight_start":39,"highlight_end":40}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"src/lib.rs","byte_start":1352,"byte_end":1353,"line_start":38,"line_end":38,"column_start":39,"column_end":40,"is_primary":false,"text":[{"text":" let body_bytes = res.bytes().await?;","highlight_start":39,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},"macro_decl_name":"desugaring of operator `?`","def_site_span":{"file_name":"src/lib.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":false,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"required by a bound in `std::ops::ControlFlow::Break`","code":null,"level":"note","spans":[{"file_name":"/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs","byte_start":3026,"byte_end":3031,"line_start":95,"line_end":95,"column_start":5,"column_end":10,"is_primary":true,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:38:39\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m38\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let body_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: required by a bound in `std::ops::ControlFlow::Break`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs:95:5\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":1884,"byte_end":1895,"line_start":52,"line_end":52,"column_start":9,"column_end":20,"is_primary":true,"text":[{"text":" let body2_bytes = res2.bytes().await?;","highlight_start":9,"highlight_end":20}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:52:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m52\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let body2_bytes = res2.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":1898,"byte_end":1917,"line_start":52,"line_end":52,"column_start":23,"column_end":42,"is_primary":true,"text":[{"text":" let body2_bytes = res2.bytes().await?;","highlight_start":23,"highlight_end":42}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:52:23\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m52\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let body2_bytes = res2.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":1916,"byte_end":1917,"line_start":52,"line_end":52,"column_start":41,"column_end":42,"is_primary":true,"text":[{"text":" let body2_bytes = res2.bytes().await?;","highlight_start":41,"highlight_end":42}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"src/lib.rs","byte_start":1916,"byte_end":1917,"line_start":52,"line_end":52,"column_start":41,"column_end":42,"is_primary":false,"text":[{"text":" let body2_bytes = res2.bytes().await?;","highlight_start":41,"highlight_end":42}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},"macro_decl_name":"desugaring of operator `?`","def_site_span":{"file_name":"src/lib.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":false,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"required by a bound in `std::ops::ControlFlow::Break`","code":null,"level":"note","spans":[{"file_name":"/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs","byte_start":3026,"byte_end":3031,"line_start":95,"line_end":95,"column_start":5,"column_end":10,"is_primary":true,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:52:41\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m52\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let body2_bytes = res2.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: required by a bound in `std::ops::ControlFlow::Break`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs:95:5\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":2477,"byte_end":2488,"line_start":65,"line_end":65,"column_start":9,"column_end":20,"is_primary":true,"text":[{"text":" let body3_bytes = res3.bytes().await?;","highlight_start":9,"highlight_end":20}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:65:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m65\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let body3_bytes = res3.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":2491,"byte_end":2510,"line_start":65,"line_end":65,"column_start":23,"column_end":42,"is_primary":true,"text":[{"text":" let body3_bytes = res3.bytes().await?;","highlight_start":23,"highlight_end":42}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:65:23\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m65\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let body3_bytes = res3.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":2509,"byte_end":2510,"line_start":65,"line_end":65,"column_start":41,"column_end":42,"is_primary":true,"text":[{"text":" let body3_bytes = res3.bytes().await?;","highlight_start":41,"highlight_end":42}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"src/lib.rs","byte_start":2509,"byte_end":2510,"line_start":65,"line_end":65,"column_start":41,"column_end":42,"is_primary":false,"text":[{"text":" let body3_bytes = res3.bytes().await?;","highlight_start":41,"highlight_end":42}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},"macro_decl_name":"desugaring of operator `?`","def_site_span":{"file_name":"src/lib.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":false,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"required by a bound in `std::ops::ControlFlow::Break`","code":null,"level":"note","spans":[{"file_name":"/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs","byte_start":3026,"byte_end":3031,"line_start":95,"line_end":95,"column_start":5,"column_end":10,"is_primary":true,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:65:41\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m65\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let body3_bytes = res3.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: required by a bound in `std::ops::ControlFlow::Break`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs:95:5\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":3747,"byte_end":3761,"line_start":100,"line_end":100,"column_start":9,"column_end":23,"is_primary":true,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":9,"highlight_end":23}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:100:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m100\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let response_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":3764,"byte_end":3782,"line_start":100,"line_end":100,"column_start":26,"column_end":44,"is_primary":true,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":26,"highlight_end":44}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:100:26\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m100\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let response_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":3781,"byte_end":3782,"line_start":100,"line_end":100,"column_start":43,"column_end":44,"is_primary":true,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":43,"highlight_end":44}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"src/lib.rs","byte_start":3781,"byte_end":3782,"line_start":100,"line_end":100,"column_start":43,"column_end":44,"is_primary":false,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":43,"highlight_end":44}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},"macro_decl_name":"desugaring of operator `?`","def_site_span":{"file_name":"src/lib.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":false,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"required by a bound in `std::ops::ControlFlow::Break`","code":null,"level":"note","spans":[{"file_name":"/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs","byte_start":3026,"byte_end":3031,"line_start":95,"line_end":95,"column_start":5,"column_end":10,"is_primary":true,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:100:43\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m100\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let response_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: required by a bound in `std::ops::ControlFlow::Break`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs:95:5\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":4556,"byte_end":4571,"line_start":121,"line_end":121,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":" let workorder_bytes = workorder_res.bytes().await?;","highlight_start":9,"highlight_end":24}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:121:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m121\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let workorder_bytes = workorder_res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":4574,"byte_end":4602,"line_start":121,"line_end":121,"column_start":27,"column_end":55,"is_primary":true,"text":[{"text":" let workorder_bytes = workorder_res.bytes().await?;","highlight_start":27,"highlight_end":55}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:121:27\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m121\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let workorder_bytes = workorder_res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":4601,"byte_end":4602,"line_start":121,"line_end":121,"column_start":54,"column_end":55,"is_primary":true,"text":[{"text":" let workorder_bytes = workorder_res.bytes().await?;","highlight_start":54,"highlight_end":55}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"src/lib.rs","byte_start":4601,"byte_end":4602,"line_start":121,"line_end":121,"column_start":54,"column_end":55,"is_primary":false,"text":[{"text":" let workorder_bytes = workorder_res.bytes().await?;","highlight_start":54,"highlight_end":55}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},"macro_decl_name":"desugaring of operator `?`","def_site_span":{"file_name":"src/lib.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":false,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"required by a bound in `std::ops::ControlFlow::Break`","code":null,"level":"note","spans":[{"file_name":"/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs","byte_start":3026,"byte_end":3031,"line_start":95,"line_end":95,"column_start":5,"column_end":10,"is_primary":true,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:121:54\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m121\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let workorder_bytes = workorder_res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: required by a bound in `std::ops::ControlFlow::Break`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs:95:5\u001b[0m\n\n"} +2026-02-24T07:50:54.147Z INFO [rustowlc::core] start borrowck of DefId(0:8 ~ tms_service[9067]::create_ticket) +2026-02-24T07:50:54.148Z INFO [rustowlc::core::analyze] facts of DefId(0:8 ~ tms_service[9067]::create_ticket) prepared; start analyze of DefId(0:8 ~ tms_service[9067]::create_ticket) +2026-02-24T07:50:54.148Z INFO [rustowlc::core] borrow checked: 1 / 18 +2026-02-24T07:50:54.148Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.149Z INFO [rustowlc::core::analyze] borrow check finished +{"$message_type":"diagnostic","message":"no method named `cookie_provider` found for struct `reqwest::ClientBuilder` in the current scope","code":{"code":"E0599","explanation":"This error occurs when a method is used on a type which doesn't implement it:\n\nErroneous code example:\n\n```compile_fail,E0599\nstruct Mouth;\n\nlet x = Mouth;\nx.chocolate(); // error: no method named `chocolate` found for type `Mouth`\n // in the current scope\n```\n\nIn this case, you need to implement the `chocolate` method to fix the error:\n\n```\nstruct Mouth;\n\nimpl Mouth {\n fn chocolate(&self) { // We implement the `chocolate` method here.\n println!(\"Hmmm! I love chocolate!\");\n }\n}\n\nlet x = Mouth;\nx.chocolate(); // ok!\n```\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":5572,"byte_end":5608,"line_start":144,"line_end":145,"column_start":18,"column_end":10,"is_primary":false,"text":[{"text":" let client = reqwest::Client::builder()","highlight_start":18,"highlight_end":44},{"text":" .cookie_provider(jar.clone())","highlight_start":1,"highlight_end":10}],"label":"","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src/lib.rs","byte_start":5608,"byte_end":5623,"line_start":145,"line_end":145,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":" .cookie_provider(jar.clone())","highlight_start":10,"highlight_end":25}],"label":"method not found in `ClientBuilder`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0599]\u001b[0m\u001b[0m\u001b[1m: no method named `cookie_provider` found for struct `reqwest::ClientBuilder` in the current scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:145:10\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m144\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let client = reqwest::Client::builder()\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m __________________-\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m145\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m .cookie_provider(jar.clone())\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m-\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mmethod not found in `ClientBuilder`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|_________|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":6011,"byte_end":6025,"line_start":159,"line_end":159,"column_start":9,"column_end":23,"is_primary":true,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":9,"highlight_end":23}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:159:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m159\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let response_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":6028,"byte_end":6046,"line_start":159,"line_end":159,"column_start":26,"column_end":44,"is_primary":true,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":26,"highlight_end":44}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:159:26\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m159\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let response_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":6045,"byte_end":6046,"line_start":159,"line_end":159,"column_start":43,"column_end":44,"is_primary":true,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":43,"highlight_end":44}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"src/lib.rs","byte_start":6045,"byte_end":6046,"line_start":159,"line_end":159,"column_start":43,"column_end":44,"is_primary":false,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":43,"highlight_end":44}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},"macro_decl_name":"desugaring of operator `?`","def_site_span":{"file_name":"src/lib.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":false,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"required by a bound in `std::ops::ControlFlow::Break`","code":null,"level":"note","spans":[{"file_name":"/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs","byte_start":3026,"byte_end":3031,"line_start":95,"line_end":95,"column_start":5,"column_end":10,"is_primary":true,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:159:43\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m159\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let response_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: required by a bound in `std::ops::ControlFlow::Break`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs:95:5\u001b[0m\n\n"} +2026-02-24T07:50:54.165Z INFO [rustowlc::core] start borrowck of DefId(0:11 ~ tms_service[9067]::feedback) +2026-02-24T07:50:54.165Z INFO [rustowlc::core::analyze] facts of DefId(0:11 ~ tms_service[9067]::feedback) prepared; start analyze of DefId(0:11 ~ tms_service[9067]::feedback) +2026-02-24T07:50:54.165Z INFO [rustowlc::core] borrow checked: 2 / 18 +2026-02-24T07:50:54.165Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.165Z INFO [rustowlc::core::analyze] borrow check finished +{"$message_type":"diagnostic","message":"no method named `cookie_provider` found for struct `reqwest::ClientBuilder` in the current scope","code":{"code":"E0599","explanation":"This error occurs when a method is used on a type which doesn't implement it:\n\nErroneous code example:\n\n```compile_fail,E0599\nstruct Mouth;\n\nlet x = Mouth;\nx.chocolate(); // error: no method named `chocolate` found for type `Mouth`\n // in the current scope\n```\n\nIn this case, you need to implement the `chocolate` method to fix the error:\n\n```\nstruct Mouth;\n\nimpl Mouth {\n fn chocolate(&self) { // We implement the `chocolate` method here.\n println!(\"Hmmm! I love chocolate!\");\n }\n}\n\nlet x = Mouth;\nx.chocolate(); // ok!\n```\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":6628,"byte_end":6664,"line_start":175,"line_end":176,"column_start":18,"column_end":10,"is_primary":false,"text":[{"text":" let client = reqwest::Client::builder()","highlight_start":18,"highlight_end":44},{"text":" .cookie_provider(jar.clone())","highlight_start":1,"highlight_end":10}],"label":"","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src/lib.rs","byte_start":6664,"byte_end":6679,"line_start":176,"line_end":176,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":" .cookie_provider(jar.clone())","highlight_start":10,"highlight_end":25}],"label":"method not found in `ClientBuilder`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0599]\u001b[0m\u001b[0m\u001b[1m: no method named `cookie_provider` found for struct `reqwest::ClientBuilder` in the current scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:176:10\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m175\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let client = reqwest::Client::builder()\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m __________________-\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m176\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m .cookie_provider(jar.clone())\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m-\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mmethod not found in `ClientBuilder`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|_________|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":7005,"byte_end":7019,"line_start":188,"line_end":188,"column_start":9,"column_end":23,"is_primary":true,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":9,"highlight_end":23}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:188:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m188\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let response_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":7022,"byte_end":7040,"line_start":188,"line_end":188,"column_start":26,"column_end":44,"is_primary":true,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":26,"highlight_end":44}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"all local variables must have a statically known size","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"unsized locals are gated as an unstable feature","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:188:26\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m188\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let response_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: all local variables must have a statically known size\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: unsized locals are gated as an unstable feature\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the size for values of type `[u8]` cannot be known at compilation time","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":7039,"byte_end":7040,"line_start":188,"line_end":188,"column_start":43,"column_end":44,"is_primary":true,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":43,"highlight_end":44}],"label":"doesn't have a size known at compile-time","suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"src/lib.rs","byte_start":7039,"byte_end":7040,"line_start":188,"line_end":188,"column_start":43,"column_end":44,"is_primary":false,"text":[{"text":" let response_bytes = res.bytes().await?;","highlight_start":43,"highlight_end":44}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},"macro_decl_name":"desugaring of operator `?`","def_site_span":{"file_name":"src/lib.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":false,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}}],"children":[{"message":"the trait `std::marker::Sized` is not implemented for `[u8]`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"required by a bound in `std::ops::ControlFlow::Break`","code":null,"level":"note","spans":[{"file_name":"/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs","byte_start":3026,"byte_end":3031,"line_start":95,"line_end":95,"column_start":5,"column_end":10,"is_primary":true,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0277]\u001b[0m\u001b[0m\u001b[1m: the size for values of type `[u8]` cannot be known at compilation time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:188:43\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m188\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let response_bytes = res.bytes().await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mdoesn't have a size known at compile-time\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: the trait `std::marker::Sized` is not implemented for `[u8]`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: required by a bound in `std::ops::ControlFlow::Break`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/rustc/17067e9ac6d7ecb70e50f92c1944e545188d2359/library/core/src/ops/control_flow.rs:95:5\u001b[0m\n\n"} +2026-02-24T07:50:54.184Z INFO [rustowlc::core] start borrowck of DefId(0:14 ~ tms_service[9067]::close) +2026-02-24T07:50:54.184Z INFO [rustowlc::core::analyze] facts of DefId(0:14 ~ tms_service[9067]::close) prepared; start analyze of DefId(0:14 ~ tms_service[9067]::close) +2026-02-24T07:50:54.184Z INFO [rustowlc::core] borrow checked: 3 / 18 +2026-02-24T07:50:54.184Z INFO [rustowlc::core] start borrowck of DefId(0:19 ~ tms_service[9067]::_) +2026-02-24T07:50:54.184Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.184Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.185Z INFO [rustowlc::core::analyze] facts of DefId(0:19 ~ tms_service[9067]::_) prepared; start analyze of DefId(0:19 ~ tms_service[9067]::_) +2026-02-24T07:50:54.185Z INFO [rustowlc::core] borrow checked: 4 / 18 +2026-02-24T07:50:54.185Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.185Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.185Z INFO [rustowlc::core] start borrowck of DefId(0:58 ~ tms_service[9067]::_::{impl#0}::deserialize::FIELDS) +2026-02-24T07:50:54.185Z INFO [rustowlc::core::analyze] facts of DefId(0:58 ~ tms_service[9067]::_::{impl#0}::deserialize::FIELDS) prepared; start analyze of DefId(0:58 ~ tms_service[9067]::_::{impl#0}::deserialize::FIELDS) +2026-02-24T07:50:54.186Z INFO [rustowlc::core] borrow checked: 5 / 18 +2026-02-24T07:50:54.186Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.186Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.192Z INFO [rustowlc::core] start borrowck of DefId(0:23 ~ tms_service[9067]::_::{impl#0}::deserialize) +2026-02-24T07:50:54.193Z INFO [rustowlc::core::analyze] facts of DefId(0:23 ~ tms_service[9067]::_::{impl#0}::deserialize) prepared; start analyze of DefId(0:23 ~ tms_service[9067]::_::{impl#0}::deserialize) +2026-02-24T07:50:54.193Z INFO [rustowlc::core] borrow checked: 6 / 18 +2026-02-24T07:50:54.193Z INFO [rustowlc::core] start borrowck of DefId(0:35 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#0}::expecting) +2026-02-24T07:50:54.193Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.193Z INFO [rustowlc::core::analyze] facts of DefId(0:35 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#0}::expecting) prepared; start analyze of DefId(0:35 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#0}::expecting) +2026-02-24T07:50:54.193Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.193Z INFO [rustowlc::core] borrow checked: 7 / 18 +2026-02-24T07:50:54.194Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.194Z INFO [rustowlc::core] start borrowck of DefId(0:36 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#0}::visit_u64) +2026-02-24T07:50:54.194Z INFO [rustowlc::core::analyze] facts of DefId(0:36 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#0}::visit_u64) prepared; start analyze of DefId(0:36 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#0}::visit_u64) +2026-02-24T07:50:54.194Z INFO [rustowlc::core] borrow checked: 8 / 18 +2026-02-24T07:50:54.194Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.194Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.194Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.204Z INFO [rustowlc::core] start borrowck of DefId(0:38 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#0}::visit_str) +2026-02-24T07:50:54.204Z INFO [rustowlc::core::analyze] facts of DefId(0:38 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#0}::visit_str) prepared; start analyze of DefId(0:38 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#0}::visit_str) +2026-02-24T07:50:54.204Z INFO [rustowlc::core] borrow checked: 9 / 18 +2026-02-24T07:50:54.204Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.204Z INFO [rustowlc::core] start borrowck of DefId(0:40 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#0}::visit_bytes) +2026-02-24T07:50:54.205Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.205Z INFO [rustowlc::core::analyze] facts of DefId(0:40 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#0}::visit_bytes) prepared; start analyze of DefId(0:40 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#0}::visit_bytes) +2026-02-24T07:50:54.205Z INFO [rustowlc::core] borrow checked: 10 / 18 +2026-02-24T07:50:54.205Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.205Z INFO [rustowlc::core] start borrowck of DefId(0:44 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#1}::deserialize) +2026-02-24T07:50:54.205Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.205Z INFO [rustowlc::core::analyze] facts of DefId(0:44 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#1}::deserialize) prepared; start analyze of DefId(0:44 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#1}::deserialize) +2026-02-24T07:50:54.205Z INFO [rustowlc::core] borrow checked: 11 / 18 +2026-02-24T07:50:54.206Z INFO [rustowlc::core] start borrowck of DefId(0:53 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#2}::expecting) +2026-02-24T07:50:54.206Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.206Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.206Z INFO [rustowlc::core::analyze] facts of DefId(0:53 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#2}::expecting) prepared; start analyze of DefId(0:53 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#2}::expecting) +2026-02-24T07:50:54.206Z INFO [rustowlc::core] borrow checked: 12 / 18 +2026-02-24T07:50:54.206Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.207Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.207Z INFO [rustowlc::core] start borrowck of DefId(0:54 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#2}::visit_seq) +2026-02-24T07:50:54.210Z INFO [rustowlc::core::analyze] facts of DefId(0:54 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#2}::visit_seq) prepared; start analyze of DefId(0:54 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#2}::visit_seq) +2026-02-24T07:50:54.211Z INFO [rustowlc::core] borrow checked: 13 / 18 +2026-02-24T07:50:54.211Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.212Z INFO [rustowlc::core] start borrowck of DefId(0:56 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#2}::visit_map) +2026-02-24T07:50:54.218Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.231Z INFO [rustowlc::core::analyze] facts of DefId(0:56 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#2}::visit_map) prepared; start analyze of DefId(0:56 ~ tms_service[9067]::_::{impl#0}::deserialize::{impl#2}::visit_map) +2026-02-24T07:50:54.233Z INFO [rustowlc::core] borrow checked: 14 / 18 +2026-02-24T07:50:54.233Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.233Z INFO [rustowlc::core] start borrowck of DefId(0:7 ~ tms_service[9067]::add) +2026-02-24T07:50:54.233Z INFO [rustowlc::core::analyze] facts of DefId(0:7 ~ tms_service[9067]::add) prepared; start analyze of DefId(0:7 ~ tms_service[9067]::add) +2026-02-24T07:50:54.233Z INFO [rustowlc::core] borrow checked: 15 / 18 +2026-02-24T07:50:54.233Z INFO [rustowlc::core] start borrowck of DefId(0:10 ~ tms_service[9067]::create_ticket::{closure#0}) +2026-02-24T07:50:54.234Z INFO [rustowlc::core::analyze] facts of DefId(0:10 ~ tms_service[9067]::create_ticket::{closure#0}) prepared; start analyze of DefId(0:10 ~ tms_service[9067]::create_ticket::{closure#0}) +2026-02-24T07:50:54.234Z INFO [rustowlc::core] borrow checked: 16 / 18 +2026-02-24T07:50:54.234Z INFO [rustowlc::core] start borrowck of DefId(0:13 ~ tms_service[9067]::feedback::{closure#0}) +2026-02-24T07:50:54.234Z INFO [rustowlc::core::analyze] facts of DefId(0:13 ~ tms_service[9067]::feedback::{closure#0}) prepared; start analyze of DefId(0:13 ~ tms_service[9067]::feedback::{closure#0}) +2026-02-24T07:50:54.234Z INFO [rustowlc::core] borrow checked: 17 / 18 +2026-02-24T07:50:54.234Z INFO [rustowlc::core] start borrowck of DefId(0:16 ~ tms_service[9067]::close::{closure#0}) +2026-02-24T07:50:54.234Z INFO [rustowlc::core::analyze] facts of DefId(0:16 ~ tms_service[9067]::close::{closure#0}) prepared; start analyze of DefId(0:16 ~ tms_service[9067]::close::{closure#0}) +2026-02-24T07:50:54.234Z INFO [rustowlc::core] borrow checked: 18 / 18 +2026-02-24T07:50:54.234Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.234Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.235Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.235Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.235Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.235Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.236Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.236Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.237Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.237Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.237Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.237Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.237Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.237Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.237Z INFO [rustowlc::core::analyze] start re-computing borrow check with dump: true +2026-02-24T07:50:54.237Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.237Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.238Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.238Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.239Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.248Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.248Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.248Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.248Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.248Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +2026-02-24T07:50:54.272Z INFO [rustowlc::core::analyze] borrow check finished +2026-02-24T07:50:54.304Z INFO [rustowlc::core] analyzed one item of /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/src/lib.rs +{"$message_type":"diagnostic","message":"aborting due to 25 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 25 previous errors\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"Some errors have detailed explanations: E0277, E0432, E0599.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mSome errors have detailed explanations: E0277, E0432, E0599.\u001b[0m\n"} +{"$message_type":"diagnostic","message":"For more information about an error, try `rustc --explain E0277`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about an error, try `rustc --explain E0277`.\u001b[0m\n"} diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-fff6f3f58a5b4540/dep-lib-tokio b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-fff6f3f58a5b4540/dep-lib-tokio new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-fff6f3f58a5b4540/dep-lib-tokio differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-fff6f3f58a5b4540/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-fff6f3f58a5b4540/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-fff6f3f58a5b4540/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-fff6f3f58a5b4540/lib-tokio b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-fff6f3f58a5b4540/lib-tokio new file mode 100644 index 0000000..e17606f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-fff6f3f58a5b4540/lib-tokio @@ -0,0 +1 @@ +bd5c2f2aac853510 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-fff6f3f58a5b4540/lib-tokio.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-fff6f3f58a5b4540/lib-tokio.json new file mode 100644 index 0000000..0848f3a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-fff6f3f58a5b4540/lib-tokio.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"bytes\", \"default\", \"fs\", \"full\", \"io-std\", \"io-util\", \"libc\", \"macros\", \"mio\", \"net\", \"parking_lot\", \"process\", \"rt\", \"rt-multi-thread\", \"signal\", \"signal-hook-registry\", \"socket2\", \"sync\", \"time\", \"tokio-macros\"]","declared_features":"[\"bytes\", \"default\", \"fs\", \"full\", \"io-std\", \"io-uring\", \"io-util\", \"libc\", \"macros\", \"mio\", \"net\", \"parking_lot\", \"process\", \"rt\", \"rt-multi-thread\", \"signal\", \"signal-hook-registry\", \"socket2\", \"sync\", \"taskdump\", \"test-util\", \"time\", \"tokio-macros\", \"tracing\", \"windows-sys\"]","target":9605832425414080464,"profile":11288557065332182770,"path":261846988617651483,"deps":[[1906322745568073236,"pin_project_lite",false,8594142553908325508],[3052355008400501463,"tokio_macros",false,1836887470844659017],[3870702314125662939,"bytes",false,803313357563162728],[6684496268350303357,"signal_hook_registry",false,3675463055163340957],[9156379307790651767,"mio",false,12433859097941135449],[12459942763388630573,"parking_lot",false,17367252070242574854],[14271021400703034441,"socket2",false,2044150730969864097],[18365559012052052344,"libc",false,15297927699523733485]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tokio-fff6f3f58a5b4540/dep-lib-tokio","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-macros-b6d97045e13c780c/dep-lib-tokio_macros b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-macros-b6d97045e13c780c/dep-lib-tokio_macros new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-macros-b6d97045e13c780c/dep-lib-tokio_macros differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-macros-b6d97045e13c780c/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-macros-b6d97045e13c780c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-macros-b6d97045e13c780c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-macros-b6d97045e13c780c/lib-tokio_macros b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-macros-b6d97045e13c780c/lib-tokio_macros new file mode 100644 index 0000000..12dd91d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-macros-b6d97045e13c780c/lib-tokio_macros @@ -0,0 +1 @@ +49c50f286cef7d19 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-macros-b6d97045e13c780c/lib-tokio_macros.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-macros-b6d97045e13c780c/lib-tokio_macros.json new file mode 100644 index 0000000..05d580a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-macros-b6d97045e13c780c/lib-tokio_macros.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":5059940852446330081,"profile":8145309245491337123,"path":4908796687846547164,"deps":[[4289358735036141001,"proc_macro2",false,2021902520114475280],[6100504282945712449,"quote",false,14500808875298157531],[10420560437213941093,"syn",false,935482101193759173]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tokio-macros-b6d97045e13c780c/dep-lib-tokio_macros","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-native-tls-7619acb6411a2d68/dep-lib-tokio_native_tls b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-native-tls-7619acb6411a2d68/dep-lib-tokio_native_tls new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-native-tls-7619acb6411a2d68/dep-lib-tokio_native_tls differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-native-tls-7619acb6411a2d68/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-native-tls-7619acb6411a2d68/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-native-tls-7619acb6411a2d68/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-native-tls-7619acb6411a2d68/lib-tokio_native_tls b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-native-tls-7619acb6411a2d68/lib-tokio_native_tls new file mode 100644 index 0000000..2b0bff9 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-native-tls-7619acb6411a2d68/lib-tokio_native_tls @@ -0,0 +1 @@ +797323d00755511f \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-native-tls-7619acb6411a2d68/lib-tokio_native_tls.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-native-tls-7619acb6411a2d68/lib-tokio_native_tls.json new file mode 100644 index 0000000..54c2d0e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-native-tls-7619acb6411a2d68/lib-tokio_native_tls.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"vendored\"]","target":1892474590604224423,"profile":8276155916380437441,"path":10886737644971610242,"deps":[[9144560277883153344,"native_tls",false,12641891443652989489],[12891030758458664808,"tokio",false,1167986652861127869]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tokio-native-tls-7619acb6411a2d68/dep-lib-tokio_native_tls","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-util-fb46d5c1d77f649e/dep-lib-tokio_util b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-util-fb46d5c1d77f649e/dep-lib-tokio_util new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-util-fb46d5c1d77f649e/dep-lib-tokio_util differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-util-fb46d5c1d77f649e/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-util-fb46d5c1d77f649e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-util-fb46d5c1d77f649e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-util-fb46d5c1d77f649e/lib-tokio_util b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-util-fb46d5c1d77f649e/lib-tokio_util new file mode 100644 index 0000000..92f3988 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-util-fb46d5c1d77f649e/lib-tokio_util @@ -0,0 +1 @@ +a80c9378d716c351 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-util-fb46d5c1d77f649e/lib-tokio_util.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-util-fb46d5c1d77f649e/lib-tokio_util.json new file mode 100644 index 0000000..a3925b5 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tokio-util-fb46d5c1d77f649e/lib-tokio_util.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"codec\", \"default\", \"io\"]","declared_features":"[\"__docs_rs\", \"codec\", \"compat\", \"default\", \"full\", \"futures-io\", \"futures-util\", \"hashbrown\", \"io\", \"io-util\", \"join-map\", \"net\", \"rt\", \"slab\", \"time\", \"tracing\"]","target":17993092506817503379,"profile":11288557065332182770,"path":5226649689410441220,"deps":[[270634688040536827,"futures_sink",false,11048111160346846204],[302948626015856208,"futures_core",false,495371792585833672],[1906322745568073236,"pin_project_lite",false,8594142553908325508],[3870702314125662939,"bytes",false,803313357563162728],[12891030758458664808,"tokio",false,1167986652861127869]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tokio-util-fb46d5c1d77f649e/dep-lib-tokio_util","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-676e451bb846ad84/dep-lib-tower b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-676e451bb846ad84/dep-lib-tower new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-676e451bb846ad84/dep-lib-tower differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-676e451bb846ad84/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-676e451bb846ad84/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-676e451bb846ad84/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-676e451bb846ad84/lib-tower b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-676e451bb846ad84/lib-tower new file mode 100644 index 0000000..780160a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-676e451bb846ad84/lib-tower @@ -0,0 +1 @@ +686dc1df36b9c0fb \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-676e451bb846ad84/lib-tower.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-676e451bb846ad84/lib-tower.json new file mode 100644 index 0000000..88539d2 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-676e451bb846ad84/lib-tower.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"futures-core\", \"futures-util\", \"pin-project-lite\", \"retry\", \"sync_wrapper\", \"timeout\", \"tokio\", \"util\"]","declared_features":"[\"balance\", \"buffer\", \"discover\", \"filter\", \"full\", \"futures-core\", \"futures-util\", \"hdrhistogram\", \"hedge\", \"indexmap\", \"limit\", \"load\", \"load-shed\", \"log\", \"make\", \"pin-project-lite\", \"ready-cache\", \"reconnect\", \"retry\", \"slab\", \"spawn-ready\", \"steer\", \"sync_wrapper\", \"timeout\", \"tokio\", \"tokio-stream\", \"tokio-util\", \"tracing\", \"util\"]","target":12249542225364378818,"profile":8276155916380437441,"path":18205242945316700145,"deps":[[302948626015856208,"futures_core",false,495371792585833672],[784494742817713399,"tower_service",false,3963567562716476514],[1906322745568073236,"pin_project_lite",false,8594142553908325508],[2517136641825875337,"sync_wrapper",false,5460373350006244066],[5898568623609459682,"futures_util",false,15435209376518851321],[7712452662827335977,"tower_layer",false,14987091845905842934],[12891030758458664808,"tokio",false,1167986652861127869]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tower-676e451bb846ad84/dep-lib-tower","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-http-41e21fc05391790d/dep-lib-tower_http b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-http-41e21fc05391790d/dep-lib-tower_http new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-http-41e21fc05391790d/dep-lib-tower_http differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-http-41e21fc05391790d/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-http-41e21fc05391790d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-http-41e21fc05391790d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-http-41e21fc05391790d/lib-tower_http b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-http-41e21fc05391790d/lib-tower_http new file mode 100644 index 0000000..adaf547 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-http-41e21fc05391790d/lib-tower_http @@ -0,0 +1 @@ +78aa67399df85856 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-http-41e21fc05391790d/lib-tower_http.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-http-41e21fc05391790d/lib-tower_http.json new file mode 100644 index 0000000..26b19b7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-http-41e21fc05391790d/lib-tower_http.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"follow-redirect\", \"futures-util\", \"iri-string\", \"tower\"]","declared_features":"[\"add-extension\", \"async-compression\", \"auth\", \"base64\", \"catch-panic\", \"compression-br\", \"compression-deflate\", \"compression-full\", \"compression-gzip\", \"compression-zstd\", \"cors\", \"decompression-br\", \"decompression-deflate\", \"decompression-full\", \"decompression-gzip\", \"decompression-zstd\", \"default\", \"follow-redirect\", \"fs\", \"full\", \"futures-core\", \"futures-util\", \"httpdate\", \"iri-string\", \"limit\", \"map-request-body\", \"map-response-body\", \"metrics\", \"mime\", \"mime_guess\", \"normalize-path\", \"percent-encoding\", \"propagate-header\", \"redirect\", \"request-id\", \"sensitive-headers\", \"set-header\", \"set-status\", \"timeout\", \"tokio\", \"tokio-util\", \"tower\", \"trace\", \"tracing\", \"util\", \"uuid\", \"validate-request\"]","target":17577061573142048237,"profile":8276155916380437441,"path":7599997965032507389,"deps":[[784494742817713399,"tower_service",false,3963567562716476514],[1906322745568073236,"pin_project_lite",false,8594142553908325508],[2620434475832828286,"http",false,7993496129830204808],[3632162862999675140,"tower",false,18140702944381726056],[3870702314125662939,"bytes",false,803313357563162728],[5898568623609459682,"futures_util",false,15435209376518851321],[7712452662827335977,"tower_layer",false,14987091845905842934],[10678500899971835392,"iri_string",false,4977454934263965571],[14084095096285906100,"http_body",false,17311863340345219060],[16909888598953886583,"bitflags",false,6382571591599587820]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tower-http-41e21fc05391790d/dep-lib-tower_http","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-layer-5a81c3a04b92d57f/dep-lib-tower_layer b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-layer-5a81c3a04b92d57f/dep-lib-tower_layer new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-layer-5a81c3a04b92d57f/dep-lib-tower_layer differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-layer-5a81c3a04b92d57f/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-layer-5a81c3a04b92d57f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-layer-5a81c3a04b92d57f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-layer-5a81c3a04b92d57f/lib-tower_layer b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-layer-5a81c3a04b92d57f/lib-tower_layer new file mode 100644 index 0000000..baf8f5c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-layer-5a81c3a04b92d57f/lib-tower_layer @@ -0,0 +1 @@ +f6025ffba0d8fccf \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-layer-5a81c3a04b92d57f/lib-tower_layer.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-layer-5a81c3a04b92d57f/lib-tower_layer.json new file mode 100644 index 0000000..e6f796e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-layer-5a81c3a04b92d57f/lib-tower_layer.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":6656734005897261505,"profile":8276155916380437441,"path":12714484311141369287,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tower-layer-5a81c3a04b92d57f/dep-lib-tower_layer","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-service-9021ba2ba3f0e06f/dep-lib-tower_service b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-service-9021ba2ba3f0e06f/dep-lib-tower_service new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-service-9021ba2ba3f0e06f/dep-lib-tower_service differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-service-9021ba2ba3f0e06f/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-service-9021ba2ba3f0e06f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-service-9021ba2ba3f0e06f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-service-9021ba2ba3f0e06f/lib-tower_service b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-service-9021ba2ba3f0e06f/lib-tower_service new file mode 100644 index 0000000..21b6ec0 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-service-9021ba2ba3f0e06f/lib-tower_service @@ -0,0 +1 @@ +62f4f9cab26b0137 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-service-9021ba2ba3f0e06f/lib-tower_service.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-service-9021ba2ba3f0e06f/lib-tower_service.json new file mode 100644 index 0000000..d613f40 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tower-service-9021ba2ba3f0e06f/lib-tower_service.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":4262671303997282168,"profile":8276155916380437441,"path":6413596163554299400,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tower-service-9021ba2ba3f0e06f/dep-lib-tower_service","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-9aa3269cd13cd9f0/dep-lib-tracing b/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-9aa3269cd13cd9f0/dep-lib-tracing new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-9aa3269cd13cd9f0/dep-lib-tracing differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-9aa3269cd13cd9f0/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-9aa3269cd13cd9f0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-9aa3269cd13cd9f0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-9aa3269cd13cd9f0/lib-tracing b/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-9aa3269cd13cd9f0/lib-tracing new file mode 100644 index 0000000..03f8796 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-9aa3269cd13cd9f0/lib-tracing @@ -0,0 +1 @@ +337727757527d3d7 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-9aa3269cd13cd9f0/lib-tracing.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-9aa3269cd13cd9f0/lib-tracing.json new file mode 100644 index 0000000..157cc76 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-9aa3269cd13cd9f0/lib-tracing.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"std\"]","declared_features":"[\"async-await\", \"attributes\", \"default\", \"log\", \"log-always\", \"max_level_debug\", \"max_level_error\", \"max_level_info\", \"max_level_off\", \"max_level_trace\", \"max_level_warn\", \"release_max_level_debug\", \"release_max_level_error\", \"release_max_level_info\", \"release_max_level_off\", \"release_max_level_trace\", \"release_max_level_warn\", \"std\", \"tracing-attributes\", \"valuable\"]","target":5568135053145998517,"profile":14260724117731903638,"path":11005725691439170646,"deps":[[1906322745568073236,"pin_project_lite",false,8594142553908325508],[16023452927926505185,"tracing_core",false,15815295308201702448]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tracing-9aa3269cd13cd9f0/dep-lib-tracing","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-core-c2ab9b8bdd438390/dep-lib-tracing_core b/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-core-c2ab9b8bdd438390/dep-lib-tracing_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-core-c2ab9b8bdd438390/dep-lib-tracing_core differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-core-c2ab9b8bdd438390/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-core-c2ab9b8bdd438390/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-core-c2ab9b8bdd438390/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-core-c2ab9b8bdd438390/lib-tracing_core b/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-core-c2ab9b8bdd438390/lib-tracing_core new file mode 100644 index 0000000..52bbe46 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-core-c2ab9b8bdd438390/lib-tracing_core @@ -0,0 +1 @@ +30b4432f4a377bdb \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-core-c2ab9b8bdd438390/lib-tracing_core.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-core-c2ab9b8bdd438390/lib-tracing_core.json new file mode 100644 index 0000000..a9fa51f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/tracing-core-c2ab9b8bdd438390/lib-tracing_core.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"once_cell\", \"std\"]","declared_features":"[\"default\", \"once_cell\", \"std\", \"valuable\"]","target":14276081467424924844,"profile":14260724117731903638,"path":13438305620309978681,"deps":[[3722963349756955755,"once_cell",false,9649834255008937173]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tracing-core-c2ab9b8bdd438390/dep-lib-tracing_core","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/try-lock-a2a06b9b35604e8a/dep-lib-try_lock b/src-tauri/tms_service/target/owl/debug/.fingerprint/try-lock-a2a06b9b35604e8a/dep-lib-try_lock new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/try-lock-a2a06b9b35604e8a/dep-lib-try_lock differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/try-lock-a2a06b9b35604e8a/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/try-lock-a2a06b9b35604e8a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/try-lock-a2a06b9b35604e8a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/try-lock-a2a06b9b35604e8a/lib-try_lock b/src-tauri/tms_service/target/owl/debug/.fingerprint/try-lock-a2a06b9b35604e8a/lib-try_lock new file mode 100644 index 0000000..1f8b959 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/try-lock-a2a06b9b35604e8a/lib-try_lock @@ -0,0 +1 @@ +132c9e522c4089ea \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/try-lock-a2a06b9b35604e8a/lib-try_lock.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/try-lock-a2a06b9b35604e8a/lib-try_lock.json new file mode 100644 index 0000000..aeec656 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/try-lock-a2a06b9b35604e8a/lib-try_lock.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":6156168532037231327,"profile":8276155916380437441,"path":4760488638179296860,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/try-lock-a2a06b9b35604e8a/dep-lib-try_lock","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-ident-8a67dab9f43bf5df/dep-lib-unicode_ident b/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-ident-8a67dab9f43bf5df/dep-lib-unicode_ident new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-ident-8a67dab9f43bf5df/dep-lib-unicode_ident differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-ident-8a67dab9f43bf5df/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-ident-8a67dab9f43bf5df/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-ident-8a67dab9f43bf5df/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-ident-8a67dab9f43bf5df/lib-unicode_ident b/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-ident-8a67dab9f43bf5df/lib-unicode_ident new file mode 100644 index 0000000..9c0eb04 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-ident-8a67dab9f43bf5df/lib-unicode_ident @@ -0,0 +1 @@ +3343858f751e28e5 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-ident-8a67dab9f43bf5df/lib-unicode_ident.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-ident-8a67dab9f43bf5df/lib-unicode_ident.json new file mode 100644 index 0000000..14a78d7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-ident-8a67dab9f43bf5df/lib-unicode_ident.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":14045917370260632744,"profile":3033921117576893,"path":527782664450695513,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicode-ident-8a67dab9f43bf5df/dep-lib-unicode_ident","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-width-fd37909f2193dde8/dep-lib-unicode_width b/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-width-fd37909f2193dde8/dep-lib-unicode_width new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-width-fd37909f2193dde8/dep-lib-unicode_width differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-width-fd37909f2193dde8/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-width-fd37909f2193dde8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-width-fd37909f2193dde8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-width-fd37909f2193dde8/lib-unicode_width b/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-width-fd37909f2193dde8/lib-unicode_width new file mode 100644 index 0000000..77229f3 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-width-fd37909f2193dde8/lib-unicode_width @@ -0,0 +1 @@ +280a0652d35f55ac \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-width-fd37909f2193dde8/lib-unicode_width.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-width-fd37909f2193dde8/lib-unicode_width.json new file mode 100644 index 0000000..7640a6f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/unicode-width-fd37909f2193dde8/lib-unicode_width.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"cjk\", \"default\"]","declared_features":"[\"cjk\", \"core\", \"default\", \"no_std\", \"rustc-dep-of-std\", \"std\"]","target":16876147670056848225,"profile":8276155916380437441,"path":278559604304168358,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicode-width-fd37909f2193dde8/dep-lib-unicode_width","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/url-f0c7f6ce86afb42f/dep-lib-url b/src-tauri/tms_service/target/owl/debug/.fingerprint/url-f0c7f6ce86afb42f/dep-lib-url new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/url-f0c7f6ce86afb42f/dep-lib-url differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/url-f0c7f6ce86afb42f/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/url-f0c7f6ce86afb42f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/url-f0c7f6ce86afb42f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/url-f0c7f6ce86afb42f/lib-url b/src-tauri/tms_service/target/owl/debug/.fingerprint/url-f0c7f6ce86afb42f/lib-url new file mode 100644 index 0000000..0d8818b --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/url-f0c7f6ce86afb42f/lib-url @@ -0,0 +1 @@ +c49fedd4bca397ca \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/url-f0c7f6ce86afb42f/lib-url.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/url-f0c7f6ce86afb42f/lib-url.json new file mode 100644 index 0000000..4238d5e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/url-f0c7f6ce86afb42f/lib-url.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"debugger_visualizer\", \"default\", \"expose_internals\", \"serde\", \"std\"]","target":7686100221094031937,"profile":8276155916380437441,"path":11524488350064636431,"deps":[[1074175012458081222,"form_urlencoded",false,4458529681815232008],[6159443412421938570,"idna",false,12598166205181381763],[6803352382179706244,"percent_encoding",false,14813157098544424846]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/url-f0c7f6ce86afb42f/dep-lib-url","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/dep-lib-utf8 b/src-tauri/tms_service/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/dep-lib-utf8 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/dep-lib-utf8 differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/lib-utf8 b/src-tauri/tms_service/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/lib-utf8 new file mode 100644 index 0000000..1bbf3cb --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/lib-utf8 @@ -0,0 +1 @@ +40e128d9789ac75e \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/lib-utf8.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/lib-utf8.json new file mode 100644 index 0000000..d5852b5 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/utf-8-cdf51886c64f6cca/lib-utf8.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":10206970129552530490,"profile":8276155916380437441,"path":4893332698562544415,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/utf-8-cdf51886c64f6cca/dep-lib-utf8","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/utf8_iter-7750c395fdb65df4/dep-lib-utf8_iter b/src-tauri/tms_service/target/owl/debug/.fingerprint/utf8_iter-7750c395fdb65df4/dep-lib-utf8_iter new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/utf8_iter-7750c395fdb65df4/dep-lib-utf8_iter differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/utf8_iter-7750c395fdb65df4/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/utf8_iter-7750c395fdb65df4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/utf8_iter-7750c395fdb65df4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/utf8_iter-7750c395fdb65df4/lib-utf8_iter b/src-tauri/tms_service/target/owl/debug/.fingerprint/utf8_iter-7750c395fdb65df4/lib-utf8_iter new file mode 100644 index 0000000..126ebd9 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/utf8_iter-7750c395fdb65df4/lib-utf8_iter @@ -0,0 +1 @@ +053378b840fbaef1 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/utf8_iter-7750c395fdb65df4/lib-utf8_iter.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/utf8_iter-7750c395fdb65df4/lib-utf8_iter.json new file mode 100644 index 0000000..6dd1262 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/utf8_iter-7750c395fdb65df4/lib-utf8_iter.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":6216520282702351879,"profile":8276155916380437441,"path":13468769964788998212,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/utf8_iter-7750c395fdb65df4/dep-lib-utf8_iter","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/dep-lib-version_check b/src-tauri/tms_service/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/dep-lib-version_check new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/dep-lib-version_check differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/lib-version_check b/src-tauri/tms_service/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/lib-version_check new file mode 100644 index 0000000..0a2868b --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/lib-version_check @@ -0,0 +1 @@ +667b3f08b3d2536c \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/lib-version_check.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/lib-version_check.json new file mode 100644 index 0000000..e633561 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/version_check-bc29451f0514ce26/lib-version_check.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":18099224280402537651,"profile":3033921117576893,"path":12121388095467597986,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/version_check-bc29451f0514ce26/dep-lib-version_check","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/want-25f50719849623b0/dep-lib-want b/src-tauri/tms_service/target/owl/debug/.fingerprint/want-25f50719849623b0/dep-lib-want new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/want-25f50719849623b0/dep-lib-want differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/want-25f50719849623b0/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/want-25f50719849623b0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/want-25f50719849623b0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/want-25f50719849623b0/lib-want b/src-tauri/tms_service/target/owl/debug/.fingerprint/want-25f50719849623b0/lib-want new file mode 100644 index 0000000..37486ac --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/want-25f50719849623b0/lib-want @@ -0,0 +1 @@ +b4b1cbbe3caf5726 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/want-25f50719849623b0/lib-want.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/want-25f50719849623b0/lib-want.json new file mode 100644 index 0000000..5c92aec --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/want-25f50719849623b0/lib-want.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":6053490367063310035,"profile":8276155916380437441,"path":3895085284444408487,"deps":[[16468274364286264991,"try_lock",false,16900109635793333267]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/want-25f50719849623b0/dep-lib-want","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/writeable-64853572c4d86438/dep-lib-writeable b/src-tauri/tms_service/target/owl/debug/.fingerprint/writeable-64853572c4d86438/dep-lib-writeable new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/writeable-64853572c4d86438/dep-lib-writeable differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/writeable-64853572c4d86438/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/writeable-64853572c4d86438/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/writeable-64853572c4d86438/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/writeable-64853572c4d86438/lib-writeable b/src-tauri/tms_service/target/owl/debug/.fingerprint/writeable-64853572c4d86438/lib-writeable new file mode 100644 index 0000000..69702a0 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/writeable-64853572c4d86438/lib-writeable @@ -0,0 +1 @@ +832a73bbe975202f \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/writeable-64853572c4d86438/lib-writeable.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/writeable-64853572c4d86438/lib-writeable.json new file mode 100644 index 0000000..3497263 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/writeable-64853572c4d86438/lib-writeable.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"alloc\", \"default\", \"either\"]","target":6209224040855486982,"profile":8276155916380437441,"path":11708075119130555667,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/writeable-64853572c4d86438/dep-lib-writeable","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-64f980dec814a796/dep-lib-yoke b/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-64f980dec814a796/dep-lib-yoke new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-64f980dec814a796/dep-lib-yoke differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-64f980dec814a796/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-64f980dec814a796/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-64f980dec814a796/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-64f980dec814a796/lib-yoke b/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-64f980dec814a796/lib-yoke new file mode 100644 index 0000000..0a62853 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-64f980dec814a796/lib-yoke @@ -0,0 +1 @@ +e0505bcd250c7c28 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-64f980dec814a796/lib-yoke.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-64f980dec814a796/lib-yoke.json new file mode 100644 index 0000000..0b82b4d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-64f980dec814a796/lib-yoke.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"derive\", \"zerofrom\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"serde\", \"zerofrom\"]","target":11250006364125496299,"profile":8276155916380437441,"path":7178024643064137391,"deps":[[4776946450414566059,"yoke_derive",false,1237396734106367376],[12669569555400633618,"stable_deref_trait",false,13471445890328560067],[17046516144589451410,"zerofrom",false,9940195494606636217]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/yoke-64f980dec814a796/dep-lib-yoke","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-derive-a2f4c46c6e252925/dep-lib-yoke_derive b/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-derive-a2f4c46c6e252925/dep-lib-yoke_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-derive-a2f4c46c6e252925/dep-lib-yoke_derive differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-derive-a2f4c46c6e252925/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-derive-a2f4c46c6e252925/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-derive-a2f4c46c6e252925/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-derive-a2f4c46c6e252925/lib-yoke_derive b/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-derive-a2f4c46c6e252925/lib-yoke_derive new file mode 100644 index 0000000..456d52d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-derive-a2f4c46c6e252925/lib-yoke_derive @@ -0,0 +1 @@ +9075a30ec61d2c11 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-derive-a2f4c46c6e252925/lib-yoke_derive.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-derive-a2f4c46c6e252925/lib-yoke_derive.json new file mode 100644 index 0000000..06a9fe8 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/yoke-derive-a2f4c46c6e252925/lib-yoke_derive.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":1654536213780382264,"profile":3033921117576893,"path":7454531692495957926,"deps":[[4289358735036141001,"proc_macro2",false,2021902520114475280],[4621990586401870511,"synstructure",false,1236755499099971546],[6100504282945712449,"quote",false,14500808875298157531],[10420560437213941093,"syn",false,935482101193759173]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/yoke-derive-a2f4c46c6e252925/dep-lib-yoke_derive","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-0ff320101b2a37df/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-0ff320101b2a37df/build-script-build-script-build new file mode 100644 index 0000000..3055522 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-0ff320101b2a37df/build-script-build-script-build @@ -0,0 +1 @@ +6188508a19e82870 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-0ff320101b2a37df/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-0ff320101b2a37df/build-script-build-script-build.json new file mode 100644 index 0000000..21fe174 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-0ff320101b2a37df/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"simd\"]","declared_features":"[\"__internal_use_only_features_that_work_on_stable\", \"alloc\", \"derive\", \"float-nightly\", \"simd\", \"simd-nightly\", \"std\", \"zerocopy-derive\"]","target":5408242616063297496,"profile":3033921117576893,"path":9135674938803879537,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerocopy-0ff320101b2a37df/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-0ff320101b2a37df/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-0ff320101b2a37df/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-0ff320101b2a37df/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-0ff320101b2a37df/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-0ff320101b2a37df/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-0ff320101b2a37df/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-10e9814f62257e85/dep-lib-zerocopy b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-10e9814f62257e85/dep-lib-zerocopy new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-10e9814f62257e85/dep-lib-zerocopy differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-10e9814f62257e85/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-10e9814f62257e85/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-10e9814f62257e85/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-10e9814f62257e85/lib-zerocopy b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-10e9814f62257e85/lib-zerocopy new file mode 100644 index 0000000..66fe510 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-10e9814f62257e85/lib-zerocopy @@ -0,0 +1 @@ +8d8a481eeff913d8 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-10e9814f62257e85/lib-zerocopy.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-10e9814f62257e85/lib-zerocopy.json new file mode 100644 index 0000000..6005554 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-10e9814f62257e85/lib-zerocopy.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"simd\"]","declared_features":"[\"__internal_use_only_features_that_work_on_stable\", \"alloc\", \"derive\", \"float-nightly\", \"simd\", \"simd-nightly\", \"std\", \"zerocopy-derive\"]","target":3084901215544504908,"profile":8276155916380437441,"path":598558398950008639,"deps":[[4878717189156408352,"build_script_build",false,8873505672268376949]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerocopy-10e9814f62257e85/dep-lib-zerocopy","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-8d9851e62f5db96f/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-8d9851e62f5db96f/run-build-script-build-script-build new file mode 100644 index 0000000..4427fb5 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-8d9851e62f5db96f/run-build-script-build-script-build @@ -0,0 +1 @@ +756bf8236506257b \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-8d9851e62f5db96f/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-8d9851e62f5db96f/run-build-script-build-script-build.json new file mode 100644 index 0000000..f3aa7fc --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-8d9851e62f5db96f/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[4878717189156408352,"build_script_build",false,8081964727708715105]],"local":[{"RerunIfChanged":{"output":"debug/build/zerocopy-8d9851e62f5db96f/output","paths":["build.rs","Cargo.toml"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-c0d0d66e4e0904c3/dep-lib-zerocopy b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-c0d0d66e4e0904c3/dep-lib-zerocopy new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-c0d0d66e4e0904c3/dep-lib-zerocopy differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-c0d0d66e4e0904c3/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-c0d0d66e4e0904c3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-c0d0d66e4e0904c3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-c0d0d66e4e0904c3/lib-zerocopy b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-c0d0d66e4e0904c3/lib-zerocopy new file mode 100644 index 0000000..bc40506 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-c0d0d66e4e0904c3/lib-zerocopy @@ -0,0 +1 @@ +f89f22cd36f3b6ad \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-c0d0d66e4e0904c3/lib-zerocopy.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-c0d0d66e4e0904c3/lib-zerocopy.json new file mode 100644 index 0000000..cc35fa7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerocopy-c0d0d66e4e0904c3/lib-zerocopy.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"simd\"]","declared_features":"[\"__internal_use_only_features_that_work_on_stable\", \"alloc\", \"derive\", \"float-nightly\", \"simd\", \"simd-nightly\", \"std\", \"zerocopy-derive\"]","target":3084901215544504908,"profile":3033921117576893,"path":598558398950008639,"deps":[[4878717189156408352,"build_script_build",false,8873505672268376949]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerocopy-c0d0d66e4e0904c3/dep-lib-zerocopy","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-53b3ae622c431f99/dep-lib-zerofrom b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-53b3ae622c431f99/dep-lib-zerofrom new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-53b3ae622c431f99/dep-lib-zerofrom differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-53b3ae622c431f99/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-53b3ae622c431f99/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-53b3ae622c431f99/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-53b3ae622c431f99/lib-zerofrom b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-53b3ae622c431f99/lib-zerofrom new file mode 100644 index 0000000..22c47e1 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-53b3ae622c431f99/lib-zerofrom @@ -0,0 +1 @@ +b984f70d23abf289 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-53b3ae622c431f99/lib-zerofrom.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-53b3ae622c431f99/lib-zerofrom.json new file mode 100644 index 0000000..32062cb --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-53b3ae622c431f99/lib-zerofrom.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"derive\"]","declared_features":"[\"alloc\", \"default\", \"derive\"]","target":723370850876025358,"profile":8276155916380437441,"path":17878179391560871122,"deps":[[4022439902832367970,"zerofrom_derive",false,7780702065398626242]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerofrom-53b3ae622c431f99/dep-lib-zerofrom","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-derive-b42effaf579a01eb/dep-lib-zerofrom_derive b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-derive-b42effaf579a01eb/dep-lib-zerofrom_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-derive-b42effaf579a01eb/dep-lib-zerofrom_derive differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-derive-b42effaf579a01eb/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-derive-b42effaf579a01eb/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-derive-b42effaf579a01eb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-derive-b42effaf579a01eb/lib-zerofrom_derive b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-derive-b42effaf579a01eb/lib-zerofrom_derive new file mode 100644 index 0000000..dc8cc7a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-derive-b42effaf579a01eb/lib-zerofrom_derive @@ -0,0 +1 @@ +c2b73bf74d9bfa6b \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-derive-b42effaf579a01eb/lib-zerofrom_derive.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-derive-b42effaf579a01eb/lib-zerofrom_derive.json new file mode 100644 index 0000000..9002f28 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerofrom-derive-b42effaf579a01eb/lib-zerofrom_derive.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":1753304412232254384,"profile":3033921117576893,"path":16404177270878630927,"deps":[[4289358735036141001,"proc_macro2",false,2021902520114475280],[4621990586401870511,"synstructure",false,1236755499099971546],[6100504282945712449,"quote",false,14500808875298157531],[10420560437213941093,"syn",false,935482101193759173]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerofrom-derive-b42effaf579a01eb/dep-lib-zerofrom_derive","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zeroize-53e75a144d6ea640/dep-lib-zeroize b/src-tauri/tms_service/target/owl/debug/.fingerprint/zeroize-53e75a144d6ea640/dep-lib-zeroize new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/zeroize-53e75a144d6ea640/dep-lib-zeroize differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zeroize-53e75a144d6ea640/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/zeroize-53e75a144d6ea640/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zeroize-53e75a144d6ea640/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zeroize-53e75a144d6ea640/lib-zeroize b/src-tauri/tms_service/target/owl/debug/.fingerprint/zeroize-53e75a144d6ea640/lib-zeroize new file mode 100644 index 0000000..03ed3ab --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zeroize-53e75a144d6ea640/lib-zeroize @@ -0,0 +1 @@ +a871861b48c8c7d0 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zeroize-53e75a144d6ea640/lib-zeroize.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/zeroize-53e75a144d6ea640/lib-zeroize.json new file mode 100644 index 0000000..c4c8447 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zeroize-53e75a144d6ea640/lib-zeroize.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"alloc\", \"default\"]","declared_features":"[\"aarch64\", \"alloc\", \"default\", \"derive\", \"serde\", \"simd\", \"std\", \"zeroize_derive\"]","target":12859466896652407160,"profile":8276155916380437441,"path":16456070851571641039,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zeroize-53e75a144d6ea640/dep-lib-zeroize","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerotrie-b753cbae97418930/dep-lib-zerotrie b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerotrie-b753cbae97418930/dep-lib-zerotrie new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerotrie-b753cbae97418930/dep-lib-zerotrie differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerotrie-b753cbae97418930/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerotrie-b753cbae97418930/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerotrie-b753cbae97418930/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerotrie-b753cbae97418930/lib-zerotrie b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerotrie-b753cbae97418930/lib-zerotrie new file mode 100644 index 0000000..d39b183 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerotrie-b753cbae97418930/lib-zerotrie @@ -0,0 +1 @@ +e39b604171da8a80 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerotrie-b753cbae97418930/lib-zerotrie.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerotrie-b753cbae97418930/lib-zerotrie.json new file mode 100644 index 0000000..436f068 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerotrie-b753cbae97418930/lib-zerotrie.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"yoke\", \"zerofrom\"]","declared_features":"[\"alloc\", \"databake\", \"default\", \"litemap\", \"serde\", \"yoke\", \"zerofrom\", \"zerovec\"]","target":12445875338185814621,"profile":8276155916380437441,"path":6692815266198283601,"deps":[[697207654067905947,"yoke",false,2917220015127875808],[5298260564258778412,"displaydoc",false,13212093097827428317],[17046516144589451410,"zerofrom",false,9940195494606636217]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerotrie-b753cbae97418930/dep-lib-zerotrie","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-5d034e4235b791c5/dep-lib-zerovec b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-5d034e4235b791c5/dep-lib-zerovec new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-5d034e4235b791c5/dep-lib-zerovec differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-5d034e4235b791c5/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-5d034e4235b791c5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-5d034e4235b791c5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-5d034e4235b791c5/lib-zerovec b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-5d034e4235b791c5/lib-zerovec new file mode 100644 index 0000000..da62021 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-5d034e4235b791c5/lib-zerovec @@ -0,0 +1 @@ +4bc69b324af1444a \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-5d034e4235b791c5/lib-zerovec.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-5d034e4235b791c5/lib-zerovec.json new file mode 100644 index 0000000..2cb9bad --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-5d034e4235b791c5/lib-zerovec.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[\"derive\", \"yoke\"]","declared_features":"[\"alloc\", \"databake\", \"derive\", \"hashmap\", \"serde\", \"std\", \"yoke\"]","target":1825474209729987087,"profile":8276155916380437441,"path":7397493385273253679,"deps":[[697207654067905947,"yoke",false,2917220015127875808],[6522303474648583265,"zerovec_derive",false,5301082813537296072],[17046516144589451410,"zerofrom",false,9940195494606636217]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerovec-5d034e4235b791c5/dep-lib-zerovec","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-derive-e07f15046c7ba40b/dep-lib-zerovec_derive b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-derive-e07f15046c7ba40b/dep-lib-zerovec_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-derive-e07f15046c7ba40b/dep-lib-zerovec_derive differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-derive-e07f15046c7ba40b/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-derive-e07f15046c7ba40b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-derive-e07f15046c7ba40b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-derive-e07f15046c7ba40b/lib-zerovec_derive b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-derive-e07f15046c7ba40b/lib-zerovec_derive new file mode 100644 index 0000000..761c95e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-derive-e07f15046c7ba40b/lib-zerovec_derive @@ -0,0 +1 @@ +c89ed189bb3a9149 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-derive-e07f15046c7ba40b/lib-zerovec_derive.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-derive-e07f15046c7ba40b/lib-zerovec_derive.json new file mode 100644 index 0000000..85aa935 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zerovec-derive-e07f15046c7ba40b/lib-zerovec_derive.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":14030368369369144574,"profile":3033921117576893,"path":2899779615947176309,"deps":[[4289358735036141001,"proc_macro2",false,2021902520114475280],[6100504282945712449,"quote",false,14500808875298157531],[10420560437213941093,"syn",false,935482101193759173]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerovec-derive-e07f15046c7ba40b/dep-lib-zerovec_derive","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-90d1754cc6a681e8/build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-90d1754cc6a681e8/build-script-build-script-build new file mode 100644 index 0000000..b43c4b4 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-90d1754cc6a681e8/build-script-build-script-build @@ -0,0 +1 @@ +bc37e698438ce81a \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-90d1754cc6a681e8/build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-90d1754cc6a681e8/build-script-build-script-build.json new file mode 100644 index 0000000..2230aa7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-90d1754cc6a681e8/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"no-panic\"]","target":5408242616063297496,"profile":3033921117576893,"path":2070660071291070284,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zmij-90d1754cc6a681e8/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-90d1754cc6a681e8/dep-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-90d1754cc6a681e8/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-90d1754cc6a681e8/dep-build-script-build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-90d1754cc6a681e8/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-90d1754cc6a681e8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-90d1754cc6a681e8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-b120b987ec57043f/dep-lib-zmij b/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-b120b987ec57043f/dep-lib-zmij new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-b120b987ec57043f/dep-lib-zmij differ diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-b120b987ec57043f/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-b120b987ec57043f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-b120b987ec57043f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-b120b987ec57043f/lib-zmij b/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-b120b987ec57043f/lib-zmij new file mode 100644 index 0000000..426a93f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-b120b987ec57043f/lib-zmij @@ -0,0 +1 @@ +19ccd3e1685deb45 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-b120b987ec57043f/lib-zmij.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-b120b987ec57043f/lib-zmij.json new file mode 100644 index 0000000..59f93e8 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-b120b987ec57043f/lib-zmij.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"no-panic\"]","target":16603507647234574737,"profile":8276155916380437441,"path":12342562110692317103,"deps":[[12347024475581975995,"build_script_build",false,2851975567190182794]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zmij-b120b987ec57043f/dep-lib-zmij","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-f3baa1218556c29f/run-build-script-build-script-build b/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-f3baa1218556c29f/run-build-script-build-script-build new file mode 100644 index 0000000..5ae71b3 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-f3baa1218556c29f/run-build-script-build-script-build @@ -0,0 +1 @@ +8acb76feaa409427 \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-f3baa1218556c29f/run-build-script-build-script-build.json b/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-f3baa1218556c29f/run-build-script-build-script-build.json new file mode 100644 index 0000000..504266a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/.fingerprint/zmij-f3baa1218556c29f/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[12347024475581975995,"build_script_build",false,1938953861538920380]],"local":[{"RerunIfChanged":{"output":"debug/build/zmij-f3baa1218556c29f/output","paths":["build.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/ahash-3dd7d030eeabe912/build-script-build b/src-tauri/tms_service/target/owl/debug/build/ahash-3dd7d030eeabe912/build-script-build new file mode 100755 index 0000000..257003d Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/ahash-3dd7d030eeabe912/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/ahash-3dd7d030eeabe912/build_script_build-3dd7d030eeabe912 b/src-tauri/tms_service/target/owl/debug/build/ahash-3dd7d030eeabe912/build_script_build-3dd7d030eeabe912 new file mode 100755 index 0000000..257003d Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/ahash-3dd7d030eeabe912/build_script_build-3dd7d030eeabe912 differ diff --git a/src-tauri/tms_service/target/owl/debug/build/ahash-3dd7d030eeabe912/build_script_build-3dd7d030eeabe912.d b/src-tauri/tms_service/target/owl/debug/build/ahash-3dd7d030eeabe912/build_script_build-3dd7d030eeabe912.d new file mode 100644 index 0000000..833e88f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/ahash-3dd7d030eeabe912/build_script_build-3dd7d030eeabe912.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/ahash-3dd7d030eeabe912/build_script_build-3dd7d030eeabe912: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/ahash-3dd7d030eeabe912/build_script_build-3dd7d030eeabe912.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/ahash-c55aa2f3a000e411/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/ahash-c55aa2f3a000e411/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/ahash-c55aa2f3a000e411/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/ahash-c55aa2f3a000e411/output b/src-tauri/tms_service/target/owl/debug/build/ahash-c55aa2f3a000e411/output new file mode 100644 index 0000000..94882eb --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/ahash-c55aa2f3a000e411/output @@ -0,0 +1,4 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(specialize) +cargo:rustc-check-cfg=cfg(folded_multiply) +cargo:rustc-cfg=folded_multiply diff --git a/src-tauri/tms_service/target/owl/debug/build/ahash-c55aa2f3a000e411/root-output b/src-tauri/tms_service/target/owl/debug/build/ahash-c55aa2f3a000e411/root-output new file mode 100644 index 0000000..9392834 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/ahash-c55aa2f3a000e411/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/ahash-c55aa2f3a000e411/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/ahash-c55aa2f3a000e411/stderr b/src-tauri/tms_service/target/owl/debug/build/ahash-c55aa2f3a000e411/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/anyhow-7307bf59e87654c4/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/anyhow-7307bf59e87654c4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/anyhow-7307bf59e87654c4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/anyhow-7307bf59e87654c4/output b/src-tauri/tms_service/target/owl/debug/build/anyhow-7307bf59e87654c4/output new file mode 100644 index 0000000..4400d96 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/anyhow-7307bf59e87654c4/output @@ -0,0 +1,8 @@ +cargo:rerun-if-changed=src/nightly.rs +cargo:rustc-cfg=error_generic_member_access +cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP +cargo:rustc-check-cfg=cfg(anyhow_build_probe) +cargo:rustc-check-cfg=cfg(anyhow_nightly_testing) +cargo:rustc-check-cfg=cfg(anyhow_no_clippy_format_args) +cargo:rustc-check-cfg=cfg(anyhow_no_core_error) +cargo:rustc-check-cfg=cfg(error_generic_member_access) diff --git a/src-tauri/tms_service/target/owl/debug/build/anyhow-7307bf59e87654c4/root-output b/src-tauri/tms_service/target/owl/debug/build/anyhow-7307bf59e87654c4/root-output new file mode 100644 index 0000000..407410d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/anyhow-7307bf59e87654c4/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/anyhow-7307bf59e87654c4/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/anyhow-7307bf59e87654c4/stderr b/src-tauri/tms_service/target/owl/debug/build/anyhow-7307bf59e87654c4/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/anyhow-b3cd9952f5e598bd/build-script-build b/src-tauri/tms_service/target/owl/debug/build/anyhow-b3cd9952f5e598bd/build-script-build new file mode 100755 index 0000000..5ab8fcd Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/anyhow-b3cd9952f5e598bd/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/anyhow-b3cd9952f5e598bd/build_script_build-b3cd9952f5e598bd b/src-tauri/tms_service/target/owl/debug/build/anyhow-b3cd9952f5e598bd/build_script_build-b3cd9952f5e598bd new file mode 100755 index 0000000..5ab8fcd Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/anyhow-b3cd9952f5e598bd/build_script_build-b3cd9952f5e598bd differ diff --git a/src-tauri/tms_service/target/owl/debug/build/anyhow-b3cd9952f5e598bd/build_script_build-b3cd9952f5e598bd.d b/src-tauri/tms_service/target/owl/debug/build/anyhow-b3cd9952f5e598bd/build_script_build-b3cd9952f5e598bd.d new file mode 100644 index 0000000..027d390 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/anyhow-b3cd9952f5e598bd/build_script_build-b3cd9952f5e598bd.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/anyhow-b3cd9952f5e598bd/build_script_build-b3cd9952f5e598bd: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/anyhow-b3cd9952f5e598bd/build_script_build-b3cd9952f5e598bd.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/getrandom-0bd09cb686b25a43/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/getrandom-0bd09cb686b25a43/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/getrandom-0bd09cb686b25a43/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/getrandom-0bd09cb686b25a43/output b/src-tauri/tms_service/target/owl/debug/build/getrandom-0bd09cb686b25a43/output new file mode 100644 index 0000000..d15ba9a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/getrandom-0bd09cb686b25a43/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=build.rs diff --git a/src-tauri/tms_service/target/owl/debug/build/getrandom-0bd09cb686b25a43/root-output b/src-tauri/tms_service/target/owl/debug/build/getrandom-0bd09cb686b25a43/root-output new file mode 100644 index 0000000..3da625b --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/getrandom-0bd09cb686b25a43/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/getrandom-0bd09cb686b25a43/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/getrandom-0bd09cb686b25a43/stderr b/src-tauri/tms_service/target/owl/debug/build/getrandom-0bd09cb686b25a43/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/getrandom-91f8b6b692854bc0/build-script-build b/src-tauri/tms_service/target/owl/debug/build/getrandom-91f8b6b692854bc0/build-script-build new file mode 100755 index 0000000..a296712 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/getrandom-91f8b6b692854bc0/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/getrandom-91f8b6b692854bc0/build_script_build-91f8b6b692854bc0 b/src-tauri/tms_service/target/owl/debug/build/getrandom-91f8b6b692854bc0/build_script_build-91f8b6b692854bc0 new file mode 100755 index 0000000..a296712 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/getrandom-91f8b6b692854bc0/build_script_build-91f8b6b692854bc0 differ diff --git a/src-tauri/tms_service/target/owl/debug/build/getrandom-91f8b6b692854bc0/build_script_build-91f8b6b692854bc0.d b/src-tauri/tms_service/target/owl/debug/build/getrandom-91f8b6b692854bc0/build_script_build-91f8b6b692854bc0.d new file mode 100644 index 0000000..fdbae61 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/getrandom-91f8b6b692854bc0/build_script_build-91f8b6b692854bc0.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/getrandom-91f8b6b692854bc0/build_script_build-91f8b6b692854bc0: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/getrandom-91f8b6b692854bc0/build_script_build-91f8b6b692854bc0.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/getrandom-f6cefb0d0a113945/build-script-build b/src-tauri/tms_service/target/owl/debug/build/getrandom-f6cefb0d0a113945/build-script-build new file mode 100755 index 0000000..4d0570d Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/getrandom-f6cefb0d0a113945/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/getrandom-f6cefb0d0a113945/build_script_build-f6cefb0d0a113945 b/src-tauri/tms_service/target/owl/debug/build/getrandom-f6cefb0d0a113945/build_script_build-f6cefb0d0a113945 new file mode 100755 index 0000000..4d0570d Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/getrandom-f6cefb0d0a113945/build_script_build-f6cefb0d0a113945 differ diff --git a/src-tauri/tms_service/target/owl/debug/build/getrandom-f6cefb0d0a113945/build_script_build-f6cefb0d0a113945.d b/src-tauri/tms_service/target/owl/debug/build/getrandom-f6cefb0d0a113945/build_script_build-f6cefb0d0a113945.d new file mode 100644 index 0000000..90f244e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/getrandom-f6cefb0d0a113945/build_script_build-f6cefb0d0a113945.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/getrandom-f6cefb0d0a113945/build_script_build-f6cefb0d0a113945: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/getrandom-f6cefb0d0a113945/build_script_build-f6cefb0d0a113945.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/getrandom-f941f6133d918ee6/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/getrandom-f941f6133d918ee6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/getrandom-f941f6133d918ee6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/getrandom-f941f6133d918ee6/output b/src-tauri/tms_service/target/owl/debug/build/getrandom-f941f6133d918ee6/output new file mode 100644 index 0000000..d15ba9a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/getrandom-f941f6133d918ee6/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=build.rs diff --git a/src-tauri/tms_service/target/owl/debug/build/getrandom-f941f6133d918ee6/root-output b/src-tauri/tms_service/target/owl/debug/build/getrandom-f941f6133d918ee6/root-output new file mode 100644 index 0000000..6f5289b --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/getrandom-f941f6133d918ee6/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/getrandom-f941f6133d918ee6/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/getrandom-f941f6133d918ee6/stderr b/src-tauri/tms_service/target/owl/debug/build/getrandom-f941f6133d918ee6/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/html5ever-67fa33fbb41b3bda/build-script-build b/src-tauri/tms_service/target/owl/debug/build/html5ever-67fa33fbb41b3bda/build-script-build new file mode 100755 index 0000000..5816fec Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/html5ever-67fa33fbb41b3bda/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/html5ever-67fa33fbb41b3bda/build_script_build-67fa33fbb41b3bda b/src-tauri/tms_service/target/owl/debug/build/html5ever-67fa33fbb41b3bda/build_script_build-67fa33fbb41b3bda new file mode 100755 index 0000000..5816fec Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/html5ever-67fa33fbb41b3bda/build_script_build-67fa33fbb41b3bda differ diff --git a/src-tauri/tms_service/target/owl/debug/build/html5ever-67fa33fbb41b3bda/build_script_build-67fa33fbb41b3bda.d b/src-tauri/tms_service/target/owl/debug/build/html5ever-67fa33fbb41b3bda/build_script_build-67fa33fbb41b3bda.d new file mode 100644 index 0000000..effcae9 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/html5ever-67fa33fbb41b3bda/build_script_build-67fa33fbb41b3bda.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/html5ever-67fa33fbb41b3bda/build_script_build-67fa33fbb41b3bda: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/build.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/macros/match_token.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/html5ever-67fa33fbb41b3bda/build_script_build-67fa33fbb41b3bda.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/build.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/macros/match_token.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/build.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/macros/match_token.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/html5ever-f2ef4faa050d52c7/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/html5ever-f2ef4faa050d52c7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/html5ever-f2ef4faa050d52c7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/html5ever-f2ef4faa050d52c7/out/rules.rs b/src-tauri/tms_service/target/owl/debug/build/html5ever-f2ef4faa050d52c7/out/rules.rs new file mode 100644 index 0000000..e669024 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/html5ever-f2ef4faa050d52c7/out/rules.rs @@ -0,0 +1,1656 @@ +use markup5ever :: { +expanded_name , local_name , namespace_prefix , namespace_url , ns +} ; use crate :: tokenizer :: states :: { +Plaintext , Rawtext , Rcdata , ScriptData +} ; use crate :: tree_builder :: tag_sets :: * ; use crate :: tree_builder :: types :: * ; use std :: borrow :: ToOwned ; use crate :: tendril :: SliceExt ; fn any_not_whitespace (x : & StrTendril) -> bool { +x . chars () . any (| c | ! c . is_ascii_whitespace ()) +} fn current_node < Handle > (open_elems : & [Handle]) -> & Handle { +open_elems . last () . expect ("no current element") +} # [doc (hidden)] impl < Handle , Sink > TreeBuilder < Handle , Sink > where Handle : Clone , Sink : TreeSink < Handle = Handle > , { +fn step (& mut self , mode : InsertionMode , token : Token) -> ProcessResult < Handle > { +self . debug_step (mode , & token) ; match mode { +Initial => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => Done , CommentToken (text) => self . append_comment_to_doc (text) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +if ! self . opts . iframe_srcdoc { +self . unexpected (& token) ; self . set_quirks_mode (Quirks) ; +} Reprocess (BeforeHtml , token) +} , +} +} +} , BeforeHtml => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => Done , CommentToken (text) => self . append_comment_to_doc (text) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => { +self . create_root (tag . attrs) ; self . mode = BeforeHead ; Done +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("head") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => false , _ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => self . unexpected (& tag) , (_ , token) => { +self . create_root (vec ! ()) ; Reprocess (BeforeHead , token) +} , +} +} +} , BeforeHead => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => Done , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) => { +self . head_elem = Some (self . insert_element_for (tag)) ; self . mode = InHead ; Done +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("head") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => false , _ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => self . unexpected (& tag) , (_ , token) => { +self . head_elem = Some (self . insert_phantom (local_name ! ("head"))) ; Reprocess (InHead , token) +} , +} +} +} , InHead => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("base") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("basefont") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("bgsound") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("link") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) => { +self . insert_and_pop_element_for (tag) ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("title") , .. +}) => { +self . parse_raw_data (tag , Rcdata) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noscript") , .. +}) => { +if (! self . opts . scripting_enabled) && (tag . name == local_name ! ("noscript")) { +self . insert_element_for (tag) ; self . mode = InHeadNoscript ; Done +} else { +self . parse_raw_data (tag , Rawtext) +} +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) => { +let elem = create_element (& mut self . sink , QualName :: new (None , ns ! (html) , local_name ! ("script")) , tag . attrs) ; if self . is_fragment () { +self . sink . mark_script_already_started (& elem) ; +} self . insert_appropriately (AppendNode (elem . clone ()) , None) ; self . open_elems . push (elem) ; self . to_raw_text_mode (ScriptData) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("head") , .. +}) => { +self . pop () ; self . mode = AfterHead ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) => { +self . insert_element_for (tag) ; self . active_formatting . push (Marker) ; self . frameset_ok = false ; self . mode = InTemplate ; self . template_modes . push (InTemplate) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => { +if ! self . in_html_elem_named (local_name ! ("template")) { +self . unexpected (& tag) ; +} else { +self . generate_implied_end (thorough_implied_end) ; self . expect_to_close (local_name ! ("template")) ; self . clear_active_formatting_to_marker () ; self . template_modes . pop () ; self . mode = self . reset_insertion_mode () ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => false , _ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => self . unexpected (& tag) , (_ , token) => { +self . pop () ; Reprocess (AfterHead , token) +} , +} +} +} , InHeadNoscript => match token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("noscript") , .. +}) => { +self . pop () ; self . mode = InHead ; Done +} , CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => self . step (InHead , token) , CommentToken (_) => self . step (InHead , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("basefont") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("bgsound") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("link") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) => self . step (InHead , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noscript") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => false , _ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => self . unexpected (& tag) , (_ , token) => { +self . unexpected (& token) ; self . pop () ; Reprocess (InHead , token) +} , +} +} +} , AfterHead => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("body") , .. +}) => { +self . insert_element_for (tag) ; self . frameset_ok = false ; self . mode = InBody ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("frameset") , .. +}) => { +self . insert_element_for (tag) ; self . mode = InFrameset ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("base") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("basefont") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("bgsound") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("link") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("title") , .. +}) => { +self . unexpected (& token) ; let head = self . head_elem . as_ref () . expect ("no head element") . clone () ; self . push (& head) ; let result = self . step (InHead , token) ; self . remove_from_stack (& head) ; result +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => self . step (InHead , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => false , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => false , _ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => self . unexpected (& tag) , (_ , token) => { +self . insert_phantom (local_name ! ("body")) ; Reprocess (InBody , token) +} , +} +} +} , InBody => match token { +NullCharacterToken => self . unexpected (& token) , CharacterTokens (_ , text) => { +self . reconstruct_formatting () ; if any_not_whitespace (& text) { +self . frameset_ok = false ; +} self . append_text (text) +} , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => { +self . unexpected (& tag) ; if ! self . in_html_elem_named (local_name ! ("template")) { +let top = html_elem (& self . open_elems) ; self . sink . add_attrs_if_missing (top , tag . attrs) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("base") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("basefont") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("bgsound") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("link") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("title") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => { +self . step (InHead , token) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("body") , .. +}) => { +self . unexpected (& tag) ; match self . body_elem () . cloned () { +Some (ref node) if self . open_elems . len () != 1 && ! self . in_html_elem_named (local_name ! ("template")) => { +self . frameset_ok = false ; self . sink . add_attrs_if_missing (node , tag . attrs) +} , _ => { +} +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("frameset") , .. +}) => { +self . unexpected (& tag) ; if ! self . frameset_ok { +return Done ; +} let body = unwrap_or_return ! (self . body_elem () , Done) . clone () ; self . sink . remove_from_parent (& body) ; self . open_elems . truncate (1) ; self . insert_element_for (tag) ; self . mode = InFrameset ; Done +} , EOFToken => { +if ! self . template_modes . is_empty () { +self . step (InTemplate , token) +} else { +self . check_body_end () ; self . stop_parsing () +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) => { +if self . in_scope_named (default_scope , local_name ! ("body")) { +self . check_body_end () ; self . mode = AfterBody ; +} else { +self . sink . parse_error (Borrowed (" with no in scope")) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => { +if self . in_scope_named (default_scope , local_name ! ("body")) { +self . check_body_end () ; Reprocess (AfterBody , token) +} else { +self . sink . parse_error (Borrowed (" with no in scope")) ; Done +} +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("address") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("article") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("aside") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("blockquote") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("center") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("details") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dialog") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dir") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("div") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dl") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("fieldset") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("figcaption") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("figure") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("footer") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("header") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("hgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("main") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("nav") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("ol") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("p") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("search") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("section") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("summary") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("ul") , .. +}) => { +self . close_p_element_in_button_scope () ; self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("menu") , .. +}) => { +self . close_p_element_in_button_scope () ; self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h1") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h2") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h3") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h4") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h5") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h6") , .. +}) => { +self . close_p_element_in_button_scope () ; if self . current_node_in (heading_tag) { +self . sink . parse_error (Borrowed ("nested heading tags")) ; self . pop () ; +} self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("pre") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("listing") , .. +}) => { +self . close_p_element_in_button_scope () ; self . insert_element_for (tag) ; self . ignore_lf = true ; self . frameset_ok = false ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("form") , .. +}) => { +if self . form_elem . is_some () && ! self . in_html_elem_named (local_name ! ("template")) { +self . sink . parse_error (Borrowed ("nested forms")) ; +} else { +self . close_p_element_in_button_scope () ; let elem = self . insert_element_for (tag) ; if ! self . in_html_elem_named (local_name ! ("template")) { +self . form_elem = Some (elem) ; +} +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("li") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dd") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dt") , .. +}) => { +declare_tag_set ! (close_list = "li") ; declare_tag_set ! (close_defn = "dd" "dt") ; declare_tag_set ! (extra_special = [special_tag] - "address" "div" "p") ; let list = match tag . name { +local_name ! ("li") => true , local_name ! ("dd") | local_name ! ("dt") => false , _ => unreachable ! () , +} ; self . frameset_ok = false ; let mut to_close = None ; for node in self . open_elems . iter () . rev () { +let name = self . sink . elem_name (node) ; let can_close = if list { +close_list (name) +} else { +close_defn (name) +} ; if can_close { +to_close = Some (name . local . clone ()) ; break ; +} if extra_special (name) { +break ; +} +} match to_close { +Some (name) => { +self . generate_implied_end_except (name . clone ()) ; self . expect_to_close (name) ; +} None => () , +} self . close_p_element_in_button_scope () ; self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("plaintext") , .. +}) => { +self . close_p_element_in_button_scope () ; self . insert_element_for (tag) ; ToPlaintext +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("button") , .. +}) => { +if self . in_scope_named (default_scope , local_name ! ("button")) { +self . sink . parse_error (Borrowed ("nested buttons")) ; self . generate_implied_end (cursory_implied_end) ; self . pop_until_named (local_name ! ("button")) ; +} self . reconstruct_formatting () ; self . insert_element_for (tag) ; self . frameset_ok = false ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("address") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("article") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("aside") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("blockquote") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("button") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("center") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("details") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("dialog") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("dir") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("div") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("dl") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("fieldset") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("figcaption") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("figure") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("footer") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("header") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("hgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("listing") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("main") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("menu") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("nav") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("ol") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("pre") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("search") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("section") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("summary") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("ul") , .. +}) => { +if ! self . in_scope_named (default_scope , tag . name . clone ()) { +self . unexpected (& tag) ; +} else { +self . generate_implied_end (cursory_implied_end) ; self . expect_to_close (tag . name) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("form") , .. +}) => { +if ! self . in_html_elem_named (local_name ! ("template")) { +let node = match self . form_elem . take () { +None => { +self . sink . parse_error (Borrowed ("Null form element pointer on ")) ; return Done ; +} Some (x) => x , +} ; if ! self . in_scope (default_scope , | n | self . sink . same_node (& node , & n)) { +self . sink . parse_error (Borrowed ("Form element not in scope on ")) ; return Done ; +} self . generate_implied_end (cursory_implied_end) ; let current = self . current_node () . clone () ; self . remove_from_stack (& node) ; if ! self . sink . same_node (& current , & node) { +self . sink . parse_error (Borrowed ("Bad open element on ")) ; +} +} else { +if ! self . in_scope_named (default_scope , local_name ! ("form")) { +self . sink . parse_error (Borrowed ("Form element not in scope on ")) ; return Done ; +} self . generate_implied_end (cursory_implied_end) ; if ! self . current_node_named (local_name ! ("form")) { +self . sink . parse_error (Borrowed ("Bad open element on ")) ; +} self . pop_until_named (local_name ! ("form")) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("p") , .. +}) => { +if ! self . in_scope_named (button_scope , local_name ! ("p")) { +self . sink . parse_error (Borrowed ("No

tag to close")) ; self . insert_phantom (local_name ! ("p")) ; +} self . close_p_element () ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("li") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("dd") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("dt") , .. +}) => { +let in_scope = if tag . name == local_name ! ("li") { +self . in_scope_named (list_item_scope , tag . name . clone ()) +} else { +self . in_scope_named (default_scope , tag . name . clone ()) +} ; if in_scope { +self . generate_implied_end_except (tag . name . clone ()) ; self . expect_to_close (tag . name) ; +} else { +self . sink . parse_error (Borrowed ("No matching tag to close")) ; +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h1") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h2") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h3") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h4") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h5") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("h6") , .. +}) => { +if self . in_scope (default_scope , | n | self . elem_in (& n , heading_tag)) { +self . generate_implied_end (cursory_implied_end) ; if ! self . current_node_named (tag . name) { +self . sink . parse_error (Borrowed ("Closing wrong heading tag")) ; +} self . pop_until (heading_tag) ; +} else { +self . sink . parse_error (Borrowed ("No heading tag to close")) ; +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("a") , .. +}) => { +self . handle_misnested_a_tags (& tag) ; self . reconstruct_formatting () ; self . create_formatting_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("b") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("big") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("code") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("em") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("font") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("i") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("s") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("small") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("strike") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("strong") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tt") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("u") , .. +}) => { +self . reconstruct_formatting () ; self . create_formatting_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("nobr") , .. +}) => { +self . reconstruct_formatting () ; if self . in_scope_named (default_scope , local_name ! ("nobr")) { +self . sink . parse_error (Borrowed ("Nested ")) ; self . adoption_agency (local_name ! ("nobr")) ; self . reconstruct_formatting () ; +} self . create_formatting_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("a") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("b") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("big") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("code") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("em") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("font") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("i") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("nobr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("s") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("small") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("strike") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("strong") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tt") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("u") , .. +}) => { +self . adoption_agency (tag . name) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("applet") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("marquee") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("object") , .. +}) => { +self . reconstruct_formatting () ; self . insert_element_for (tag) ; self . active_formatting . push (Marker) ; self . frameset_ok = false ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("applet") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("marquee") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("object") , .. +}) => { +if ! self . in_scope_named (default_scope , tag . name . clone ()) { +self . unexpected (& tag) ; +} else { +self . generate_implied_end (cursory_implied_end) ; self . expect_to_close (tag . name) ; self . clear_active_formatting_to_marker () ; +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("table") , .. +}) => { +if self . quirks_mode != Quirks { +self . close_p_element_in_button_scope () ; +} self . insert_element_for (tag) ; self . frameset_ok = false ; self . mode = InTable ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) => { +self . unexpected (& tag) ; self . step (InBody , TagToken (Tag { +kind : StartTag , attrs : vec ! () , .. tag +})) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("area") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("br") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("embed") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("img") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("keygen") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("wbr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("input") , .. +}) => { +let keep_frameset_ok = match tag . name { +local_name ! ("input") => self . is_type_hidden (& tag) , _ => false , +} ; self . reconstruct_formatting () ; self . insert_and_pop_element_for (tag) ; if ! keep_frameset_ok { +self . frameset_ok = false ; +} DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("param") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("source") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("track") , .. +}) => { +self . insert_and_pop_element_for (tag) ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("hr") , .. +}) => { +self . close_p_element_in_button_scope () ; self . insert_and_pop_element_for (tag) ; self . frameset_ok = false ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("image") , .. +}) => { +self . unexpected (& tag) ; self . step (InBody , TagToken (Tag { +name : local_name ! ("img") , .. tag +})) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("textarea") , .. +}) => { +self . ignore_lf = true ; self . frameset_ok = false ; self . parse_raw_data (tag , Rcdata) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("xmp") , .. +}) => { +self . close_p_element_in_button_scope () ; self . reconstruct_formatting () ; self . frameset_ok = false ; self . parse_raw_data (tag , Rawtext) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("iframe") , .. +}) => { +self . frameset_ok = false ; self . parse_raw_data (tag , Rawtext) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noembed") , .. +}) => { +self . parse_raw_data (tag , Rawtext) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("select") , .. +}) => { +self . reconstruct_formatting () ; self . insert_element_for (tag) ; self . frameset_ok = false ; self . mode = match self . mode { +InTable | InCaption | InTableBody | InRow | InCell => InSelectInTable , _ => InSelect , +} ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("optgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("option") , .. +}) => { +if self . current_node_named (local_name ! ("option")) { +self . pop () ; +} self . reconstruct_formatting () ; self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("rb") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("rtc") , .. +}) => { +if self . in_scope_named (default_scope , local_name ! ("ruby")) { +self . generate_implied_end (cursory_implied_end) ; +} if ! self . current_node_named (local_name ! ("ruby")) { +self . unexpected (& tag) ; +} self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("rp") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("rt") , .. +}) => { +if self . in_scope_named (default_scope , local_name ! ("ruby")) { +self . generate_implied_end_except (local_name ! ("rtc")) ; +} if ! self . current_node_named (local_name ! ("rtc")) && ! self . current_node_named (local_name ! ("ruby")) { +self . unexpected (& tag) ; +} self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("math") , .. +}) => self . enter_foreign (tag , ns ! (mathml)) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("svg") , .. +}) => self . enter_foreign (tag , ns ! (svg)) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("frame") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) => { +self . unexpected (& token) ; Done +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , .. +})) => { +if self . opts . scripting_enabled && tag . name == local_name ! ("noscript") { +self . parse_raw_data (tag , Rawtext) +} else { +self . reconstruct_formatting () ; self . insert_element_for (tag) ; Done +} +} , (true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => { +self . process_end_tag_in_body (tag) ; Done +} , (_ , _) => panic ! ("impossible case in InBody mode") , +} +} +} , Text => match token { +CharacterTokens (_ , text) => self . append_text (text) , EOFToken => { +self . unexpected (& token) ; if self . current_node_named (local_name ! ("script")) { +let current = current_node (& self . open_elems) ; self . sink . mark_script_already_started (current) ; +} self . pop () ; Reprocess (self . orig_mode . take () . unwrap () , token) +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => { +let node = self . pop () ; self . mode = self . orig_mode . take () . unwrap () ; if tag . name == local_name ! ("script") { +return Script (node) ; +} Done +} , (_ , _) => panic ! ("impossible case in Text mode") , +} +} +} , InTable => match token { +NullCharacterToken => self . process_chars_in_table (token) , CharacterTokens (..) => self . process_chars_in_table (token) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) => { +self . pop_until_current (table_scope) ; self . active_formatting . push (Marker) ; self . insert_element_for (tag) ; self . mode = InCaption ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) => { +self . pop_until_current (table_scope) ; self . insert_element_for (tag) ; self . mode = InColumnGroup ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) => { +self . pop_until_current (table_scope) ; self . insert_phantom (local_name ! ("colgroup")) ; Reprocess (InColumnGroup , token) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) => { +self . pop_until_current (table_scope) ; self . insert_element_for (tag) ; self . mode = InTableBody ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) => { +self . pop_until_current (table_scope) ; self . insert_phantom (local_name ! ("tbody")) ; Reprocess (InTableBody , token) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("table") , .. +}) => { +self . unexpected (& token) ; if self . in_scope_named (table_scope , local_name ! ("table")) { +self . pop_until_named (local_name ! ("table")) ; Reprocess (self . reset_insertion_mode () , token) +} else { +Done +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) => { +if self . in_scope_named (table_scope , local_name ! ("table")) { +self . pop_until_named (local_name ! ("table")) ; self . mode = self . reset_insertion_mode () ; +} else { +self . unexpected (& token) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) => self . unexpected (& token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => self . step (InHead , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("input") , .. +}) => { +self . unexpected (& tag) ; if self . is_type_hidden (& tag) { +self . insert_and_pop_element_for (tag) ; DoneAckSelfClosing +} else { +self . foster_parent_in_body (TagToken (tag)) +} +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("form") , .. +}) => { +self . unexpected (& tag) ; if ! self . in_html_elem_named (local_name ! ("template")) && self . form_elem . is_none () { +self . form_elem = Some (self . insert_and_pop_element_for (tag)) ; +} Done +} , EOFToken => self . step (InBody , token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +self . unexpected (& token) ; self . foster_parent_in_body (token) +} , +} +} +} , InTableText => match token { +NullCharacterToken => self . unexpected (& token) , CharacterTokens (split , text) => { +self . pending_table_text . push ((split , text)) ; Done +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +let pending = :: std :: mem :: take (& mut self . pending_table_text) ; let contains_nonspace = pending . iter () . any (| & (split , ref text) | { +match split { +Whitespace => false , NotWhitespace => true , NotSplit => any_not_whitespace (text) , +} +}) ; if contains_nonspace { +self . sink . parse_error (Borrowed ("Non-space table text")) ; for (split , text) in pending . into_iter () { +match self . foster_parent_in_body (CharacterTokens (split , text)) { +Done => () , _ => panic ! ("not prepared to handle this!") , +} +} +} else { +for (_ , text) in pending . into_iter () { +self . append_text (text) ; +} +} Reprocess (self . orig_mode . take () . unwrap () , token) +} , +} +} +} , InCaption => match token { +crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) => { +if self . in_scope_named (table_scope , local_name ! ("caption")) { +self . generate_implied_end (cursory_implied_end) ; self . expect_to_close (local_name ! ("caption")) ; self . clear_active_formatting_to_marker () ; match tag { +Tag { +kind : EndTag , name : local_name ! ("caption") , .. +} => { +self . mode = InTable ; Done +} _ => Reprocess (InTable , TagToken (tag)) +} +} else { +self . unexpected (& tag) ; Done +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . step (InBody , token) , +} +} +} , InColumnGroup => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) => { +self . insert_and_pop_element_for (tag) ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) => { +if self . current_node_named (local_name ! ("colgroup")) { +self . pop () ; self . mode = InTable ; +} else { +self . unexpected (& token) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) => self . unexpected (& token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => self . step (InHead , token) , EOFToken => self . step (InBody , token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +if self . current_node_named (local_name ! ("colgroup")) { +self . pop () ; Reprocess (InTable , token) +} else { +self . unexpected (& token) +} +} , +} +} +} , InTableBody => match token { +crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) => { +self . pop_until_current (table_body_context) ; self . insert_element_for (tag) ; self . mode = InRow ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) => { +self . unexpected (& token) ; self . pop_until_current (table_body_context) ; self . insert_phantom (local_name ! ("tr")) ; Reprocess (InRow , token) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) => { +if self . in_scope_named (table_scope , tag . name . clone ()) { +self . pop_until_current (table_body_context) ; self . pop () ; self . mode = InTable ; +} else { +self . unexpected (& tag) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) => { +declare_tag_set ! (table_outer = "table" "tbody" "tfoot") ; if self . in_scope (table_scope , | e | self . elem_in (& e , table_outer)) { +self . pop_until_current (table_body_context) ; self . pop () ; Reprocess (InTable , token) +} else { +self . unexpected (& token) +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . step (InTable , token) , +} +} +} , InRow => match token { +crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) => { +self . pop_until_current (table_row_context) ; self . insert_element_for (tag) ; self . mode = InCell ; self . active_formatting . push (Marker) ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) => { +if self . in_scope_named (table_scope , local_name ! ("tr")) { +self . pop_until_current (table_row_context) ; let node = self . pop () ; self . assert_named (& node , local_name ! ("tr")) ; self . mode = InTableBody ; +} else { +self . unexpected (& token) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) => { +if self . in_scope_named (table_scope , local_name ! ("tr")) { +self . pop_until_current (table_row_context) ; let node = self . pop () ; self . assert_named (& node , local_name ! ("tr")) ; Reprocess (InTableBody , token) +} else { +self . unexpected (& token) +} +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) => { +if self . in_scope_named (table_scope , tag . name . clone ()) { +if self . in_scope_named (table_scope , local_name ! ("tr")) { +self . pop_until_current (table_row_context) ; let node = self . pop () ; self . assert_named (& node , local_name ! ("tr")) ; Reprocess (InTableBody , TagToken (tag)) +} else { +Done +} +} else { +self . unexpected (& tag) +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) => self . unexpected (& token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . step (InTable , token) , +} +} +} , InCell => match token { +crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) => { +if self . in_scope_named (table_scope , tag . name . clone ()) { +self . generate_implied_end (cursory_implied_end) ; self . expect_to_close (tag . name) ; self . clear_active_formatting_to_marker () ; self . mode = InRow ; +} else { +self . unexpected (& tag) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) => { +if self . in_scope (table_scope , | n | self . elem_in (& n , td_th)) { +self . close_the_cell () ; Reprocess (InRow , token) +} else { +self . unexpected (& token) +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("col") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => self . unexpected (& token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) => { +if self . in_scope_named (table_scope , tag . name . clone ()) { +self . close_the_cell () ; Reprocess (InRow , TagToken (tag)) +} else { +self . unexpected (& tag) +} +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . step (InBody , token) , +} +} +} , InSelect => match token { +NullCharacterToken => self . unexpected (& token) , CharacterTokens (_ , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("option") , .. +}) => { +if self . current_node_named (local_name ! ("option")) { +self . pop () ; +} self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("optgroup") , .. +}) => { +if self . current_node_named (local_name ! ("option")) { +self . pop () ; +} if self . current_node_named (local_name ! ("optgroup")) { +self . pop () ; +} self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("hr") , .. +}) => { +if self . current_node_named (local_name ! ("option")) { +self . pop () ; +} if self . current_node_named (local_name ! ("optgroup")) { +self . pop () ; +} self . insert_element_for (tag) ; self . pop () ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("optgroup") , .. +}) => { +if self . open_elems . len () >= 2 && self . current_node_named (local_name ! ("option")) && self . html_elem_named (& self . open_elems [self . open_elems . len () - 2] , local_name ! ("optgroup")) { +self . pop () ; +} if self . current_node_named (local_name ! ("optgroup")) { +self . pop () ; +} else { +self . unexpected (& token) ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("option") , .. +}) => { +if self . current_node_named (local_name ! ("option")) { +self . pop () ; +} else { +self . unexpected (& token) ; +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("select") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("select") , .. +}) => { +let in_scope = self . in_scope_named (select_scope , local_name ! ("select")) ; if ! in_scope || tag . kind == StartTag { +self . unexpected (& tag) ; +} if in_scope { +self . pop_until_named (local_name ! ("select")) ; self . mode = self . reset_insertion_mode () ; +} Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("input") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("keygen") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("textarea") , .. +}) => { +self . unexpected (& token) ; if self . in_scope_named (select_scope , local_name ! ("select")) { +self . pop_until_named (local_name ! ("select")) ; Reprocess (self . reset_insertion_mode () , token) +} else { +Done +} +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => self . step (InHead , token) , EOFToken => self . step (InBody , token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . unexpected (& token) , +} +} +} , InSelectInTable => match token { +crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("table") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) => { +self . unexpected (& token) ; self . pop_until_named (local_name ! ("select")) ; Reprocess (self . reset_insertion_mode () , token) +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("table") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("thead") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("tr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("th") , .. +}) => { +self . unexpected (& tag) ; if self . in_scope_named (table_scope , tag . name . clone ()) { +self . pop_until_named (local_name ! ("select")) ; Reprocess (self . reset_insertion_mode () , TagToken (tag)) +} else { +Done +} +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . step (InSelect , token) , +} +} +} , InTemplate => match token { +CharacterTokens (_ , _) => self . step (InBody , token) , CommentToken (_) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("base") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("basefont") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("bgsound") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("link") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("script") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("style") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("template") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("title") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("template") , .. +}) => { +self . step (InHead , token) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("caption") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("colgroup") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tbody") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tfoot") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("thead") , .. +}) => { +self . template_modes . pop () ; self . template_modes . push (InTable) ; Reprocess (InTable , token) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("col") , .. +}) => { +self . template_modes . pop () ; self . template_modes . push (InColumnGroup) ; Reprocess (InColumnGroup , token) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tr") , .. +}) => { +self . template_modes . pop () ; self . template_modes . push (InTableBody) ; Reprocess (InTableBody , token) +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("td") , .. +}) | crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("th") , .. +}) => { +self . template_modes . pop () ; self . template_modes . push (InRow) ; Reprocess (InRow , token) +} , EOFToken => { +if ! self . in_html_elem_named (local_name ! ("template")) { +self . stop_parsing () +} else { +self . unexpected (& token) ; self . pop_until_named (local_name ! ("template")) ; self . clear_active_formatting_to_marker () ; self . template_modes . pop () ; self . mode = self . reset_insertion_mode () ; Reprocess (self . reset_insertion_mode () , token) +} +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , .. +})) => { +self . template_modes . pop () ; self . template_modes . push (InBody) ; Reprocess (InBody , TagToken (tag)) +} , (_ , token) => self . unexpected (& token) , +} +} +} , AfterBody => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => self . step (InBody , token) , CommentToken (text) => self . append_comment_to_html (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => { +if self . is_fragment () { +self . unexpected (& token) ; +} else { +self . mode = AfterAfterBody ; +} Done +} , EOFToken => self . stop_parsing () , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +self . unexpected (& token) ; Reprocess (InBody , token) +} , +} +} +} , InFrameset => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("frameset") , .. +}) => { +self . insert_element_for (tag) ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("frameset") , .. +}) => { +if self . open_elems . len () == 1 { +self . unexpected (& token) ; +} else { +self . pop () ; if ! self . is_fragment () && ! self . current_node_named (local_name ! ("frameset")) { +self . mode = AfterFrameset ; +} +} Done +} , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("frame") , .. +}) => { +self . insert_and_pop_element_for (tag) ; DoneAckSelfClosing +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) => self . step (InHead , token) , EOFToken => { +if self . open_elems . len () != 1 { +self . unexpected (& token) ; +} self . stop_parsing () +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . unexpected (& token) , +} +} +} , AfterFrameset => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , text) => self . append_text (text) , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("html") , .. +}) => { +self . mode = AfterAfterFrameset ; Done +} , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) => self . step (InHead , token) , EOFToken => self . stop_parsing () , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . unexpected (& token) , +} +} +} , AfterAfterBody => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => self . step (InBody , token) , CommentToken (text) => self . append_comment_to_doc (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , EOFToken => self . stop_parsing () , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => { +self . unexpected (& token) ; Reprocess (InBody , token) +} , +} +} +} , AfterAfterFrameset => match token { +CharacterTokens (NotSplit , text) => SplitWhitespace (text) , CharacterTokens (Whitespace , _) => self . step (InBody , token) , CommentToken (text) => self . append_comment_to_doc (text) , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("html") , .. +}) => self . step (InBody , token) , EOFToken => self . stop_parsing () , crate :: tree_builder :: types :: TagToken (crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("noframes") , .. +}) => self . step (InHead , token) , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(_ , token) => self . unexpected (& token) , +} +} +} , +} +} fn step_foreign (& mut self , token : Token) -> ProcessResult < Handle > { +match token { +NullCharacterToken => { +self . unexpected (& token) ; self . append_text ("\u{fffd}" . to_tendril ()) +} , CharacterTokens (_ , text) => { +if any_not_whitespace (& text) { +self . frameset_ok = false ; +} self . append_text (text) +} , CommentToken (text) => self . append_comment (text) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("b") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("big") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("blockquote") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("body") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("br") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("center") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("code") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dd") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("div") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dl") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("dt") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("em") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("embed") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h1") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h2") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h3") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h4") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h5") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("h6") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("head") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("hr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("i") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("img") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("li") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("listing") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("menu") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("meta") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("nobr") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("ol") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("p") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("pre") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("ruby") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("s") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("small") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("span") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("strong") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("strike") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("sub") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("sup") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("table") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("tt") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("u") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("ul") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("var") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("br") , .. +}) | crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , name : local_name ! ("p") , .. +}) => self . unexpected_start_tag_in_foreign_content (tag) , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , name : local_name ! ("font") , .. +}) => { +let unexpected = tag . attrs . iter () . any (| attr | { +matches ! (attr . name . expanded () , expanded_name ! ("" , "color") | expanded_name ! ("" , "face") | expanded_name ! ("" , "size")) +}) ; if unexpected { +self . unexpected_start_tag_in_foreign_content (tag) +} else { +self . foreign_start_tag (tag) +} +} , last_arm_token => { +let enable_wildcards = match last_arm_token { +_ => true , +} ; match (enable_wildcards , last_arm_token) { +(true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: StartTag , .. +})) => self . foreign_start_tag (tag) , (true , crate :: tree_builder :: types :: TagToken (tag @ crate :: tokenizer :: Tag { +kind : crate :: tokenizer :: EndTag , .. +})) => { +let mut first = true ; let mut stack_idx = self . open_elems . len () - 1 ; loop { +if stack_idx == 0 { +return Done ; +} let html ; let eq ; { +let node_name = self . sink . elem_name (& self . open_elems [stack_idx]) ; html = * node_name . ns == ns ! (html) ; eq = node_name . local . eq_ignore_ascii_case (& tag . name) ; +} if ! first && html { +let mode = self . mode ; return self . step (mode , TagToken (tag)) ; +} if eq { +self . open_elems . truncate (stack_idx) ; return Done ; +} if first { +self . unexpected (& tag) ; first = false ; +} stack_idx -= 1 ; +} +} , (_ , _) => panic ! ("impossible case in foreign content") , +} +} +} +} +} \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/html5ever-f2ef4faa050d52c7/output b/src-tauri/tms_service/target/owl/debug/build/html5ever-f2ef4faa050d52c7/output new file mode 100644 index 0000000..e1f6044 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/html5ever-f2ef4faa050d52c7/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/rules.rs diff --git a/src-tauri/tms_service/target/owl/debug/build/html5ever-f2ef4faa050d52c7/root-output b/src-tauri/tms_service/target/owl/debug/build/html5ever-f2ef4faa050d52c7/root-output new file mode 100644 index 0000000..0dd9cfb --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/html5ever-f2ef4faa050d52c7/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/html5ever-f2ef4faa050d52c7/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/html5ever-f2ef4faa050d52c7/stderr b/src-tauri/tms_service/target/owl/debug/build/html5ever-f2ef4faa050d52c7/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/httparse-61f6187f5c79b914/build-script-build b/src-tauri/tms_service/target/owl/debug/build/httparse-61f6187f5c79b914/build-script-build new file mode 100755 index 0000000..14a6cd6 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/httparse-61f6187f5c79b914/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/httparse-61f6187f5c79b914/build_script_build-61f6187f5c79b914 b/src-tauri/tms_service/target/owl/debug/build/httparse-61f6187f5c79b914/build_script_build-61f6187f5c79b914 new file mode 100755 index 0000000..14a6cd6 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/httparse-61f6187f5c79b914/build_script_build-61f6187f5c79b914 differ diff --git a/src-tauri/tms_service/target/owl/debug/build/httparse-61f6187f5c79b914/build_script_build-61f6187f5c79b914.d b/src-tauri/tms_service/target/owl/debug/build/httparse-61f6187f5c79b914/build_script_build-61f6187f5c79b914.d new file mode 100644 index 0000000..a7a2373 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/httparse-61f6187f5c79b914/build_script_build-61f6187f5c79b914.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/httparse-61f6187f5c79b914/build_script_build-61f6187f5c79b914: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/httparse-61f6187f5c79b914/build_script_build-61f6187f5c79b914.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/httparse-cb0fa75e804412c8/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/httparse-cb0fa75e804412c8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/httparse-cb0fa75e804412c8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/httparse-cb0fa75e804412c8/output b/src-tauri/tms_service/target/owl/debug/build/httparse-cb0fa75e804412c8/output new file mode 100644 index 0000000..aac2d6a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/httparse-cb0fa75e804412c8/output @@ -0,0 +1,2 @@ +cargo:rustc-cfg=httparse_simd_neon_intrinsics +cargo:rustc-cfg=httparse_simd diff --git a/src-tauri/tms_service/target/owl/debug/build/httparse-cb0fa75e804412c8/root-output b/src-tauri/tms_service/target/owl/debug/build/httparse-cb0fa75e804412c8/root-output new file mode 100644 index 0000000..edba2df --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/httparse-cb0fa75e804412c8/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/httparse-cb0fa75e804412c8/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/httparse-cb0fa75e804412c8/stderr b/src-tauri/tms_service/target/owl/debug/build/httparse-cb0fa75e804412c8/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-781ca7a9e1ba8bd3/build-script-build b/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-781ca7a9e1ba8bd3/build-script-build new file mode 100755 index 0000000..f3641b3 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-781ca7a9e1ba8bd3/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-781ca7a9e1ba8bd3/build_script_build-781ca7a9e1ba8bd3 b/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-781ca7a9e1ba8bd3/build_script_build-781ca7a9e1ba8bd3 new file mode 100755 index 0000000..f3641b3 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-781ca7a9e1ba8bd3/build_script_build-781ca7a9e1ba8bd3 differ diff --git a/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-781ca7a9e1ba8bd3/build_script_build-781ca7a9e1ba8bd3.d b/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-781ca7a9e1ba8bd3/build_script_build-781ca7a9e1ba8bd3.d new file mode 100644 index 0000000..018c019 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-781ca7a9e1ba8bd3/build_script_build-781ca7a9e1ba8bd3.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-781ca7a9e1ba8bd3/build_script_build-781ca7a9e1ba8bd3: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-781ca7a9e1ba8bd3/build_script_build-781ca7a9e1ba8bd3.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-7af115ad377b4518/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-7af115ad377b4518/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-7af115ad377b4518/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-7af115ad377b4518/output b/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-7af115ad377b4518/output new file mode 100644 index 0000000..30ced52 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-7af115ad377b4518/output @@ -0,0 +1,2 @@ +cargo:rerun-if-env-changed=ICU4X_DATA_DIR +cargo:rustc-check-cfg=cfg(icu4c_enable_renaming) diff --git a/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-7af115ad377b4518/root-output b/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-7af115ad377b4518/root-output new file mode 100644 index 0000000..feec096 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-7af115ad377b4518/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-7af115ad377b4518/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-7af115ad377b4518/stderr b/src-tauri/tms_service/target/owl/debug/build/icu_normalizer_data-7af115ad377b4518/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-48cf7e7b9d5d4b83/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-48cf7e7b9d5d4b83/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-48cf7e7b9d5d4b83/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-48cf7e7b9d5d4b83/output b/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-48cf7e7b9d5d4b83/output new file mode 100644 index 0000000..30ced52 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-48cf7e7b9d5d4b83/output @@ -0,0 +1,2 @@ +cargo:rerun-if-env-changed=ICU4X_DATA_DIR +cargo:rustc-check-cfg=cfg(icu4c_enable_renaming) diff --git a/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-48cf7e7b9d5d4b83/root-output b/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-48cf7e7b9d5d4b83/root-output new file mode 100644 index 0000000..44c640d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-48cf7e7b9d5d4b83/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-48cf7e7b9d5d4b83/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-48cf7e7b9d5d4b83/stderr b/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-48cf7e7b9d5d4b83/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-74d6608750720d14/build-script-build b/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-74d6608750720d14/build-script-build new file mode 100755 index 0000000..98fa900 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-74d6608750720d14/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-74d6608750720d14/build_script_build-74d6608750720d14 b/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-74d6608750720d14/build_script_build-74d6608750720d14 new file mode 100755 index 0000000..98fa900 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-74d6608750720d14/build_script_build-74d6608750720d14 differ diff --git a/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-74d6608750720d14/build_script_build-74d6608750720d14.d b/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-74d6608750720d14/build_script_build-74d6608750720d14.d new file mode 100644 index 0000000..791fb23 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-74d6608750720d14/build_script_build-74d6608750720d14.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-74d6608750720d14/build_script_build-74d6608750720d14: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/icu_properties_data-74d6608750720d14/build_script_build-74d6608750720d14.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/libc-24444cb59b979421/build-script-build b/src-tauri/tms_service/target/owl/debug/build/libc-24444cb59b979421/build-script-build new file mode 100755 index 0000000..db24798 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/libc-24444cb59b979421/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/libc-24444cb59b979421/build_script_build-24444cb59b979421 b/src-tauri/tms_service/target/owl/debug/build/libc-24444cb59b979421/build_script_build-24444cb59b979421 new file mode 100755 index 0000000..db24798 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/libc-24444cb59b979421/build_script_build-24444cb59b979421 differ diff --git a/src-tauri/tms_service/target/owl/debug/build/libc-24444cb59b979421/build_script_build-24444cb59b979421.d b/src-tauri/tms_service/target/owl/debug/build/libc-24444cb59b979421/build_script_build-24444cb59b979421.d new file mode 100644 index 0000000..65827bf --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/libc-24444cb59b979421/build_script_build-24444cb59b979421.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/libc-24444cb59b979421/build_script_build-24444cb59b979421: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/libc-24444cb59b979421/build_script_build-24444cb59b979421.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/libc-9d01b46b1edd8d96/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/libc-9d01b46b1edd8d96/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/libc-9d01b46b1edd8d96/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/libc-9d01b46b1edd8d96/output b/src-tauri/tms_service/target/owl/debug/build/libc-9d01b46b1edd8d96/output new file mode 100644 index 0000000..89a43b5 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/libc-9d01b46b1edd8d96/output @@ -0,0 +1,25 @@ +cargo:rerun-if-changed=build.rs +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION +cargo:rustc-cfg=freebsd12 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_MUSL_V1_2_3 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_GNU_TIME_BITS +cargo:rustc-check-cfg=cfg(emscripten_old_stat_abi) +cargo:rustc-check-cfg=cfg(espidf_time32) +cargo:rustc-check-cfg=cfg(freebsd10) +cargo:rustc-check-cfg=cfg(freebsd11) +cargo:rustc-check-cfg=cfg(freebsd12) +cargo:rustc-check-cfg=cfg(freebsd13) +cargo:rustc-check-cfg=cfg(freebsd14) +cargo:rustc-check-cfg=cfg(freebsd15) +cargo:rustc-check-cfg=cfg(gnu_file_offset_bits64) +cargo:rustc-check-cfg=cfg(gnu_time_bits64) +cargo:rustc-check-cfg=cfg(libc_deny_warnings) +cargo:rustc-check-cfg=cfg(linux_time_bits64) +cargo:rustc-check-cfg=cfg(musl_v1_2_3) +cargo:rustc-check-cfg=cfg(musl32_time64) +cargo:rustc-check-cfg=cfg(vxworks_lt_25_09) +cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx","cygwin","qurt")) +cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos","nto71_iosock","nto80")) +cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) diff --git a/src-tauri/tms_service/target/owl/debug/build/libc-9d01b46b1edd8d96/root-output b/src-tauri/tms_service/target/owl/debug/build/libc-9d01b46b1edd8d96/root-output new file mode 100644 index 0000000..6629021 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/libc-9d01b46b1edd8d96/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/libc-9d01b46b1edd8d96/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/libc-9d01b46b1edd8d96/stderr b/src-tauri/tms_service/target/owl/debug/build/libc-9d01b46b1edd8d96/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/libc-b87c7187feddc612/build-script-build b/src-tauri/tms_service/target/owl/debug/build/libc-b87c7187feddc612/build-script-build new file mode 100755 index 0000000..ea6ff0a Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/libc-b87c7187feddc612/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/libc-b87c7187feddc612/build_script_build-b87c7187feddc612 b/src-tauri/tms_service/target/owl/debug/build/libc-b87c7187feddc612/build_script_build-b87c7187feddc612 new file mode 100755 index 0000000..ea6ff0a Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/libc-b87c7187feddc612/build_script_build-b87c7187feddc612 differ diff --git a/src-tauri/tms_service/target/owl/debug/build/libc-b87c7187feddc612/build_script_build-b87c7187feddc612.d b/src-tauri/tms_service/target/owl/debug/build/libc-b87c7187feddc612/build_script_build-b87c7187feddc612.d new file mode 100644 index 0000000..09dc270 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/libc-b87c7187feddc612/build_script_build-b87c7187feddc612.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/libc-b87c7187feddc612/build_script_build-b87c7187feddc612: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/libc-b87c7187feddc612/build_script_build-b87c7187feddc612.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/libc-d13ba0f46c43dc65/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/libc-d13ba0f46c43dc65/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/libc-d13ba0f46c43dc65/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/libc-d13ba0f46c43dc65/output b/src-tauri/tms_service/target/owl/debug/build/libc-d13ba0f46c43dc65/output new file mode 100644 index 0000000..89a43b5 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/libc-d13ba0f46c43dc65/output @@ -0,0 +1,25 @@ +cargo:rerun-if-changed=build.rs +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION +cargo:rustc-cfg=freebsd12 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_MUSL_V1_2_3 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_GNU_TIME_BITS +cargo:rustc-check-cfg=cfg(emscripten_old_stat_abi) +cargo:rustc-check-cfg=cfg(espidf_time32) +cargo:rustc-check-cfg=cfg(freebsd10) +cargo:rustc-check-cfg=cfg(freebsd11) +cargo:rustc-check-cfg=cfg(freebsd12) +cargo:rustc-check-cfg=cfg(freebsd13) +cargo:rustc-check-cfg=cfg(freebsd14) +cargo:rustc-check-cfg=cfg(freebsd15) +cargo:rustc-check-cfg=cfg(gnu_file_offset_bits64) +cargo:rustc-check-cfg=cfg(gnu_time_bits64) +cargo:rustc-check-cfg=cfg(libc_deny_warnings) +cargo:rustc-check-cfg=cfg(linux_time_bits64) +cargo:rustc-check-cfg=cfg(musl_v1_2_3) +cargo:rustc-check-cfg=cfg(musl32_time64) +cargo:rustc-check-cfg=cfg(vxworks_lt_25_09) +cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx","cygwin","qurt")) +cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos","nto71_iosock","nto80")) +cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) diff --git a/src-tauri/tms_service/target/owl/debug/build/libc-d13ba0f46c43dc65/root-output b/src-tauri/tms_service/target/owl/debug/build/libc-d13ba0f46c43dc65/root-output new file mode 100644 index 0000000..40e6ef2 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/libc-d13ba0f46c43dc65/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/libc-d13ba0f46c43dc65/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/libc-d13ba0f46c43dc65/stderr b/src-tauri/tms_service/target/owl/debug/build/libc-d13ba0f46c43dc65/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/out/generated.rs b/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/out/generated.rs new file mode 100644 index 0000000..467da59 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/out/generated.rs @@ -0,0 +1,2927 @@ +pub type LocalName = :: string_cache :: Atom < LocalNameStaticSet > ; +# [derive (PartialEq , Eq , PartialOrd , Ord)] pub struct LocalNameStaticSet ; +impl :: string_cache :: StaticAtomSet for LocalNameStaticSet { fn get () -> & 'static :: string_cache :: PhfStrSet { static SET : :: string_cache :: PhfStrSet = :: string_cache :: PhfStrSet { key : 12913932095322966823u64 , disps : & [(0u32 , 2u32) , (0u32 , 12u32) , (0u32 , 1u32) , (0u32 , 196u32) , (0u32 , 6u32) , (0u32 , 352u32) , (0u32 , 96u32) , (0u32 , 27u32) , (0u32 , 1u32) , (0u32 , 151u32) , (0u32 , 9u32) , (0u32 , 112u32) , (0u32 , 200u32) , (0u32 , 214u32) , (0u32 , 0u32) , (0u32 , 17u32) , (0u32 , 2u32) , (0u32 , 9u32) , (0u32 , 8u32) , (1u32 , 83u32) , (0u32 , 23u32) , (3u32 , 151u32) , (0u32 , 77u32) , (0u32 , 35u32) , (0u32 , 4u32) , (2u32 , 150u32) , (0u32 , 321u32) , (0u32 , 22u32) , (0u32 , 64u32) , (0u32 , 24u32) , (0u32 , 2u32) , (0u32 , 12u32) , (0u32 , 2u32) , (2u32 , 168u32) , (0u32 , 58u32) , (2u32 , 214u32) , (0u32 , 167u32) , (2u32 , 544u32) , (3u32 , 112u32) , (0u32 , 3u32) , (0u32 , 63u32) , (0u32 , 483u32) , (0u32 , 33u32) , (0u32 , 0u32) , (0u32 , 1u32) , (2u32 , 36u32) , (0u32 , 18u32) , (0u32 , 4u32) , (0u32 , 0u32) , (0u32 , 206u32) , (1u32 , 218u32) , (1u32 , 25u32) , (0u32 , 0u32) , (0u32 , 74u32) , (0u32 , 1u32) , (3u32 , 258u32) , (3u32 , 525u32) , (0u32 , 0u32) , (3u32 , 403u32) , (0u32 , 193u32) , (2u32 , 349u32) , (0u32 , 294u32) , (0u32 , 183u32) , (0u32 , 3u32) , (1u32 , 217u32) , (0u32 , 384u32) , (4u32 , 395u32) , (0u32 , 29u32) , (0u32 , 6u32) , (0u32 , 0u32) , (0u32 , 306u32) , (0u32 , 220u32) , (0u32 , 6u32) , (0u32 , 2u32) , (0u32 , 0u32) , (0u32 , 0u32) , (1u32 , 156u32) , (1u32 , 28u32) , (0u32 , 202u32) , (0u32 , 104u32) , (0u32 , 537u32) , (0u32 , 120u32) , (0u32 , 535u32) , (1u32 , 432u32) , (0u32 , 127u32) , (4u32 , 6u32) , (0u32 , 3u32) , (0u32 , 13u32) , (2u32 , 236u32) , (3u32 , 137u32) , (0u32 , 249u32) , (0u32 , 86u32) , (3u32 , 242u32) , (0u32 , 251u32) , (0u32 , 218u32) , (0u32 , 55u32) , (0u32 , 314u32) , (2u32 , 225u32) , (1u32 , 12u32) , (0u32 , 435u32) , (0u32 , 61u32) , (0u32 , 26u32) , (13u32 , 46u32) , (3u32 , 561u32) , (34u32 , 53u32) , (0u32 , 84u32) , (3u32 , 430u32) , (8u32 , 242u32) , (28u32 , 328u32) , (2u32 , 397u32) , (0u32 , 316u32) , (1u32 , 0u32) , (0u32 , 14u32) , (2u32 , 89u32) , (25u32 , 39u32) , (2u32 , 392u32) , (0u32 , 0u32) , (6u32 , 245u32) , (0u32 , 44u32) , (0u32 , 11u32)] , atoms : & ["columnspacing", +"kernelunitlength", +"color-interpolation", +"complexes", +"annotation-xml", +"specularconstant", +"mozbrowser", +"interval", +"gradientUnits", +"onmouseleave", +"writing-mode", +"aria-valuemax", +"animateTransform", +"definitionURL", +"background", +"aria-templateid", +"feGaussianBlur", +"subscriptshift", +"xmlns:xlink", +"fieldset", +"spreadmethod", +"formtarget", +"feDiffuseLighting", +"feturbulence", +"onbeforeeditfocus", +"colgroup", +"mathbackground", +"onkeydown", +"feColorMatrix", +"startoffset", +"autofocus", +"contextmenu", +"longdesc", +"aria-relevant", +"onbeforeprint", +"fill-rule", +"hreflang", +"domainofapplication", +"keytimes", +"numoctaves", +"partialdiff", +"aria-describedby", +"color-interpolation-filters", +"preserveaspectratio", +"actiontype", +"quotient", +"notation", +"autocomplete", +"contentStyleType", +"strikethrough-thickness", +"stop-color", +"itemtype", +"fepointlight", +"formmethod", +"seamless", +"plaintext", +"aria-modal", +"required", +"numOctaves", +"maxlength", +"piecewise", +"cellspacing", +"xChannelSelector", +"momentabout", +"onfinish", +"kernelmatrix", +"color-profile", +"fedropshadow", +"aria-haspopup", +"pointsatz", +"decoding", +"linearGradient", +"columnlines", +"onmousemove", +"codomain", +"prsubset", +"alignment-baseline", +"intercept", +"font-face-src", +"aria-multiselectable", +"keyPoints", +"diffuseconstant", +"xlink:arcrole", +"onafterupdate", +"foreignObject", +"autosubmit", +"scrolldelay", +"stretchy", +"font-weight", +"onafterprint", +"aria-pressed", +"line-height", +"basefrequency", +"aria-description", +"onhashchange", +"displaystyle", +"v-hanging", +"patterncontentunits", +"http-equiv", +"animation", +"vert-adv-y", +"onrowsdelete", +"aria-labelledby", +"unicode-range", +"listener", +"accent-height", +"dominant-baseline", +"datetime", +"aria-colspan", +"conjugate", +"onmousedown", +"equalrows", +"stitchtiles", +"edgemode", +"aria-autocomplete", +"aria-atomic", +"mathsize", +"glyphref", +"maskunits", +"clippathunits", +"aria-checked", +"enable-background", +"onbeforecut", +"onmouseover", +"pointsAtX", +"ondblclick", +"xchannelselector", +"symmetric", +"fediffuselighting", +"aria-multiline", +"oninvalid", +"markerHeight", +"repeatdur", +"vert-origin-y", +"requiredFeatures", +"elevation", +"viewtarget", +"aria-label", +"solidcolor", +"onforminput", +"textpath", +"spellcheck", +"patternTransform", +"aria-disabled", +"font-face-format", +"autoplay", +"altGlyph", +"imaginaryi", +"dataformatas", +"femorphology", +"x-height", +"onbefordeactivate", +"zoomAndPan", +"letter-spacing", +"aria-expanded", +"aria-braillelabel", +"mathcolor", +"equivalent", +"fontfamily", +"scriptlevel", +"rowspacing", +"maskUnits", +"glyphRef", +"glyph-orientation-horizontal", +"multicol", +"maskContentUnits", +"thinmathspace", +"condition", +"formnovalidate", +"attributeName", +"cellpadding", +"stroke-miterlimit", +"altglyph", +"selector", +"onbeforeunload", +"lowlimit", +"optgroup", +"feDistantLight", +"frameset", +"underline-thickness", +"strikethrough-position", +"onrowsinserted", +"definitionurl", +"fontweight", +"aria-placeholder", +"marker-start", +"ononline", +"xml:base", +"allowfullscreen", +"noresize", +"spreadMethod", +"feConvolveMatrix", +"limitingConeAngle", +"attributetype", +"selection", +"repeat-max", +"font-face-name", +"controllerchange", +"aria-selected", +"formenctype", +"datalist", +"rowalign", +"scalarproduct", +"limitingconeangle", +"mprescripts", +"aria-valuetext", +"disabled", +"stroke-width", +"noscript", +"onresize", +"filterUnits", +"aria-setsize", +"onbeforepaste", +"aria-busy", +"aria-controls", +"malignmark", +"aria-keyshortcuts", +"calcmode", +"marker-mid", +"onformchange", +"aria-flowto", +"animatemotion", +"amplitude", +"aria-valuemin", +"aria-posinset", +"lengthadjust", +"diffuseConstant", +"baseProfile", +"color-rendering", +"altGlyphDef", +"primitiveunits", +"preservealpha", +"aria-rowindex", +"ondeactivate", +"font-face-uri", +"feSpecularLighting", +"v-ideographic", +"stdDeviation", +"onsubmit", +"scriptsizemultiplier", +"onrowexit", +"font-face", +"gradienttransform", +"veryverythinmathspace", +"onselect", +"clip-rule", +"codebase", +"underline-position", +"v-mathematical", +"separator", +"matrixrow", +"selected", +"xlink:href", +"horiz-adv-x", +"controls", +"aria-current", +"onscroll", +"pointsAtZ", +"overflow", +"", +"onpagehide", +"visibility", +"feComponentTransfer", +"overline-position", +"rendering-intent", +"infinity", +"feconvolvematrix", +"repeatCount", +"onselectstart", +"pointsaty", +"direction", +"fecolormatrix", +"tabindex", +"placeholder", +"transpose", +"gradientunits", +"feDropShadow", +"xlink:role", +"edgeMode", +"gradientTransform", +"integers", +"stddeviation", +"repeat-start", +"cap-height", +"xlink:type", +"unselectable", +"contentstyletype", +"transform", +"stroke-linejoin", +"integrity", +"ondatasetchanged", +"foreignobject", +"radiogroup", +"contenteditable", +"template", +"statechange", +"pathlength", +"divergence", +"aria-hidden", +"ondragleave", +"maligngroup", +"outerproduct", +"aria-channel", +"systemlanguage", +"fetchpriority", +"polyline", +"lighting-color", +"property", +"animateColor", +"ondragdrop", +"repeat-min", +"specification", +"surfacescale", +"clippath", +"patternUnits", +"flood-opacity", +"referrerpolicy", +"factorial", +"hidefocus", +"stitchTiles", +"arabic-form", +"blockquote", +"mlabeledtr", +"novalidate", +"onpopstate", +"onerrorupdate", +"feSpotLight", +"stop-opacity", +"readonly", +"markerUnits", +"naturalnumbers", +"markerunits", +"font-family", +"patternunits", +"orientation", +"markerheight", +"aria-colindextext", +"attributeType", +"accesskey", +"clipPathUnits", +"keySplines", +"onstorage", +"font-style", +"fedisplacementmap", +"separators", +"verythinmathspace", +"primitiveUnits", +"surfaceScale", +"formaction", +"verythickmathspace", +"calcMode", +"xml:lang", +"fedistantlight", +"fontstyle", +"overline-thickness", +"onbounce", +"bevelled", +"onmouseout", +"exponent", +"prefetch", +"tablevalues", +"itemscope", +"manifest", +"nomodule", +"mathvariant", +"v-alphabetic", +"scrolling", +"keysplines", +"variance", +"feMorphology", +"preserveAlpha", +"viewTarget", +"aria-orientation", +"aria-rowcount", +"onlanguagechange", +"oncontrolselect", +"onmouseup", +"inputmode", +"notsubset", +"definition-src", +"aria-readonly", +"specularexponent", +"multiple", +"onunload", +"aria-colindex", +"reversed", +"onoffline", +"aria-rowindextext", +"externalresourcesrequired", +"datatemplate", +"fontsize", +"image-rendering", +"basefont", +"fill-opacity", +"radialgradient", +"frameborder", +"stroke-dasharray", +"encoding", +"animatetransform", +"movablelimits", +"filterres", +"font-stretch", +"clipPath", +"xlink:show", +"notanumber", +"onmouseenter", +"aria-dropeffect", +"progress", +"ondataavailable", +"valuetype", +"noframes", +"specularExponent", +"text-rendering", +"otherwise", +"baseline", +"framespacing", +"xlink:title", +"feOffset", +"aria-secret", +"aria-valuenow", +"emptyset", +"determinant", +"textlength", +"font-variant", +"horiz-origin-x", +"aria-brailleroledescription", +"onfocusout", +"menuitem", +"ondragend", +"baseline-shift", +"feComposite", +"pathLength", +"startOffset", +"glyph-orientation-vertical", +"textPath", +"onreadystatechange", +"stroke-opacity", +"accumulate", +"onbeforeupdate", +"shape-rendering", +"figcaption", +"thickmathspace", +"minlength", +"requiredextensions", +"repeat-template", +"vert-origin-x", +"lineargradient", +"download", +"onmovestart", +"patterntransform", +"superscriptshift", +"externalResourcesRequired", +"animatecolor", +"panose-1", +"filterRes", +"aria-colcount", +"missing-glyph", +"cartesianproduct", +"femergenode", +"ondragover", +"fespecularlighting", +"mphantom", +"aria-activedescendant", +"exponentiale", +"aria-invalid", +"requiredfeatures", +"additive", +"onbeforeactivate", +"altglyphitem", +"repeatcount", +"rationals", +"stroke-linecap", +"annotation", +"units-per-em", +"tableValues", +"mmultiscripts", +"aria-owns", +"ideographic", +"text-anchor", +"aria-sort", +"aria-datatype", +"irrelevant", +"preserveAspectRatio", +"markerWidth", +"columnalign", +"notprsubset", +"language", +"onbeforecopy", +"onfilterchange", +"altglyphdef", +"fePointLight", +"pointer-events", +"feDisplacementMap", +"ondatasetcomplete", +"aria-rowspan", +"columnspan", +"stroke-dashoffset", +"aria-required", +"occurrence", +"munderover", +"linethickness", +"feMergeNode", +"menclose", +"alignmentscope", +"markerwidth", +"accentunder", +"feoffset", +"columnwidth", +"textarea", +"fecomposite", +"itemprop", +"intersect", +"semantics", +"font-size-adjust", +"word-spacing", +"oncellchange", +"crossorigin", +"ondragstart", +"flood-color", +"glyph-name", +"pointsatx", +"textLength", +"eulergamma", +"aria-details", +"translate", +"filterunits", +"contentscripttype", +"mathematical", +"onrowenter", +"aria-grab", +"onfocusin", +"onpropertychange", +"zoomandpan", +"xlink:actuate", +"unicode-bidi", +"onmessage", +"fespotlight", +"clip-path", +"onmousewheel", +"marginwidth", +"aria-errormessage", +"baseFrequency", +"scriptminsize", +"systemLanguage", +"codetype", +"text-decoration", +"ondragenter", +"specularConstant", +"feTurbulence", +"font-size", +"accept-charset", +"draggable", +"maskcontentunits", +"onlosecapture", +"contentScriptType", +"rowlines", +"radialGradient", +"yChannelSelector", +"xml:space", +"aria-live", +"groupalign", +"onrepeat", +"onpageshow", +"vectorproduct", +"aria-roledescription", +"equalcolumns", +"factorof", +"onmoveend", +"onkeypress", +"operator", +"kernelUnitLength", +"oncontextmenu", +"onactivate", +"aria-level", +"pointsAtY", +"mediummathspace", +"animateMotion", +"baseprofile", +"veryverythickmathspace", +"alphabetic", +"keypoints", +"marker-end", +"laplacian", +"kernelMatrix", +"altGlyphItem", +"fegaussianblur", +"horiz-origin-y", +"imaginary", +"fecomponenttransfer", +"metadata", +"requiredExtensions", +"onchange", +"lengthAdjust", +"patternContentUnits", +"marginheight", +"attributename", +"ychannelselector", +"keyTimes", +"repeatDur", +"linebreak"] , hashes : & [3072954000u32 , 3434111473u32 , 2938551886u32 , 3761485389u32 , 1040004347u32 , 4048787516u32 , 2352150961u32 , 3813953811u32 , 1089255496u32 , 1746599759u32 , 3812424145u32 , 2627759492u32 , 1122986055u32 , 1411183032u32 , 540984354u32 , 2869380463u32 , 127349794u32 , 1324932700u32 , 3949169397u32 , 167018041u32 , 2338483475u32 , 1265818470u32 , 3017840974u32 , 2817038524u32 , 977519882u32 , 482099679u32 , 41264406u32 , 3792741489u32 , 3819629636u32 , 3023844475u32 , 2488083091u32 , 2389793136u32 , 3838527384u32 , 3895686923u32 , 1853897548u32 , 183626286u32 , 2619524090u32 , 1000927536u32 , 1343823872u32 , 3505831613u32 , 3140418151u32 , 2730644329u32 , 840604679u32 , 13967138u32 , 3674106722u32 , 890471348u32 , 1196494198u32 , 139625561u32 , 1496007974u32 , 3978549325u32 , 1531081973u32 , 876893636u32 , 3031015162u32 , 2901051737u32 , 1967061597u32 , 498024801u32 , 413668059u32 , 1014874794u32 , 2190494129u32 , 4155473355u32 , 1340310784u32 , 3087731897u32 , 738404731u32 , 3467076559u32 , 1500515759u32 , 1511898050u32 , 3123322936u32 , 1776997671u32 , 2893479988u32 , 2980412961u32 , 4208387215u32 , 1956396338u32 , 3139000449u32 , 3598404451u32 , 3848540887u32 , 1932517039u32 , 3727352922u32 , 2250640510u32 , 3569972244u32 , 882636649u32 , 3937177209u32 , 2909783456u32 , 1674115585u32 , 1463711312u32 , 917510687u32 , 3174660173u32 , 3588373335u32 , 4157184116u32 , 2754786514u32 , 3088760233u32 , 962337312u32 , 1029483847u32 , 4219469015u32 , 2550357363u32 , 3316294029u32 , 1693167880u32 , 3574495545u32 , 2965230298u32 , 1465547969u32 , 1344436999u32 , 3857554377u32 , 3436454788u32 , 1696233065u32 , 3054316836u32 , 1289272887u32 , 2749033157u32 , 3173400481u32 , 2832170387u32 , 3483791417u32 , 357019207u32 , 1494292933u32 , 610893786u32 , 1578024761u32 , 3522778558u32 , 1695163510u32 , 3441525639u32 , 191876287u32 , 53892155u32 , 1008080924u32 , 2648768565u32 , 2710653095u32 , 839481326u32 , 2363338602u32 , 2062376914u32 , 1713409972u32 , 3318082606u32 , 4064199297u32 , 3391938715u32 , 582074557u32 , 688563368u32 , 849353939u32 , 3420533286u32 , 3173625849u32 , 1137297938u32 , 1784113404u32 , 3074935477u32 , 1754753923u32 , 581625092u32 , 3200099719u32 , 872051764u32 , 1290517656u32 , 3345816294u32 , 2555432291u32 , 520649620u32 , 2351838155u32 , 2113798551u32 , 3482160649u32 , 3225919750u32 , 3538034810u32 , 1031924441u32 , 67060975u32 , 3022377460u32 , 251844155u32 , 4104071589u32 , 2813597207u32 , 3099170635u32 , 1159398089u32 , 487396000u32 , 4133853804u32 , 261387879u32 , 1152797465u32 , 585557574u32 , 3756296120u32 , 2143535654u32 , 284653812u32 , 2761967137u32 , 3172500845u32 , 1492357159u32 , 3572217425u32 , 3148690945u32 , 3303937590u32 , 1597870884u32 , 3473820876u32 , 1151125310u32 , 1327970202u32 , 2766318564u32 , 3251283326u32 , 3022346510u32 , 2822081788u32 , 657335448u32 , 2055579803u32 , 697370994u32 , 790236809u32 , 1436742140u32 , 369465691u32 , 1704381425u32 , 1545307082u32 , 3107512368u32 , 3553740950u32 , 3709793219u32 , 150393700u32 , 3296146244u32 , 175932733u32 , 3447324541u32 , 1529410224u32 , 742460070u32 , 951933631u32 , 3888122413u32 , 940673285u32 , 510569370u32 , 2481108222u32 , 11175636u32 , 742853127u32 , 4086049772u32 , 4279947214u32 , 3336988988u32 , 2253042667u32 , 2961964106u32 , 3496513502u32 , 1397943031u32 , 717168679u32 , 2440702496u32 , 835417400u32 , 1443202521u32 , 269731020u32 , 4197990453u32 , 431655942u32 , 1924991364u32 , 3503166008u32 , 2407704912u32 , 1462083347u32 , 1846373592u32 , 1004995609u32 , 1737183206u32 , 1086403303u32 , 322837783u32 , 898067958u32 , 268294220u32 , 3517724257u32 , 631093780u32 , 660920321u32 , 328232673u32 , 998270762u32 , 1622957280u32 , 3038336232u32 , 2875176293u32 , 143478574u32 , 577943792u32 , 2591735095u32 , 1106010321u32 , 130627326u32 , 59658625u32 , 2468381339u32 , 4125580644u32 , 1904259492u32 , 4179141959u32 , 1918948260u32 , 3161172129u32 , 4032437431u32 , 259654618u32 , 1980444132u32 , 1326112048u32 , 2985998690u32 , 3480491085u32 , 623782337u32 , 121548787u32 , 3263344947u32 , 2162760400u32 , 4010765371u32 , 4082073077u32 , 3730423347u32 , 680267915u32 , 1003700867u32 , 24676607u32 , 986461641u32 , 3064390904u32 , 1038372645u32 , 4004244404u32 , 3044528111u32 , 2145215358u32 , 316404133u32 , 2627228424u32 , 441619653u32 , 4227008938u32 , 2231254690u32 , 2770211272u32 , 3543883658u32 , 2705478669u32 , 427162403u32 , 1313537745u32 , 1359418558u32 , 2791371120u32 , 3247137570u32 , 1209573904u32 , 3629415669u32 , 1459652027u32 , 787973706u32 , 2990288183u32 , 388019751u32 , 3290302249u32 , 4067843623u32 , 904157188u32 , 906623274u32 , 1026931307u32 , 3192182081u32 , 2075053822u32 , 3041455211u32 , 3590479039u32 , 4016453314u32 , 1356155463u32 , 4287406983u32 , 4151148662u32 , 4257931290u32 , 6175338u32 , 3637562920u32 , 2537656704u32 , 3799256240u32 , 551601771u32 , 2274933261u32 , 4174481087u32 , 3231125223u32 , 2052860768u32 , 4193230156u32 , 1365633322u32 , 718491279u32 , 1048020461u32 , 326494834u32 , 3182531199u32 , 1421968030u32 , 1906307066u32 , 3199297686u32 , 1289880550u32 , 167340041u32 , 1694998203u32 , 507264248u32 , 2176790048u32 , 2701977759u32 , 2377326793u32 , 290068694u32 , 3390498297u32 , 3315223323u32 , 3173477931u32 , 4121432320u32 , 3221036252u32 , 1545869555u32 , 3367662520u32 , 1721701609u32 , 4001891308u32 , 1340705914u32 , 193163341u32 , 2607187618u32 , 1081021937u32 , 1109713652u32 , 2324745345u32 , 2509936390u32 , 868058960u32 , 235814134u32 , 3311581079u32 , 3859396703u32 , 4274065971u32 , 1713731671u32 , 2577707114u32 , 597485693u32 , 89533980u32 , 1764594812u32 , 236464811u32 , 42180808u32 , 1563912927u32 , 1700718142u32 , 2884343567u32 , 2974337319u32 , 1437637129u32 , 2927217335u32 , 2731266052u32 , 1585700207u32 , 2192643058u32 , 372536167u32 , 1980252733u32 , 540156035u32 , 1969026116u32 , 1054325476u32 , 3081310440u32 , 1855625123u32 , 1025361169u32 , 625288246u32 , 1085252765u32 , 3337178u32 , 1634030783u32 , 1123905875u32 , 1425318046u32 , 2753608321u32 , 2458868732u32 , 2907088801u32 , 1270941540u32 , 699250933u32 , 3776643770u32 , 496466373u32 , 844290399u32 , 1068196084u32 , 1013909549u32 , 2140727092u32 , 3725445512u32 , 3805722218u32 , 2519983718u32 , 2038498193u32 , 1670804630u32 , 2806594463u32 , 1857928766u32 , 4088548386u32 , 1490652026u32 , 314533796u32 , 1060911337u32 , 4110733451u32 , 731340681u32 , 3471797576u32 , 745064063u32 , 1402964693u32 , 3164895664u32 , 2986159298u32 , 3006277213u32 , 1622799733u32 , 3353385752u32 , 1466152561u32 , 909665113u32 , 2047753258u32 , 2384049441u32 , 115637463u32 , 1406178112u32 , 3391050331u32 , 3377397637u32 , 3608092222u32 , 4114830095u32 , 1704100245u32 , 3735993810u32 , 960352296u32 , 832628307u32 , 4266430317u32 , 3273539984u32 , 4019205149u32 , 1372447217u32 , 149474300u32 , 2152634883u32 , 33840900u32 , 3720179864u32 , 2005060454u32 , 1081225797u32 , 2007550408u32 , 3278498399u32 , 1064789251u32 , 207807063u32 , 2771320901u32 , 2488889144u32 , 1114315443u32 , 2117758015u32 , 1363498200u32 , 2286720981u32 , 797499465u32 , 3224307212u32 , 1271998022u32 , 3469436088u32 , 4197022858u32 , 4114207458u32 , 3862168567u32 , 798432117u32 , 23332298u32 , 2762337148u32 , 4214847380u32 , 3650491062u32 , 2229477384u32 , 2620153124u32 , 968834697u32 , 2213967518u32 , 3356497412u32 , 527925402u32 , 3472575083u32 , 3368766693u32 , 2271299428u32 , 1833541319u32 , 1160497299u32 , 4144887102u32 , 1659529969u32 , 859546789u32 , 1960989138u32 , 2673802232u32 , 836037603u32 , 3595420161u32 , 1528320406u32 , 3468989663u32 , 1747256964u32 , 2172529172u32 , 3084283302u32 , 2998850704u32 , 4080036470u32 , 3535003966u32 , 95564789u32 , 3646787135u32 , 3213189697u32 , 3855161187u32 , 990264918u32 , 2282081120u32 , 2112894915u32 , 570359024u32 , 2091062413u32 , 297387744u32 , 4118614427u32 , 1113648994u32 , 1493588833u32 , 303986147u32 , 4123782853u32 , 1108361085u32 , 611308476u32 , 11851321u32 , 2825708013u32 , 428550904u32 , 1961077096u32 , 1039356818u32 , 1281759160u32 , 3931194778u32 , 471362903u32 , 2660037162u32 , 3364582022u32 , 1270424231u32 , 189988860u32 , 909579565u32 , 225950890u32 , 3561280171u32 , 1099196523u32 , 2331857769u32 , 2068298677u32 , 3953335784u32 , 2196595662u32 , 3015830598u32 , 2798901808u32 , 4213661298u32 , 1647114263u32 , 3520680811u32 , 4018656289u32 , 631162154u32 , 1285071230u32 , 1733779952u32 , 3349181976u32 , 1268358839u32 , 3653391143u32 , 497920229u32 , 4260186941u32 , 2526332624u32 , 1469020628u32 , 3745411061u32 , 825000363u32 , 517970045u32 , 516688877u32 , 214212608u32 , 776053845u32 , 2994067376u32 , 1715378710u32 , 857129565u32 , 1346406727u32 , 1503507106u32 , 2410855252u32 , 938548574u32 , 3668239605u32 , 1213081654u32 , 3648607726u32 , 3937191824u32 , 4019313672u32 , 1943821868u32 , 1642132156u32 , 898289440u32 , 544785510u32 , 26369323u32 , 3978774502u32 , 1328456326u32 , 1784393862u32 , 2271863710u32 , 1070642373u32 , 3371793166u32 , 340120193u32 , 722849851u32 , 491646294u32 , 671572742u32 , 3394829011u32 , 1031843807u32 , 2720850668u32 , 948133874u32 , 3717621328u32 , 1867791235u32 , 3708044859u32 , 2146706716u32 , 1964478094u32 , 635163395u32 , 1882820659u32 , 1639866691u32 , 3564373280u32 , 1727774507u32 , 1660726878u32 , 2606928828u32 , 1582153498u32 , 155801033u32 , 1390052554u32 , 1638551108u32 , 297767543u32 , 671909442u32 , 3766194097u32 , 624093324u32 , 1341662051u32 , 3359083184u32 , 1079146945u32 , 1135843586u32 , 642136761u32 , 1751032114u32] } ; +& SET } fn empty_string_index () -> u32 { 259u32 } } pub const ATOM_LOCALNAME__63_6F_6C_75_6D_6E_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (0u32) ; +pub const ATOM_LOCALNAME__6B_65_72_6E_65_6C_75_6E_69_74_6C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (1u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_6F_72_2D_69_6E_74_65_72_70_6F_6C_61_74_69_6F_6E : LocalName = LocalName :: pack_static (2u32) ; +pub const ATOM_LOCALNAME__63_6F_6D_70_6C_65_78_65_73 : LocalName = LocalName :: pack_static (3u32) ; +pub const ATOM_LOCALNAME__61_6E_6E_6F_74_61_74_69_6F_6E_2D_78_6D_6C : LocalName = LocalName :: pack_static (4u32) ; +pub const ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_63_6F_6E_73_74_61_6E_74 : LocalName = LocalName :: pack_static (5u32) ; +pub const ATOM_LOCALNAME__6D_6F_7A_62_72_6F_77_73_65_72 : LocalName = LocalName :: pack_static (6u32) ; +pub const ATOM_LOCALNAME__69_6E_74_65_72_76_61_6C : LocalName = LocalName :: pack_static (7u32) ; +pub const ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_55_6E_69_74_73 : LocalName = LocalName :: pack_static (8u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6C_65_61_76_65 : LocalName = LocalName :: pack_static (9u32) ; +pub const ATOM_LOCALNAME__77_72_69_74_69_6E_67_2D_6D_6F_64_65 : LocalName = LocalName :: pack_static (10u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6D_61_78 : LocalName = LocalName :: pack_static (11u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_54_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (12u32) ; +pub const ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_55_52_4C : LocalName = LocalName :: pack_static (13u32) ; +pub const ATOM_LOCALNAME__62_61_63_6B_67_72_6F_75_6E_64 : LocalName = LocalName :: pack_static (14u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_74_65_6D_70_6C_61_74_65_69_64 : LocalName = LocalName :: pack_static (15u32) ; +pub const ATOM_LOCALNAME__66_65_47_61_75_73_73_69_61_6E_42_6C_75_72 : LocalName = LocalName :: pack_static (16u32) ; +pub const ATOM_LOCALNAME__73_75_62_73_63_72_69_70_74_73_68_69_66_74 : LocalName = LocalName :: pack_static (17u32) ; +pub const ATOM_LOCALNAME__78_6D_6C_6E_73_3A_78_6C_69_6E_6B : LocalName = LocalName :: pack_static (18u32) ; +pub const ATOM_LOCALNAME__66_69_65_6C_64_73_65_74 : LocalName = LocalName :: pack_static (19u32) ; +pub const ATOM_LOCALNAME__73_70_72_65_61_64_6D_65_74_68_6F_64 : LocalName = LocalName :: pack_static (20u32) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_74_61_72_67_65_74 : LocalName = LocalName :: pack_static (21u32) ; +pub const ATOM_LOCALNAME__66_65_44_69_66_66_75_73_65_4C_69_67_68_74_69_6E_67 : LocalName = LocalName :: pack_static (22u32) ; +pub const ATOM_LOCALNAME__66_65_74_75_72_62_75_6C_65_6E_63_65 : LocalName = LocalName :: pack_static (23u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_65_64_69_74_66_6F_63_75_73 : LocalName = LocalName :: pack_static (24u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_67_72_6F_75_70 : LocalName = LocalName :: pack_static (25u32) ; +pub const ATOM_LOCALNAME__6D_61_74_68_62_61_63_6B_67_72_6F_75_6E_64 : LocalName = LocalName :: pack_static (26u32) ; +pub const ATOM_LOCALNAME__6F_6E_6B_65_79_64_6F_77_6E : LocalName = LocalName :: pack_static (27u32) ; +pub const ATOM_LOCALNAME__66_65_43_6F_6C_6F_72_4D_61_74_72_69_78 : LocalName = LocalName :: pack_static (28u32) ; +pub const ATOM_LOCALNAME__73_74_61_72_74_6F_66_66_73_65_74 : LocalName = LocalName :: pack_static (29u32) ; +pub const ATOM_LOCALNAME__61_75_74_6F_66_6F_63_75_73 : LocalName = LocalName :: pack_static (30u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_78_74_6D_65_6E_75 : LocalName = LocalName :: pack_static (31u32) ; +pub const ATOM_LOCALNAME__6C_6F_6E_67_64_65_73_63 : LocalName = LocalName :: pack_static (32u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_65_6C_65_76_61_6E_74 : LocalName = LocalName :: pack_static (33u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_70_72_69_6E_74 : LocalName = LocalName :: pack_static (34u32) ; +pub const ATOM_LOCALNAME__66_69_6C_6C_2D_72_75_6C_65 : LocalName = LocalName :: pack_static (35u32) ; +pub const ATOM_LOCALNAME__68_72_65_66_6C_61_6E_67 : LocalName = LocalName :: pack_static (36u32) ; +pub const ATOM_LOCALNAME__64_6F_6D_61_69_6E_6F_66_61_70_70_6C_69_63_61_74_69_6F_6E : LocalName = LocalName :: pack_static (37u32) ; +pub const ATOM_LOCALNAME__6B_65_79_74_69_6D_65_73 : LocalName = LocalName :: pack_static (38u32) ; +pub const ATOM_LOCALNAME__6E_75_6D_6F_63_74_61_76_65_73 : LocalName = LocalName :: pack_static (39u32) ; +pub const ATOM_LOCALNAME__70_61_72_74_69_61_6C_64_69_66_66 : LocalName = LocalName :: pack_static (40u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_65_73_63_72_69_62_65_64_62_79 : LocalName = LocalName :: pack_static (41u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_6F_72_2D_69_6E_74_65_72_70_6F_6C_61_74_69_6F_6E_2D_66_69_6C_74_65_72_73 : LocalName = LocalName :: pack_static (42u32) ; +pub const ATOM_LOCALNAME__70_72_65_73_65_72_76_65_61_73_70_65_63_74_72_61_74_69_6F : LocalName = LocalName :: pack_static (43u32) ; +pub const ATOM_LOCALNAME__61_63_74_69_6F_6E_74_79_70_65 : LocalName = LocalName :: pack_static (44u32) ; +pub const ATOM_LOCALNAME__71_75_6F_74_69_65_6E_74 : LocalName = LocalName :: pack_static (45u32) ; +pub const ATOM_LOCALNAME__6E_6F_74_61_74_69_6F_6E : LocalName = LocalName :: pack_static (46u32) ; +pub const ATOM_LOCALNAME__61_75_74_6F_63_6F_6D_70_6C_65_74_65 : LocalName = LocalName :: pack_static (47u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_53_74_79_6C_65_54_79_70_65 : LocalName = LocalName :: pack_static (48u32) ; +pub const ATOM_LOCALNAME__73_74_72_69_6B_65_74_68_72_6F_75_67_68_2D_74_68_69_63_6B_6E_65_73_73 : LocalName = LocalName :: pack_static (49u32) ; +pub const ATOM_LOCALNAME__73_74_6F_70_2D_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (50u32) ; +pub const ATOM_LOCALNAME__69_74_65_6D_74_79_70_65 : LocalName = LocalName :: pack_static (51u32) ; +pub const ATOM_LOCALNAME__66_65_70_6F_69_6E_74_6C_69_67_68_74 : LocalName = LocalName :: pack_static (52u32) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_6D_65_74_68_6F_64 : LocalName = LocalName :: pack_static (53u32) ; +pub const ATOM_LOCALNAME__73_65_61_6D_6C_65_73_73 : LocalName = LocalName :: pack_static (54u32) ; +pub const ATOM_LOCALNAME__70_6C_61_69_6E_74_65_78_74 : LocalName = LocalName :: pack_static (55u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6D_6F_64_61_6C : LocalName = LocalName :: pack_static (56u32) ; +pub const ATOM_LOCALNAME__72_65_71_75_69_72_65_64 : LocalName = LocalName :: pack_static (57u32) ; +pub const ATOM_LOCALNAME__6E_75_6D_4F_63_74_61_76_65_73 : LocalName = LocalName :: pack_static (58u32) ; +pub const ATOM_LOCALNAME__6D_61_78_6C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (59u32) ; +pub const ATOM_LOCALNAME__70_69_65_63_65_77_69_73_65 : LocalName = LocalName :: pack_static (60u32) ; +pub const ATOM_LOCALNAME__63_65_6C_6C_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (61u32) ; +pub const ATOM_LOCALNAME__78_43_68_61_6E_6E_65_6C_53_65_6C_65_63_74_6F_72 : LocalName = LocalName :: pack_static (62u32) ; +pub const ATOM_LOCALNAME__6D_6F_6D_65_6E_74_61_62_6F_75_74 : LocalName = LocalName :: pack_static (63u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_69_6E_69_73_68 : LocalName = LocalName :: pack_static (64u32) ; +pub const ATOM_LOCALNAME__6B_65_72_6E_65_6C_6D_61_74_72_69_78 : LocalName = LocalName :: pack_static (65u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_6F_72_2D_70_72_6F_66_69_6C_65 : LocalName = LocalName :: pack_static (66u32) ; +pub const ATOM_LOCALNAME__66_65_64_72_6F_70_73_68_61_64_6F_77 : LocalName = LocalName :: pack_static (67u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_68_61_73_70_6F_70_75_70 : LocalName = LocalName :: pack_static (68u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_7A : LocalName = LocalName :: pack_static (69u32) ; +pub const ATOM_LOCALNAME__64_65_63_6F_64_69_6E_67 : LocalName = LocalName :: pack_static (70u32) ; +pub const ATOM_LOCALNAME__6C_69_6E_65_61_72_47_72_61_64_69_65_6E_74 : LocalName = LocalName :: pack_static (71u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_75_6D_6E_6C_69_6E_65_73 : LocalName = LocalName :: pack_static (72u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6D_6F_76_65 : LocalName = LocalName :: pack_static (73u32) ; +pub const ATOM_LOCALNAME__63_6F_64_6F_6D_61_69_6E : LocalName = LocalName :: pack_static (74u32) ; +pub const ATOM_LOCALNAME__70_72_73_75_62_73_65_74 : LocalName = LocalName :: pack_static (75u32) ; +pub const ATOM_LOCALNAME__61_6C_69_67_6E_6D_65_6E_74_2D_62_61_73_65_6C_69_6E_65 : LocalName = LocalName :: pack_static (76u32) ; +pub const ATOM_LOCALNAME__69_6E_74_65_72_63_65_70_74 : LocalName = LocalName :: pack_static (77u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_73_72_63 : LocalName = LocalName :: pack_static (78u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6D_75_6C_74_69_73_65_6C_65_63_74_61_62_6C_65 : LocalName = LocalName :: pack_static (79u32) ; +pub const ATOM_LOCALNAME__6B_65_79_50_6F_69_6E_74_73 : LocalName = LocalName :: pack_static (80u32) ; +pub const ATOM_LOCALNAME__64_69_66_66_75_73_65_63_6F_6E_73_74_61_6E_74 : LocalName = LocalName :: pack_static (81u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_61_72_63_72_6F_6C_65 : LocalName = LocalName :: pack_static (82u32) ; +pub const ATOM_LOCALNAME__6F_6E_61_66_74_65_72_75_70_64_61_74_65 : LocalName = LocalName :: pack_static (83u32) ; +pub const ATOM_LOCALNAME__66_6F_72_65_69_67_6E_4F_62_6A_65_63_74 : LocalName = LocalName :: pack_static (84u32) ; +pub const ATOM_LOCALNAME__61_75_74_6F_73_75_62_6D_69_74 : LocalName = LocalName :: pack_static (85u32) ; +pub const ATOM_LOCALNAME__73_63_72_6F_6C_6C_64_65_6C_61_79 : LocalName = LocalName :: pack_static (86u32) ; +pub const ATOM_LOCALNAME__73_74_72_65_74_63_68_79 : LocalName = LocalName :: pack_static (87u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_77_65_69_67_68_74 : LocalName = LocalName :: pack_static (88u32) ; +pub const ATOM_LOCALNAME__6F_6E_61_66_74_65_72_70_72_69_6E_74 : LocalName = LocalName :: pack_static (89u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_70_72_65_73_73_65_64 : LocalName = LocalName :: pack_static (90u32) ; +pub const ATOM_LOCALNAME__6C_69_6E_65_2D_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (91u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_66_72_65_71_75_65_6E_63_79 : LocalName = LocalName :: pack_static (92u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_65_73_63_72_69_70_74_69_6F_6E : LocalName = LocalName :: pack_static (93u32) ; +pub const ATOM_LOCALNAME__6F_6E_68_61_73_68_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (94u32) ; +pub const ATOM_LOCALNAME__64_69_73_70_6C_61_79_73_74_79_6C_65 : LocalName = LocalName :: pack_static (95u32) ; +pub const ATOM_LOCALNAME__76_2D_68_61_6E_67_69_6E_67 : LocalName = LocalName :: pack_static (96u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_63_6F_6E_74_65_6E_74_75_6E_69_74_73 : LocalName = LocalName :: pack_static (97u32) ; +pub const ATOM_LOCALNAME__68_74_74_70_2D_65_71_75_69_76 : LocalName = LocalName :: pack_static (98u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_69_6F_6E : LocalName = LocalName :: pack_static (99u32) ; +pub const ATOM_LOCALNAME__76_65_72_74_2D_61_64_76_2D_79 : LocalName = LocalName :: pack_static (100u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_6F_77_73_64_65_6C_65_74_65 : LocalName = LocalName :: pack_static (101u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6C_61_62_65_6C_6C_65_64_62_79 : LocalName = LocalName :: pack_static (102u32) ; +pub const ATOM_LOCALNAME__75_6E_69_63_6F_64_65_2D_72_61_6E_67_65 : LocalName = LocalName :: pack_static (103u32) ; +pub const ATOM_LOCALNAME__6C_69_73_74_65_6E_65_72 : LocalName = LocalName :: pack_static (104u32) ; +pub const ATOM_LOCALNAME__61_63_63_65_6E_74_2D_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (105u32) ; +pub const ATOM_LOCALNAME__64_6F_6D_69_6E_61_6E_74_2D_62_61_73_65_6C_69_6E_65 : LocalName = LocalName :: pack_static (106u32) ; +pub const ATOM_LOCALNAME__64_61_74_65_74_69_6D_65 : LocalName = LocalName :: pack_static (107u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_73_70_61_6E : LocalName = LocalName :: pack_static (108u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_6A_75_67_61_74_65 : LocalName = LocalName :: pack_static (109u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_64_6F_77_6E : LocalName = LocalName :: pack_static (110u32) ; +pub const ATOM_LOCALNAME__65_71_75_61_6C_72_6F_77_73 : LocalName = LocalName :: pack_static (111u32) ; +pub const ATOM_LOCALNAME__73_74_69_74_63_68_74_69_6C_65_73 : LocalName = LocalName :: pack_static (112u32) ; +pub const ATOM_LOCALNAME__65_64_67_65_6D_6F_64_65 : LocalName = LocalName :: pack_static (113u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_61_75_74_6F_63_6F_6D_70_6C_65_74_65 : LocalName = LocalName :: pack_static (114u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_61_74_6F_6D_69_63 : LocalName = LocalName :: pack_static (115u32) ; +pub const ATOM_LOCALNAME__6D_61_74_68_73_69_7A_65 : LocalName = LocalName :: pack_static (116u32) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68_72_65_66 : LocalName = LocalName :: pack_static (117u32) ; +pub const ATOM_LOCALNAME__6D_61_73_6B_75_6E_69_74_73 : LocalName = LocalName :: pack_static (118u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_70_61_74_68_75_6E_69_74_73 : LocalName = LocalName :: pack_static (119u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_68_65_63_6B_65_64 : LocalName = LocalName :: pack_static (120u32) ; +pub const ATOM_LOCALNAME__65_6E_61_62_6C_65_2D_62_61_63_6B_67_72_6F_75_6E_64 : LocalName = LocalName :: pack_static (121u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_63_75_74 : LocalName = LocalName :: pack_static (122u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6F_76_65_72 : LocalName = LocalName :: pack_static (123u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_58 : LocalName = LocalName :: pack_static (124u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_62_6C_63_6C_69_63_6B : LocalName = LocalName :: pack_static (125u32) ; +pub const ATOM_LOCALNAME__78_63_68_61_6E_6E_65_6C_73_65_6C_65_63_74_6F_72 : LocalName = LocalName :: pack_static (126u32) ; +pub const ATOM_LOCALNAME__73_79_6D_6D_65_74_72_69_63 : LocalName = LocalName :: pack_static (127u32) ; +pub const ATOM_LOCALNAME__66_65_64_69_66_66_75_73_65_6C_69_67_68_74_69_6E_67 : LocalName = LocalName :: pack_static (128u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6D_75_6C_74_69_6C_69_6E_65 : LocalName = LocalName :: pack_static (129u32) ; +pub const ATOM_LOCALNAME__6F_6E_69_6E_76_61_6C_69_64 : LocalName = LocalName :: pack_static (130u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_48_65_69_67_68_74 : LocalName = LocalName :: pack_static (131u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_64_75_72 : LocalName = LocalName :: pack_static (132u32) ; +pub const ATOM_LOCALNAME__76_65_72_74_2D_6F_72_69_67_69_6E_2D_79 : LocalName = LocalName :: pack_static (133u32) ; +pub const ATOM_LOCALNAME__72_65_71_75_69_72_65_64_46_65_61_74_75_72_65_73 : LocalName = LocalName :: pack_static (134u32) ; +pub const ATOM_LOCALNAME__65_6C_65_76_61_74_69_6F_6E : LocalName = LocalName :: pack_static (135u32) ; +pub const ATOM_LOCALNAME__76_69_65_77_74_61_72_67_65_74 : LocalName = LocalName :: pack_static (136u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6C_61_62_65_6C : LocalName = LocalName :: pack_static (137u32) ; +pub const ATOM_LOCALNAME__73_6F_6C_69_64_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (138u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_6F_72_6D_69_6E_70_75_74 : LocalName = LocalName :: pack_static (139u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_70_61_74_68 : LocalName = LocalName :: pack_static (140u32) ; +pub const ATOM_LOCALNAME__73_70_65_6C_6C_63_68_65_63_6B : LocalName = LocalName :: pack_static (141u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_54_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (142u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_69_73_61_62_6C_65_64 : LocalName = LocalName :: pack_static (143u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_66_6F_72_6D_61_74 : LocalName = LocalName :: pack_static (144u32) ; +pub const ATOM_LOCALNAME__61_75_74_6F_70_6C_61_79 : LocalName = LocalName :: pack_static (145u32) ; +pub const ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68 : LocalName = LocalName :: pack_static (146u32) ; +pub const ATOM_LOCALNAME__69_6D_61_67_69_6E_61_72_79_69 : LocalName = LocalName :: pack_static (147u32) ; +pub const ATOM_LOCALNAME__64_61_74_61_66_6F_72_6D_61_74_61_73 : LocalName = LocalName :: pack_static (148u32) ; +pub const ATOM_LOCALNAME__66_65_6D_6F_72_70_68_6F_6C_6F_67_79 : LocalName = LocalName :: pack_static (149u32) ; +pub const ATOM_LOCALNAME__78_2D_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (150u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_64_65_61_63_74_69_76_61_74_65 : LocalName = LocalName :: pack_static (151u32) ; +pub const ATOM_LOCALNAME__7A_6F_6F_6D_41_6E_64_50_61_6E : LocalName = LocalName :: pack_static (152u32) ; +pub const ATOM_LOCALNAME__6C_65_74_74_65_72_2D_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (153u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_65_78_70_61_6E_64_65_64 : LocalName = LocalName :: pack_static (154u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_62_72_61_69_6C_6C_65_6C_61_62_65_6C : LocalName = LocalName :: pack_static (155u32) ; +pub const ATOM_LOCALNAME__6D_61_74_68_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (156u32) ; +pub const ATOM_LOCALNAME__65_71_75_69_76_61_6C_65_6E_74 : LocalName = LocalName :: pack_static (157u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_66_61_6D_69_6C_79 : LocalName = LocalName :: pack_static (158u32) ; +pub const ATOM_LOCALNAME__73_63_72_69_70_74_6C_65_76_65_6C : LocalName = LocalName :: pack_static (159u32) ; +pub const ATOM_LOCALNAME__72_6F_77_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (160u32) ; +pub const ATOM_LOCALNAME__6D_61_73_6B_55_6E_69_74_73 : LocalName = LocalName :: pack_static (161u32) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68_52_65_66 : LocalName = LocalName :: pack_static (162u32) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68_2D_6F_72_69_65_6E_74_61_74_69_6F_6E_2D_68_6F_72_69_7A_6F_6E_74_61_6C : LocalName = LocalName :: pack_static (163u32) ; +pub const ATOM_LOCALNAME__6D_75_6C_74_69_63_6F_6C : LocalName = LocalName :: pack_static (164u32) ; +pub const ATOM_LOCALNAME__6D_61_73_6B_43_6F_6E_74_65_6E_74_55_6E_69_74_73 : LocalName = LocalName :: pack_static (165u32) ; +pub const ATOM_LOCALNAME__74_68_69_6E_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (166u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_64_69_74_69_6F_6E : LocalName = LocalName :: pack_static (167u32) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_6E_6F_76_61_6C_69_64_61_74_65 : LocalName = LocalName :: pack_static (168u32) ; +pub const ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_4E_61_6D_65 : LocalName = LocalName :: pack_static (169u32) ; +pub const ATOM_LOCALNAME__63_65_6C_6C_70_61_64_64_69_6E_67 : LocalName = LocalName :: pack_static (170u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6D_69_74_65_72_6C_69_6D_69_74 : LocalName = LocalName :: pack_static (171u32) ; +pub const ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68 : LocalName = LocalName :: pack_static (172u32) ; +pub const ATOM_LOCALNAME__73_65_6C_65_63_74_6F_72 : LocalName = LocalName :: pack_static (173u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_75_6E_6C_6F_61_64 : LocalName = LocalName :: pack_static (174u32) ; +pub const ATOM_LOCALNAME__6C_6F_77_6C_69_6D_69_74 : LocalName = LocalName :: pack_static (175u32) ; +pub const ATOM_LOCALNAME__6F_70_74_67_72_6F_75_70 : LocalName = LocalName :: pack_static (176u32) ; +pub const ATOM_LOCALNAME__66_65_44_69_73_74_61_6E_74_4C_69_67_68_74 : LocalName = LocalName :: pack_static (177u32) ; +pub const ATOM_LOCALNAME__66_72_61_6D_65_73_65_74 : LocalName = LocalName :: pack_static (178u32) ; +pub const ATOM_LOCALNAME__75_6E_64_65_72_6C_69_6E_65_2D_74_68_69_63_6B_6E_65_73_73 : LocalName = LocalName :: pack_static (179u32) ; +pub const ATOM_LOCALNAME__73_74_72_69_6B_65_74_68_72_6F_75_67_68_2D_70_6F_73_69_74_69_6F_6E : LocalName = LocalName :: pack_static (180u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_6F_77_73_69_6E_73_65_72_74_65_64 : LocalName = LocalName :: pack_static (181u32) ; +pub const ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_75_72_6C : LocalName = LocalName :: pack_static (182u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_77_65_69_67_68_74 : LocalName = LocalName :: pack_static (183u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_70_6C_61_63_65_68_6F_6C_64_65_72 : LocalName = LocalName :: pack_static (184u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_73_74_61_72_74 : LocalName = LocalName :: pack_static (185u32) ; +pub const ATOM_LOCALNAME__6F_6E_6F_6E_6C_69_6E_65 : LocalName = LocalName :: pack_static (186u32) ; +pub const ATOM_LOCALNAME__78_6D_6C_3A_62_61_73_65 : LocalName = LocalName :: pack_static (187u32) ; +pub const ATOM_LOCALNAME__61_6C_6C_6F_77_66_75_6C_6C_73_63_72_65_65_6E : LocalName = LocalName :: pack_static (188u32) ; +pub const ATOM_LOCALNAME__6E_6F_72_65_73_69_7A_65 : LocalName = LocalName :: pack_static (189u32) ; +pub const ATOM_LOCALNAME__73_70_72_65_61_64_4D_65_74_68_6F_64 : LocalName = LocalName :: pack_static (190u32) ; +pub const ATOM_LOCALNAME__66_65_43_6F_6E_76_6F_6C_76_65_4D_61_74_72_69_78 : LocalName = LocalName :: pack_static (191u32) ; +pub const ATOM_LOCALNAME__6C_69_6D_69_74_69_6E_67_43_6F_6E_65_41_6E_67_6C_65 : LocalName = LocalName :: pack_static (192u32) ; +pub const ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_74_79_70_65 : LocalName = LocalName :: pack_static (193u32) ; +pub const ATOM_LOCALNAME__73_65_6C_65_63_74_69_6F_6E : LocalName = LocalName :: pack_static (194u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_2D_6D_61_78 : LocalName = LocalName :: pack_static (195u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_6E_61_6D_65 : LocalName = LocalName :: pack_static (196u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_72_6F_6C_6C_65_72_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (197u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_73_65_6C_65_63_74_65_64 : LocalName = LocalName :: pack_static (198u32) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_65_6E_63_74_79_70_65 : LocalName = LocalName :: pack_static (199u32) ; +pub const ATOM_LOCALNAME__64_61_74_61_6C_69_73_74 : LocalName = LocalName :: pack_static (200u32) ; +pub const ATOM_LOCALNAME__72_6F_77_61_6C_69_67_6E : LocalName = LocalName :: pack_static (201u32) ; +pub const ATOM_LOCALNAME__73_63_61_6C_61_72_70_72_6F_64_75_63_74 : LocalName = LocalName :: pack_static (202u32) ; +pub const ATOM_LOCALNAME__6C_69_6D_69_74_69_6E_67_63_6F_6E_65_61_6E_67_6C_65 : LocalName = LocalName :: pack_static (203u32) ; +pub const ATOM_LOCALNAME__6D_70_72_65_73_63_72_69_70_74_73 : LocalName = LocalName :: pack_static (204u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_74_65_78_74 : LocalName = LocalName :: pack_static (205u32) ; +pub const ATOM_LOCALNAME__64_69_73_61_62_6C_65_64 : LocalName = LocalName :: pack_static (206u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_77_69_64_74_68 : LocalName = LocalName :: pack_static (207u32) ; +pub const ATOM_LOCALNAME__6E_6F_73_63_72_69_70_74 : LocalName = LocalName :: pack_static (208u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_65_73_69_7A_65 : LocalName = LocalName :: pack_static (209u32) ; +pub const ATOM_LOCALNAME__66_69_6C_74_65_72_55_6E_69_74_73 : LocalName = LocalName :: pack_static (210u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_73_65_74_73_69_7A_65 : LocalName = LocalName :: pack_static (211u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_70_61_73_74_65 : LocalName = LocalName :: pack_static (212u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_62_75_73_79 : LocalName = LocalName :: pack_static (213u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6E_74_72_6F_6C_73 : LocalName = LocalName :: pack_static (214u32) ; +pub const ATOM_LOCALNAME__6D_61_6C_69_67_6E_6D_61_72_6B : LocalName = LocalName :: pack_static (215u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6B_65_79_73_68_6F_72_74_63_75_74_73 : LocalName = LocalName :: pack_static (216u32) ; +pub const ATOM_LOCALNAME__63_61_6C_63_6D_6F_64_65 : LocalName = LocalName :: pack_static (217u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_6D_69_64 : LocalName = LocalName :: pack_static (218u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_6F_72_6D_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (219u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_66_6C_6F_77_74_6F : LocalName = LocalName :: pack_static (220u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_6D_6F_74_69_6F_6E : LocalName = LocalName :: pack_static (221u32) ; +pub const ATOM_LOCALNAME__61_6D_70_6C_69_74_75_64_65 : LocalName = LocalName :: pack_static (222u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6D_69_6E : LocalName = LocalName :: pack_static (223u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_70_6F_73_69_6E_73_65_74 : LocalName = LocalName :: pack_static (224u32) ; +pub const ATOM_LOCALNAME__6C_65_6E_67_74_68_61_64_6A_75_73_74 : LocalName = LocalName :: pack_static (225u32) ; +pub const ATOM_LOCALNAME__64_69_66_66_75_73_65_43_6F_6E_73_74_61_6E_74 : LocalName = LocalName :: pack_static (226u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_50_72_6F_66_69_6C_65 : LocalName = LocalName :: pack_static (227u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_6F_72_2D_72_65_6E_64_65_72_69_6E_67 : LocalName = LocalName :: pack_static (228u32) ; +pub const ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68_44_65_66 : LocalName = LocalName :: pack_static (229u32) ; +pub const ATOM_LOCALNAME__70_72_69_6D_69_74_69_76_65_75_6E_69_74_73 : LocalName = LocalName :: pack_static (230u32) ; +pub const ATOM_LOCALNAME__70_72_65_73_65_72_76_65_61_6C_70_68_61 : LocalName = LocalName :: pack_static (231u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_69_6E_64_65_78 : LocalName = LocalName :: pack_static (232u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_65_61_63_74_69_76_61_74_65 : LocalName = LocalName :: pack_static (233u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_75_72_69 : LocalName = LocalName :: pack_static (234u32) ; +pub const ATOM_LOCALNAME__66_65_53_70_65_63_75_6C_61_72_4C_69_67_68_74_69_6E_67 : LocalName = LocalName :: pack_static (235u32) ; +pub const ATOM_LOCALNAME__76_2D_69_64_65_6F_67_72_61_70_68_69_63 : LocalName = LocalName :: pack_static (236u32) ; +pub const ATOM_LOCALNAME__73_74_64_44_65_76_69_61_74_69_6F_6E : LocalName = LocalName :: pack_static (237u32) ; +pub const ATOM_LOCALNAME__6F_6E_73_75_62_6D_69_74 : LocalName = LocalName :: pack_static (238u32) ; +pub const ATOM_LOCALNAME__73_63_72_69_70_74_73_69_7A_65_6D_75_6C_74_69_70_6C_69_65_72 : LocalName = LocalName :: pack_static (239u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_6F_77_65_78_69_74 : LocalName = LocalName :: pack_static (240u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65 : LocalName = LocalName :: pack_static (241u32) ; +pub const ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_74_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (242u32) ; +pub const ATOM_LOCALNAME__76_65_72_79_76_65_72_79_74_68_69_6E_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (243u32) ; +pub const ATOM_LOCALNAME__6F_6E_73_65_6C_65_63_74 : LocalName = LocalName :: pack_static (244u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_2D_72_75_6C_65 : LocalName = LocalName :: pack_static (245u32) ; +pub const ATOM_LOCALNAME__63_6F_64_65_62_61_73_65 : LocalName = LocalName :: pack_static (246u32) ; +pub const ATOM_LOCALNAME__75_6E_64_65_72_6C_69_6E_65_2D_70_6F_73_69_74_69_6F_6E : LocalName = LocalName :: pack_static (247u32) ; +pub const ATOM_LOCALNAME__76_2D_6D_61_74_68_65_6D_61_74_69_63_61_6C : LocalName = LocalName :: pack_static (248u32) ; +pub const ATOM_LOCALNAME__73_65_70_61_72_61_74_6F_72 : LocalName = LocalName :: pack_static (249u32) ; +pub const ATOM_LOCALNAME__6D_61_74_72_69_78_72_6F_77 : LocalName = LocalName :: pack_static (250u32) ; +pub const ATOM_LOCALNAME__73_65_6C_65_63_74_65_64 : LocalName = LocalName :: pack_static (251u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_68_72_65_66 : LocalName = LocalName :: pack_static (252u32) ; +pub const ATOM_LOCALNAME__68_6F_72_69_7A_2D_61_64_76_2D_78 : LocalName = LocalName :: pack_static (253u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_72_6F_6C_73 : LocalName = LocalName :: pack_static (254u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_75_72_72_65_6E_74 : LocalName = LocalName :: pack_static (255u32) ; +pub const ATOM_LOCALNAME__6F_6E_73_63_72_6F_6C_6C : LocalName = LocalName :: pack_static (256u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_5A : LocalName = LocalName :: pack_static (257u32) ; +pub const ATOM_LOCALNAME__6F_76_65_72_66_6C_6F_77 : LocalName = LocalName :: pack_static (258u32) ; +pub const ATOM_LOCALNAME_ : LocalName = LocalName :: pack_static (259u32) ; +pub const ATOM_LOCALNAME__6F_6E_70_61_67_65_68_69_64_65 : LocalName = LocalName :: pack_static (260u32) ; +pub const ATOM_LOCALNAME__76_69_73_69_62_69_6C_69_74_79 : LocalName = LocalName :: pack_static (261u32) ; +pub const ATOM_LOCALNAME__66_65_43_6F_6D_70_6F_6E_65_6E_74_54_72_61_6E_73_66_65_72 : LocalName = LocalName :: pack_static (262u32) ; +pub const ATOM_LOCALNAME__6F_76_65_72_6C_69_6E_65_2D_70_6F_73_69_74_69_6F_6E : LocalName = LocalName :: pack_static (263u32) ; +pub const ATOM_LOCALNAME__72_65_6E_64_65_72_69_6E_67_2D_69_6E_74_65_6E_74 : LocalName = LocalName :: pack_static (264u32) ; +pub const ATOM_LOCALNAME__69_6E_66_69_6E_69_74_79 : LocalName = LocalName :: pack_static (265u32) ; +pub const ATOM_LOCALNAME__66_65_63_6F_6E_76_6F_6C_76_65_6D_61_74_72_69_78 : LocalName = LocalName :: pack_static (266u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_43_6F_75_6E_74 : LocalName = LocalName :: pack_static (267u32) ; +pub const ATOM_LOCALNAME__6F_6E_73_65_6C_65_63_74_73_74_61_72_74 : LocalName = LocalName :: pack_static (268u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_79 : LocalName = LocalName :: pack_static (269u32) ; +pub const ATOM_LOCALNAME__64_69_72_65_63_74_69_6F_6E : LocalName = LocalName :: pack_static (270u32) ; +pub const ATOM_LOCALNAME__66_65_63_6F_6C_6F_72_6D_61_74_72_69_78 : LocalName = LocalName :: pack_static (271u32) ; +pub const ATOM_LOCALNAME__74_61_62_69_6E_64_65_78 : LocalName = LocalName :: pack_static (272u32) ; +pub const ATOM_LOCALNAME__70_6C_61_63_65_68_6F_6C_64_65_72 : LocalName = LocalName :: pack_static (273u32) ; +pub const ATOM_LOCALNAME__74_72_61_6E_73_70_6F_73_65 : LocalName = LocalName :: pack_static (274u32) ; +pub const ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_75_6E_69_74_73 : LocalName = LocalName :: pack_static (275u32) ; +pub const ATOM_LOCALNAME__66_65_44_72_6F_70_53_68_61_64_6F_77 : LocalName = LocalName :: pack_static (276u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_72_6F_6C_65 : LocalName = LocalName :: pack_static (277u32) ; +pub const ATOM_LOCALNAME__65_64_67_65_4D_6F_64_65 : LocalName = LocalName :: pack_static (278u32) ; +pub const ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_54_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (279u32) ; +pub const ATOM_LOCALNAME__69_6E_74_65_67_65_72_73 : LocalName = LocalName :: pack_static (280u32) ; +pub const ATOM_LOCALNAME__73_74_64_64_65_76_69_61_74_69_6F_6E : LocalName = LocalName :: pack_static (281u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_2D_73_74_61_72_74 : LocalName = LocalName :: pack_static (282u32) ; +pub const ATOM_LOCALNAME__63_61_70_2D_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (283u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_74_79_70_65 : LocalName = LocalName :: pack_static (284u32) ; +pub const ATOM_LOCALNAME__75_6E_73_65_6C_65_63_74_61_62_6C_65 : LocalName = LocalName :: pack_static (285u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_73_74_79_6C_65_74_79_70_65 : LocalName = LocalName :: pack_static (286u32) ; +pub const ATOM_LOCALNAME__74_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (287u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6C_69_6E_65_6A_6F_69_6E : LocalName = LocalName :: pack_static (288u32) ; +pub const ATOM_LOCALNAME__69_6E_74_65_67_72_69_74_79 : LocalName = LocalName :: pack_static (289u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_61_74_61_73_65_74_63_68_61_6E_67_65_64 : LocalName = LocalName :: pack_static (290u32) ; +pub const ATOM_LOCALNAME__66_6F_72_65_69_67_6E_6F_62_6A_65_63_74 : LocalName = LocalName :: pack_static (291u32) ; +pub const ATOM_LOCALNAME__72_61_64_69_6F_67_72_6F_75_70 : LocalName = LocalName :: pack_static (292u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_65_64_69_74_61_62_6C_65 : LocalName = LocalName :: pack_static (293u32) ; +pub const ATOM_LOCALNAME__74_65_6D_70_6C_61_74_65 : LocalName = LocalName :: pack_static (294u32) ; +pub const ATOM_LOCALNAME__73_74_61_74_65_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (295u32) ; +pub const ATOM_LOCALNAME__70_61_74_68_6C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (296u32) ; +pub const ATOM_LOCALNAME__64_69_76_65_72_67_65_6E_63_65 : LocalName = LocalName :: pack_static (297u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_68_69_64_64_65_6E : LocalName = LocalName :: pack_static (298u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_6C_65_61_76_65 : LocalName = LocalName :: pack_static (299u32) ; +pub const ATOM_LOCALNAME__6D_61_6C_69_67_6E_67_72_6F_75_70 : LocalName = LocalName :: pack_static (300u32) ; +pub const ATOM_LOCALNAME__6F_75_74_65_72_70_72_6F_64_75_63_74 : LocalName = LocalName :: pack_static (301u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_68_61_6E_6E_65_6C : LocalName = LocalName :: pack_static (302u32) ; +pub const ATOM_LOCALNAME__73_79_73_74_65_6D_6C_61_6E_67_75_61_67_65 : LocalName = LocalName :: pack_static (303u32) ; +pub const ATOM_LOCALNAME__66_65_74_63_68_70_72_69_6F_72_69_74_79 : LocalName = LocalName :: pack_static (304u32) ; +pub const ATOM_LOCALNAME__70_6F_6C_79_6C_69_6E_65 : LocalName = LocalName :: pack_static (305u32) ; +pub const ATOM_LOCALNAME__6C_69_67_68_74_69_6E_67_2D_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (306u32) ; +pub const ATOM_LOCALNAME__70_72_6F_70_65_72_74_79 : LocalName = LocalName :: pack_static (307u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_43_6F_6C_6F_72 : LocalName = LocalName :: pack_static (308u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_64_72_6F_70 : LocalName = LocalName :: pack_static (309u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_2D_6D_69_6E : LocalName = LocalName :: pack_static (310u32) ; +pub const ATOM_LOCALNAME__73_70_65_63_69_66_69_63_61_74_69_6F_6E : LocalName = LocalName :: pack_static (311u32) ; +pub const ATOM_LOCALNAME__73_75_72_66_61_63_65_73_63_61_6C_65 : LocalName = LocalName :: pack_static (312u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_70_61_74_68 : LocalName = LocalName :: pack_static (313u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_55_6E_69_74_73 : LocalName = LocalName :: pack_static (314u32) ; +pub const ATOM_LOCALNAME__66_6C_6F_6F_64_2D_6F_70_61_63_69_74_79 : LocalName = LocalName :: pack_static (315u32) ; +pub const ATOM_LOCALNAME__72_65_66_65_72_72_65_72_70_6F_6C_69_63_79 : LocalName = LocalName :: pack_static (316u32) ; +pub const ATOM_LOCALNAME__66_61_63_74_6F_72_69_61_6C : LocalName = LocalName :: pack_static (317u32) ; +pub const ATOM_LOCALNAME__68_69_64_65_66_6F_63_75_73 : LocalName = LocalName :: pack_static (318u32) ; +pub const ATOM_LOCALNAME__73_74_69_74_63_68_54_69_6C_65_73 : LocalName = LocalName :: pack_static (319u32) ; +pub const ATOM_LOCALNAME__61_72_61_62_69_63_2D_66_6F_72_6D : LocalName = LocalName :: pack_static (320u32) ; +pub const ATOM_LOCALNAME__62_6C_6F_63_6B_71_75_6F_74_65 : LocalName = LocalName :: pack_static (321u32) ; +pub const ATOM_LOCALNAME__6D_6C_61_62_65_6C_65_64_74_72 : LocalName = LocalName :: pack_static (322u32) ; +pub const ATOM_LOCALNAME__6E_6F_76_61_6C_69_64_61_74_65 : LocalName = LocalName :: pack_static (323u32) ; +pub const ATOM_LOCALNAME__6F_6E_70_6F_70_73_74_61_74_65 : LocalName = LocalName :: pack_static (324u32) ; +pub const ATOM_LOCALNAME__6F_6E_65_72_72_6F_72_75_70_64_61_74_65 : LocalName = LocalName :: pack_static (325u32) ; +pub const ATOM_LOCALNAME__66_65_53_70_6F_74_4C_69_67_68_74 : LocalName = LocalName :: pack_static (326u32) ; +pub const ATOM_LOCALNAME__73_74_6F_70_2D_6F_70_61_63_69_74_79 : LocalName = LocalName :: pack_static (327u32) ; +pub const ATOM_LOCALNAME__72_65_61_64_6F_6E_6C_79 : LocalName = LocalName :: pack_static (328u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_55_6E_69_74_73 : LocalName = LocalName :: pack_static (329u32) ; +pub const ATOM_LOCALNAME__6E_61_74_75_72_61_6C_6E_75_6D_62_65_72_73 : LocalName = LocalName :: pack_static (330u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_75_6E_69_74_73 : LocalName = LocalName :: pack_static (331u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_6D_69_6C_79 : LocalName = LocalName :: pack_static (332u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_75_6E_69_74_73 : LocalName = LocalName :: pack_static (333u32) ; +pub const ATOM_LOCALNAME__6F_72_69_65_6E_74_61_74_69_6F_6E : LocalName = LocalName :: pack_static (334u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (335u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_69_6E_64_65_78_74_65_78_74 : LocalName = LocalName :: pack_static (336u32) ; +pub const ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_54_79_70_65 : LocalName = LocalName :: pack_static (337u32) ; +pub const ATOM_LOCALNAME__61_63_63_65_73_73_6B_65_79 : LocalName = LocalName :: pack_static (338u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_50_61_74_68_55_6E_69_74_73 : LocalName = LocalName :: pack_static (339u32) ; +pub const ATOM_LOCALNAME__6B_65_79_53_70_6C_69_6E_65_73 : LocalName = LocalName :: pack_static (340u32) ; +pub const ATOM_LOCALNAME__6F_6E_73_74_6F_72_61_67_65 : LocalName = LocalName :: pack_static (341u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_73_74_79_6C_65 : LocalName = LocalName :: pack_static (342u32) ; +pub const ATOM_LOCALNAME__66_65_64_69_73_70_6C_61_63_65_6D_65_6E_74_6D_61_70 : LocalName = LocalName :: pack_static (343u32) ; +pub const ATOM_LOCALNAME__73_65_70_61_72_61_74_6F_72_73 : LocalName = LocalName :: pack_static (344u32) ; +pub const ATOM_LOCALNAME__76_65_72_79_74_68_69_6E_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (345u32) ; +pub const ATOM_LOCALNAME__70_72_69_6D_69_74_69_76_65_55_6E_69_74_73 : LocalName = LocalName :: pack_static (346u32) ; +pub const ATOM_LOCALNAME__73_75_72_66_61_63_65_53_63_61_6C_65 : LocalName = LocalName :: pack_static (347u32) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_61_63_74_69_6F_6E : LocalName = LocalName :: pack_static (348u32) ; +pub const ATOM_LOCALNAME__76_65_72_79_74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (349u32) ; +pub const ATOM_LOCALNAME__63_61_6C_63_4D_6F_64_65 : LocalName = LocalName :: pack_static (350u32) ; +pub const ATOM_LOCALNAME__78_6D_6C_3A_6C_61_6E_67 : LocalName = LocalName :: pack_static (351u32) ; +pub const ATOM_LOCALNAME__66_65_64_69_73_74_61_6E_74_6C_69_67_68_74 : LocalName = LocalName :: pack_static (352u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_73_74_79_6C_65 : LocalName = LocalName :: pack_static (353u32) ; +pub const ATOM_LOCALNAME__6F_76_65_72_6C_69_6E_65_2D_74_68_69_63_6B_6E_65_73_73 : LocalName = LocalName :: pack_static (354u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_6F_75_6E_63_65 : LocalName = LocalName :: pack_static (355u32) ; +pub const ATOM_LOCALNAME__62_65_76_65_6C_6C_65_64 : LocalName = LocalName :: pack_static (356u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6F_75_74 : LocalName = LocalName :: pack_static (357u32) ; +pub const ATOM_LOCALNAME__65_78_70_6F_6E_65_6E_74 : LocalName = LocalName :: pack_static (358u32) ; +pub const ATOM_LOCALNAME__70_72_65_66_65_74_63_68 : LocalName = LocalName :: pack_static (359u32) ; +pub const ATOM_LOCALNAME__74_61_62_6C_65_76_61_6C_75_65_73 : LocalName = LocalName :: pack_static (360u32) ; +pub const ATOM_LOCALNAME__69_74_65_6D_73_63_6F_70_65 : LocalName = LocalName :: pack_static (361u32) ; +pub const ATOM_LOCALNAME__6D_61_6E_69_66_65_73_74 : LocalName = LocalName :: pack_static (362u32) ; +pub const ATOM_LOCALNAME__6E_6F_6D_6F_64_75_6C_65 : LocalName = LocalName :: pack_static (363u32) ; +pub const ATOM_LOCALNAME__6D_61_74_68_76_61_72_69_61_6E_74 : LocalName = LocalName :: pack_static (364u32) ; +pub const ATOM_LOCALNAME__76_2D_61_6C_70_68_61_62_65_74_69_63 : LocalName = LocalName :: pack_static (365u32) ; +pub const ATOM_LOCALNAME__73_63_72_6F_6C_6C_69_6E_67 : LocalName = LocalName :: pack_static (366u32) ; +pub const ATOM_LOCALNAME__6B_65_79_73_70_6C_69_6E_65_73 : LocalName = LocalName :: pack_static (367u32) ; +pub const ATOM_LOCALNAME__76_61_72_69_61_6E_63_65 : LocalName = LocalName :: pack_static (368u32) ; +pub const ATOM_LOCALNAME__66_65_4D_6F_72_70_68_6F_6C_6F_67_79 : LocalName = LocalName :: pack_static (369u32) ; +pub const ATOM_LOCALNAME__70_72_65_73_65_72_76_65_41_6C_70_68_61 : LocalName = LocalName :: pack_static (370u32) ; +pub const ATOM_LOCALNAME__76_69_65_77_54_61_72_67_65_74 : LocalName = LocalName :: pack_static (371u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6F_72_69_65_6E_74_61_74_69_6F_6E : LocalName = LocalName :: pack_static (372u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_63_6F_75_6E_74 : LocalName = LocalName :: pack_static (373u32) ; +pub const ATOM_LOCALNAME__6F_6E_6C_61_6E_67_75_61_67_65_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (374u32) ; +pub const ATOM_LOCALNAME__6F_6E_63_6F_6E_74_72_6F_6C_73_65_6C_65_63_74 : LocalName = LocalName :: pack_static (375u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_75_70 : LocalName = LocalName :: pack_static (376u32) ; +pub const ATOM_LOCALNAME__69_6E_70_75_74_6D_6F_64_65 : LocalName = LocalName :: pack_static (377u32) ; +pub const ATOM_LOCALNAME__6E_6F_74_73_75_62_73_65_74 : LocalName = LocalName :: pack_static (378u32) ; +pub const ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_2D_73_72_63 : LocalName = LocalName :: pack_static (379u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_65_61_64_6F_6E_6C_79 : LocalName = LocalName :: pack_static (380u32) ; +pub const ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_65_78_70_6F_6E_65_6E_74 : LocalName = LocalName :: pack_static (381u32) ; +pub const ATOM_LOCALNAME__6D_75_6C_74_69_70_6C_65 : LocalName = LocalName :: pack_static (382u32) ; +pub const ATOM_LOCALNAME__6F_6E_75_6E_6C_6F_61_64 : LocalName = LocalName :: pack_static (383u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_69_6E_64_65_78 : LocalName = LocalName :: pack_static (384u32) ; +pub const ATOM_LOCALNAME__72_65_76_65_72_73_65_64 : LocalName = LocalName :: pack_static (385u32) ; +pub const ATOM_LOCALNAME__6F_6E_6F_66_66_6C_69_6E_65 : LocalName = LocalName :: pack_static (386u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_69_6E_64_65_78_74_65_78_74 : LocalName = LocalName :: pack_static (387u32) ; +pub const ATOM_LOCALNAME__65_78_74_65_72_6E_61_6C_72_65_73_6F_75_72_63_65_73_72_65_71_75_69_72_65_64 : LocalName = LocalName :: pack_static (388u32) ; +pub const ATOM_LOCALNAME__64_61_74_61_74_65_6D_70_6C_61_74_65 : LocalName = LocalName :: pack_static (389u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_73_69_7A_65 : LocalName = LocalName :: pack_static (390u32) ; +pub const ATOM_LOCALNAME__69_6D_61_67_65_2D_72_65_6E_64_65_72_69_6E_67 : LocalName = LocalName :: pack_static (391u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_66_6F_6E_74 : LocalName = LocalName :: pack_static (392u32) ; +pub const ATOM_LOCALNAME__66_69_6C_6C_2D_6F_70_61_63_69_74_79 : LocalName = LocalName :: pack_static (393u32) ; +pub const ATOM_LOCALNAME__72_61_64_69_61_6C_67_72_61_64_69_65_6E_74 : LocalName = LocalName :: pack_static (394u32) ; +pub const ATOM_LOCALNAME__66_72_61_6D_65_62_6F_72_64_65_72 : LocalName = LocalName :: pack_static (395u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_64_61_73_68_61_72_72_61_79 : LocalName = LocalName :: pack_static (396u32) ; +pub const ATOM_LOCALNAME__65_6E_63_6F_64_69_6E_67 : LocalName = LocalName :: pack_static (397u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_74_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (398u32) ; +pub const ATOM_LOCALNAME__6D_6F_76_61_62_6C_65_6C_69_6D_69_74_73 : LocalName = LocalName :: pack_static (399u32) ; +pub const ATOM_LOCALNAME__66_69_6C_74_65_72_72_65_73 : LocalName = LocalName :: pack_static (400u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_73_74_72_65_74_63_68 : LocalName = LocalName :: pack_static (401u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_50_61_74_68 : LocalName = LocalName :: pack_static (402u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_73_68_6F_77 : LocalName = LocalName :: pack_static (403u32) ; +pub const ATOM_LOCALNAME__6E_6F_74_61_6E_75_6D_62_65_72 : LocalName = LocalName :: pack_static (404u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_65_6E_74_65_72 : LocalName = LocalName :: pack_static (405u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_72_6F_70_65_66_66_65_63_74 : LocalName = LocalName :: pack_static (406u32) ; +pub const ATOM_LOCALNAME__70_72_6F_67_72_65_73_73 : LocalName = LocalName :: pack_static (407u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_61_74_61_61_76_61_69_6C_61_62_6C_65 : LocalName = LocalName :: pack_static (408u32) ; +pub const ATOM_LOCALNAME__76_61_6C_75_65_74_79_70_65 : LocalName = LocalName :: pack_static (409u32) ; +pub const ATOM_LOCALNAME__6E_6F_66_72_61_6D_65_73 : LocalName = LocalName :: pack_static (410u32) ; +pub const ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_45_78_70_6F_6E_65_6E_74 : LocalName = LocalName :: pack_static (411u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_2D_72_65_6E_64_65_72_69_6E_67 : LocalName = LocalName :: pack_static (412u32) ; +pub const ATOM_LOCALNAME__6F_74_68_65_72_77_69_73_65 : LocalName = LocalName :: pack_static (413u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_6C_69_6E_65 : LocalName = LocalName :: pack_static (414u32) ; +pub const ATOM_LOCALNAME__66_72_61_6D_65_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (415u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_74_69_74_6C_65 : LocalName = LocalName :: pack_static (416u32) ; +pub const ATOM_LOCALNAME__66_65_4F_66_66_73_65_74 : LocalName = LocalName :: pack_static (417u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_73_65_63_72_65_74 : LocalName = LocalName :: pack_static (418u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6E_6F_77 : LocalName = LocalName :: pack_static (419u32) ; +pub const ATOM_LOCALNAME__65_6D_70_74_79_73_65_74 : LocalName = LocalName :: pack_static (420u32) ; +pub const ATOM_LOCALNAME__64_65_74_65_72_6D_69_6E_61_6E_74 : LocalName = LocalName :: pack_static (421u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_6C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (422u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_76_61_72_69_61_6E_74 : LocalName = LocalName :: pack_static (423u32) ; +pub const ATOM_LOCALNAME__68_6F_72_69_7A_2D_6F_72_69_67_69_6E_2D_78 : LocalName = LocalName :: pack_static (424u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_62_72_61_69_6C_6C_65_72_6F_6C_65_64_65_73_63_72_69_70_74_69_6F_6E : LocalName = LocalName :: pack_static (425u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_6F_63_75_73_6F_75_74 : LocalName = LocalName :: pack_static (426u32) ; +pub const ATOM_LOCALNAME__6D_65_6E_75_69_74_65_6D : LocalName = LocalName :: pack_static (427u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_65_6E_64 : LocalName = LocalName :: pack_static (428u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_6C_69_6E_65_2D_73_68_69_66_74 : LocalName = LocalName :: pack_static (429u32) ; +pub const ATOM_LOCALNAME__66_65_43_6F_6D_70_6F_73_69_74_65 : LocalName = LocalName :: pack_static (430u32) ; +pub const ATOM_LOCALNAME__70_61_74_68_4C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (431u32) ; +pub const ATOM_LOCALNAME__73_74_61_72_74_4F_66_66_73_65_74 : LocalName = LocalName :: pack_static (432u32) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68_2D_6F_72_69_65_6E_74_61_74_69_6F_6E_2D_76_65_72_74_69_63_61_6C : LocalName = LocalName :: pack_static (433u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_50_61_74_68 : LocalName = LocalName :: pack_static (434u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_65_61_64_79_73_74_61_74_65_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (435u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6F_70_61_63_69_74_79 : LocalName = LocalName :: pack_static (436u32) ; +pub const ATOM_LOCALNAME__61_63_63_75_6D_75_6C_61_74_65 : LocalName = LocalName :: pack_static (437u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_75_70_64_61_74_65 : LocalName = LocalName :: pack_static (438u32) ; +pub const ATOM_LOCALNAME__73_68_61_70_65_2D_72_65_6E_64_65_72_69_6E_67 : LocalName = LocalName :: pack_static (439u32) ; +pub const ATOM_LOCALNAME__66_69_67_63_61_70_74_69_6F_6E : LocalName = LocalName :: pack_static (440u32) ; +pub const ATOM_LOCALNAME__74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (441u32) ; +pub const ATOM_LOCALNAME__6D_69_6E_6C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (442u32) ; +pub const ATOM_LOCALNAME__72_65_71_75_69_72_65_64_65_78_74_65_6E_73_69_6F_6E_73 : LocalName = LocalName :: pack_static (443u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_2D_74_65_6D_70_6C_61_74_65 : LocalName = LocalName :: pack_static (444u32) ; +pub const ATOM_LOCALNAME__76_65_72_74_2D_6F_72_69_67_69_6E_2D_78 : LocalName = LocalName :: pack_static (445u32) ; +pub const ATOM_LOCALNAME__6C_69_6E_65_61_72_67_72_61_64_69_65_6E_74 : LocalName = LocalName :: pack_static (446u32) ; +pub const ATOM_LOCALNAME__64_6F_77_6E_6C_6F_61_64 : LocalName = LocalName :: pack_static (447u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_76_65_73_74_61_72_74 : LocalName = LocalName :: pack_static (448u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_74_72_61_6E_73_66_6F_72_6D : LocalName = LocalName :: pack_static (449u32) ; +pub const ATOM_LOCALNAME__73_75_70_65_72_73_63_72_69_70_74_73_68_69_66_74 : LocalName = LocalName :: pack_static (450u32) ; +pub const ATOM_LOCALNAME__65_78_74_65_72_6E_61_6C_52_65_73_6F_75_72_63_65_73_52_65_71_75_69_72_65_64 : LocalName = LocalName :: pack_static (451u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (452u32) ; +pub const ATOM_LOCALNAME__70_61_6E_6F_73_65_2D_31 : LocalName = LocalName :: pack_static (453u32) ; +pub const ATOM_LOCALNAME__66_69_6C_74_65_72_52_65_73 : LocalName = LocalName :: pack_static (454u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_63_6F_75_6E_74 : LocalName = LocalName :: pack_static (455u32) ; +pub const ATOM_LOCALNAME__6D_69_73_73_69_6E_67_2D_67_6C_79_70_68 : LocalName = LocalName :: pack_static (456u32) ; +pub const ATOM_LOCALNAME__63_61_72_74_65_73_69_61_6E_70_72_6F_64_75_63_74 : LocalName = LocalName :: pack_static (457u32) ; +pub const ATOM_LOCALNAME__66_65_6D_65_72_67_65_6E_6F_64_65 : LocalName = LocalName :: pack_static (458u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_6F_76_65_72 : LocalName = LocalName :: pack_static (459u32) ; +pub const ATOM_LOCALNAME__66_65_73_70_65_63_75_6C_61_72_6C_69_67_68_74_69_6E_67 : LocalName = LocalName :: pack_static (460u32) ; +pub const ATOM_LOCALNAME__6D_70_68_61_6E_74_6F_6D : LocalName = LocalName :: pack_static (461u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_61_63_74_69_76_65_64_65_73_63_65_6E_64_61_6E_74 : LocalName = LocalName :: pack_static (462u32) ; +pub const ATOM_LOCALNAME__65_78_70_6F_6E_65_6E_74_69_61_6C_65 : LocalName = LocalName :: pack_static (463u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_69_6E_76_61_6C_69_64 : LocalName = LocalName :: pack_static (464u32) ; +pub const ATOM_LOCALNAME__72_65_71_75_69_72_65_64_66_65_61_74_75_72_65_73 : LocalName = LocalName :: pack_static (465u32) ; +pub const ATOM_LOCALNAME__61_64_64_69_74_69_76_65 : LocalName = LocalName :: pack_static (466u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_61_63_74_69_76_61_74_65 : LocalName = LocalName :: pack_static (467u32) ; +pub const ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68_69_74_65_6D : LocalName = LocalName :: pack_static (468u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_63_6F_75_6E_74 : LocalName = LocalName :: pack_static (469u32) ; +pub const ATOM_LOCALNAME__72_61_74_69_6F_6E_61_6C_73 : LocalName = LocalName :: pack_static (470u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6C_69_6E_65_63_61_70 : LocalName = LocalName :: pack_static (471u32) ; +pub const ATOM_LOCALNAME__61_6E_6E_6F_74_61_74_69_6F_6E : LocalName = LocalName :: pack_static (472u32) ; +pub const ATOM_LOCALNAME__75_6E_69_74_73_2D_70_65_72_2D_65_6D : LocalName = LocalName :: pack_static (473u32) ; +pub const ATOM_LOCALNAME__74_61_62_6C_65_56_61_6C_75_65_73 : LocalName = LocalName :: pack_static (474u32) ; +pub const ATOM_LOCALNAME__6D_6D_75_6C_74_69_73_63_72_69_70_74_73 : LocalName = LocalName :: pack_static (475u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6F_77_6E_73 : LocalName = LocalName :: pack_static (476u32) ; +pub const ATOM_LOCALNAME__69_64_65_6F_67_72_61_70_68_69_63 : LocalName = LocalName :: pack_static (477u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_2D_61_6E_63_68_6F_72 : LocalName = LocalName :: pack_static (478u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_73_6F_72_74 : LocalName = LocalName :: pack_static (479u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_61_74_61_74_79_70_65 : LocalName = LocalName :: pack_static (480u32) ; +pub const ATOM_LOCALNAME__69_72_72_65_6C_65_76_61_6E_74 : LocalName = LocalName :: pack_static (481u32) ; +pub const ATOM_LOCALNAME__70_72_65_73_65_72_76_65_41_73_70_65_63_74_52_61_74_69_6F : LocalName = LocalName :: pack_static (482u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_57_69_64_74_68 : LocalName = LocalName :: pack_static (483u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_75_6D_6E_61_6C_69_67_6E : LocalName = LocalName :: pack_static (484u32) ; +pub const ATOM_LOCALNAME__6E_6F_74_70_72_73_75_62_73_65_74 : LocalName = LocalName :: pack_static (485u32) ; +pub const ATOM_LOCALNAME__6C_61_6E_67_75_61_67_65 : LocalName = LocalName :: pack_static (486u32) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_63_6F_70_79 : LocalName = LocalName :: pack_static (487u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_69_6C_74_65_72_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (488u32) ; +pub const ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68_64_65_66 : LocalName = LocalName :: pack_static (489u32) ; +pub const ATOM_LOCALNAME__66_65_50_6F_69_6E_74_4C_69_67_68_74 : LocalName = LocalName :: pack_static (490u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_65_72_2D_65_76_65_6E_74_73 : LocalName = LocalName :: pack_static (491u32) ; +pub const ATOM_LOCALNAME__66_65_44_69_73_70_6C_61_63_65_6D_65_6E_74_4D_61_70 : LocalName = LocalName :: pack_static (492u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_61_74_61_73_65_74_63_6F_6D_70_6C_65_74_65 : LocalName = LocalName :: pack_static (493u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_73_70_61_6E : LocalName = LocalName :: pack_static (494u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_75_6D_6E_73_70_61_6E : LocalName = LocalName :: pack_static (495u32) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_64_61_73_68_6F_66_66_73_65_74 : LocalName = LocalName :: pack_static (496u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_65_71_75_69_72_65_64 : LocalName = LocalName :: pack_static (497u32) ; +pub const ATOM_LOCALNAME__6F_63_63_75_72_72_65_6E_63_65 : LocalName = LocalName :: pack_static (498u32) ; +pub const ATOM_LOCALNAME__6D_75_6E_64_65_72_6F_76_65_72 : LocalName = LocalName :: pack_static (499u32) ; +pub const ATOM_LOCALNAME__6C_69_6E_65_74_68_69_63_6B_6E_65_73_73 : LocalName = LocalName :: pack_static (500u32) ; +pub const ATOM_LOCALNAME__66_65_4D_65_72_67_65_4E_6F_64_65 : LocalName = LocalName :: pack_static (501u32) ; +pub const ATOM_LOCALNAME__6D_65_6E_63_6C_6F_73_65 : LocalName = LocalName :: pack_static (502u32) ; +pub const ATOM_LOCALNAME__61_6C_69_67_6E_6D_65_6E_74_73_63_6F_70_65 : LocalName = LocalName :: pack_static (503u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_77_69_64_74_68 : LocalName = LocalName :: pack_static (504u32) ; +pub const ATOM_LOCALNAME__61_63_63_65_6E_74_75_6E_64_65_72 : LocalName = LocalName :: pack_static (505u32) ; +pub const ATOM_LOCALNAME__66_65_6F_66_66_73_65_74 : LocalName = LocalName :: pack_static (506u32) ; +pub const ATOM_LOCALNAME__63_6F_6C_75_6D_6E_77_69_64_74_68 : LocalName = LocalName :: pack_static (507u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_61_72_65_61 : LocalName = LocalName :: pack_static (508u32) ; +pub const ATOM_LOCALNAME__66_65_63_6F_6D_70_6F_73_69_74_65 : LocalName = LocalName :: pack_static (509u32) ; +pub const ATOM_LOCALNAME__69_74_65_6D_70_72_6F_70 : LocalName = LocalName :: pack_static (510u32) ; +pub const ATOM_LOCALNAME__69_6E_74_65_72_73_65_63_74 : LocalName = LocalName :: pack_static (511u32) ; +pub const ATOM_LOCALNAME__73_65_6D_61_6E_74_69_63_73 : LocalName = LocalName :: pack_static (512u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_73_69_7A_65_2D_61_64_6A_75_73_74 : LocalName = LocalName :: pack_static (513u32) ; +pub const ATOM_LOCALNAME__77_6F_72_64_2D_73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_static (514u32) ; +pub const ATOM_LOCALNAME__6F_6E_63_65_6C_6C_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (515u32) ; +pub const ATOM_LOCALNAME__63_72_6F_73_73_6F_72_69_67_69_6E : LocalName = LocalName :: pack_static (516u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_73_74_61_72_74 : LocalName = LocalName :: pack_static (517u32) ; +pub const ATOM_LOCALNAME__66_6C_6F_6F_64_2D_63_6F_6C_6F_72 : LocalName = LocalName :: pack_static (518u32) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68_2D_6E_61_6D_65 : LocalName = LocalName :: pack_static (519u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_78 : LocalName = LocalName :: pack_static (520u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_4C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (521u32) ; +pub const ATOM_LOCALNAME__65_75_6C_65_72_67_61_6D_6D_61 : LocalName = LocalName :: pack_static (522u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_64_65_74_61_69_6C_73 : LocalName = LocalName :: pack_static (523u32) ; +pub const ATOM_LOCALNAME__74_72_61_6E_73_6C_61_74_65 : LocalName = LocalName :: pack_static (524u32) ; +pub const ATOM_LOCALNAME__66_69_6C_74_65_72_75_6E_69_74_73 : LocalName = LocalName :: pack_static (525u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_73_63_72_69_70_74_74_79_70_65 : LocalName = LocalName :: pack_static (526u32) ; +pub const ATOM_LOCALNAME__6D_61_74_68_65_6D_61_74_69_63_61_6C : LocalName = LocalName :: pack_static (527u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_6F_77_65_6E_74_65_72 : LocalName = LocalName :: pack_static (528u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_67_72_61_62 : LocalName = LocalName :: pack_static (529u32) ; +pub const ATOM_LOCALNAME__6F_6E_66_6F_63_75_73_69_6E : LocalName = LocalName :: pack_static (530u32) ; +pub const ATOM_LOCALNAME__6F_6E_70_72_6F_70_65_72_74_79_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (531u32) ; +pub const ATOM_LOCALNAME__7A_6F_6F_6D_61_6E_64_70_61_6E : LocalName = LocalName :: pack_static (532u32) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B_3A_61_63_74_75_61_74_65 : LocalName = LocalName :: pack_static (533u32) ; +pub const ATOM_LOCALNAME__75_6E_69_63_6F_64_65_2D_62_69_64_69 : LocalName = LocalName :: pack_static (534u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_65_73_73_61_67_65 : LocalName = LocalName :: pack_static (535u32) ; +pub const ATOM_LOCALNAME__66_65_73_70_6F_74_6C_69_67_68_74 : LocalName = LocalName :: pack_static (536u32) ; +pub const ATOM_LOCALNAME__63_6C_69_70_2D_70_61_74_68 : LocalName = LocalName :: pack_static (537u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_77_68_65_65_6C : LocalName = LocalName :: pack_static (538u32) ; +pub const ATOM_LOCALNAME__6D_61_72_67_69_6E_77_69_64_74_68 : LocalName = LocalName :: pack_static (539u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_65_72_72_6F_72_6D_65_73_73_61_67_65 : LocalName = LocalName :: pack_static (540u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_46_72_65_71_75_65_6E_63_79 : LocalName = LocalName :: pack_static (541u32) ; +pub const ATOM_LOCALNAME__73_63_72_69_70_74_6D_69_6E_73_69_7A_65 : LocalName = LocalName :: pack_static (542u32) ; +pub const ATOM_LOCALNAME__73_79_73_74_65_6D_4C_61_6E_67_75_61_67_65 : LocalName = LocalName :: pack_static (543u32) ; +pub const ATOM_LOCALNAME__63_6F_64_65_74_79_70_65 : LocalName = LocalName :: pack_static (544u32) ; +pub const ATOM_LOCALNAME__74_65_78_74_2D_64_65_63_6F_72_61_74_69_6F_6E : LocalName = LocalName :: pack_static (545u32) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67_65_6E_74_65_72 : LocalName = LocalName :: pack_static (546u32) ; +pub const ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_43_6F_6E_73_74_61_6E_74 : LocalName = LocalName :: pack_static (547u32) ; +pub const ATOM_LOCALNAME__66_65_54_75_72_62_75_6C_65_6E_63_65 : LocalName = LocalName :: pack_static (548u32) ; +pub const ATOM_LOCALNAME__66_6F_6E_74_2D_73_69_7A_65 : LocalName = LocalName :: pack_static (549u32) ; +pub const ATOM_LOCALNAME__61_63_63_65_70_74_2D_63_68_61_72_73_65_74 : LocalName = LocalName :: pack_static (550u32) ; +pub const ATOM_LOCALNAME__64_72_61_67_67_61_62_6C_65 : LocalName = LocalName :: pack_static (551u32) ; +pub const ATOM_LOCALNAME__6D_61_73_6B_63_6F_6E_74_65_6E_74_75_6E_69_74_73 : LocalName = LocalName :: pack_static (552u32) ; +pub const ATOM_LOCALNAME__6F_6E_6C_6F_73_65_63_61_70_74_75_72_65 : LocalName = LocalName :: pack_static (553u32) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_53_63_72_69_70_74_54_79_70_65 : LocalName = LocalName :: pack_static (554u32) ; +pub const ATOM_LOCALNAME__72_6F_77_6C_69_6E_65_73 : LocalName = LocalName :: pack_static (555u32) ; +pub const ATOM_LOCALNAME__72_61_64_69_61_6C_47_72_61_64_69_65_6E_74 : LocalName = LocalName :: pack_static (556u32) ; +pub const ATOM_LOCALNAME__79_43_68_61_6E_6E_65_6C_53_65_6C_65_63_74_6F_72 : LocalName = LocalName :: pack_static (557u32) ; +pub const ATOM_LOCALNAME__78_6D_6C_3A_73_70_61_63_65 : LocalName = LocalName :: pack_static (558u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6C_69_76_65 : LocalName = LocalName :: pack_static (559u32) ; +pub const ATOM_LOCALNAME__67_72_6F_75_70_61_6C_69_67_6E : LocalName = LocalName :: pack_static (560u32) ; +pub const ATOM_LOCALNAME__6F_6E_72_65_70_65_61_74 : LocalName = LocalName :: pack_static (561u32) ; +pub const ATOM_LOCALNAME__6F_6E_70_61_67_65_73_68_6F_77 : LocalName = LocalName :: pack_static (562u32) ; +pub const ATOM_LOCALNAME__76_65_63_74_6F_72_70_72_6F_64_75_63_74 : LocalName = LocalName :: pack_static (563u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_72_6F_6C_65_64_65_73_63_72_69_70_74_69_6F_6E : LocalName = LocalName :: pack_static (564u32) ; +pub const ATOM_LOCALNAME__65_71_75_61_6C_63_6F_6C_75_6D_6E_73 : LocalName = LocalName :: pack_static (565u32) ; +pub const ATOM_LOCALNAME__66_61_63_74_6F_72_6F_66 : LocalName = LocalName :: pack_static (566u32) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_76_65_65_6E_64 : LocalName = LocalName :: pack_static (567u32) ; +pub const ATOM_LOCALNAME__6F_6E_6B_65_79_70_72_65_73_73 : LocalName = LocalName :: pack_static (568u32) ; +pub const ATOM_LOCALNAME__6F_70_65_72_61_74_6F_72 : LocalName = LocalName :: pack_static (569u32) ; +pub const ATOM_LOCALNAME__6B_65_72_6E_65_6C_55_6E_69_74_4C_65_6E_67_74_68 : LocalName = LocalName :: pack_static (570u32) ; +pub const ATOM_LOCALNAME__6F_6E_63_6F_6E_74_65_78_74_6D_65_6E_75 : LocalName = LocalName :: pack_static (571u32) ; +pub const ATOM_LOCALNAME__6F_6E_61_63_74_69_76_61_74_65 : LocalName = LocalName :: pack_static (572u32) ; +pub const ATOM_LOCALNAME__61_72_69_61_2D_6C_65_76_65_6C : LocalName = LocalName :: pack_static (573u32) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_59 : LocalName = LocalName :: pack_static (574u32) ; +pub const ATOM_LOCALNAME__6D_65_64_69_75_6D_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (575u32) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65_4D_6F_74_69_6F_6E : LocalName = LocalName :: pack_static (576u32) ; +pub const ATOM_LOCALNAME__62_61_73_65_70_72_6F_66_69_6C_65 : LocalName = LocalName :: pack_static (577u32) ; +pub const ATOM_LOCALNAME__76_65_72_79_76_65_72_79_74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 : LocalName = LocalName :: pack_static (578u32) ; +pub const ATOM_LOCALNAME__61_6C_70_68_61_62_65_74_69_63 : LocalName = LocalName :: pack_static (579u32) ; +pub const ATOM_LOCALNAME__6B_65_79_70_6F_69_6E_74_73 : LocalName = LocalName :: pack_static (580u32) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_65_6E_64 : LocalName = LocalName :: pack_static (581u32) ; +pub const ATOM_LOCALNAME__6C_61_70_6C_61_63_69_61_6E : LocalName = LocalName :: pack_static (582u32) ; +pub const ATOM_LOCALNAME__6B_65_72_6E_65_6C_4D_61_74_72_69_78 : LocalName = LocalName :: pack_static (583u32) ; +pub const ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68_49_74_65_6D : LocalName = LocalName :: pack_static (584u32) ; +pub const ATOM_LOCALNAME__66_65_67_61_75_73_73_69_61_6E_62_6C_75_72 : LocalName = LocalName :: pack_static (585u32) ; +pub const ATOM_LOCALNAME__68_6F_72_69_7A_2D_6F_72_69_67_69_6E_2D_79 : LocalName = LocalName :: pack_static (586u32) ; +pub const ATOM_LOCALNAME__69_6D_61_67_69_6E_61_72_79 : LocalName = LocalName :: pack_static (587u32) ; +pub const ATOM_LOCALNAME__66_65_63_6F_6D_70_6F_6E_65_6E_74_74_72_61_6E_73_66_65_72 : LocalName = LocalName :: pack_static (588u32) ; +pub const ATOM_LOCALNAME__6D_65_74_61_64_61_74_61 : LocalName = LocalName :: pack_static (589u32) ; +pub const ATOM_LOCALNAME__72_65_71_75_69_72_65_64_45_78_74_65_6E_73_69_6F_6E_73 : LocalName = LocalName :: pack_static (590u32) ; +pub const ATOM_LOCALNAME__6F_6E_63_68_61_6E_67_65 : LocalName = LocalName :: pack_static (591u32) ; +pub const ATOM_LOCALNAME__6C_65_6E_67_74_68_41_64_6A_75_73_74 : LocalName = LocalName :: pack_static (592u32) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E_43_6F_6E_74_65_6E_74_55_6E_69_74_73 : LocalName = LocalName :: pack_static (593u32) ; +pub const ATOM_LOCALNAME__6D_61_72_67_69_6E_68_65_69_67_68_74 : LocalName = LocalName :: pack_static (594u32) ; +pub const ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_6E_61_6D_65 : LocalName = LocalName :: pack_static (595u32) ; +pub const ATOM_LOCALNAME__79_63_68_61_6E_6E_65_6C_73_65_6C_65_63_74_6F_72 : LocalName = LocalName :: pack_static (596u32) ; +pub const ATOM_LOCALNAME__6B_65_79_54_69_6D_65_73 : LocalName = LocalName :: pack_static (597u32) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74_44_75_72 : LocalName = LocalName :: pack_static (598u32) ; +pub const ATOM_LOCALNAME__6C_69_6E_65_62_72_65_61_6B : LocalName = LocalName :: pack_static (599u32) ; +pub const ATOM_LOCALNAME__2A : LocalName = LocalName :: pack_inline (10752u64 , 1u8) ; +pub const ATOM_LOCALNAME__61 : LocalName = LocalName :: pack_inline (24832u64 , 1u8) ; +pub const ATOM_LOCALNAME__61_62_62_72 : LocalName = LocalName :: pack_inline (491276886272u64 , 4u8) ; +pub const ATOM_LOCALNAME__61_62_73 : LocalName = LocalName :: pack_inline (1935827200u64 , 3u8) ; +pub const ATOM_LOCALNAME__61_63_63_65_6E_74 : LocalName = LocalName :: pack_inline (32772479036645632u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_63_63_65_70_74 : LocalName = LocalName :: pack_inline (32774678059901184u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_63_72_6F_6E_79_6D : LocalName = LocalName :: pack_inline (7888457647255675136u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_63_74_69_6F_6E : LocalName = LocalName :: pack_inline (31084746153091328u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_63_74_69_76_65 : LocalName = LocalName :: pack_inline (28559167944089856u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_63_74_75_61_74_65 : LocalName = LocalName :: pack_inline (7310575252220895488u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_64_64_72_65_73_73 : LocalName = LocalName :: pack_inline (8319104478668415232u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_6C_69_67_6E : LocalName = LocalName :: pack_inline (121390429397248u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_6C_69_6E_6B : LocalName = LocalName :: pack_inline (118121959284992u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_6C_74 : LocalName = LocalName :: pack_inline (1953259776u64 , 3u8) ; +pub const ATOM_LOCALNAME__61_6C_74_69_6D_67 : LocalName = LocalName :: pack_inline (29112222293451008u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_6C_74_74_65_78_74 : LocalName = LocalName :: pack_inline (8392569456448790784u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_6E_64 : LocalName = LocalName :: pack_inline (1684955392u64 , 3u8) ; +pub const ATOM_LOCALNAME__61_6E_69_6D_61_74_65 : LocalName = LocalName :: pack_inline (7310575217677328640u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_70_70_6C_65_74 : LocalName = LocalName :: pack_inline (32762613715722496u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_70_70_6C_79 : LocalName = LocalName :: pack_inline (133506649841920u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_70_70_72_6F_78 : LocalName = LocalName :: pack_inline (33899534508646656u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_6F_73 : LocalName = LocalName :: pack_inline (32492094982611200u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_6F_73_68 : LocalName = LocalName :: pack_inline (7526481874927116544u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_6F_74 : LocalName = LocalName :: pack_inline (32773569959321856u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_6F_74_68 : LocalName = LocalName :: pack_inline (7526763349903827200u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_73_63 : LocalName = LocalName :: pack_inline (27992893401751808u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_63_73_63_68 : LocalName = LocalName :: pack_inline (7521982673346257152u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_68_69_76_65 : LocalName = LocalName :: pack_inline (7311146942148534528u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_72_6F_6C_65 : LocalName = LocalName :: pack_inline (7308338832400867584u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_73_65_63 : LocalName = LocalName :: pack_inline (27977568958439680u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_73_65_63_68 : LocalName = LocalName :: pack_inline (7521967348902945024u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_73_69_6E : LocalName = LocalName :: pack_inline (31078191748768000u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_73_69_6E_68 : LocalName = LocalName :: pack_inline (7525067971693273344u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_63_74_61_6E : LocalName = LocalName :: pack_inline (31069399950713088u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_72_63_74_61_6E_68 : LocalName = LocalName :: pack_inline (7525059179895218432u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_72_65_61 : LocalName = LocalName :: pack_inline (418313822464u64 , 4u8) ; +pub const ATOM_LOCALNAME__61_72_67 : LocalName = LocalName :: pack_inline (1735549184u64 , 3u8) ; +pub const ATOM_LOCALNAME__61_72_74_69_63_6C_65 : LocalName = LocalName :: pack_inline (7308325599891841280u64 , 7u8) ; +pub const ATOM_LOCALNAME__61_73_63_65_6E_74 : LocalName = LocalName :: pack_inline (32772479037694208u64 , 6u8) ; +pub const ATOM_LOCALNAME__61_73_69_64_65 : LocalName = LocalName :: pack_inline (111481940304128u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_73_79_6E_63 : LocalName = LocalName :: pack_inline (109326135156992u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_75_64_69_6F : LocalName = LocalName :: pack_inline (122498447663360u64 , 5u8) ; +pub const ATOM_LOCALNAME__61_78_69_73 : LocalName = LocalName :: pack_inline (495690735872u64 , 4u8) ; +pub const ATOM_LOCALNAME__61_7A_69_6D_75_74_68 : LocalName = LocalName :: pack_inline (7526769990024454400u64 , 7u8) ; +pub const ATOM_LOCALNAME__62 : LocalName = LocalName :: pack_inline (25088u64 , 1u8) ; +pub const ATOM_LOCALNAME__62_61_73_65 : LocalName = LocalName :: pack_inline (435727458816u64 , 4u8) ; +pub const ATOM_LOCALNAME__62_62_6F_78 : LocalName = LocalName :: pack_inline (517264794112u64 , 4u8) ; +pub const ATOM_LOCALNAME__62_64_69 : LocalName = LocalName :: pack_inline (1768186368u64 , 3u8) ; +pub const ATOM_LOCALNAME__62_64_6F : LocalName = LocalName :: pack_inline (1868849664u64 , 3u8) ; +pub const ATOM_LOCALNAME__62_65_67_69_6E : LocalName = LocalName :: pack_inline (121398985318912u64 , 5u8) ; +pub const ATOM_LOCALNAME__62_67_63_6F_6C_6F_72 : LocalName = LocalName :: pack_inline (8245928668403556864u64 , 7u8) ; +pub const ATOM_LOCALNAME__62_67_73_6F_75_6E_64 : LocalName = LocalName :: pack_inline (7236850772768940544u64 , 7u8) ; +pub const ATOM_LOCALNAME__62_69_61_73 : LocalName = LocalName :: pack_inline (495555535360u64 , 4u8) ; +pub const ATOM_LOCALNAME__62_69_67 : LocalName = LocalName :: pack_inline (1734959616u64 , 3u8) ; +pub const ATOM_LOCALNAME__62_6C_69_6E_6B : LocalName = LocalName :: pack_inline (118121959285248u64 , 5u8) ; +pub const ATOM_LOCALNAME__62_6F_64_79 : LocalName = LocalName :: pack_inline (521376064000u64 , 4u8) ; +pub const ATOM_LOCALNAME__62_6F_72_64_65_72 : LocalName = LocalName :: pack_inline (32199629436051968u64 , 6u8) ; +pub const ATOM_LOCALNAME__62_72 : LocalName = LocalName :: pack_inline (7496192u64 , 2u8) ; +pub const ATOM_LOCALNAME__62_75_74_74_6F_6E : LocalName = LocalName :: pack_inline (31084793398911488u64 , 6u8) ; +pub const ATOM_LOCALNAME__62_76_61_72 : LocalName = LocalName :: pack_inline (491261420032u64 , 4u8) ; +pub const ATOM_LOCALNAME__62_79 : LocalName = LocalName :: pack_inline (7954944u64 , 2u8) ; +pub const ATOM_LOCALNAME__63_61_6E_76_61_73 : LocalName = LocalName :: pack_inline (32476783607636736u64 , 6u8) ; +pub const ATOM_LOCALNAME__63_61_70_74_69_6F_6E : LocalName = LocalName :: pack_inline (7957695015409509120u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_61_72_64 : LocalName = LocalName :: pack_inline (431415714560u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_65_69_6C_69_6E_67 : LocalName = LocalName :: pack_inline (7453010347690386176u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_65_6E_74_65_72 : LocalName = LocalName :: pack_inline (32199698087764736u64 , 6u8) ; +pub const ATOM_LOCALNAME__63_68_61_72 : LocalName = LocalName :: pack_inline (491260502784u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_68_61_72_6F_66_66 : LocalName = LocalName :: pack_inline (7378707576544322304u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_68_61_72_73_65_74 : LocalName = LocalName :: pack_inline (8387236816145113856u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_68_65_63_6B_65_64 : LocalName = LocalName :: pack_inline (7234306451087844096u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_69 : LocalName = LocalName :: pack_inline (6906624u64 , 2u8) ; +pub const ATOM_LOCALNAME__63_69_72_63_6C_65 : LocalName = LocalName :: pack_inline (28548147024847616u64 , 6u8) ; +pub const ATOM_LOCALNAME__63_69_74_65 : LocalName = LocalName :: pack_inline (435744760576u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_6C_61_73_73 : LocalName = LocalName :: pack_inline (126939392926464u64 , 5u8) ; +pub const ATOM_LOCALNAME__63_6C_61_73_73_69_64 : LocalName = LocalName :: pack_inline (7235441215740338944u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6C_65_61_72 : LocalName = LocalName :: pack_inline (125762638996224u64 , 5u8) ; +pub const ATOM_LOCALNAME__63_6C_69_70 : LocalName = LocalName :: pack_inline (482805048064u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_6C_6F_73_65 : LocalName = LocalName :: pack_inline (111546465018624u64 , 5u8) ; +pub const ATOM_LOCALNAME__63_6C_6F_73_75_72_65 : LocalName = LocalName :: pack_inline (7310034283826799360u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6E : LocalName = LocalName :: pack_inline (7234304u64 , 2u8) ; +pub const ATOM_LOCALNAME__63_6F_64_65 : LocalName = LocalName :: pack_inline (435476718336u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_6F_6C : LocalName = LocalName :: pack_inline (1819239168u64 , 3u8) ; +pub const ATOM_LOCALNAME__63_6F_6C_6F_72 : LocalName = LocalName :: pack_inline (125822886175488u64 , 5u8) ; +pub const ATOM_LOCALNAME__63_6F_6C_73 : LocalName = LocalName :: pack_inline (495740478208u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_6F_6C_73_70_61_6E : LocalName = LocalName :: pack_inline (7953762057955795712u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6F_6D_70_61_63_74 : LocalName = LocalName :: pack_inline (8386654066594243328u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6F_6D_70_6F_73_65 : LocalName = LocalName :: pack_inline (7310309148815483648u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6F_6E_74_65_6E_74 : LocalName = LocalName :: pack_inline (8389754706581218048u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_6F_6F_72_64_73 : LocalName = LocalName :: pack_inline (32480064980345600u64 , 6u8) ; +pub const ATOM_LOCALNAME__63_6F_73 : LocalName = LocalName :: pack_inline (1936679680u64 , 3u8) ; +pub const ATOM_LOCALNAME__63_6F_73_68 : LocalName = LocalName :: pack_inline (448613278464u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_6F_74 : LocalName = LocalName :: pack_inline (1953456896u64 , 3u8) ; +pub const ATOM_LOCALNAME__63_6F_74_68 : LocalName = LocalName :: pack_inline (448630055680u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_73_63 : LocalName = LocalName :: pack_inline (1668506368u64 , 3u8) ; +pub const ATOM_LOCALNAME__63_73_63_68 : LocalName = LocalName :: pack_inline (448345105152u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_73_79_6D_62_6F_6C : LocalName = LocalName :: pack_inline (7813572100839662336u64 , 7u8) ; +pub const ATOM_LOCALNAME__63_75_72_6C : LocalName = LocalName :: pack_inline (465776763648u64 , 4u8) ; +pub const ATOM_LOCALNAME__63_75_72_73_6F_72 : LocalName = LocalName :: pack_inline (32210688977232640u64 , 6u8) ; +pub const ATOM_LOCALNAME__63_78 : LocalName = LocalName :: pack_inline (7889664u64 , 2u8) ; +pub const ATOM_LOCALNAME__63_79 : LocalName = LocalName :: pack_inline (7955200u64 , 2u8) ; +pub const ATOM_LOCALNAME__64 : LocalName = LocalName :: pack_inline (25600u64 , 1u8) ; +pub const ATOM_LOCALNAME__64_61_74_61 : LocalName = LocalName :: pack_inline (418564367360u64 , 4u8) ; +pub const ATOM_LOCALNAME__64_61_74_61_66_6C_64 : LocalName = LocalName :: pack_inline (7236271270027944960u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_61_74_61_73_72_63 : LocalName = LocalName :: pack_inline (7165916819501442048u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_64 : LocalName = LocalName :: pack_inline (6579200u64 , 2u8) ; +pub const ATOM_LOCALNAME__64_65_63_6C_61_72_65 : LocalName = LocalName :: pack_inline (7310012263327687680u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_65_66_61_75_6C_74 : LocalName = LocalName :: pack_inline (8389209267074589696u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_65_66_65_72 : LocalName = LocalName :: pack_inline (125779835184128u64 , 5u8) ; +pub const ATOM_LOCALNAME__64_65_66_73 : LocalName = LocalName :: pack_inline (495639159808u64 , 4u8) ; +pub const ATOM_LOCALNAME__64_65_67_72_65_65 : LocalName = LocalName :: pack_inline (28540514683151360u64 , 6u8) ; +pub const ATOM_LOCALNAME__64_65_6C : LocalName = LocalName :: pack_inline (1818584064u64 , 3u8) ; +pub const ATOM_LOCALNAME__64_65_70_74_68 : LocalName = LocalName :: pack_inline (114849311187968u64 , 5u8) ; +pub const ATOM_LOCALNAME__64_65_73_63 : LocalName = LocalName :: pack_inline (427137786880u64 , 4u8) ; +pub const ATOM_LOCALNAME__64_65_73_63_65_6E_74 : LocalName = LocalName :: pack_inline (8389754633650004992u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_65_74_61_69_6C_73 : LocalName = LocalName :: pack_inline (8317138479132009472u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_66_6E : LocalName = LocalName :: pack_inline (1852204032u64 , 3u8) ; +pub const ATOM_LOCALNAME__64_69_61_6C_6F_67 : LocalName = LocalName :: pack_inline (29114433882645504u64 , 6u8) ; +pub const ATOM_LOCALNAME__64_69_66_66 : LocalName = LocalName :: pack_inline (439804847104u64 , 4u8) ; +pub const ATOM_LOCALNAME__64_69_72 : LocalName = LocalName :: pack_inline (1919509504u64 , 3u8) ; +pub const ATOM_LOCALNAME__64_69_72_6E_61_6D_65 : LocalName = LocalName :: pack_inline (7308604897285989376u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_69_73_63_61_72_64 : LocalName = LocalName :: pack_inline (7237954630903751680u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_69_73_70_6C_61_79 : LocalName = LocalName :: pack_inline (8746391181558637568u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_69_76 : LocalName = LocalName :: pack_inline (1986618368u64 , 3u8) ; +pub const ATOM_LOCALNAME__64_69_76_69_64_65 : LocalName = LocalName :: pack_inline (28539376768738304u64 , 6u8) ; +pub const ATOM_LOCALNAME__64_69_76_69_73_6F_72 : LocalName = LocalName :: pack_inline (8245936339534046208u64 , 7u8) ; +pub const ATOM_LOCALNAME__64_6C : LocalName = LocalName :: pack_inline (7103488u64 , 2u8) ; +pub const ATOM_LOCALNAME__64_6F_6D_61_69_6E : LocalName = LocalName :: pack_inline (31078114606932992u64 , 6u8) ; +pub const ATOM_LOCALNAME__64_74 : LocalName = LocalName :: pack_inline (7627776u64 , 2u8) ; +pub const ATOM_LOCALNAME__64_75_72 : LocalName = LocalName :: pack_inline (1920295936u64 , 3u8) ; +pub const ATOM_LOCALNAME__64_78 : LocalName = LocalName :: pack_inline (7889920u64 , 2u8) ; +pub const ATOM_LOCALNAME__64_79 : LocalName = LocalName :: pack_inline (7955456u64 , 2u8) ; +pub const ATOM_LOCALNAME__65_64_67_65 : LocalName = LocalName :: pack_inline (435526329600u64 , 4u8) ; +pub const ATOM_LOCALNAME__65_6C_6C_69_70_73_65 : LocalName = LocalName :: pack_inline (7310310218245367040u64 , 7u8) ; +pub const ATOM_LOCALNAME__65_6D : LocalName = LocalName :: pack_inline (7169280u64 , 2u8) ; +pub const ATOM_LOCALNAME__65_6D_62_65_64 : LocalName = LocalName :: pack_inline (110386605810944u64 , 5u8) ; +pub const ATOM_LOCALNAME__65_6E_63_74_79_70_65 : LocalName = LocalName :: pack_inline (7309475736013661440u64 , 7u8) ; +pub const ATOM_LOCALNAME__65_6E_64 : LocalName = LocalName :: pack_inline (1684956416u64 , 3u8) ; +pub const ATOM_LOCALNAME__65_71 : LocalName = LocalName :: pack_inline (7431424u64 , 2u8) ; +pub const ATOM_LOCALNAME__65_76_65_6E_74 : LocalName = LocalName :: pack_inline (128017497482496u64 , 5u8) ; +pub const ATOM_LOCALNAME__65_78_69_73_74_73 : LocalName = LocalName :: pack_inline (32497661361284352u64 , 6u8) ; +pub const ATOM_LOCALNAME__65_78_70 : LocalName = LocalName :: pack_inline (1886938368u64 , 3u8) ; +pub const ATOM_LOCALNAME__66_61_63_65 : LocalName = LocalName :: pack_inline (435459024384u64 , 4u8) ; +pub const ATOM_LOCALNAME__66_61_6C_73_65 : LocalName = LocalName :: pack_inline (111546413966848u64 , 5u8) ; +pub const ATOM_LOCALNAME__66_65_42_6C_65_6E_64 : LocalName = LocalName :: pack_inline (7236833166875780608u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_46_6C_6F_6F_64 : LocalName = LocalName :: pack_inline (7237125637035877888u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_46_75_6E_63_41 : LocalName = LocalName :: pack_inline (4711731085130950144u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_46_75_6E_63_42 : LocalName = LocalName :: pack_inline (4783788679168878080u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_46_75_6E_63_47 : LocalName = LocalName :: pack_inline (5144076649358517760u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_46_75_6E_63_52 : LocalName = LocalName :: pack_inline (5936710183775725056u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_49_6D_61_67_65 : LocalName = LocalName :: pack_inline (7306916042442630656u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_4D_65_72_67_65 : LocalName = LocalName :: pack_inline (7306934699847673344u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_54_69_6C_65 : LocalName = LocalName :: pack_inline (28548172291073536u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_65_62_6C_65_6E_64 : LocalName = LocalName :: pack_inline (7236833167412651520u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_66_6C_6F_6F_64 : LocalName = LocalName :: pack_inline (7237125637572748800u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_66_75_6E_63_61 : LocalName = LocalName :: pack_inline (7017574094881515008u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_66_75_6E_63_62 : LocalName = LocalName :: pack_inline (7089631688919442944u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_66_75_6E_63_67 : LocalName = LocalName :: pack_inline (7449919659109082624u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_66_75_6E_63_72 : LocalName = LocalName :: pack_inline (8242553193526289920u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_69_6D_61_67_65 : LocalName = LocalName :: pack_inline (7306916042979501568u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_6D_65_72_67_65 : LocalName = LocalName :: pack_inline (7306934700384544256u64 , 7u8) ; +pub const ATOM_LOCALNAME__66_65_6E_63_65 : LocalName = LocalName :: pack_inline (111477728306688u64 , 5u8) ; +pub const ATOM_LOCALNAME__66_65_74_63_68 : LocalName = LocalName :: pack_inline (114776363853312u64 , 5u8) ; +pub const ATOM_LOCALNAME__66_65_74_69_6C_65 : LocalName = LocalName :: pack_inline (28548172827944448u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_69_67_75_72_65 : LocalName = LocalName :: pack_inline (28554821219476992u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_69_6C_6C : LocalName = LocalName :: pack_inline (465675314688u64 , 4u8) ; +pub const ATOM_LOCALNAME__66_69_6C_74_65_72 : LocalName = LocalName :: pack_inline (32199698054473216u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_6C_6F_6F_72 : LocalName = LocalName :: pack_inline (125822936311296u64 , 5u8) ; +pub const ATOM_LOCALNAME__66_6E : LocalName = LocalName :: pack_inline (7235072u64 , 2u8) ; +pub const ATOM_LOCALNAME__66_6F_6E_74 : LocalName = LocalName :: pack_inline (500069000704u64 , 4u8) ; +pub const ATOM_LOCALNAME__66_6F_6F_74_65_72 : LocalName = LocalName :: pack_inline (32199698105198080u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_6F_72 : LocalName = LocalName :: pack_inline (1919903232u64 , 3u8) ; +pub const ATOM_LOCALNAME__66_6F_72_61_6C_6C : LocalName = LocalName :: pack_inline (30518463272281600u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_6F_72_6D : LocalName = LocalName :: pack_inline (470071338496u64 , 4u8) ; +pub const ATOM_LOCALNAME__66_6F_72_6D_61_74 : LocalName = LocalName :: pack_inline (32758219997668864u64 , 6u8) ; +pub const ATOM_LOCALNAME__66_72_61_6D_65 : LocalName = LocalName :: pack_inline (111520460727808u64 , 5u8) ; +pub const ATOM_LOCALNAME__66_72_6F_6D : LocalName = LocalName :: pack_inline (470021203456u64 , 4u8) ; +pub const ATOM_LOCALNAME__66_78 : LocalName = LocalName :: pack_inline (7890432u64 , 2u8) ; +pub const ATOM_LOCALNAME__66_79 : LocalName = LocalName :: pack_inline (7955968u64 , 2u8) ; +pub const ATOM_LOCALNAME__67 : LocalName = LocalName :: pack_inline (26368u64 , 1u8) ; +pub const ATOM_LOCALNAME__67_31 : LocalName = LocalName :: pack_inline (3237632u64 , 2u8) ; +pub const ATOM_LOCALNAME__67_32 : LocalName = LocalName :: pack_inline (3303168u64 , 2u8) ; +pub const ATOM_LOCALNAME__67_63_64 : LocalName = LocalName :: pack_inline (1684236032u64 , 3u8) ; +pub const ATOM_LOCALNAME__67_65_71 : LocalName = LocalName :: pack_inline (1902470912u64 , 3u8) ; +pub const ATOM_LOCALNAME__67_6C_79_70_68 : LocalName = LocalName :: pack_inline (114832282773248u64 , 5u8) ; +pub const ATOM_LOCALNAME__67_72_61_64 : LocalName = LocalName :: pack_inline (431131617024u64 , 4u8) ; +pub const ATOM_LOCALNAME__67_74 : LocalName = LocalName :: pack_inline (7628544u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_31 : LocalName = LocalName :: pack_inline (3237888u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_32 : LocalName = LocalName :: pack_inline (3303424u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_33 : LocalName = LocalName :: pack_inline (3368960u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_34 : LocalName = LocalName :: pack_inline (3434496u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_35 : LocalName = LocalName :: pack_inline (3500032u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_36 : LocalName = LocalName :: pack_inline (3565568u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_61_6E_64_6C_65_72 : LocalName = LocalName :: pack_inline (8243113871575967744u64 , 7u8) ; +pub const ATOM_LOCALNAME__68_61_6E_67_69_6E_67 : LocalName = LocalName :: pack_inline (7453010326299174912u64 , 7u8) ; +pub const ATOM_LOCALNAME__68_65_61_64 : LocalName = LocalName :: pack_inline (431130765312u64 , 4u8) ; +pub const ATOM_LOCALNAME__68_65_61_64_65_72 : LocalName = LocalName :: pack_inline (32199629150185472u64 , 6u8) ; +pub const ATOM_LOCALNAME__68_65_61_64_65_72_73 : LocalName = LocalName :: pack_inline (8318822943511898112u64 , 7u8) ; +pub const ATOM_LOCALNAME__68_65_69_67_68_74 : LocalName = LocalName :: pack_inline (32765890657609728u64 , 6u8) ; +pub const ATOM_LOCALNAME__68_67_72_6F_75_70 : LocalName = LocalName :: pack_inline (31654318912792576u64 , 6u8) ; +pub const ATOM_LOCALNAME__68_69_64_64_65_6E : LocalName = LocalName :: pack_inline (31073729293936640u64 , 6u8) ; +pub const ATOM_LOCALNAME__68_69_67_68 : LocalName = LocalName :: pack_inline (448411559936u64 , 4u8) ; +pub const ATOM_LOCALNAME__68_6B_65_72_6E : LocalName = LocalName :: pack_inline (121437606864896u64 , 5u8) ; +pub const ATOM_LOCALNAME__68_72 : LocalName = LocalName :: pack_inline (7497728u64 , 2u8) ; +pub const ATOM_LOCALNAME__68_72_65_66 : LocalName = LocalName :: pack_inline (439788660736u64 , 4u8) ; +pub const ATOM_LOCALNAME__68_73_70_61_63_65 : LocalName = LocalName :: pack_inline (28538242797365248u64 , 6u8) ; +pub const ATOM_LOCALNAME__68_74_6D_6C : LocalName = LocalName :: pack_inline (465692813312u64 , 4u8) ; +pub const ATOM_LOCALNAME__69 : LocalName = LocalName :: pack_inline (26880u64 , 1u8) ; +pub const ATOM_LOCALNAME__69_63_6F_6E : LocalName = LocalName :: pack_inline (474315188480u64 , 4u8) ; +pub const ATOM_LOCALNAME__69_64 : LocalName = LocalName :: pack_inline (6580480u64 , 2u8) ; +pub const ATOM_LOCALNAME__69_64_65_6E_74 : LocalName = LocalName :: pack_inline (128017496303872u64 , 5u8) ; +pub const ATOM_LOCALNAME__69_66_72_61_6D_65 : LocalName = LocalName :: pack_inline (28549237946345728u64 , 6u8) ; +pub const ATOM_LOCALNAME__69_6D_61_67_65 : LocalName = LocalName :: pack_inline (111494690597120u64 , 5u8) ; +pub const ATOM_LOCALNAME__69_6D_67 : LocalName = LocalName :: pack_inline (1735223552u64 , 3u8) ; +pub const ATOM_LOCALNAME__69_6D_70_6C_69_65_73 : LocalName = LocalName :: pack_inline (8315168201473091840u64 , 7u8) ; +pub const ATOM_LOCALNAME__69_6E : LocalName = LocalName :: pack_inline (7235840u64 , 2u8) ; +pub const ATOM_LOCALNAME__69_6E_32 : LocalName = LocalName :: pack_inline (846096640u64 , 3u8) ; +pub const ATOM_LOCALNAME__69_6E_64_65_78 : LocalName = LocalName :: pack_inline (132376871987456u64 , 5u8) ; +pub const ATOM_LOCALNAME__69_6E_70_75_74 : LocalName = LocalName :: pack_inline (128047746279680u64 , 5u8) ; +pub const ATOM_LOCALNAME__69_6E_73 : LocalName = LocalName :: pack_inline (1936615680u64 , 3u8) ; +pub const ATOM_LOCALNAME__69_6E_74 : LocalName = LocalName :: pack_inline (1953392896u64 , 3u8) ; +pub const ATOM_LOCALNAME__69_6E_76_65_72_73_65 : LocalName = LocalName :: pack_inline (7310312400256657664u64 , 7u8) ; +pub const ATOM_LOCALNAME__69_73_69_6E_64_65_78 : LocalName = LocalName :: pack_inline (8675450682577479936u64 , 7u8) ; +pub const ATOM_LOCALNAME__69_73_6D_61_70 : LocalName = LocalName :: pack_inline (123563750418688u64 , 5u8) ; +pub const ATOM_LOCALNAME__69_74_65_6D_69_64 : LocalName = LocalName :: pack_inline (28263416245545216u64 , 6u8) ; +pub const ATOM_LOCALNAME__69_74_65_6D_72_65_66 : LocalName = LocalName :: pack_inline (7378429378695555328u64 , 7u8) ; +pub const ATOM_LOCALNAME__6B : LocalName = LocalName :: pack_inline (27392u64 , 1u8) ; +pub const ATOM_LOCALNAME__6B_31 : LocalName = LocalName :: pack_inline (3238656u64 , 2u8) ; +pub const ATOM_LOCALNAME__6B_32 : LocalName = LocalName :: pack_inline (3304192u64 , 2u8) ; +pub const ATOM_LOCALNAME__6B_33 : LocalName = LocalName :: pack_inline (3369728u64 , 2u8) ; +pub const ATOM_LOCALNAME__6B_34 : LocalName = LocalName :: pack_inline (3435264u64 , 2u8) ; +pub const ATOM_LOCALNAME__6B_62_64 : LocalName = LocalName :: pack_inline (1684171520u64 , 3u8) ; +pub const ATOM_LOCALNAME__6B_65_72_6E_69_6E_67 : LocalName = LocalName :: pack_inline (7453010356431317760u64 , 7u8) ; +pub const ATOM_LOCALNAME__6B_65_79_67_65_6E : LocalName = LocalName :: pack_inline (31073742530898688u64 , 6u8) ; +pub const ATOM_LOCALNAME__6B_69_6E_64 : LocalName = LocalName :: pack_inline (431349132032u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_61_62_65_6C : LocalName = LocalName :: pack_inline (119182698048512u64 , 5u8) ; +pub const ATOM_LOCALNAME__6C_61_6D_62_64_61 : LocalName = LocalName :: pack_inline (27413446645607424u64 , 6u8) ; +pub const ATOM_LOCALNAME__6C_61_6E_67 : LocalName = LocalName :: pack_inline (444233509888u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_61_72_67_65_6F_70 : LocalName = LocalName :: pack_inline (8101805749637835776u64 , 7u8) ; +pub const ATOM_LOCALNAME__6C_63_6D : LocalName = LocalName :: pack_inline (1835232256u64 , 3u8) ; +pub const ATOM_LOCALNAME__6C_65_67_65_6E_64 : LocalName = LocalName :: pack_inline (28268879476517888u64 , 6u8) ; +pub const ATOM_LOCALNAME__6C_65_71 : LocalName = LocalName :: pack_inline (1902472192u64 , 3u8) ; +pub const ATOM_LOCALNAME__6C_69 : LocalName = LocalName :: pack_inline (6908928u64 , 2u8) ; +pub const ATOM_LOCALNAME__6C_69_6D_69_74 : LocalName = LocalName :: pack_inline (127996156013568u64 , 5u8) ; +pub const ATOM_LOCALNAME__6C_69_6E_65 : LocalName = LocalName :: pack_inline (435644099584u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_69_6E_6B : LocalName = LocalName :: pack_inline (461413903360u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_69_73_74 : LocalName = LocalName :: pack_inline (500152495104u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_69_73_74_69_6E_67 : LocalName = LocalName :: pack_inline (7453010382218161152u64 , 7u8) ; +pub const ATOM_LOCALNAME__6C_6E : LocalName = LocalName :: pack_inline (7236608u64 , 2u8) ; +pub const ATOM_LOCALNAME__6C_6F_61_64_69_6E_67 : LocalName = LocalName :: pack_inline (7453010313197087744u64 , 7u8) ; +pub const ATOM_LOCALNAME__6C_6F_63_61_6C : LocalName = LocalName :: pack_inline (119165535874048u64 , 5u8) ; +pub const ATOM_LOCALNAME__6C_6F_67 : LocalName = LocalName :: pack_inline (1735355392u64 , 3u8) ; +pub const ATOM_LOCALNAME__6C_6F_67_62_61_73_65 : LocalName = LocalName :: pack_inline (7310293695422491648u64 , 7u8) ; +pub const ATOM_LOCALNAME__6C_6F_6F_70 : LocalName = LocalName :: pack_inline (482905910272u64 , 4u8) ; +pub const ATOM_LOCALNAME__6C_6F_77 : LocalName = LocalName :: pack_inline (2003790848u64 , 3u8) ; +pub const ATOM_LOCALNAME__6C_6F_77_73_72_63 : LocalName = LocalName :: pack_inline (27991862944951296u64 , 6u8) ; +pub const ATOM_LOCALNAME__6C_71_75_6F_74_65 : LocalName = LocalName :: pack_inline (28556994708335616u64 , 6u8) ; +pub const ATOM_LOCALNAME__6C_73_70_61_63_65 : LocalName = LocalName :: pack_inline (28538242797366272u64 , 6u8) ; +pub const ATOM_LOCALNAME__6C_74 : LocalName = LocalName :: pack_inline (7629824u64 , 2u8) ; +pub const ATOM_LOCALNAME__6D_61_63_72_6F_73 : LocalName = LocalName :: pack_inline (32492159406009600u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_61_63_74_69_6F_6E : LocalName = LocalName :: pack_inline (7957695015191407872u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_61_69_6E : LocalName = LocalName :: pack_inline (474214395136u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_61_70 : LocalName = LocalName :: pack_inline (1885433088u64 , 3u8) ; +pub const ATOM_LOCALNAME__6D_61_72_6B : LocalName = LocalName :: pack_inline (461480488192u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_61_72_6B_65_72 : LocalName = LocalName :: pack_inline (32199659499908352u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_61_72_71_75_65_65 : LocalName = LocalName :: pack_inline (7306375100589239552u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_61_73_6B : LocalName = LocalName :: pack_inline (461497265408u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_61_74_68 : LocalName = LocalName :: pack_inline (448629140736u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_61_74_72_69_78 : LocalName = LocalName :: pack_inline (33892937505008896u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_61_78 : LocalName = LocalName :: pack_inline (2019650816u64 , 3u8) ; +pub const ATOM_LOCALNAME__6D_61_78_73_69_7A_65 : LocalName = LocalName :: pack_inline (7312272889651227904u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_65_61_6E : LocalName = LocalName :: pack_inline (474080439552u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_65_64_69_61 : LocalName = LocalName :: pack_inline (107105283828992u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_65_64_69_61_6E : LocalName = LocalName :: pack_inline (31069352722001152u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_65_6E_75 : LocalName = LocalName :: pack_inline (504363314432u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_65_72_72_6F_72 : LocalName = LocalName :: pack_inline (32210684681219328u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_65_74_61 : LocalName = LocalName :: pack_inline (418564631808u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_65_74_65_72 : LocalName = LocalName :: pack_inline (125780070067456u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_65_74_68_6F_64 : LocalName = LocalName :: pack_inline (28269992091151616u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_66_65_6E_63_65_64 : LocalName = LocalName :: pack_inline (7234297702239333632u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_66_72_61_63 : LocalName = LocalName :: pack_inline (109270182292736u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_67_6C_79_70_68 : LocalName = LocalName :: pack_inline (29397064389979392u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_69 : LocalName = LocalName :: pack_inline (6909184u64 , 2u8) ; +pub const ATOM_LOCALNAME__6D_69_6E : LocalName = LocalName :: pack_inline (1852402944u64 , 3u8) ; +pub const ATOM_LOCALNAME__6D_69_6E_73_69_7A_65 : LocalName = LocalName :: pack_inline (7312272889483980032u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_69_6E_75_73 : LocalName = LocalName :: pack_inline (126948200770816u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_6E : LocalName = LocalName :: pack_inline (7236864u64 , 2u8) ; +pub const ATOM_LOCALNAME__6D_6F : LocalName = LocalName :: pack_inline (7302400u64 , 2u8) ; +pub const ATOM_LOCALNAME__6D_6F_64_65 : LocalName = LocalName :: pack_inline (435476720896u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_6F_6D_65_6E_74 : LocalName = LocalName :: pack_inline (32772479205207296u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_6F_76_65_72 : LocalName = LocalName :: pack_inline (125780104277248u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_70_61_64_64_65_64 : LocalName = LocalName :: pack_inline (7234298758734834944u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_70_61_74_68 : LocalName = LocalName :: pack_inline (114849060252928u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_72_6F_6F_74 : LocalName = LocalName :: pack_inline (128021959961856u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_72_6F_77 : LocalName = LocalName :: pack_inline (512970878208u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_73 : LocalName = LocalName :: pack_inline (7564544u64 , 2u8) ; +pub const ATOM_LOCALNAME__6D_73_70_61_63_65 : LocalName = LocalName :: pack_inline (28538242797366528u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_73_71_72_74 : LocalName = LocalName :: pack_inline (128034878483712u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_73_74_79_6C_65 : LocalName = LocalName :: pack_inline (28548241548340480u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_73_75_62 : LocalName = LocalName :: pack_inline (422877293824u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_73_75_62_73_75_70 : LocalName = LocalName :: pack_inline (8103509971237563648u64 , 7u8) ; +pub const ATOM_LOCALNAME__6D_73_75_70 : LocalName = LocalName :: pack_inline (483006835968u64 , 4u8) ; +pub const ATOM_LOCALNAME__6D_74_61_62_6C_65 : LocalName = LocalName :: pack_inline (28548142445391104u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_74_64 : LocalName = LocalName :: pack_inline (1685351680u64 , 3u8) ; +pub const ATOM_LOCALNAME__6D_74_65_78_74 : LocalName = LocalName :: pack_inline (128060447026432u64 , 5u8) ; +pub const ATOM_LOCALNAME__6D_74_72 : LocalName = LocalName :: pack_inline (1920232704u64 , 3u8) ; +pub const ATOM_LOCALNAME__6D_75_6E_64_65_72 : LocalName = LocalName :: pack_inline (32199629369339136u64 , 6u8) ; +pub const ATOM_LOCALNAME__6D_75_74_65_64 : LocalName = LocalName :: pack_inline (110386908327168u64 , 5u8) ; +pub const ATOM_LOCALNAME__6E_61_6D_65 : LocalName = LocalName :: pack_inline (435626798592u64 , 4u8) ; +pub const ATOM_LOCALNAME__6E_61_72_67_73 : LocalName = LocalName :: pack_inline (126888137813504u64 , 5u8) ; +pub const ATOM_LOCALNAME__6E_61_76 : LocalName = LocalName :: pack_inline (1986096640u64 , 3u8) ; +pub const ATOM_LOCALNAME__6E_65_71 : LocalName = LocalName :: pack_inline (1902472704u64 , 3u8) ; +pub const ATOM_LOCALNAME__6E_65_73_74 : LocalName = LocalName :: pack_inline (500152233472u64 , 4u8) ; +pub const ATOM_LOCALNAME__6E_65_78_74_69_64 : LocalName = LocalName :: pack_inline (28263446628101632u64 , 6u8) ; +pub const ATOM_LOCALNAME__6E_6F_62_72 : LocalName = LocalName :: pack_inline (491277741568u64 , 4u8) ; +pub const ATOM_LOCALNAME__6E_6F_65_6D_62_65_64 : LocalName = LocalName :: pack_inline (7234296598433328640u64 , 7u8) ; +pub const ATOM_LOCALNAME__6E_6F_68_72_65_66 : LocalName = LocalName :: pack_inline (28821989677297152u64 , 6u8) ; +pub const ATOM_LOCALNAME__6E_6F_6E_63_65 : LocalName = LocalName :: pack_inline (111477728964096u64 , 5u8) ; +pub const ATOM_LOCALNAME__6E_6F_6E_65 : LocalName = LocalName :: pack_inline (435644493312u64 , 4u8) ; +pub const ATOM_LOCALNAME__6E_6F_73_68_61_64_65 : LocalName = LocalName :: pack_inline (7306071596742962688u64 , 7u8) ; +pub const ATOM_LOCALNAME__6E_6F_74 : LocalName = LocalName :: pack_inline (1953459712u64 , 3u8) ; +pub const ATOM_LOCALNAME__6E_6F_74_69_6E : LocalName = LocalName :: pack_inline (121399204081152u64 , 5u8) ; +pub const ATOM_LOCALNAME__6E_6F_77_72_61_70 : LocalName = LocalName :: pack_inline (31632341649550848u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_62_6A_65_63_74 : LocalName = LocalName :: pack_inline (32760384526118656u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_66_66_73_65_74 : LocalName = LocalName :: pack_inline (32762643612069632u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6C : LocalName = LocalName :: pack_inline (7106304u64 , 2u8) ; +pub const ATOM_LOCALNAME__6F_6E_61_62_6F_72_74 : LocalName = LocalName :: pack_inline (8390891524076760832u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_62_65_67_69_6E : LocalName = LocalName :: pack_inline (7956003901867454208u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_62_6C_75_72 : LocalName = LocalName :: pack_inline (32217255713337088u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_63_6C_69_63_6B : LocalName = LocalName :: pack_inline (7738144498998210304u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_63_6F_70_79 : LocalName = LocalName :: pack_inline (34182095893851904u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_63_75_74 : LocalName = LocalName :: pack_inline (128047528177408u64 , 5u8) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_61_67 : LocalName = LocalName :: pack_inline (29099066540322560u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_64_72_6F_70 : LocalName = LocalName :: pack_inline (31647734493507328u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_65_6E_64 : LocalName = LocalName :: pack_inline (110425310916352u64 , 5u8) ; +pub const ATOM_LOCALNAME__6F_6E_65_72_72_6F_72 : LocalName = LocalName :: pack_inline (8245935278392241920u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_66_6F_63_75_73 : LocalName = LocalName :: pack_inline (8319665216747892480u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_68_65_6C_70 : LocalName = LocalName :: pack_inline (31644380191158016u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_69_6E_70_75_74 : LocalName = LocalName :: pack_inline (8391737100192345856u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_6B_65_79_75_70 : LocalName = LocalName :: pack_inline (8103516581024132864u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_6C_6F_61_64 : LocalName = LocalName :: pack_inline (28254628859506432u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_6D_6F_76_65 : LocalName = LocalName :: pack_inline (28559193597177600u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_70_61_73_74_65 : LocalName = LocalName :: pack_inline (7310594957464465152u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_72_65_73_65_74 : LocalName = LocalName :: pack_inline (8387236760596147968u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_73_74_61_72_74 : LocalName = LocalName :: pack_inline (8390876208525373184u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_6E_73_74_6F_70 : LocalName = LocalName :: pack_inline (31647743335100160u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_6E_7A_6F_6F_6D : LocalName = LocalName :: pack_inline (30803297047572224u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_70_61_63_69_74_79 : LocalName = LocalName :: pack_inline (8751735851445153536u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_70_65_6E : LocalName = LocalName :: pack_inline (474148269824u64 , 4u8) ; +pub const ATOM_LOCALNAME__6F_70_74_69_6D_75_6D : LocalName = LocalName :: pack_inline (7887330622101810944u64 , 7u8) ; +pub const ATOM_LOCALNAME__6F_70_74_69_6F_6E : LocalName = LocalName :: pack_inline (31084746153946880u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_72 : LocalName = LocalName :: pack_inline (7499520u64 , 2u8) ; +pub const ATOM_LOCALNAME__6F_72_64_65_72 : LocalName = LocalName :: pack_inline (125779802484480u64 , 5u8) ; +pub const ATOM_LOCALNAME__6F_72_69_65_6E_74 : LocalName = LocalName :: pack_inline (32772479138295552u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_72_69_67_69_6E : LocalName = LocalName :: pack_inline (31078140309827328u64 , 6u8) ; +pub const ATOM_LOCALNAME__6F_74_68_65_72 : LocalName = LocalName :: pack_inline (125779869724416u64 , 5u8) ; +pub const ATOM_LOCALNAME__6F_75_74_70_75_74 : LocalName = LocalName :: pack_inline (32780223149076224u64 , 6u8) ; +pub const ATOM_LOCALNAME__70 : LocalName = LocalName :: pack_inline (28672u64 , 1u8) ; +pub const ATOM_LOCALNAME__70_61_72_61_6D : LocalName = LocalName :: pack_inline (120265298243584u64 , 5u8) ; +pub const ATOM_LOCALNAME__70_61_72_73_65 : LocalName = LocalName :: pack_inline (111546514632704u64 , 5u8) ; +pub const ATOM_LOCALNAME__70_61_74_68 : LocalName = LocalName :: pack_inline (448629141504u64 , 4u8) ; +pub const ATOM_LOCALNAME__70_61_74_74_65_72_6E : LocalName = LocalName :: pack_inline (7958535042360242176u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_69 : LocalName = LocalName :: pack_inline (6909952u64 , 2u8) ; +pub const ATOM_LOCALNAME__70_69_63_74_75_72_65 : LocalName = LocalName :: pack_inline (7310034287920246784u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_69_65_63_65 : LocalName = LocalName :: pack_inline (111477577576448u64 , 5u8) ; +pub const ATOM_LOCALNAME__70_69_6E_67 : LocalName = LocalName :: pack_inline (444234035200u64 , 4u8) ; +pub const ATOM_LOCALNAME__70_6C_75_73 : LocalName = LocalName :: pack_inline (495891279872u64 , 4u8) ; +pub const ATOM_LOCALNAME__70_6F_69_6E_74_73 : LocalName = LocalName :: pack_inline (32497639885860864u64 , 6u8) ; +pub const ATOM_LOCALNAME__70_6F_6C_79_67_6F_6E : LocalName = LocalName :: pack_inline (7957692837794902016u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_6F_73_74_65_72 : LocalName = LocalName :: pack_inline (32199698172309504u64 , 6u8) ; +pub const ATOM_LOCALNAME__70_6F_77_65_72 : LocalName = LocalName :: pack_inline (125780121055232u64 , 5u8) ; +pub const ATOM_LOCALNAME__70_72_65 : LocalName = LocalName :: pack_inline (1701998592u64 , 3u8) ; +pub const ATOM_LOCALNAME__70_72_65_6C_6F_61_64 : LocalName = LocalName :: pack_inline (7233184987882876928u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_72_69_6D_65_73 : LocalName = LocalName :: pack_inline (32481142916673536u64 , 6u8) ; +pub const ATOM_LOCALNAME__70_72_6F_64_75_63_74 : LocalName = LocalName :: pack_inline (8386676005320945664u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_72_6F_66_69_6C_65 : LocalName = LocalName :: pack_inline (7308332183992823808u64 , 7u8) ; +pub const ATOM_LOCALNAME__70_72_6F_6D_70_74 : LocalName = LocalName :: pack_inline (32774712621953024u64 , 6u8) ; +pub const ATOM_LOCALNAME__71 : LocalName = LocalName :: pack_inline (28928u64 , 1u8) ; +pub const ATOM_LOCALNAME__72 : LocalName = LocalName :: pack_inline (29184u64 , 1u8) ; +pub const ATOM_LOCALNAME__72_61_64_69_75_73 : LocalName = LocalName :: pack_inline (32498717837849088u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_62 : LocalName = LocalName :: pack_inline (6451712u64 , 2u8) ; +pub const ATOM_LOCALNAME__72_65_61_6C : LocalName = LocalName :: pack_inline (465490506240u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_61_6C_73 : LocalName = LocalName :: pack_inline (126909327700480u64 , 5u8) ; +pub const ATOM_LOCALNAME__72_65_63_74 : LocalName = LocalName :: pack_inline (499883799040u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_66_58 : LocalName = LocalName :: pack_inline (379675046400u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_66_59 : LocalName = LocalName :: pack_inline (383970013696u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_66_78 : LocalName = LocalName :: pack_inline (517113999872u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_66_79 : LocalName = LocalName :: pack_inline (521408967168u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_6C : LocalName = LocalName :: pack_inline (1818587648u64 , 3u8) ; +pub const ATOM_LOCALNAME__72_65_6C_6E : LocalName = LocalName :: pack_inline (474264990208u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_65_6D : LocalName = LocalName :: pack_inline (1835364864u64 , 3u8) ; +pub const ATOM_LOCALNAME__72_65_70_65_61_74 : LocalName = LocalName :: pack_inline (32758185603723776u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_65_70_6C_61_63_65 : LocalName = LocalName :: pack_inline (7305790138895135232u64 , 7u8) ; +pub const ATOM_LOCALNAME__72_65_73_74_61_72_74 : LocalName = LocalName :: pack_inline (8390876208524784128u64 , 7u8) ; +pub const ATOM_LOCALNAME__72_65_73_75_6C_74 : LocalName = LocalName :: pack_inline (32770349001437696u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_65_76 : LocalName = LocalName :: pack_inline (1986359808u64 , 3u8) ; +pub const ATOM_LOCALNAME__72_6F_6C_65 : LocalName = LocalName :: pack_inline (435610939904u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_6F_6F_74 : LocalName = LocalName :: pack_inline (500085780992u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_6F_74_61_74_65 : LocalName = LocalName :: pack_inline (28556934561886720u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_6F_77_73 : LocalName = LocalName :: pack_inline (495925031424u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_6F_77_73_70_61_6E : LocalName = LocalName :: pack_inline (7953762058140348928u64 , 7u8) ; +pub const ATOM_LOCALNAME__72_70 : LocalName = LocalName :: pack_inline (7369216u64 , 2u8) ; +pub const ATOM_LOCALNAME__72_71_75_6F_74_65 : LocalName = LocalName :: pack_inline (28556994708337152u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_73_70_61_63_65 : LocalName = LocalName :: pack_inline (28538242797367808u64 , 6u8) ; +pub const ATOM_LOCALNAME__72_74 : LocalName = LocalName :: pack_inline (7631360u64 , 2u8) ; +pub const ATOM_LOCALNAME__72_74_63 : LocalName = LocalName :: pack_inline (1668575744u64 , 3u8) ; +pub const ATOM_LOCALNAME__72_75_62_79 : LocalName = LocalName :: pack_inline (521342906880u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_75_6C_65 : LocalName = LocalName :: pack_inline (435611333120u64 , 4u8) ; +pub const ATOM_LOCALNAME__72_75_6C_65_73 : LocalName = LocalName :: pack_inline (126879448527360u64 , 5u8) ; +pub const ATOM_LOCALNAME__72_78 : LocalName = LocalName :: pack_inline (7893504u64 , 2u8) ; +pub const ATOM_LOCALNAME__72_79 : LocalName = LocalName :: pack_inline (7959040u64 , 2u8) ; +pub const ATOM_LOCALNAME__73 : LocalName = LocalName :: pack_inline (29440u64 , 1u8) ; +pub const ATOM_LOCALNAME__73_61_6D_70 : LocalName = LocalName :: pack_inline (482871440128u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_61_6E_64_62_6F_78 : LocalName = LocalName :: pack_inline (8678263190454366976u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_63_61_6C_65 : LocalName = LocalName :: pack_inline (111516164780800u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_63_68_65_6D_65 : LocalName = LocalName :: pack_inline (28549254958248704u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_63_6F_70_65 : LocalName = LocalName :: pack_inline (111533579531008u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_63_6F_70_65_64 : LocalName = LocalName :: pack_inline (28259031250596608u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_63_72_69_70_74 : LocalName = LocalName :: pack_inline (32774695491433216u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_64_65_76 : LocalName = LocalName :: pack_inline (508507222784u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_65_61_72_63_68 : LocalName = LocalName :: pack_inline (29382740489368320u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_65_63 : LocalName = LocalName :: pack_inline (1667592960u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_65_63_68 : LocalName = LocalName :: pack_inline (448344191744u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_65_63_74_69_6F_6E : LocalName = LocalName :: pack_inline (7957695015191671552u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_65_65_64 : LocalName = LocalName :: pack_inline (431197876992u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_65_6C_65_63_74 : LocalName = LocalName :: pack_inline (32760384559870720u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_65_70 : LocalName = LocalName :: pack_inline (1885696768u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_65_74 : LocalName = LocalName :: pack_inline (1952805632u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_65_74_64_69_66_66 : LocalName = LocalName :: pack_inline (7378700919663588096u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_68_61_70_65 : LocalName = LocalName :: pack_inline (111533344977664u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_68_6F_77 : LocalName = LocalName :: pack_inline (512970224384u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_69_6E : LocalName = LocalName :: pack_inline (1852404480u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_69_6E_68 : LocalName = LocalName :: pack_inline (448529003264u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_69_7A_65 : LocalName = LocalName :: pack_inline (435845427968u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_69_7A_65_73 : LocalName = LocalName :: pack_inline (126879682622208u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_6C_6F_70_65 : LocalName = LocalName :: pack_inline (111533580120832u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_6C_6F_74 : LocalName = LocalName :: pack_inline (500085584640u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_6D_61_6C_6C : LocalName = LocalName :: pack_inline (119212746830592u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_6F_75_72_63_65 : LocalName = LocalName :: pack_inline (28538315895436032u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_70_61_63_65 : LocalName = LocalName :: pack_inline (111477510927104u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_70_61_63_65_72 : LocalName = LocalName :: pack_inline (32199624855941888u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_70_61_63_69_6E_67 : LocalName = LocalName :: pack_inline (7453010308902187776u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_70_61_6E : LocalName = LocalName :: pack_inline (474081161984u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_70_65_65_64 : LocalName = LocalName :: pack_inline (110386656342784u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_72_63 : LocalName = LocalName :: pack_inline (1668444928u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_72_63_64_6F_63 : LocalName = LocalName :: pack_inline (27988499650212608u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_72_63_6C_61_6E_67 : LocalName = LocalName :: pack_inline (7453001551497556736u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_72_63_73_65_74 : LocalName = LocalName :: pack_inline (32762643562525440u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_74_61_6E_64_62_79 : LocalName = LocalName :: pack_inline (8746663851551126272u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_74_61_72_74 : LocalName = LocalName :: pack_inline (128034610115328u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_74_65_6D_68 : LocalName = LocalName :: pack_inline (114819062854400u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_74_65_6D_76 : LocalName = LocalName :: pack_inline (130212225643264u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_74_65_70 : LocalName = LocalName :: pack_inline (482738467584u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_74_6F_70 : LocalName = LocalName :: pack_inline (482906239744u64 , 4u8) ; +pub const ATOM_LOCALNAME__73_74_72_69_6B_65 : LocalName = LocalName :: pack_inline (28547073283748608u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_74_72_69_6E_67 : LocalName = LocalName :: pack_inline (29113321772053248u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6B_65 : LocalName = LocalName :: pack_inline (28547099053552384u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_74_72_6F_6E_67 : LocalName = LocalName :: pack_inline (29113347541857024u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_74_79_6C_65 : LocalName = LocalName :: pack_inline (111516568548096u64 , 5u8) ; +pub const ATOM_LOCALNAME__73_75_62 : LocalName = LocalName :: pack_inline (1651864320u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_75_62_73_65_74 : LocalName = LocalName :: pack_inline (32762643545944832u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_75_6D : LocalName = LocalName :: pack_inline (1836413696u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_75_6D_6D_61_72_79 : LocalName = LocalName :: pack_inline (8751164148550038272u64 , 7u8) ; +pub const ATOM_LOCALNAME__73_75_70 : LocalName = LocalName :: pack_inline (1886745344u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_76_67 : LocalName = LocalName :: pack_inline (1735815936u64 , 3u8) ; +pub const ATOM_LOCALNAME__73_77_69_74_63_68 : LocalName = LocalName :: pack_inline (29382749214700288u64 , 6u8) ; +pub const ATOM_LOCALNAME__73_79_6D_62_6F_6C : LocalName = LocalName :: pack_inline (30521766018904832u64 , 6u8) ; +pub const ATOM_LOCALNAME__74_61_62_6C_65 : LocalName = LocalName :: pack_inline (111516181427200u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_61_6E : LocalName = LocalName :: pack_inline (1851880448u64 , 3u8) ; +pub const ATOM_LOCALNAME__74_61_6E_68 : LocalName = LocalName :: pack_inline (448528479232u64 , 4u8) ; +pub const ATOM_LOCALNAME__74_61_72_67_65_74 : LocalName = LocalName :: pack_inline (32762592273462272u64 , 6u8) ; +pub const ATOM_LOCALNAME__74_61_72_67_65_74_58 : LocalName = LocalName :: pack_inline (6373830867611120640u64 , 7u8) ; +pub const ATOM_LOCALNAME__74_61_72_67_65_74_59 : LocalName = LocalName :: pack_inline (6445888461649048576u64 , 7u8) ; +pub const ATOM_LOCALNAME__74_61_72_67_65_74_78 : LocalName = LocalName :: pack_inline (8679673876824814592u64 , 7u8) ; +pub const ATOM_LOCALNAME__74_61_72_67_65_74_79 : LocalName = LocalName :: pack_inline (8751731470862742528u64 , 7u8) ; +pub const ATOM_LOCALNAME__74_62_6F_64_79 : LocalName = LocalName :: pack_inline (133472272413696u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_62_72_65_61_6B : LocalName = LocalName :: pack_inline (30224910846686208u64 , 6u8) ; +pub const ATOM_LOCALNAME__74_64 : LocalName = LocalName :: pack_inline (6583296u64 , 2u8) ; +pub const ATOM_LOCALNAME__74_65_6E_64_73_74_6F : LocalName = LocalName :: pack_inline (8031170910694503424u64 , 7u8) ; +pub const ATOM_LOCALNAME__74_65_78_74 : LocalName = LocalName :: pack_inline (500236121088u64 , 4u8) ; +pub const ATOM_LOCALNAME__74_66_6F_6F_74 : LocalName = LocalName :: pack_inline (128021959177216u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_68 : LocalName = LocalName :: pack_inline (6845440u64 , 2u8) ; +pub const ATOM_LOCALNAME__74_68_65_61_64 : LocalName = LocalName :: pack_inline (110369475949568u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_69_6D_65 : LocalName = LocalName :: pack_inline (435627324416u64 , 4u8) ; +pub const ATOM_LOCALNAME__74_69_6D_65_73 : LocalName = LocalName :: pack_inline (126879464518656u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_69_74_6C_65 : LocalName = LocalName :: pack_inline (111516483941376u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_6F : LocalName = LocalName :: pack_inline (7304192u64 , 2u8) ; +pub const ATOM_LOCALNAME__74_6F_67_67_6C_65 : LocalName = LocalName :: pack_inline (28548164020564992u64 , 6u8) ; +pub const ATOM_LOCALNAME__74_72 : LocalName = LocalName :: pack_inline (7500800u64 , 2u8) ; +pub const ATOM_LOCALNAME__74_72_61_63_6B : LocalName = LocalName :: pack_inline (118074580825088u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_72_65_66 : LocalName = LocalName :: pack_inline (439788663808u64 , 4u8) ; +pub const ATOM_LOCALNAME__74_72_75_65 : LocalName = LocalName :: pack_inline (435762131968u64 , 4u8) ; +pub const ATOM_LOCALNAME__74_73_70_61_6E : LocalName = LocalName :: pack_inline (121364777497600u64 , 5u8) ; +pub const ATOM_LOCALNAME__74_74 : LocalName = LocalName :: pack_inline (7631872u64 , 2u8) ; +pub const ATOM_LOCALNAME__74_79_70_65 : LocalName = LocalName :: pack_inline (435678704640u64 , 4u8) ; +pub const ATOM_LOCALNAME__75 : LocalName = LocalName :: pack_inline (29952u64 , 1u8) ; +pub const ATOM_LOCALNAME__75_31 : LocalName = LocalName :: pack_inline (3241216u64 , 2u8) ; +pub const ATOM_LOCALNAME__75_32 : LocalName = LocalName :: pack_inline (3306752u64 , 2u8) ; +pub const ATOM_LOCALNAME__75_6C : LocalName = LocalName :: pack_inline (7107840u64 , 2u8) ; +pub const ATOM_LOCALNAME__75_6E_69_63_6F_64_65 : LocalName = LocalName :: pack_inline (7306086968263079168u64 , 7u8) ; +pub const ATOM_LOCALNAME__75_6E_69_6F_6E : LocalName = LocalName :: pack_inline (121424789271808u64 , 5u8) ; +pub const ATOM_LOCALNAME__75_70_6C_69_6D_69_74 : LocalName = LocalName :: pack_inline (8388356080512562432u64 , 7u8) ; +pub const ATOM_LOCALNAME__75_73_65 : LocalName = LocalName :: pack_inline (1702065408u64 , 3u8) ; +pub const ATOM_LOCALNAME__75_73_65_6D_61_70 : LocalName = LocalName :: pack_inline (31632319872988416u64 , 6u8) ; +pub const ATOM_LOCALNAME__76_61_6C_69_67_6E : LocalName = LocalName :: pack_inline (31075949925725696u64 , 6u8) ; +pub const ATOM_LOCALNAME__76_61_6C_75_65 : LocalName = LocalName :: pack_inline (111555003905536u64 , 5u8) ; +pub const ATOM_LOCALNAME__76_61_6C_75_65_73 : LocalName = LocalName :: pack_inline (32481177325630976u64 , 6u8) ; +pub const ATOM_LOCALNAME__76_61_72 : LocalName = LocalName :: pack_inline (1918989824u64 , 3u8) ; +pub const ATOM_LOCALNAME__76_65_63_74_6F_72 : LocalName = LocalName :: pack_inline (32210693019497984u64 , 6u8) ; +pub const ATOM_LOCALNAME__76_65_72_73_69_6F_6E : LocalName = LocalName :: pack_inline (7957695011148363264u64 , 7u8) ; +pub const ATOM_LOCALNAME__76_69_64_65_6F : LocalName = LocalName :: pack_inline (122481267013120u64 , 5u8) ; +pub const ATOM_LOCALNAME__76_69_65_77 : LocalName = LocalName :: pack_inline (512802518528u64 , 4u8) ; +pub const ATOM_LOCALNAME__76_69_65_77_42_6F_78 : LocalName = LocalName :: pack_inline (8678228087536186880u64 , 7u8) ; +pub const ATOM_LOCALNAME__76_69_65_77_62_6F_78 : LocalName = LocalName :: pack_inline (8678263271908275712u64 , 7u8) ; +pub const ATOM_LOCALNAME__76_6B_65_72_6E : LocalName = LocalName :: pack_inline (121437606868480u64 , 5u8) ; +pub const ATOM_LOCALNAME__76_6C_69_6E_6B : LocalName = LocalName :: pack_inline (118121959290368u64 , 5u8) ; +pub const ATOM_LOCALNAME__76_73_70_61_63_65 : LocalName = LocalName :: pack_inline (28538242797368832u64 , 6u8) ; +pub const ATOM_LOCALNAME__77_62_72 : LocalName = LocalName :: pack_inline (1919055616u64 , 3u8) ; +pub const ATOM_LOCALNAME__77_68_65_6E : LocalName = LocalName :: pack_inline (474147747584u64 , 4u8) ; +pub const ATOM_LOCALNAME__77_69_64_74_68 : LocalName = LocalName :: pack_inline (114849110128384u64 , 5u8) ; +pub const ATOM_LOCALNAME__77_69_64_74_68_73 : LocalName = LocalName :: pack_inline (32484471431853824u64 , 6u8) ; +pub const ATOM_LOCALNAME__77_72_61_70 : LocalName = LocalName :: pack_inline (482671228672u64 , 4u8) ; +pub const ATOM_LOCALNAME__78 : LocalName = LocalName :: pack_inline (30720u64 , 1u8) ; +pub const ATOM_LOCALNAME__78_31 : LocalName = LocalName :: pack_inline (3241984u64 , 2u8) ; +pub const ATOM_LOCALNAME__78_32 : LocalName = LocalName :: pack_inline (3307520u64 , 2u8) ; +pub const ATOM_LOCALNAME__78_6C_69_6E_6B : LocalName = LocalName :: pack_inline (118121959290880u64 , 5u8) ; +pub const ATOM_LOCALNAME__78_6D_6C_6E_73 : LocalName = LocalName :: pack_inline (126918102710272u64 , 5u8) ; +pub const ATOM_LOCALNAME__78_6D_70 : LocalName = LocalName :: pack_inline (1886222336u64 , 3u8) ; +pub const ATOM_LOCALNAME__78_6F_72 : LocalName = LocalName :: pack_inline (1919907840u64 , 3u8) ; +pub const ATOM_LOCALNAME__78_72_65_66 : LocalName = LocalName :: pack_inline (439788664832u64 , 4u8) ; +pub const ATOM_LOCALNAME__79 : LocalName = LocalName :: pack_inline (30976u64 , 1u8) ; +pub const ATOM_LOCALNAME__79_31 : LocalName = LocalName :: pack_inline (3242240u64 , 2u8) ; +pub const ATOM_LOCALNAME__79_32 : LocalName = LocalName :: pack_inline (3307776u64 , 2u8) ; +pub const ATOM_LOCALNAME__7A : LocalName = LocalName :: pack_inline (31232u64 , 1u8) ; +# [doc = "Takes a local name as a string and returns its key in the string cache."] # [macro_export] macro_rules ! local_name { ("columnspacing") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_75_6D_6E_73_70_61_63_69_6E_67 } ; +("kernelunitlength") => { $ crate :: ATOM_LOCALNAME__6B_65_72_6E_65_6C_75_6E_69_74_6C_65_6E_67_74_68 } ; +("color-interpolation") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_6F_72_2D_69_6E_74_65_72_70_6F_6C_61_74_69_6F_6E } ; +("complexes") => { $ crate :: ATOM_LOCALNAME__63_6F_6D_70_6C_65_78_65_73 } ; +("annotation-xml") => { $ crate :: ATOM_LOCALNAME__61_6E_6E_6F_74_61_74_69_6F_6E_2D_78_6D_6C } ; +("specularconstant") => { $ crate :: ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_63_6F_6E_73_74_61_6E_74 } ; +("mozbrowser") => { $ crate :: ATOM_LOCALNAME__6D_6F_7A_62_72_6F_77_73_65_72 } ; +("interval") => { $ crate :: ATOM_LOCALNAME__69_6E_74_65_72_76_61_6C } ; +("gradientUnits") => { $ crate :: ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_55_6E_69_74_73 } ; +("onmouseleave") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6C_65_61_76_65 } ; +("writing-mode") => { $ crate :: ATOM_LOCALNAME__77_72_69_74_69_6E_67_2D_6D_6F_64_65 } ; +("aria-valuemax") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6D_61_78 } ; +("animateTransform") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_54_72_61_6E_73_66_6F_72_6D } ; +("definitionURL") => { $ crate :: ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_55_52_4C } ; +("background") => { $ crate :: ATOM_LOCALNAME__62_61_63_6B_67_72_6F_75_6E_64 } ; +("aria-templateid") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_74_65_6D_70_6C_61_74_65_69_64 } ; +("feGaussianBlur") => { $ crate :: ATOM_LOCALNAME__66_65_47_61_75_73_73_69_61_6E_42_6C_75_72 } ; +("subscriptshift") => { $ crate :: ATOM_LOCALNAME__73_75_62_73_63_72_69_70_74_73_68_69_66_74 } ; +("xmlns:xlink") => { $ crate :: ATOM_LOCALNAME__78_6D_6C_6E_73_3A_78_6C_69_6E_6B } ; +("fieldset") => { $ crate :: ATOM_LOCALNAME__66_69_65_6C_64_73_65_74 } ; +("spreadmethod") => { $ crate :: ATOM_LOCALNAME__73_70_72_65_61_64_6D_65_74_68_6F_64 } ; +("formtarget") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_74_61_72_67_65_74 } ; +("feDiffuseLighting") => { $ crate :: ATOM_LOCALNAME__66_65_44_69_66_66_75_73_65_4C_69_67_68_74_69_6E_67 } ; +("feturbulence") => { $ crate :: ATOM_LOCALNAME__66_65_74_75_72_62_75_6C_65_6E_63_65 } ; +("onbeforeeditfocus") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_65_64_69_74_66_6F_63_75_73 } ; +("colgroup") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_67_72_6F_75_70 } ; +("mathbackground") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68_62_61_63_6B_67_72_6F_75_6E_64 } ; +("onkeydown") => { $ crate :: ATOM_LOCALNAME__6F_6E_6B_65_79_64_6F_77_6E } ; +("feColorMatrix") => { $ crate :: ATOM_LOCALNAME__66_65_43_6F_6C_6F_72_4D_61_74_72_69_78 } ; +("startoffset") => { $ crate :: ATOM_LOCALNAME__73_74_61_72_74_6F_66_66_73_65_74 } ; +("autofocus") => { $ crate :: ATOM_LOCALNAME__61_75_74_6F_66_6F_63_75_73 } ; +("contextmenu") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_78_74_6D_65_6E_75 } ; +("longdesc") => { $ crate :: ATOM_LOCALNAME__6C_6F_6E_67_64_65_73_63 } ; +("aria-relevant") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_65_6C_65_76_61_6E_74 } ; +("onbeforeprint") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_70_72_69_6E_74 } ; +("fill-rule") => { $ crate :: ATOM_LOCALNAME__66_69_6C_6C_2D_72_75_6C_65 } ; +("hreflang") => { $ crate :: ATOM_LOCALNAME__68_72_65_66_6C_61_6E_67 } ; +("domainofapplication") => { $ crate :: ATOM_LOCALNAME__64_6F_6D_61_69_6E_6F_66_61_70_70_6C_69_63_61_74_69_6F_6E } ; +("keytimes") => { $ crate :: ATOM_LOCALNAME__6B_65_79_74_69_6D_65_73 } ; +("numoctaves") => { $ crate :: ATOM_LOCALNAME__6E_75_6D_6F_63_74_61_76_65_73 } ; +("partialdiff") => { $ crate :: ATOM_LOCALNAME__70_61_72_74_69_61_6C_64_69_66_66 } ; +("aria-describedby") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_65_73_63_72_69_62_65_64_62_79 } ; +("color-interpolation-filters") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_6F_72_2D_69_6E_74_65_72_70_6F_6C_61_74_69_6F_6E_2D_66_69_6C_74_65_72_73 } ; +("preserveaspectratio") => { $ crate :: ATOM_LOCALNAME__70_72_65_73_65_72_76_65_61_73_70_65_63_74_72_61_74_69_6F } ; +("actiontype") => { $ crate :: ATOM_LOCALNAME__61_63_74_69_6F_6E_74_79_70_65 } ; +("quotient") => { $ crate :: ATOM_LOCALNAME__71_75_6F_74_69_65_6E_74 } ; +("notation") => { $ crate :: ATOM_LOCALNAME__6E_6F_74_61_74_69_6F_6E } ; +("autocomplete") => { $ crate :: ATOM_LOCALNAME__61_75_74_6F_63_6F_6D_70_6C_65_74_65 } ; +("contentStyleType") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_53_74_79_6C_65_54_79_70_65 } ; +("strikethrough-thickness") => { $ crate :: ATOM_LOCALNAME__73_74_72_69_6B_65_74_68_72_6F_75_67_68_2D_74_68_69_63_6B_6E_65_73_73 } ; +("stop-color") => { $ crate :: ATOM_LOCALNAME__73_74_6F_70_2D_63_6F_6C_6F_72 } ; +("itemtype") => { $ crate :: ATOM_LOCALNAME__69_74_65_6D_74_79_70_65 } ; +("fepointlight") => { $ crate :: ATOM_LOCALNAME__66_65_70_6F_69_6E_74_6C_69_67_68_74 } ; +("formmethod") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_6D_65_74_68_6F_64 } ; +("seamless") => { $ crate :: ATOM_LOCALNAME__73_65_61_6D_6C_65_73_73 } ; +("plaintext") => { $ crate :: ATOM_LOCALNAME__70_6C_61_69_6E_74_65_78_74 } ; +("aria-modal") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6D_6F_64_61_6C } ; +("required") => { $ crate :: ATOM_LOCALNAME__72_65_71_75_69_72_65_64 } ; +("numOctaves") => { $ crate :: ATOM_LOCALNAME__6E_75_6D_4F_63_74_61_76_65_73 } ; +("maxlength") => { $ crate :: ATOM_LOCALNAME__6D_61_78_6C_65_6E_67_74_68 } ; +("piecewise") => { $ crate :: ATOM_LOCALNAME__70_69_65_63_65_77_69_73_65 } ; +("cellspacing") => { $ crate :: ATOM_LOCALNAME__63_65_6C_6C_73_70_61_63_69_6E_67 } ; +("xChannelSelector") => { $ crate :: ATOM_LOCALNAME__78_43_68_61_6E_6E_65_6C_53_65_6C_65_63_74_6F_72 } ; +("momentabout") => { $ crate :: ATOM_LOCALNAME__6D_6F_6D_65_6E_74_61_62_6F_75_74 } ; +("onfinish") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_69_6E_69_73_68 } ; +("kernelmatrix") => { $ crate :: ATOM_LOCALNAME__6B_65_72_6E_65_6C_6D_61_74_72_69_78 } ; +("color-profile") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_6F_72_2D_70_72_6F_66_69_6C_65 } ; +("fedropshadow") => { $ crate :: ATOM_LOCALNAME__66_65_64_72_6F_70_73_68_61_64_6F_77 } ; +("aria-haspopup") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_68_61_73_70_6F_70_75_70 } ; +("pointsatz") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_7A } ; +("decoding") => { $ crate :: ATOM_LOCALNAME__64_65_63_6F_64_69_6E_67 } ; +("linearGradient") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65_61_72_47_72_61_64_69_65_6E_74 } ; +("columnlines") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_75_6D_6E_6C_69_6E_65_73 } ; +("onmousemove") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6D_6F_76_65 } ; +("codomain") => { $ crate :: ATOM_LOCALNAME__63_6F_64_6F_6D_61_69_6E } ; +("prsubset") => { $ crate :: ATOM_LOCALNAME__70_72_73_75_62_73_65_74 } ; +("alignment-baseline") => { $ crate :: ATOM_LOCALNAME__61_6C_69_67_6E_6D_65_6E_74_2D_62_61_73_65_6C_69_6E_65 } ; +("intercept") => { $ crate :: ATOM_LOCALNAME__69_6E_74_65_72_63_65_70_74 } ; +("font-face-src") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_73_72_63 } ; +("aria-multiselectable") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6D_75_6C_74_69_73_65_6C_65_63_74_61_62_6C_65 } ; +("keyPoints") => { $ crate :: ATOM_LOCALNAME__6B_65_79_50_6F_69_6E_74_73 } ; +("diffuseconstant") => { $ crate :: ATOM_LOCALNAME__64_69_66_66_75_73_65_63_6F_6E_73_74_61_6E_74 } ; +("xlink:arcrole") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_61_72_63_72_6F_6C_65 } ; +("onafterupdate") => { $ crate :: ATOM_LOCALNAME__6F_6E_61_66_74_65_72_75_70_64_61_74_65 } ; +("foreignObject") => { $ crate :: ATOM_LOCALNAME__66_6F_72_65_69_67_6E_4F_62_6A_65_63_74 } ; +("autosubmit") => { $ crate :: ATOM_LOCALNAME__61_75_74_6F_73_75_62_6D_69_74 } ; +("scrolldelay") => { $ crate :: ATOM_LOCALNAME__73_63_72_6F_6C_6C_64_65_6C_61_79 } ; +("stretchy") => { $ crate :: ATOM_LOCALNAME__73_74_72_65_74_63_68_79 } ; +("font-weight") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_77_65_69_67_68_74 } ; +("onafterprint") => { $ crate :: ATOM_LOCALNAME__6F_6E_61_66_74_65_72_70_72_69_6E_74 } ; +("aria-pressed") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_70_72_65_73_73_65_64 } ; +("line-height") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65_2D_68_65_69_67_68_74 } ; +("basefrequency") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_66_72_65_71_75_65_6E_63_79 } ; +("aria-description") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_65_73_63_72_69_70_74_69_6F_6E } ; +("onhashchange") => { $ crate :: ATOM_LOCALNAME__6F_6E_68_61_73_68_63_68_61_6E_67_65 } ; +("displaystyle") => { $ crate :: ATOM_LOCALNAME__64_69_73_70_6C_61_79_73_74_79_6C_65 } ; +("v-hanging") => { $ crate :: ATOM_LOCALNAME__76_2D_68_61_6E_67_69_6E_67 } ; +("patterncontentunits") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_63_6F_6E_74_65_6E_74_75_6E_69_74_73 } ; +("http-equiv") => { $ crate :: ATOM_LOCALNAME__68_74_74_70_2D_65_71_75_69_76 } ; +("animation") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_69_6F_6E } ; +("vert-adv-y") => { $ crate :: ATOM_LOCALNAME__76_65_72_74_2D_61_64_76_2D_79 } ; +("onrowsdelete") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_6F_77_73_64_65_6C_65_74_65 } ; +("aria-labelledby") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6C_61_62_65_6C_6C_65_64_62_79 } ; +("unicode-range") => { $ crate :: ATOM_LOCALNAME__75_6E_69_63_6F_64_65_2D_72_61_6E_67_65 } ; +("listener") => { $ crate :: ATOM_LOCALNAME__6C_69_73_74_65_6E_65_72 } ; +("accent-height") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_6E_74_2D_68_65_69_67_68_74 } ; +("dominant-baseline") => { $ crate :: ATOM_LOCALNAME__64_6F_6D_69_6E_61_6E_74_2D_62_61_73_65_6C_69_6E_65 } ; +("datetime") => { $ crate :: ATOM_LOCALNAME__64_61_74_65_74_69_6D_65 } ; +("aria-colspan") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_73_70_61_6E } ; +("conjugate") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_6A_75_67_61_74_65 } ; +("onmousedown") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_64_6F_77_6E } ; +("equalrows") => { $ crate :: ATOM_LOCALNAME__65_71_75_61_6C_72_6F_77_73 } ; +("stitchtiles") => { $ crate :: ATOM_LOCALNAME__73_74_69_74_63_68_74_69_6C_65_73 } ; +("edgemode") => { $ crate :: ATOM_LOCALNAME__65_64_67_65_6D_6F_64_65 } ; +("aria-autocomplete") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_61_75_74_6F_63_6F_6D_70_6C_65_74_65 } ; +("aria-atomic") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_61_74_6F_6D_69_63 } ; +("mathsize") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68_73_69_7A_65 } ; +("glyphref") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68_72_65_66 } ; +("maskunits") => { $ crate :: ATOM_LOCALNAME__6D_61_73_6B_75_6E_69_74_73 } ; +("clippathunits") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_70_61_74_68_75_6E_69_74_73 } ; +("aria-checked") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_68_65_63_6B_65_64 } ; +("enable-background") => { $ crate :: ATOM_LOCALNAME__65_6E_61_62_6C_65_2D_62_61_63_6B_67_72_6F_75_6E_64 } ; +("onbeforecut") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_63_75_74 } ; +("onmouseover") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6F_76_65_72 } ; +("pointsAtX") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_58 } ; +("ondblclick") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_62_6C_63_6C_69_63_6B } ; +("xchannelselector") => { $ crate :: ATOM_LOCALNAME__78_63_68_61_6E_6E_65_6C_73_65_6C_65_63_74_6F_72 } ; +("symmetric") => { $ crate :: ATOM_LOCALNAME__73_79_6D_6D_65_74_72_69_63 } ; +("fediffuselighting") => { $ crate :: ATOM_LOCALNAME__66_65_64_69_66_66_75_73_65_6C_69_67_68_74_69_6E_67 } ; +("aria-multiline") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6D_75_6C_74_69_6C_69_6E_65 } ; +("oninvalid") => { $ crate :: ATOM_LOCALNAME__6F_6E_69_6E_76_61_6C_69_64 } ; +("markerHeight") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_48_65_69_67_68_74 } ; +("repeatdur") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_64_75_72 } ; +("vert-origin-y") => { $ crate :: ATOM_LOCALNAME__76_65_72_74_2D_6F_72_69_67_69_6E_2D_79 } ; +("requiredFeatures") => { $ crate :: ATOM_LOCALNAME__72_65_71_75_69_72_65_64_46_65_61_74_75_72_65_73 } ; +("elevation") => { $ crate :: ATOM_LOCALNAME__65_6C_65_76_61_74_69_6F_6E } ; +("viewtarget") => { $ crate :: ATOM_LOCALNAME__76_69_65_77_74_61_72_67_65_74 } ; +("aria-label") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6C_61_62_65_6C } ; +("solidcolor") => { $ crate :: ATOM_LOCALNAME__73_6F_6C_69_64_63_6F_6C_6F_72 } ; +("onforminput") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_6F_72_6D_69_6E_70_75_74 } ; +("textpath") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_70_61_74_68 } ; +("spellcheck") => { $ crate :: ATOM_LOCALNAME__73_70_65_6C_6C_63_68_65_63_6B } ; +("patternTransform") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_54_72_61_6E_73_66_6F_72_6D } ; +("aria-disabled") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_69_73_61_62_6C_65_64 } ; +("font-face-format") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_66_6F_72_6D_61_74 } ; +("autoplay") => { $ crate :: ATOM_LOCALNAME__61_75_74_6F_70_6C_61_79 } ; +("altGlyph") => { $ crate :: ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68 } ; +("imaginaryi") => { $ crate :: ATOM_LOCALNAME__69_6D_61_67_69_6E_61_72_79_69 } ; +("dataformatas") => { $ crate :: ATOM_LOCALNAME__64_61_74_61_66_6F_72_6D_61_74_61_73 } ; +("femorphology") => { $ crate :: ATOM_LOCALNAME__66_65_6D_6F_72_70_68_6F_6C_6F_67_79 } ; +("x-height") => { $ crate :: ATOM_LOCALNAME__78_2D_68_65_69_67_68_74 } ; +("onbefordeactivate") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_64_65_61_63_74_69_76_61_74_65 } ; +("zoomAndPan") => { $ crate :: ATOM_LOCALNAME__7A_6F_6F_6D_41_6E_64_50_61_6E } ; +("letter-spacing") => { $ crate :: ATOM_LOCALNAME__6C_65_74_74_65_72_2D_73_70_61_63_69_6E_67 } ; +("aria-expanded") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_65_78_70_61_6E_64_65_64 } ; +("aria-braillelabel") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_62_72_61_69_6C_6C_65_6C_61_62_65_6C } ; +("mathcolor") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68_63_6F_6C_6F_72 } ; +("equivalent") => { $ crate :: ATOM_LOCALNAME__65_71_75_69_76_61_6C_65_6E_74 } ; +("fontfamily") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_66_61_6D_69_6C_79 } ; +("scriptlevel") => { $ crate :: ATOM_LOCALNAME__73_63_72_69_70_74_6C_65_76_65_6C } ; +("rowspacing") => { $ crate :: ATOM_LOCALNAME__72_6F_77_73_70_61_63_69_6E_67 } ; +("maskUnits") => { $ crate :: ATOM_LOCALNAME__6D_61_73_6B_55_6E_69_74_73 } ; +("glyphRef") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68_52_65_66 } ; +("glyph-orientation-horizontal") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68_2D_6F_72_69_65_6E_74_61_74_69_6F_6E_2D_68_6F_72_69_7A_6F_6E_74_61_6C } ; +("multicol") => { $ crate :: ATOM_LOCALNAME__6D_75_6C_74_69_63_6F_6C } ; +("maskContentUnits") => { $ crate :: ATOM_LOCALNAME__6D_61_73_6B_43_6F_6E_74_65_6E_74_55_6E_69_74_73 } ; +("thinmathspace") => { $ crate :: ATOM_LOCALNAME__74_68_69_6E_6D_61_74_68_73_70_61_63_65 } ; +("condition") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_64_69_74_69_6F_6E } ; +("formnovalidate") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_6E_6F_76_61_6C_69_64_61_74_65 } ; +("attributeName") => { $ crate :: ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_4E_61_6D_65 } ; +("cellpadding") => { $ crate :: ATOM_LOCALNAME__63_65_6C_6C_70_61_64_64_69_6E_67 } ; +("stroke-miterlimit") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6D_69_74_65_72_6C_69_6D_69_74 } ; +("altglyph") => { $ crate :: ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68 } ; +("selector") => { $ crate :: ATOM_LOCALNAME__73_65_6C_65_63_74_6F_72 } ; +("onbeforeunload") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_75_6E_6C_6F_61_64 } ; +("lowlimit") => { $ crate :: ATOM_LOCALNAME__6C_6F_77_6C_69_6D_69_74 } ; +("optgroup") => { $ crate :: ATOM_LOCALNAME__6F_70_74_67_72_6F_75_70 } ; +("feDistantLight") => { $ crate :: ATOM_LOCALNAME__66_65_44_69_73_74_61_6E_74_4C_69_67_68_74 } ; +("frameset") => { $ crate :: ATOM_LOCALNAME__66_72_61_6D_65_73_65_74 } ; +("underline-thickness") => { $ crate :: ATOM_LOCALNAME__75_6E_64_65_72_6C_69_6E_65_2D_74_68_69_63_6B_6E_65_73_73 } ; +("strikethrough-position") => { $ crate :: ATOM_LOCALNAME__73_74_72_69_6B_65_74_68_72_6F_75_67_68_2D_70_6F_73_69_74_69_6F_6E } ; +("onrowsinserted") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_6F_77_73_69_6E_73_65_72_74_65_64 } ; +("definitionurl") => { $ crate :: ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_75_72_6C } ; +("fontweight") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_77_65_69_67_68_74 } ; +("aria-placeholder") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_70_6C_61_63_65_68_6F_6C_64_65_72 } ; +("marker-start") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_73_74_61_72_74 } ; +("ononline") => { $ crate :: ATOM_LOCALNAME__6F_6E_6F_6E_6C_69_6E_65 } ; +("xml:base") => { $ crate :: ATOM_LOCALNAME__78_6D_6C_3A_62_61_73_65 } ; +("allowfullscreen") => { $ crate :: ATOM_LOCALNAME__61_6C_6C_6F_77_66_75_6C_6C_73_63_72_65_65_6E } ; +("noresize") => { $ crate :: ATOM_LOCALNAME__6E_6F_72_65_73_69_7A_65 } ; +("spreadMethod") => { $ crate :: ATOM_LOCALNAME__73_70_72_65_61_64_4D_65_74_68_6F_64 } ; +("feConvolveMatrix") => { $ crate :: ATOM_LOCALNAME__66_65_43_6F_6E_76_6F_6C_76_65_4D_61_74_72_69_78 } ; +("limitingConeAngle") => { $ crate :: ATOM_LOCALNAME__6C_69_6D_69_74_69_6E_67_43_6F_6E_65_41_6E_67_6C_65 } ; +("attributetype") => { $ crate :: ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_74_79_70_65 } ; +("selection") => { $ crate :: ATOM_LOCALNAME__73_65_6C_65_63_74_69_6F_6E } ; +("repeat-max") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_2D_6D_61_78 } ; +("font-face-name") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_6E_61_6D_65 } ; +("controllerchange") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_72_6F_6C_6C_65_72_63_68_61_6E_67_65 } ; +("aria-selected") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_73_65_6C_65_63_74_65_64 } ; +("formenctype") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_65_6E_63_74_79_70_65 } ; +("datalist") => { $ crate :: ATOM_LOCALNAME__64_61_74_61_6C_69_73_74 } ; +("rowalign") => { $ crate :: ATOM_LOCALNAME__72_6F_77_61_6C_69_67_6E } ; +("scalarproduct") => { $ crate :: ATOM_LOCALNAME__73_63_61_6C_61_72_70_72_6F_64_75_63_74 } ; +("limitingconeangle") => { $ crate :: ATOM_LOCALNAME__6C_69_6D_69_74_69_6E_67_63_6F_6E_65_61_6E_67_6C_65 } ; +("mprescripts") => { $ crate :: ATOM_LOCALNAME__6D_70_72_65_73_63_72_69_70_74_73 } ; +("aria-valuetext") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_74_65_78_74 } ; +("disabled") => { $ crate :: ATOM_LOCALNAME__64_69_73_61_62_6C_65_64 } ; +("stroke-width") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_77_69_64_74_68 } ; +("noscript") => { $ crate :: ATOM_LOCALNAME__6E_6F_73_63_72_69_70_74 } ; +("onresize") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_65_73_69_7A_65 } ; +("filterUnits") => { $ crate :: ATOM_LOCALNAME__66_69_6C_74_65_72_55_6E_69_74_73 } ; +("aria-setsize") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_73_65_74_73_69_7A_65 } ; +("onbeforepaste") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_70_61_73_74_65 } ; +("aria-busy") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_62_75_73_79 } ; +("aria-controls") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6E_74_72_6F_6C_73 } ; +("malignmark") => { $ crate :: ATOM_LOCALNAME__6D_61_6C_69_67_6E_6D_61_72_6B } ; +("aria-keyshortcuts") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6B_65_79_73_68_6F_72_74_63_75_74_73 } ; +("calcmode") => { $ crate :: ATOM_LOCALNAME__63_61_6C_63_6D_6F_64_65 } ; +("marker-mid") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_6D_69_64 } ; +("onformchange") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_6F_72_6D_63_68_61_6E_67_65 } ; +("aria-flowto") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_66_6C_6F_77_74_6F } ; +("animatemotion") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_6D_6F_74_69_6F_6E } ; +("amplitude") => { $ crate :: ATOM_LOCALNAME__61_6D_70_6C_69_74_75_64_65 } ; +("aria-valuemin") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6D_69_6E } ; +("aria-posinset") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_70_6F_73_69_6E_73_65_74 } ; +("lengthadjust") => { $ crate :: ATOM_LOCALNAME__6C_65_6E_67_74_68_61_64_6A_75_73_74 } ; +("diffuseConstant") => { $ crate :: ATOM_LOCALNAME__64_69_66_66_75_73_65_43_6F_6E_73_74_61_6E_74 } ; +("baseProfile") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_50_72_6F_66_69_6C_65 } ; +("color-rendering") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_6F_72_2D_72_65_6E_64_65_72_69_6E_67 } ; +("altGlyphDef") => { $ crate :: ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68_44_65_66 } ; +("primitiveunits") => { $ crate :: ATOM_LOCALNAME__70_72_69_6D_69_74_69_76_65_75_6E_69_74_73 } ; +("preservealpha") => { $ crate :: ATOM_LOCALNAME__70_72_65_73_65_72_76_65_61_6C_70_68_61 } ; +("aria-rowindex") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_69_6E_64_65_78 } ; +("ondeactivate") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_65_61_63_74_69_76_61_74_65 } ; +("font-face-uri") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65_2D_75_72_69 } ; +("feSpecularLighting") => { $ crate :: ATOM_LOCALNAME__66_65_53_70_65_63_75_6C_61_72_4C_69_67_68_74_69_6E_67 } ; +("v-ideographic") => { $ crate :: ATOM_LOCALNAME__76_2D_69_64_65_6F_67_72_61_70_68_69_63 } ; +("stdDeviation") => { $ crate :: ATOM_LOCALNAME__73_74_64_44_65_76_69_61_74_69_6F_6E } ; +("onsubmit") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_75_62_6D_69_74 } ; +("scriptsizemultiplier") => { $ crate :: ATOM_LOCALNAME__73_63_72_69_70_74_73_69_7A_65_6D_75_6C_74_69_70_6C_69_65_72 } ; +("onrowexit") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_6F_77_65_78_69_74 } ; +("font-face") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_63_65 } ; +("gradienttransform") => { $ crate :: ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_74_72_61_6E_73_66_6F_72_6D } ; +("veryverythinmathspace") => { $ crate :: ATOM_LOCALNAME__76_65_72_79_76_65_72_79_74_68_69_6E_6D_61_74_68_73_70_61_63_65 } ; +("onselect") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_65_6C_65_63_74 } ; +("clip-rule") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_2D_72_75_6C_65 } ; +("codebase") => { $ crate :: ATOM_LOCALNAME__63_6F_64_65_62_61_73_65 } ; +("underline-position") => { $ crate :: ATOM_LOCALNAME__75_6E_64_65_72_6C_69_6E_65_2D_70_6F_73_69_74_69_6F_6E } ; +("v-mathematical") => { $ crate :: ATOM_LOCALNAME__76_2D_6D_61_74_68_65_6D_61_74_69_63_61_6C } ; +("separator") => { $ crate :: ATOM_LOCALNAME__73_65_70_61_72_61_74_6F_72 } ; +("matrixrow") => { $ crate :: ATOM_LOCALNAME__6D_61_74_72_69_78_72_6F_77 } ; +("selected") => { $ crate :: ATOM_LOCALNAME__73_65_6C_65_63_74_65_64 } ; +("xlink:href") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_68_72_65_66 } ; +("horiz-adv-x") => { $ crate :: ATOM_LOCALNAME__68_6F_72_69_7A_2D_61_64_76_2D_78 } ; +("controls") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_72_6F_6C_73 } ; +("aria-current") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_75_72_72_65_6E_74 } ; +("onscroll") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_63_72_6F_6C_6C } ; +("pointsAtZ") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_5A } ; +("overflow") => { $ crate :: ATOM_LOCALNAME__6F_76_65_72_66_6C_6F_77 } ; +("") => { $ crate :: ATOM_LOCALNAME_ } ; +("onpagehide") => { $ crate :: ATOM_LOCALNAME__6F_6E_70_61_67_65_68_69_64_65 } ; +("visibility") => { $ crate :: ATOM_LOCALNAME__76_69_73_69_62_69_6C_69_74_79 } ; +("feComponentTransfer") => { $ crate :: ATOM_LOCALNAME__66_65_43_6F_6D_70_6F_6E_65_6E_74_54_72_61_6E_73_66_65_72 } ; +("overline-position") => { $ crate :: ATOM_LOCALNAME__6F_76_65_72_6C_69_6E_65_2D_70_6F_73_69_74_69_6F_6E } ; +("rendering-intent") => { $ crate :: ATOM_LOCALNAME__72_65_6E_64_65_72_69_6E_67_2D_69_6E_74_65_6E_74 } ; +("infinity") => { $ crate :: ATOM_LOCALNAME__69_6E_66_69_6E_69_74_79 } ; +("feconvolvematrix") => { $ crate :: ATOM_LOCALNAME__66_65_63_6F_6E_76_6F_6C_76_65_6D_61_74_72_69_78 } ; +("repeatCount") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_43_6F_75_6E_74 } ; +("onselectstart") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_65_6C_65_63_74_73_74_61_72_74 } ; +("pointsaty") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_79 } ; +("direction") => { $ crate :: ATOM_LOCALNAME__64_69_72_65_63_74_69_6F_6E } ; +("fecolormatrix") => { $ crate :: ATOM_LOCALNAME__66_65_63_6F_6C_6F_72_6D_61_74_72_69_78 } ; +("tabindex") => { $ crate :: ATOM_LOCALNAME__74_61_62_69_6E_64_65_78 } ; +("placeholder") => { $ crate :: ATOM_LOCALNAME__70_6C_61_63_65_68_6F_6C_64_65_72 } ; +("transpose") => { $ crate :: ATOM_LOCALNAME__74_72_61_6E_73_70_6F_73_65 } ; +("gradientunits") => { $ crate :: ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_75_6E_69_74_73 } ; +("feDropShadow") => { $ crate :: ATOM_LOCALNAME__66_65_44_72_6F_70_53_68_61_64_6F_77 } ; +("xlink:role") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_72_6F_6C_65 } ; +("edgeMode") => { $ crate :: ATOM_LOCALNAME__65_64_67_65_4D_6F_64_65 } ; +("gradientTransform") => { $ crate :: ATOM_LOCALNAME__67_72_61_64_69_65_6E_74_54_72_61_6E_73_66_6F_72_6D } ; +("integers") => { $ crate :: ATOM_LOCALNAME__69_6E_74_65_67_65_72_73 } ; +("stddeviation") => { $ crate :: ATOM_LOCALNAME__73_74_64_64_65_76_69_61_74_69_6F_6E } ; +("repeat-start") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_2D_73_74_61_72_74 } ; +("cap-height") => { $ crate :: ATOM_LOCALNAME__63_61_70_2D_68_65_69_67_68_74 } ; +("xlink:type") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_74_79_70_65 } ; +("unselectable") => { $ crate :: ATOM_LOCALNAME__75_6E_73_65_6C_65_63_74_61_62_6C_65 } ; +("contentstyletype") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_73_74_79_6C_65_74_79_70_65 } ; +("transform") => { $ crate :: ATOM_LOCALNAME__74_72_61_6E_73_66_6F_72_6D } ; +("stroke-linejoin") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6C_69_6E_65_6A_6F_69_6E } ; +("integrity") => { $ crate :: ATOM_LOCALNAME__69_6E_74_65_67_72_69_74_79 } ; +("ondatasetchanged") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_61_74_61_73_65_74_63_68_61_6E_67_65_64 } ; +("foreignobject") => { $ crate :: ATOM_LOCALNAME__66_6F_72_65_69_67_6E_6F_62_6A_65_63_74 } ; +("radiogroup") => { $ crate :: ATOM_LOCALNAME__72_61_64_69_6F_67_72_6F_75_70 } ; +("contenteditable") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_65_64_69_74_61_62_6C_65 } ; +("template") => { $ crate :: ATOM_LOCALNAME__74_65_6D_70_6C_61_74_65 } ; +("statechange") => { $ crate :: ATOM_LOCALNAME__73_74_61_74_65_63_68_61_6E_67_65 } ; +("pathlength") => { $ crate :: ATOM_LOCALNAME__70_61_74_68_6C_65_6E_67_74_68 } ; +("divergence") => { $ crate :: ATOM_LOCALNAME__64_69_76_65_72_67_65_6E_63_65 } ; +("aria-hidden") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_68_69_64_64_65_6E } ; +("ondragleave") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_6C_65_61_76_65 } ; +("maligngroup") => { $ crate :: ATOM_LOCALNAME__6D_61_6C_69_67_6E_67_72_6F_75_70 } ; +("outerproduct") => { $ crate :: ATOM_LOCALNAME__6F_75_74_65_72_70_72_6F_64_75_63_74 } ; +("aria-channel") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_68_61_6E_6E_65_6C } ; +("systemlanguage") => { $ crate :: ATOM_LOCALNAME__73_79_73_74_65_6D_6C_61_6E_67_75_61_67_65 } ; +("fetchpriority") => { $ crate :: ATOM_LOCALNAME__66_65_74_63_68_70_72_69_6F_72_69_74_79 } ; +("polyline") => { $ crate :: ATOM_LOCALNAME__70_6F_6C_79_6C_69_6E_65 } ; +("lighting-color") => { $ crate :: ATOM_LOCALNAME__6C_69_67_68_74_69_6E_67_2D_63_6F_6C_6F_72 } ; +("property") => { $ crate :: ATOM_LOCALNAME__70_72_6F_70_65_72_74_79 } ; +("animateColor") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_43_6F_6C_6F_72 } ; +("ondragdrop") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_64_72_6F_70 } ; +("repeat-min") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_2D_6D_69_6E } ; +("specification") => { $ crate :: ATOM_LOCALNAME__73_70_65_63_69_66_69_63_61_74_69_6F_6E } ; +("surfacescale") => { $ crate :: ATOM_LOCALNAME__73_75_72_66_61_63_65_73_63_61_6C_65 } ; +("clippath") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_70_61_74_68 } ; +("patternUnits") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_55_6E_69_74_73 } ; +("flood-opacity") => { $ crate :: ATOM_LOCALNAME__66_6C_6F_6F_64_2D_6F_70_61_63_69_74_79 } ; +("referrerpolicy") => { $ crate :: ATOM_LOCALNAME__72_65_66_65_72_72_65_72_70_6F_6C_69_63_79 } ; +("factorial") => { $ crate :: ATOM_LOCALNAME__66_61_63_74_6F_72_69_61_6C } ; +("hidefocus") => { $ crate :: ATOM_LOCALNAME__68_69_64_65_66_6F_63_75_73 } ; +("stitchTiles") => { $ crate :: ATOM_LOCALNAME__73_74_69_74_63_68_54_69_6C_65_73 } ; +("arabic-form") => { $ crate :: ATOM_LOCALNAME__61_72_61_62_69_63_2D_66_6F_72_6D } ; +("blockquote") => { $ crate :: ATOM_LOCALNAME__62_6C_6F_63_6B_71_75_6F_74_65 } ; +("mlabeledtr") => { $ crate :: ATOM_LOCALNAME__6D_6C_61_62_65_6C_65_64_74_72 } ; +("novalidate") => { $ crate :: ATOM_LOCALNAME__6E_6F_76_61_6C_69_64_61_74_65 } ; +("onpopstate") => { $ crate :: ATOM_LOCALNAME__6F_6E_70_6F_70_73_74_61_74_65 } ; +("onerrorupdate") => { $ crate :: ATOM_LOCALNAME__6F_6E_65_72_72_6F_72_75_70_64_61_74_65 } ; +("feSpotLight") => { $ crate :: ATOM_LOCALNAME__66_65_53_70_6F_74_4C_69_67_68_74 } ; +("stop-opacity") => { $ crate :: ATOM_LOCALNAME__73_74_6F_70_2D_6F_70_61_63_69_74_79 } ; +("readonly") => { $ crate :: ATOM_LOCALNAME__72_65_61_64_6F_6E_6C_79 } ; +("markerUnits") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_55_6E_69_74_73 } ; +("naturalnumbers") => { $ crate :: ATOM_LOCALNAME__6E_61_74_75_72_61_6C_6E_75_6D_62_65_72_73 } ; +("markerunits") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_75_6E_69_74_73 } ; +("font-family") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_66_61_6D_69_6C_79 } ; +("patternunits") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_75_6E_69_74_73 } ; +("orientation") => { $ crate :: ATOM_LOCALNAME__6F_72_69_65_6E_74_61_74_69_6F_6E } ; +("markerheight") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_68_65_69_67_68_74 } ; +("aria-colindextext") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_69_6E_64_65_78_74_65_78_74 } ; +("attributeType") => { $ crate :: ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_54_79_70_65 } ; +("accesskey") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_73_73_6B_65_79 } ; +("clipPathUnits") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_50_61_74_68_55_6E_69_74_73 } ; +("keySplines") => { $ crate :: ATOM_LOCALNAME__6B_65_79_53_70_6C_69_6E_65_73 } ; +("onstorage") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_74_6F_72_61_67_65 } ; +("font-style") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_73_74_79_6C_65 } ; +("fedisplacementmap") => { $ crate :: ATOM_LOCALNAME__66_65_64_69_73_70_6C_61_63_65_6D_65_6E_74_6D_61_70 } ; +("separators") => { $ crate :: ATOM_LOCALNAME__73_65_70_61_72_61_74_6F_72_73 } ; +("verythinmathspace") => { $ crate :: ATOM_LOCALNAME__76_65_72_79_74_68_69_6E_6D_61_74_68_73_70_61_63_65 } ; +("primitiveUnits") => { $ crate :: ATOM_LOCALNAME__70_72_69_6D_69_74_69_76_65_55_6E_69_74_73 } ; +("surfaceScale") => { $ crate :: ATOM_LOCALNAME__73_75_72_66_61_63_65_53_63_61_6C_65 } ; +("formaction") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_61_63_74_69_6F_6E } ; +("verythickmathspace") => { $ crate :: ATOM_LOCALNAME__76_65_72_79_74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 } ; +("calcMode") => { $ crate :: ATOM_LOCALNAME__63_61_6C_63_4D_6F_64_65 } ; +("xml:lang") => { $ crate :: ATOM_LOCALNAME__78_6D_6C_3A_6C_61_6E_67 } ; +("fedistantlight") => { $ crate :: ATOM_LOCALNAME__66_65_64_69_73_74_61_6E_74_6C_69_67_68_74 } ; +("fontstyle") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_73_74_79_6C_65 } ; +("overline-thickness") => { $ crate :: ATOM_LOCALNAME__6F_76_65_72_6C_69_6E_65_2D_74_68_69_63_6B_6E_65_73_73 } ; +("onbounce") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_6F_75_6E_63_65 } ; +("bevelled") => { $ crate :: ATOM_LOCALNAME__62_65_76_65_6C_6C_65_64 } ; +("onmouseout") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_6F_75_74 } ; +("exponent") => { $ crate :: ATOM_LOCALNAME__65_78_70_6F_6E_65_6E_74 } ; +("prefetch") => { $ crate :: ATOM_LOCALNAME__70_72_65_66_65_74_63_68 } ; +("tablevalues") => { $ crate :: ATOM_LOCALNAME__74_61_62_6C_65_76_61_6C_75_65_73 } ; +("itemscope") => { $ crate :: ATOM_LOCALNAME__69_74_65_6D_73_63_6F_70_65 } ; +("manifest") => { $ crate :: ATOM_LOCALNAME__6D_61_6E_69_66_65_73_74 } ; +("nomodule") => { $ crate :: ATOM_LOCALNAME__6E_6F_6D_6F_64_75_6C_65 } ; +("mathvariant") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68_76_61_72_69_61_6E_74 } ; +("v-alphabetic") => { $ crate :: ATOM_LOCALNAME__76_2D_61_6C_70_68_61_62_65_74_69_63 } ; +("scrolling") => { $ crate :: ATOM_LOCALNAME__73_63_72_6F_6C_6C_69_6E_67 } ; +("keysplines") => { $ crate :: ATOM_LOCALNAME__6B_65_79_73_70_6C_69_6E_65_73 } ; +("variance") => { $ crate :: ATOM_LOCALNAME__76_61_72_69_61_6E_63_65 } ; +("feMorphology") => { $ crate :: ATOM_LOCALNAME__66_65_4D_6F_72_70_68_6F_6C_6F_67_79 } ; +("preserveAlpha") => { $ crate :: ATOM_LOCALNAME__70_72_65_73_65_72_76_65_41_6C_70_68_61 } ; +("viewTarget") => { $ crate :: ATOM_LOCALNAME__76_69_65_77_54_61_72_67_65_74 } ; +("aria-orientation") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6F_72_69_65_6E_74_61_74_69_6F_6E } ; +("aria-rowcount") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_63_6F_75_6E_74 } ; +("onlanguagechange") => { $ crate :: ATOM_LOCALNAME__6F_6E_6C_61_6E_67_75_61_67_65_63_68_61_6E_67_65 } ; +("oncontrolselect") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_6F_6E_74_72_6F_6C_73_65_6C_65_63_74 } ; +("onmouseup") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_75_70 } ; +("inputmode") => { $ crate :: ATOM_LOCALNAME__69_6E_70_75_74_6D_6F_64_65 } ; +("notsubset") => { $ crate :: ATOM_LOCALNAME__6E_6F_74_73_75_62_73_65_74 } ; +("definition-src") => { $ crate :: ATOM_LOCALNAME__64_65_66_69_6E_69_74_69_6F_6E_2D_73_72_63 } ; +("aria-readonly") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_65_61_64_6F_6E_6C_79 } ; +("specularexponent") => { $ crate :: ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_65_78_70_6F_6E_65_6E_74 } ; +("multiple") => { $ crate :: ATOM_LOCALNAME__6D_75_6C_74_69_70_6C_65 } ; +("onunload") => { $ crate :: ATOM_LOCALNAME__6F_6E_75_6E_6C_6F_61_64 } ; +("aria-colindex") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_69_6E_64_65_78 } ; +("reversed") => { $ crate :: ATOM_LOCALNAME__72_65_76_65_72_73_65_64 } ; +("onoffline") => { $ crate :: ATOM_LOCALNAME__6F_6E_6F_66_66_6C_69_6E_65 } ; +("aria-rowindextext") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_69_6E_64_65_78_74_65_78_74 } ; +("externalresourcesrequired") => { $ crate :: ATOM_LOCALNAME__65_78_74_65_72_6E_61_6C_72_65_73_6F_75_72_63_65_73_72_65_71_75_69_72_65_64 } ; +("datatemplate") => { $ crate :: ATOM_LOCALNAME__64_61_74_61_74_65_6D_70_6C_61_74_65 } ; +("fontsize") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_73_69_7A_65 } ; +("image-rendering") => { $ crate :: ATOM_LOCALNAME__69_6D_61_67_65_2D_72_65_6E_64_65_72_69_6E_67 } ; +("basefont") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_66_6F_6E_74 } ; +("fill-opacity") => { $ crate :: ATOM_LOCALNAME__66_69_6C_6C_2D_6F_70_61_63_69_74_79 } ; +("radialgradient") => { $ crate :: ATOM_LOCALNAME__72_61_64_69_61_6C_67_72_61_64_69_65_6E_74 } ; +("frameborder") => { $ crate :: ATOM_LOCALNAME__66_72_61_6D_65_62_6F_72_64_65_72 } ; +("stroke-dasharray") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_64_61_73_68_61_72_72_61_79 } ; +("encoding") => { $ crate :: ATOM_LOCALNAME__65_6E_63_6F_64_69_6E_67 } ; +("animatetransform") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_74_72_61_6E_73_66_6F_72_6D } ; +("movablelimits") => { $ crate :: ATOM_LOCALNAME__6D_6F_76_61_62_6C_65_6C_69_6D_69_74_73 } ; +("filterres") => { $ crate :: ATOM_LOCALNAME__66_69_6C_74_65_72_72_65_73 } ; +("font-stretch") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_73_74_72_65_74_63_68 } ; +("clipPath") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_50_61_74_68 } ; +("xlink:show") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_73_68_6F_77 } ; +("notanumber") => { $ crate :: ATOM_LOCALNAME__6E_6F_74_61_6E_75_6D_62_65_72 } ; +("onmouseenter") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_65_6E_74_65_72 } ; +("aria-dropeffect") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_72_6F_70_65_66_66_65_63_74 } ; +("progress") => { $ crate :: ATOM_LOCALNAME__70_72_6F_67_72_65_73_73 } ; +("ondataavailable") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_61_74_61_61_76_61_69_6C_61_62_6C_65 } ; +("valuetype") => { $ crate :: ATOM_LOCALNAME__76_61_6C_75_65_74_79_70_65 } ; +("noframes") => { $ crate :: ATOM_LOCALNAME__6E_6F_66_72_61_6D_65_73 } ; +("specularExponent") => { $ crate :: ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_45_78_70_6F_6E_65_6E_74 } ; +("text-rendering") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_2D_72_65_6E_64_65_72_69_6E_67 } ; +("otherwise") => { $ crate :: ATOM_LOCALNAME__6F_74_68_65_72_77_69_73_65 } ; +("baseline") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_6C_69_6E_65 } ; +("framespacing") => { $ crate :: ATOM_LOCALNAME__66_72_61_6D_65_73_70_61_63_69_6E_67 } ; +("xlink:title") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_74_69_74_6C_65 } ; +("feOffset") => { $ crate :: ATOM_LOCALNAME__66_65_4F_66_66_73_65_74 } ; +("aria-secret") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_73_65_63_72_65_74 } ; +("aria-valuenow") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_76_61_6C_75_65_6E_6F_77 } ; +("emptyset") => { $ crate :: ATOM_LOCALNAME__65_6D_70_74_79_73_65_74 } ; +("determinant") => { $ crate :: ATOM_LOCALNAME__64_65_74_65_72_6D_69_6E_61_6E_74 } ; +("textlength") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_6C_65_6E_67_74_68 } ; +("font-variant") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_76_61_72_69_61_6E_74 } ; +("horiz-origin-x") => { $ crate :: ATOM_LOCALNAME__68_6F_72_69_7A_2D_6F_72_69_67_69_6E_2D_78 } ; +("aria-brailleroledescription") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_62_72_61_69_6C_6C_65_72_6F_6C_65_64_65_73_63_72_69_70_74_69_6F_6E } ; +("onfocusout") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_6F_63_75_73_6F_75_74 } ; +("menuitem") => { $ crate :: ATOM_LOCALNAME__6D_65_6E_75_69_74_65_6D } ; +("ondragend") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_65_6E_64 } ; +("baseline-shift") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_6C_69_6E_65_2D_73_68_69_66_74 } ; +("feComposite") => { $ crate :: ATOM_LOCALNAME__66_65_43_6F_6D_70_6F_73_69_74_65 } ; +("pathLength") => { $ crate :: ATOM_LOCALNAME__70_61_74_68_4C_65_6E_67_74_68 } ; +("startOffset") => { $ crate :: ATOM_LOCALNAME__73_74_61_72_74_4F_66_66_73_65_74 } ; +("glyph-orientation-vertical") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68_2D_6F_72_69_65_6E_74_61_74_69_6F_6E_2D_76_65_72_74_69_63_61_6C } ; +("textPath") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_50_61_74_68 } ; +("onreadystatechange") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_65_61_64_79_73_74_61_74_65_63_68_61_6E_67_65 } ; +("stroke-opacity") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6F_70_61_63_69_74_79 } ; +("accumulate") => { $ crate :: ATOM_LOCALNAME__61_63_63_75_6D_75_6C_61_74_65 } ; +("onbeforeupdate") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_75_70_64_61_74_65 } ; +("shape-rendering") => { $ crate :: ATOM_LOCALNAME__73_68_61_70_65_2D_72_65_6E_64_65_72_69_6E_67 } ; +("figcaption") => { $ crate :: ATOM_LOCALNAME__66_69_67_63_61_70_74_69_6F_6E } ; +("thickmathspace") => { $ crate :: ATOM_LOCALNAME__74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 } ; +("minlength") => { $ crate :: ATOM_LOCALNAME__6D_69_6E_6C_65_6E_67_74_68 } ; +("requiredextensions") => { $ crate :: ATOM_LOCALNAME__72_65_71_75_69_72_65_64_65_78_74_65_6E_73_69_6F_6E_73 } ; +("repeat-template") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_2D_74_65_6D_70_6C_61_74_65 } ; +("vert-origin-x") => { $ crate :: ATOM_LOCALNAME__76_65_72_74_2D_6F_72_69_67_69_6E_2D_78 } ; +("lineargradient") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65_61_72_67_72_61_64_69_65_6E_74 } ; +("download") => { $ crate :: ATOM_LOCALNAME__64_6F_77_6E_6C_6F_61_64 } ; +("onmovestart") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_76_65_73_74_61_72_74 } ; +("patterntransform") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_74_72_61_6E_73_66_6F_72_6D } ; +("superscriptshift") => { $ crate :: ATOM_LOCALNAME__73_75_70_65_72_73_63_72_69_70_74_73_68_69_66_74 } ; +("externalResourcesRequired") => { $ crate :: ATOM_LOCALNAME__65_78_74_65_72_6E_61_6C_52_65_73_6F_75_72_63_65_73_52_65_71_75_69_72_65_64 } ; +("animatecolor") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_63_6F_6C_6F_72 } ; +("panose-1") => { $ crate :: ATOM_LOCALNAME__70_61_6E_6F_73_65_2D_31 } ; +("filterRes") => { $ crate :: ATOM_LOCALNAME__66_69_6C_74_65_72_52_65_73 } ; +("aria-colcount") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_63_6F_6C_63_6F_75_6E_74 } ; +("missing-glyph") => { $ crate :: ATOM_LOCALNAME__6D_69_73_73_69_6E_67_2D_67_6C_79_70_68 } ; +("cartesianproduct") => { $ crate :: ATOM_LOCALNAME__63_61_72_74_65_73_69_61_6E_70_72_6F_64_75_63_74 } ; +("femergenode") => { $ crate :: ATOM_LOCALNAME__66_65_6D_65_72_67_65_6E_6F_64_65 } ; +("ondragover") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_6F_76_65_72 } ; +("fespecularlighting") => { $ crate :: ATOM_LOCALNAME__66_65_73_70_65_63_75_6C_61_72_6C_69_67_68_74_69_6E_67 } ; +("mphantom") => { $ crate :: ATOM_LOCALNAME__6D_70_68_61_6E_74_6F_6D } ; +("aria-activedescendant") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_61_63_74_69_76_65_64_65_73_63_65_6E_64_61_6E_74 } ; +("exponentiale") => { $ crate :: ATOM_LOCALNAME__65_78_70_6F_6E_65_6E_74_69_61_6C_65 } ; +("aria-invalid") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_69_6E_76_61_6C_69_64 } ; +("requiredfeatures") => { $ crate :: ATOM_LOCALNAME__72_65_71_75_69_72_65_64_66_65_61_74_75_72_65_73 } ; +("additive") => { $ crate :: ATOM_LOCALNAME__61_64_64_69_74_69_76_65 } ; +("onbeforeactivate") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_61_63_74_69_76_61_74_65 } ; +("altglyphitem") => { $ crate :: ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68_69_74_65_6D } ; +("repeatcount") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_63_6F_75_6E_74 } ; +("rationals") => { $ crate :: ATOM_LOCALNAME__72_61_74_69_6F_6E_61_6C_73 } ; +("stroke-linecap") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_6C_69_6E_65_63_61_70 } ; +("annotation") => { $ crate :: ATOM_LOCALNAME__61_6E_6E_6F_74_61_74_69_6F_6E } ; +("units-per-em") => { $ crate :: ATOM_LOCALNAME__75_6E_69_74_73_2D_70_65_72_2D_65_6D } ; +("tableValues") => { $ crate :: ATOM_LOCALNAME__74_61_62_6C_65_56_61_6C_75_65_73 } ; +("mmultiscripts") => { $ crate :: ATOM_LOCALNAME__6D_6D_75_6C_74_69_73_63_72_69_70_74_73 } ; +("aria-owns") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6F_77_6E_73 } ; +("ideographic") => { $ crate :: ATOM_LOCALNAME__69_64_65_6F_67_72_61_70_68_69_63 } ; +("text-anchor") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_2D_61_6E_63_68_6F_72 } ; +("aria-sort") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_73_6F_72_74 } ; +("aria-datatype") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_61_74_61_74_79_70_65 } ; +("irrelevant") => { $ crate :: ATOM_LOCALNAME__69_72_72_65_6C_65_76_61_6E_74 } ; +("preserveAspectRatio") => { $ crate :: ATOM_LOCALNAME__70_72_65_73_65_72_76_65_41_73_70_65_63_74_52_61_74_69_6F } ; +("markerWidth") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_57_69_64_74_68 } ; +("columnalign") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_75_6D_6E_61_6C_69_67_6E } ; +("notprsubset") => { $ crate :: ATOM_LOCALNAME__6E_6F_74_70_72_73_75_62_73_65_74 } ; +("language") => { $ crate :: ATOM_LOCALNAME__6C_61_6E_67_75_61_67_65 } ; +("onbeforecopy") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_66_6F_72_65_63_6F_70_79 } ; +("onfilterchange") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_69_6C_74_65_72_63_68_61_6E_67_65 } ; +("altglyphdef") => { $ crate :: ATOM_LOCALNAME__61_6C_74_67_6C_79_70_68_64_65_66 } ; +("fePointLight") => { $ crate :: ATOM_LOCALNAME__66_65_50_6F_69_6E_74_4C_69_67_68_74 } ; +("pointer-events") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_65_72_2D_65_76_65_6E_74_73 } ; +("feDisplacementMap") => { $ crate :: ATOM_LOCALNAME__66_65_44_69_73_70_6C_61_63_65_6D_65_6E_74_4D_61_70 } ; +("ondatasetcomplete") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_61_74_61_73_65_74_63_6F_6D_70_6C_65_74_65 } ; +("aria-rowspan") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_6F_77_73_70_61_6E } ; +("columnspan") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_75_6D_6E_73_70_61_6E } ; +("stroke-dashoffset") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65_2D_64_61_73_68_6F_66_66_73_65_74 } ; +("aria-required") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_65_71_75_69_72_65_64 } ; +("occurrence") => { $ crate :: ATOM_LOCALNAME__6F_63_63_75_72_72_65_6E_63_65 } ; +("munderover") => { $ crate :: ATOM_LOCALNAME__6D_75_6E_64_65_72_6F_76_65_72 } ; +("linethickness") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65_74_68_69_63_6B_6E_65_73_73 } ; +("feMergeNode") => { $ crate :: ATOM_LOCALNAME__66_65_4D_65_72_67_65_4E_6F_64_65 } ; +("menclose") => { $ crate :: ATOM_LOCALNAME__6D_65_6E_63_6C_6F_73_65 } ; +("alignmentscope") => { $ crate :: ATOM_LOCALNAME__61_6C_69_67_6E_6D_65_6E_74_73_63_6F_70_65 } ; +("markerwidth") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_77_69_64_74_68 } ; +("accentunder") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_6E_74_75_6E_64_65_72 } ; +("feoffset") => { $ crate :: ATOM_LOCALNAME__66_65_6F_66_66_73_65_74 } ; +("columnwidth") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_75_6D_6E_77_69_64_74_68 } ; +("textarea") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_61_72_65_61 } ; +("fecomposite") => { $ crate :: ATOM_LOCALNAME__66_65_63_6F_6D_70_6F_73_69_74_65 } ; +("itemprop") => { $ crate :: ATOM_LOCALNAME__69_74_65_6D_70_72_6F_70 } ; +("intersect") => { $ crate :: ATOM_LOCALNAME__69_6E_74_65_72_73_65_63_74 } ; +("semantics") => { $ crate :: ATOM_LOCALNAME__73_65_6D_61_6E_74_69_63_73 } ; +("font-size-adjust") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_73_69_7A_65_2D_61_64_6A_75_73_74 } ; +("word-spacing") => { $ crate :: ATOM_LOCALNAME__77_6F_72_64_2D_73_70_61_63_69_6E_67 } ; +("oncellchange") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_65_6C_6C_63_68_61_6E_67_65 } ; +("crossorigin") => { $ crate :: ATOM_LOCALNAME__63_72_6F_73_73_6F_72_69_67_69_6E } ; +("ondragstart") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_73_74_61_72_74 } ; +("flood-color") => { $ crate :: ATOM_LOCALNAME__66_6C_6F_6F_64_2D_63_6F_6C_6F_72 } ; +("glyph-name") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68_2D_6E_61_6D_65 } ; +("pointsatx") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_61_74_78 } ; +("textLength") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_4C_65_6E_67_74_68 } ; +("eulergamma") => { $ crate :: ATOM_LOCALNAME__65_75_6C_65_72_67_61_6D_6D_61 } ; +("aria-details") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_64_65_74_61_69_6C_73 } ; +("translate") => { $ crate :: ATOM_LOCALNAME__74_72_61_6E_73_6C_61_74_65 } ; +("filterunits") => { $ crate :: ATOM_LOCALNAME__66_69_6C_74_65_72_75_6E_69_74_73 } ; +("contentscripttype") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_73_63_72_69_70_74_74_79_70_65 } ; +("mathematical") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68_65_6D_61_74_69_63_61_6C } ; +("onrowenter") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_6F_77_65_6E_74_65_72 } ; +("aria-grab") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_67_72_61_62 } ; +("onfocusin") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_6F_63_75_73_69_6E } ; +("onpropertychange") => { $ crate :: ATOM_LOCALNAME__6F_6E_70_72_6F_70_65_72_74_79_63_68_61_6E_67_65 } ; +("zoomandpan") => { $ crate :: ATOM_LOCALNAME__7A_6F_6F_6D_61_6E_64_70_61_6E } ; +("xlink:actuate") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B_3A_61_63_74_75_61_74_65 } ; +("unicode-bidi") => { $ crate :: ATOM_LOCALNAME__75_6E_69_63_6F_64_65_2D_62_69_64_69 } ; +("onmessage") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_65_73_73_61_67_65 } ; +("fespotlight") => { $ crate :: ATOM_LOCALNAME__66_65_73_70_6F_74_6C_69_67_68_74 } ; +("clip-path") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70_2D_70_61_74_68 } ; +("onmousewheel") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_75_73_65_77_68_65_65_6C } ; +("marginwidth") => { $ crate :: ATOM_LOCALNAME__6D_61_72_67_69_6E_77_69_64_74_68 } ; +("aria-errormessage") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_65_72_72_6F_72_6D_65_73_73_61_67_65 } ; +("baseFrequency") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_46_72_65_71_75_65_6E_63_79 } ; +("scriptminsize") => { $ crate :: ATOM_LOCALNAME__73_63_72_69_70_74_6D_69_6E_73_69_7A_65 } ; +("systemLanguage") => { $ crate :: ATOM_LOCALNAME__73_79_73_74_65_6D_4C_61_6E_67_75_61_67_65 } ; +("codetype") => { $ crate :: ATOM_LOCALNAME__63_6F_64_65_74_79_70_65 } ; +("text-decoration") => { $ crate :: ATOM_LOCALNAME__74_65_78_74_2D_64_65_63_6F_72_61_74_69_6F_6E } ; +("ondragenter") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67_65_6E_74_65_72 } ; +("specularConstant") => { $ crate :: ATOM_LOCALNAME__73_70_65_63_75_6C_61_72_43_6F_6E_73_74_61_6E_74 } ; +("feTurbulence") => { $ crate :: ATOM_LOCALNAME__66_65_54_75_72_62_75_6C_65_6E_63_65 } ; +("font-size") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74_2D_73_69_7A_65 } ; +("accept-charset") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_70_74_2D_63_68_61_72_73_65_74 } ; +("draggable") => { $ crate :: ATOM_LOCALNAME__64_72_61_67_67_61_62_6C_65 } ; +("maskcontentunits") => { $ crate :: ATOM_LOCALNAME__6D_61_73_6B_63_6F_6E_74_65_6E_74_75_6E_69_74_73 } ; +("onlosecapture") => { $ crate :: ATOM_LOCALNAME__6F_6E_6C_6F_73_65_63_61_70_74_75_72_65 } ; +("contentScriptType") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74_53_63_72_69_70_74_54_79_70_65 } ; +("rowlines") => { $ crate :: ATOM_LOCALNAME__72_6F_77_6C_69_6E_65_73 } ; +("radialGradient") => { $ crate :: ATOM_LOCALNAME__72_61_64_69_61_6C_47_72_61_64_69_65_6E_74 } ; +("yChannelSelector") => { $ crate :: ATOM_LOCALNAME__79_43_68_61_6E_6E_65_6C_53_65_6C_65_63_74_6F_72 } ; +("xml:space") => { $ crate :: ATOM_LOCALNAME__78_6D_6C_3A_73_70_61_63_65 } ; +("aria-live") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6C_69_76_65 } ; +("groupalign") => { $ crate :: ATOM_LOCALNAME__67_72_6F_75_70_61_6C_69_67_6E } ; +("onrepeat") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_65_70_65_61_74 } ; +("onpageshow") => { $ crate :: ATOM_LOCALNAME__6F_6E_70_61_67_65_73_68_6F_77 } ; +("vectorproduct") => { $ crate :: ATOM_LOCALNAME__76_65_63_74_6F_72_70_72_6F_64_75_63_74 } ; +("aria-roledescription") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_72_6F_6C_65_64_65_73_63_72_69_70_74_69_6F_6E } ; +("equalcolumns") => { $ crate :: ATOM_LOCALNAME__65_71_75_61_6C_63_6F_6C_75_6D_6E_73 } ; +("factorof") => { $ crate :: ATOM_LOCALNAME__66_61_63_74_6F_72_6F_66 } ; +("onmoveend") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_76_65_65_6E_64 } ; +("onkeypress") => { $ crate :: ATOM_LOCALNAME__6F_6E_6B_65_79_70_72_65_73_73 } ; +("operator") => { $ crate :: ATOM_LOCALNAME__6F_70_65_72_61_74_6F_72 } ; +("kernelUnitLength") => { $ crate :: ATOM_LOCALNAME__6B_65_72_6E_65_6C_55_6E_69_74_4C_65_6E_67_74_68 } ; +("oncontextmenu") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_6F_6E_74_65_78_74_6D_65_6E_75 } ; +("onactivate") => { $ crate :: ATOM_LOCALNAME__6F_6E_61_63_74_69_76_61_74_65 } ; +("aria-level") => { $ crate :: ATOM_LOCALNAME__61_72_69_61_2D_6C_65_76_65_6C } ; +("pointsAtY") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73_41_74_59 } ; +("mediummathspace") => { $ crate :: ATOM_LOCALNAME__6D_65_64_69_75_6D_6D_61_74_68_73_70_61_63_65 } ; +("animateMotion") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65_4D_6F_74_69_6F_6E } ; +("baseprofile") => { $ crate :: ATOM_LOCALNAME__62_61_73_65_70_72_6F_66_69_6C_65 } ; +("veryverythickmathspace") => { $ crate :: ATOM_LOCALNAME__76_65_72_79_76_65_72_79_74_68_69_63_6B_6D_61_74_68_73_70_61_63_65 } ; +("alphabetic") => { $ crate :: ATOM_LOCALNAME__61_6C_70_68_61_62_65_74_69_63 } ; +("keypoints") => { $ crate :: ATOM_LOCALNAME__6B_65_79_70_6F_69_6E_74_73 } ; +("marker-end") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72_2D_65_6E_64 } ; +("laplacian") => { $ crate :: ATOM_LOCALNAME__6C_61_70_6C_61_63_69_61_6E } ; +("kernelMatrix") => { $ crate :: ATOM_LOCALNAME__6B_65_72_6E_65_6C_4D_61_74_72_69_78 } ; +("altGlyphItem") => { $ crate :: ATOM_LOCALNAME__61_6C_74_47_6C_79_70_68_49_74_65_6D } ; +("fegaussianblur") => { $ crate :: ATOM_LOCALNAME__66_65_67_61_75_73_73_69_61_6E_62_6C_75_72 } ; +("horiz-origin-y") => { $ crate :: ATOM_LOCALNAME__68_6F_72_69_7A_2D_6F_72_69_67_69_6E_2D_79 } ; +("imaginary") => { $ crate :: ATOM_LOCALNAME__69_6D_61_67_69_6E_61_72_79 } ; +("fecomponenttransfer") => { $ crate :: ATOM_LOCALNAME__66_65_63_6F_6D_70_6F_6E_65_6E_74_74_72_61_6E_73_66_65_72 } ; +("metadata") => { $ crate :: ATOM_LOCALNAME__6D_65_74_61_64_61_74_61 } ; +("requiredExtensions") => { $ crate :: ATOM_LOCALNAME__72_65_71_75_69_72_65_64_45_78_74_65_6E_73_69_6F_6E_73 } ; +("onchange") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_68_61_6E_67_65 } ; +("lengthAdjust") => { $ crate :: ATOM_LOCALNAME__6C_65_6E_67_74_68_41_64_6A_75_73_74 } ; +("patternContentUnits") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E_43_6F_6E_74_65_6E_74_55_6E_69_74_73 } ; +("marginheight") => { $ crate :: ATOM_LOCALNAME__6D_61_72_67_69_6E_68_65_69_67_68_74 } ; +("attributename") => { $ crate :: ATOM_LOCALNAME__61_74_74_72_69_62_75_74_65_6E_61_6D_65 } ; +("ychannelselector") => { $ crate :: ATOM_LOCALNAME__79_63_68_61_6E_6E_65_6C_73_65_6C_65_63_74_6F_72 } ; +("keyTimes") => { $ crate :: ATOM_LOCALNAME__6B_65_79_54_69_6D_65_73 } ; +("repeatDur") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74_44_75_72 } ; +("linebreak") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65_62_72_65_61_6B } ; +("*") => { $ crate :: ATOM_LOCALNAME__2A } ; +("a") => { $ crate :: ATOM_LOCALNAME__61 } ; +("abbr") => { $ crate :: ATOM_LOCALNAME__61_62_62_72 } ; +("abs") => { $ crate :: ATOM_LOCALNAME__61_62_73 } ; +("accent") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_6E_74 } ; +("accept") => { $ crate :: ATOM_LOCALNAME__61_63_63_65_70_74 } ; +("acronym") => { $ crate :: ATOM_LOCALNAME__61_63_72_6F_6E_79_6D } ; +("action") => { $ crate :: ATOM_LOCALNAME__61_63_74_69_6F_6E } ; +("active") => { $ crate :: ATOM_LOCALNAME__61_63_74_69_76_65 } ; +("actuate") => { $ crate :: ATOM_LOCALNAME__61_63_74_75_61_74_65 } ; +("address") => { $ crate :: ATOM_LOCALNAME__61_64_64_72_65_73_73 } ; +("align") => { $ crate :: ATOM_LOCALNAME__61_6C_69_67_6E } ; +("alink") => { $ crate :: ATOM_LOCALNAME__61_6C_69_6E_6B } ; +("alt") => { $ crate :: ATOM_LOCALNAME__61_6C_74 } ; +("altimg") => { $ crate :: ATOM_LOCALNAME__61_6C_74_69_6D_67 } ; +("alttext") => { $ crate :: ATOM_LOCALNAME__61_6C_74_74_65_78_74 } ; +("and") => { $ crate :: ATOM_LOCALNAME__61_6E_64 } ; +("animate") => { $ crate :: ATOM_LOCALNAME__61_6E_69_6D_61_74_65 } ; +("applet") => { $ crate :: ATOM_LOCALNAME__61_70_70_6C_65_74 } ; +("apply") => { $ crate :: ATOM_LOCALNAME__61_70_70_6C_79 } ; +("approx") => { $ crate :: ATOM_LOCALNAME__61_70_70_72_6F_78 } ; +("arccos") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_6F_73 } ; +("arccosh") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_6F_73_68 } ; +("arccot") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_6F_74 } ; +("arccoth") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_6F_74_68 } ; +("arccsc") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_73_63 } ; +("arccsch") => { $ crate :: ATOM_LOCALNAME__61_72_63_63_73_63_68 } ; +("archive") => { $ crate :: ATOM_LOCALNAME__61_72_63_68_69_76_65 } ; +("arcrole") => { $ crate :: ATOM_LOCALNAME__61_72_63_72_6F_6C_65 } ; +("arcsec") => { $ crate :: ATOM_LOCALNAME__61_72_63_73_65_63 } ; +("arcsech") => { $ crate :: ATOM_LOCALNAME__61_72_63_73_65_63_68 } ; +("arcsin") => { $ crate :: ATOM_LOCALNAME__61_72_63_73_69_6E } ; +("arcsinh") => { $ crate :: ATOM_LOCALNAME__61_72_63_73_69_6E_68 } ; +("arctan") => { $ crate :: ATOM_LOCALNAME__61_72_63_74_61_6E } ; +("arctanh") => { $ crate :: ATOM_LOCALNAME__61_72_63_74_61_6E_68 } ; +("area") => { $ crate :: ATOM_LOCALNAME__61_72_65_61 } ; +("arg") => { $ crate :: ATOM_LOCALNAME__61_72_67 } ; +("article") => { $ crate :: ATOM_LOCALNAME__61_72_74_69_63_6C_65 } ; +("ascent") => { $ crate :: ATOM_LOCALNAME__61_73_63_65_6E_74 } ; +("aside") => { $ crate :: ATOM_LOCALNAME__61_73_69_64_65 } ; +("async") => { $ crate :: ATOM_LOCALNAME__61_73_79_6E_63 } ; +("audio") => { $ crate :: ATOM_LOCALNAME__61_75_64_69_6F } ; +("axis") => { $ crate :: ATOM_LOCALNAME__61_78_69_73 } ; +("azimuth") => { $ crate :: ATOM_LOCALNAME__61_7A_69_6D_75_74_68 } ; +("b") => { $ crate :: ATOM_LOCALNAME__62 } ; +("base") => { $ crate :: ATOM_LOCALNAME__62_61_73_65 } ; +("bbox") => { $ crate :: ATOM_LOCALNAME__62_62_6F_78 } ; +("bdi") => { $ crate :: ATOM_LOCALNAME__62_64_69 } ; +("bdo") => { $ crate :: ATOM_LOCALNAME__62_64_6F } ; +("begin") => { $ crate :: ATOM_LOCALNAME__62_65_67_69_6E } ; +("bgcolor") => { $ crate :: ATOM_LOCALNAME__62_67_63_6F_6C_6F_72 } ; +("bgsound") => { $ crate :: ATOM_LOCALNAME__62_67_73_6F_75_6E_64 } ; +("bias") => { $ crate :: ATOM_LOCALNAME__62_69_61_73 } ; +("big") => { $ crate :: ATOM_LOCALNAME__62_69_67 } ; +("blink") => { $ crate :: ATOM_LOCALNAME__62_6C_69_6E_6B } ; +("body") => { $ crate :: ATOM_LOCALNAME__62_6F_64_79 } ; +("border") => { $ crate :: ATOM_LOCALNAME__62_6F_72_64_65_72 } ; +("br") => { $ crate :: ATOM_LOCALNAME__62_72 } ; +("button") => { $ crate :: ATOM_LOCALNAME__62_75_74_74_6F_6E } ; +("bvar") => { $ crate :: ATOM_LOCALNAME__62_76_61_72 } ; +("by") => { $ crate :: ATOM_LOCALNAME__62_79 } ; +("canvas") => { $ crate :: ATOM_LOCALNAME__63_61_6E_76_61_73 } ; +("caption") => { $ crate :: ATOM_LOCALNAME__63_61_70_74_69_6F_6E } ; +("card") => { $ crate :: ATOM_LOCALNAME__63_61_72_64 } ; +("ceiling") => { $ crate :: ATOM_LOCALNAME__63_65_69_6C_69_6E_67 } ; +("center") => { $ crate :: ATOM_LOCALNAME__63_65_6E_74_65_72 } ; +("char") => { $ crate :: ATOM_LOCALNAME__63_68_61_72 } ; +("charoff") => { $ crate :: ATOM_LOCALNAME__63_68_61_72_6F_66_66 } ; +("charset") => { $ crate :: ATOM_LOCALNAME__63_68_61_72_73_65_74 } ; +("checked") => { $ crate :: ATOM_LOCALNAME__63_68_65_63_6B_65_64 } ; +("ci") => { $ crate :: ATOM_LOCALNAME__63_69 } ; +("circle") => { $ crate :: ATOM_LOCALNAME__63_69_72_63_6C_65 } ; +("cite") => { $ crate :: ATOM_LOCALNAME__63_69_74_65 } ; +("class") => { $ crate :: ATOM_LOCALNAME__63_6C_61_73_73 } ; +("classid") => { $ crate :: ATOM_LOCALNAME__63_6C_61_73_73_69_64 } ; +("clear") => { $ crate :: ATOM_LOCALNAME__63_6C_65_61_72 } ; +("clip") => { $ crate :: ATOM_LOCALNAME__63_6C_69_70 } ; +("close") => { $ crate :: ATOM_LOCALNAME__63_6C_6F_73_65 } ; +("closure") => { $ crate :: ATOM_LOCALNAME__63_6C_6F_73_75_72_65 } ; +("cn") => { $ crate :: ATOM_LOCALNAME__63_6E } ; +("code") => { $ crate :: ATOM_LOCALNAME__63_6F_64_65 } ; +("col") => { $ crate :: ATOM_LOCALNAME__63_6F_6C } ; +("color") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_6F_72 } ; +("cols") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_73 } ; +("colspan") => { $ crate :: ATOM_LOCALNAME__63_6F_6C_73_70_61_6E } ; +("compact") => { $ crate :: ATOM_LOCALNAME__63_6F_6D_70_61_63_74 } ; +("compose") => { $ crate :: ATOM_LOCALNAME__63_6F_6D_70_6F_73_65 } ; +("content") => { $ crate :: ATOM_LOCALNAME__63_6F_6E_74_65_6E_74 } ; +("coords") => { $ crate :: ATOM_LOCALNAME__63_6F_6F_72_64_73 } ; +("cos") => { $ crate :: ATOM_LOCALNAME__63_6F_73 } ; +("cosh") => { $ crate :: ATOM_LOCALNAME__63_6F_73_68 } ; +("cot") => { $ crate :: ATOM_LOCALNAME__63_6F_74 } ; +("coth") => { $ crate :: ATOM_LOCALNAME__63_6F_74_68 } ; +("csc") => { $ crate :: ATOM_LOCALNAME__63_73_63 } ; +("csch") => { $ crate :: ATOM_LOCALNAME__63_73_63_68 } ; +("csymbol") => { $ crate :: ATOM_LOCALNAME__63_73_79_6D_62_6F_6C } ; +("curl") => { $ crate :: ATOM_LOCALNAME__63_75_72_6C } ; +("cursor") => { $ crate :: ATOM_LOCALNAME__63_75_72_73_6F_72 } ; +("cx") => { $ crate :: ATOM_LOCALNAME__63_78 } ; +("cy") => { $ crate :: ATOM_LOCALNAME__63_79 } ; +("d") => { $ crate :: ATOM_LOCALNAME__64 } ; +("data") => { $ crate :: ATOM_LOCALNAME__64_61_74_61 } ; +("datafld") => { $ crate :: ATOM_LOCALNAME__64_61_74_61_66_6C_64 } ; +("datasrc") => { $ crate :: ATOM_LOCALNAME__64_61_74_61_73_72_63 } ; +("dd") => { $ crate :: ATOM_LOCALNAME__64_64 } ; +("declare") => { $ crate :: ATOM_LOCALNAME__64_65_63_6C_61_72_65 } ; +("default") => { $ crate :: ATOM_LOCALNAME__64_65_66_61_75_6C_74 } ; +("defer") => { $ crate :: ATOM_LOCALNAME__64_65_66_65_72 } ; +("defs") => { $ crate :: ATOM_LOCALNAME__64_65_66_73 } ; +("degree") => { $ crate :: ATOM_LOCALNAME__64_65_67_72_65_65 } ; +("del") => { $ crate :: ATOM_LOCALNAME__64_65_6C } ; +("depth") => { $ crate :: ATOM_LOCALNAME__64_65_70_74_68 } ; +("desc") => { $ crate :: ATOM_LOCALNAME__64_65_73_63 } ; +("descent") => { $ crate :: ATOM_LOCALNAME__64_65_73_63_65_6E_74 } ; +("details") => { $ crate :: ATOM_LOCALNAME__64_65_74_61_69_6C_73 } ; +("dfn") => { $ crate :: ATOM_LOCALNAME__64_66_6E } ; +("dialog") => { $ crate :: ATOM_LOCALNAME__64_69_61_6C_6F_67 } ; +("diff") => { $ crate :: ATOM_LOCALNAME__64_69_66_66 } ; +("dir") => { $ crate :: ATOM_LOCALNAME__64_69_72 } ; +("dirname") => { $ crate :: ATOM_LOCALNAME__64_69_72_6E_61_6D_65 } ; +("discard") => { $ crate :: ATOM_LOCALNAME__64_69_73_63_61_72_64 } ; +("display") => { $ crate :: ATOM_LOCALNAME__64_69_73_70_6C_61_79 } ; +("div") => { $ crate :: ATOM_LOCALNAME__64_69_76 } ; +("divide") => { $ crate :: ATOM_LOCALNAME__64_69_76_69_64_65 } ; +("divisor") => { $ crate :: ATOM_LOCALNAME__64_69_76_69_73_6F_72 } ; +("dl") => { $ crate :: ATOM_LOCALNAME__64_6C } ; +("domain") => { $ crate :: ATOM_LOCALNAME__64_6F_6D_61_69_6E } ; +("dt") => { $ crate :: ATOM_LOCALNAME__64_74 } ; +("dur") => { $ crate :: ATOM_LOCALNAME__64_75_72 } ; +("dx") => { $ crate :: ATOM_LOCALNAME__64_78 } ; +("dy") => { $ crate :: ATOM_LOCALNAME__64_79 } ; +("edge") => { $ crate :: ATOM_LOCALNAME__65_64_67_65 } ; +("ellipse") => { $ crate :: ATOM_LOCALNAME__65_6C_6C_69_70_73_65 } ; +("em") => { $ crate :: ATOM_LOCALNAME__65_6D } ; +("embed") => { $ crate :: ATOM_LOCALNAME__65_6D_62_65_64 } ; +("enctype") => { $ crate :: ATOM_LOCALNAME__65_6E_63_74_79_70_65 } ; +("end") => { $ crate :: ATOM_LOCALNAME__65_6E_64 } ; +("eq") => { $ crate :: ATOM_LOCALNAME__65_71 } ; +("event") => { $ crate :: ATOM_LOCALNAME__65_76_65_6E_74 } ; +("exists") => { $ crate :: ATOM_LOCALNAME__65_78_69_73_74_73 } ; +("exp") => { $ crate :: ATOM_LOCALNAME__65_78_70 } ; +("face") => { $ crate :: ATOM_LOCALNAME__66_61_63_65 } ; +("false") => { $ crate :: ATOM_LOCALNAME__66_61_6C_73_65 } ; +("feBlend") => { $ crate :: ATOM_LOCALNAME__66_65_42_6C_65_6E_64 } ; +("feFlood") => { $ crate :: ATOM_LOCALNAME__66_65_46_6C_6F_6F_64 } ; +("feFuncA") => { $ crate :: ATOM_LOCALNAME__66_65_46_75_6E_63_41 } ; +("feFuncB") => { $ crate :: ATOM_LOCALNAME__66_65_46_75_6E_63_42 } ; +("feFuncG") => { $ crate :: ATOM_LOCALNAME__66_65_46_75_6E_63_47 } ; +("feFuncR") => { $ crate :: ATOM_LOCALNAME__66_65_46_75_6E_63_52 } ; +("feImage") => { $ crate :: ATOM_LOCALNAME__66_65_49_6D_61_67_65 } ; +("feMerge") => { $ crate :: ATOM_LOCALNAME__66_65_4D_65_72_67_65 } ; +("feTile") => { $ crate :: ATOM_LOCALNAME__66_65_54_69_6C_65 } ; +("feblend") => { $ crate :: ATOM_LOCALNAME__66_65_62_6C_65_6E_64 } ; +("feflood") => { $ crate :: ATOM_LOCALNAME__66_65_66_6C_6F_6F_64 } ; +("fefunca") => { $ crate :: ATOM_LOCALNAME__66_65_66_75_6E_63_61 } ; +("fefuncb") => { $ crate :: ATOM_LOCALNAME__66_65_66_75_6E_63_62 } ; +("fefuncg") => { $ crate :: ATOM_LOCALNAME__66_65_66_75_6E_63_67 } ; +("fefuncr") => { $ crate :: ATOM_LOCALNAME__66_65_66_75_6E_63_72 } ; +("feimage") => { $ crate :: ATOM_LOCALNAME__66_65_69_6D_61_67_65 } ; +("femerge") => { $ crate :: ATOM_LOCALNAME__66_65_6D_65_72_67_65 } ; +("fence") => { $ crate :: ATOM_LOCALNAME__66_65_6E_63_65 } ; +("fetch") => { $ crate :: ATOM_LOCALNAME__66_65_74_63_68 } ; +("fetile") => { $ crate :: ATOM_LOCALNAME__66_65_74_69_6C_65 } ; +("figure") => { $ crate :: ATOM_LOCALNAME__66_69_67_75_72_65 } ; +("fill") => { $ crate :: ATOM_LOCALNAME__66_69_6C_6C } ; +("filter") => { $ crate :: ATOM_LOCALNAME__66_69_6C_74_65_72 } ; +("floor") => { $ crate :: ATOM_LOCALNAME__66_6C_6F_6F_72 } ; +("fn") => { $ crate :: ATOM_LOCALNAME__66_6E } ; +("font") => { $ crate :: ATOM_LOCALNAME__66_6F_6E_74 } ; +("footer") => { $ crate :: ATOM_LOCALNAME__66_6F_6F_74_65_72 } ; +("for") => { $ crate :: ATOM_LOCALNAME__66_6F_72 } ; +("forall") => { $ crate :: ATOM_LOCALNAME__66_6F_72_61_6C_6C } ; +("form") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D } ; +("format") => { $ crate :: ATOM_LOCALNAME__66_6F_72_6D_61_74 } ; +("frame") => { $ crate :: ATOM_LOCALNAME__66_72_61_6D_65 } ; +("from") => { $ crate :: ATOM_LOCALNAME__66_72_6F_6D } ; +("fx") => { $ crate :: ATOM_LOCALNAME__66_78 } ; +("fy") => { $ crate :: ATOM_LOCALNAME__66_79 } ; +("g") => { $ crate :: ATOM_LOCALNAME__67 } ; +("g1") => { $ crate :: ATOM_LOCALNAME__67_31 } ; +("g2") => { $ crate :: ATOM_LOCALNAME__67_32 } ; +("gcd") => { $ crate :: ATOM_LOCALNAME__67_63_64 } ; +("geq") => { $ crate :: ATOM_LOCALNAME__67_65_71 } ; +("glyph") => { $ crate :: ATOM_LOCALNAME__67_6C_79_70_68 } ; +("grad") => { $ crate :: ATOM_LOCALNAME__67_72_61_64 } ; +("gt") => { $ crate :: ATOM_LOCALNAME__67_74 } ; +("h1") => { $ crate :: ATOM_LOCALNAME__68_31 } ; +("h2") => { $ crate :: ATOM_LOCALNAME__68_32 } ; +("h3") => { $ crate :: ATOM_LOCALNAME__68_33 } ; +("h4") => { $ crate :: ATOM_LOCALNAME__68_34 } ; +("h5") => { $ crate :: ATOM_LOCALNAME__68_35 } ; +("h6") => { $ crate :: ATOM_LOCALNAME__68_36 } ; +("handler") => { $ crate :: ATOM_LOCALNAME__68_61_6E_64_6C_65_72 } ; +("hanging") => { $ crate :: ATOM_LOCALNAME__68_61_6E_67_69_6E_67 } ; +("head") => { $ crate :: ATOM_LOCALNAME__68_65_61_64 } ; +("header") => { $ crate :: ATOM_LOCALNAME__68_65_61_64_65_72 } ; +("headers") => { $ crate :: ATOM_LOCALNAME__68_65_61_64_65_72_73 } ; +("height") => { $ crate :: ATOM_LOCALNAME__68_65_69_67_68_74 } ; +("hgroup") => { $ crate :: ATOM_LOCALNAME__68_67_72_6F_75_70 } ; +("hidden") => { $ crate :: ATOM_LOCALNAME__68_69_64_64_65_6E } ; +("high") => { $ crate :: ATOM_LOCALNAME__68_69_67_68 } ; +("hkern") => { $ crate :: ATOM_LOCALNAME__68_6B_65_72_6E } ; +("hr") => { $ crate :: ATOM_LOCALNAME__68_72 } ; +("href") => { $ crate :: ATOM_LOCALNAME__68_72_65_66 } ; +("hspace") => { $ crate :: ATOM_LOCALNAME__68_73_70_61_63_65 } ; +("html") => { $ crate :: ATOM_LOCALNAME__68_74_6D_6C } ; +("i") => { $ crate :: ATOM_LOCALNAME__69 } ; +("icon") => { $ crate :: ATOM_LOCALNAME__69_63_6F_6E } ; +("id") => { $ crate :: ATOM_LOCALNAME__69_64 } ; +("ident") => { $ crate :: ATOM_LOCALNAME__69_64_65_6E_74 } ; +("iframe") => { $ crate :: ATOM_LOCALNAME__69_66_72_61_6D_65 } ; +("image") => { $ crate :: ATOM_LOCALNAME__69_6D_61_67_65 } ; +("img") => { $ crate :: ATOM_LOCALNAME__69_6D_67 } ; +("implies") => { $ crate :: ATOM_LOCALNAME__69_6D_70_6C_69_65_73 } ; +("in") => { $ crate :: ATOM_LOCALNAME__69_6E } ; +("in2") => { $ crate :: ATOM_LOCALNAME__69_6E_32 } ; +("index") => { $ crate :: ATOM_LOCALNAME__69_6E_64_65_78 } ; +("input") => { $ crate :: ATOM_LOCALNAME__69_6E_70_75_74 } ; +("ins") => { $ crate :: ATOM_LOCALNAME__69_6E_73 } ; +("int") => { $ crate :: ATOM_LOCALNAME__69_6E_74 } ; +("inverse") => { $ crate :: ATOM_LOCALNAME__69_6E_76_65_72_73_65 } ; +("isindex") => { $ crate :: ATOM_LOCALNAME__69_73_69_6E_64_65_78 } ; +("ismap") => { $ crate :: ATOM_LOCALNAME__69_73_6D_61_70 } ; +("itemid") => { $ crate :: ATOM_LOCALNAME__69_74_65_6D_69_64 } ; +("itemref") => { $ crate :: ATOM_LOCALNAME__69_74_65_6D_72_65_66 } ; +("k") => { $ crate :: ATOM_LOCALNAME__6B } ; +("k1") => { $ crate :: ATOM_LOCALNAME__6B_31 } ; +("k2") => { $ crate :: ATOM_LOCALNAME__6B_32 } ; +("k3") => { $ crate :: ATOM_LOCALNAME__6B_33 } ; +("k4") => { $ crate :: ATOM_LOCALNAME__6B_34 } ; +("kbd") => { $ crate :: ATOM_LOCALNAME__6B_62_64 } ; +("kerning") => { $ crate :: ATOM_LOCALNAME__6B_65_72_6E_69_6E_67 } ; +("keygen") => { $ crate :: ATOM_LOCALNAME__6B_65_79_67_65_6E } ; +("kind") => { $ crate :: ATOM_LOCALNAME__6B_69_6E_64 } ; +("label") => { $ crate :: ATOM_LOCALNAME__6C_61_62_65_6C } ; +("lambda") => { $ crate :: ATOM_LOCALNAME__6C_61_6D_62_64_61 } ; +("lang") => { $ crate :: ATOM_LOCALNAME__6C_61_6E_67 } ; +("largeop") => { $ crate :: ATOM_LOCALNAME__6C_61_72_67_65_6F_70 } ; +("lcm") => { $ crate :: ATOM_LOCALNAME__6C_63_6D } ; +("legend") => { $ crate :: ATOM_LOCALNAME__6C_65_67_65_6E_64 } ; +("leq") => { $ crate :: ATOM_LOCALNAME__6C_65_71 } ; +("li") => { $ crate :: ATOM_LOCALNAME__6C_69 } ; +("limit") => { $ crate :: ATOM_LOCALNAME__6C_69_6D_69_74 } ; +("line") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_65 } ; +("link") => { $ crate :: ATOM_LOCALNAME__6C_69_6E_6B } ; +("list") => { $ crate :: ATOM_LOCALNAME__6C_69_73_74 } ; +("listing") => { $ crate :: ATOM_LOCALNAME__6C_69_73_74_69_6E_67 } ; +("ln") => { $ crate :: ATOM_LOCALNAME__6C_6E } ; +("loading") => { $ crate :: ATOM_LOCALNAME__6C_6F_61_64_69_6E_67 } ; +("local") => { $ crate :: ATOM_LOCALNAME__6C_6F_63_61_6C } ; +("log") => { $ crate :: ATOM_LOCALNAME__6C_6F_67 } ; +("logbase") => { $ crate :: ATOM_LOCALNAME__6C_6F_67_62_61_73_65 } ; +("loop") => { $ crate :: ATOM_LOCALNAME__6C_6F_6F_70 } ; +("low") => { $ crate :: ATOM_LOCALNAME__6C_6F_77 } ; +("lowsrc") => { $ crate :: ATOM_LOCALNAME__6C_6F_77_73_72_63 } ; +("lquote") => { $ crate :: ATOM_LOCALNAME__6C_71_75_6F_74_65 } ; +("lspace") => { $ crate :: ATOM_LOCALNAME__6C_73_70_61_63_65 } ; +("lt") => { $ crate :: ATOM_LOCALNAME__6C_74 } ; +("macros") => { $ crate :: ATOM_LOCALNAME__6D_61_63_72_6F_73 } ; +("maction") => { $ crate :: ATOM_LOCALNAME__6D_61_63_74_69_6F_6E } ; +("main") => { $ crate :: ATOM_LOCALNAME__6D_61_69_6E } ; +("map") => { $ crate :: ATOM_LOCALNAME__6D_61_70 } ; +("mark") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B } ; +("marker") => { $ crate :: ATOM_LOCALNAME__6D_61_72_6B_65_72 } ; +("marquee") => { $ crate :: ATOM_LOCALNAME__6D_61_72_71_75_65_65 } ; +("mask") => { $ crate :: ATOM_LOCALNAME__6D_61_73_6B } ; +("math") => { $ crate :: ATOM_LOCALNAME__6D_61_74_68 } ; +("matrix") => { $ crate :: ATOM_LOCALNAME__6D_61_74_72_69_78 } ; +("max") => { $ crate :: ATOM_LOCALNAME__6D_61_78 } ; +("maxsize") => { $ crate :: ATOM_LOCALNAME__6D_61_78_73_69_7A_65 } ; +("mean") => { $ crate :: ATOM_LOCALNAME__6D_65_61_6E } ; +("media") => { $ crate :: ATOM_LOCALNAME__6D_65_64_69_61 } ; +("median") => { $ crate :: ATOM_LOCALNAME__6D_65_64_69_61_6E } ; +("menu") => { $ crate :: ATOM_LOCALNAME__6D_65_6E_75 } ; +("merror") => { $ crate :: ATOM_LOCALNAME__6D_65_72_72_6F_72 } ; +("meta") => { $ crate :: ATOM_LOCALNAME__6D_65_74_61 } ; +("meter") => { $ crate :: ATOM_LOCALNAME__6D_65_74_65_72 } ; +("method") => { $ crate :: ATOM_LOCALNAME__6D_65_74_68_6F_64 } ; +("mfenced") => { $ crate :: ATOM_LOCALNAME__6D_66_65_6E_63_65_64 } ; +("mfrac") => { $ crate :: ATOM_LOCALNAME__6D_66_72_61_63 } ; +("mglyph") => { $ crate :: ATOM_LOCALNAME__6D_67_6C_79_70_68 } ; +("mi") => { $ crate :: ATOM_LOCALNAME__6D_69 } ; +("min") => { $ crate :: ATOM_LOCALNAME__6D_69_6E } ; +("minsize") => { $ crate :: ATOM_LOCALNAME__6D_69_6E_73_69_7A_65 } ; +("minus") => { $ crate :: ATOM_LOCALNAME__6D_69_6E_75_73 } ; +("mn") => { $ crate :: ATOM_LOCALNAME__6D_6E } ; +("mo") => { $ crate :: ATOM_LOCALNAME__6D_6F } ; +("mode") => { $ crate :: ATOM_LOCALNAME__6D_6F_64_65 } ; +("moment") => { $ crate :: ATOM_LOCALNAME__6D_6F_6D_65_6E_74 } ; +("mover") => { $ crate :: ATOM_LOCALNAME__6D_6F_76_65_72 } ; +("mpadded") => { $ crate :: ATOM_LOCALNAME__6D_70_61_64_64_65_64 } ; +("mpath") => { $ crate :: ATOM_LOCALNAME__6D_70_61_74_68 } ; +("mroot") => { $ crate :: ATOM_LOCALNAME__6D_72_6F_6F_74 } ; +("mrow") => { $ crate :: ATOM_LOCALNAME__6D_72_6F_77 } ; +("ms") => { $ crate :: ATOM_LOCALNAME__6D_73 } ; +("mspace") => { $ crate :: ATOM_LOCALNAME__6D_73_70_61_63_65 } ; +("msqrt") => { $ crate :: ATOM_LOCALNAME__6D_73_71_72_74 } ; +("mstyle") => { $ crate :: ATOM_LOCALNAME__6D_73_74_79_6C_65 } ; +("msub") => { $ crate :: ATOM_LOCALNAME__6D_73_75_62 } ; +("msubsup") => { $ crate :: ATOM_LOCALNAME__6D_73_75_62_73_75_70 } ; +("msup") => { $ crate :: ATOM_LOCALNAME__6D_73_75_70 } ; +("mtable") => { $ crate :: ATOM_LOCALNAME__6D_74_61_62_6C_65 } ; +("mtd") => { $ crate :: ATOM_LOCALNAME__6D_74_64 } ; +("mtext") => { $ crate :: ATOM_LOCALNAME__6D_74_65_78_74 } ; +("mtr") => { $ crate :: ATOM_LOCALNAME__6D_74_72 } ; +("munder") => { $ crate :: ATOM_LOCALNAME__6D_75_6E_64_65_72 } ; +("muted") => { $ crate :: ATOM_LOCALNAME__6D_75_74_65_64 } ; +("name") => { $ crate :: ATOM_LOCALNAME__6E_61_6D_65 } ; +("nargs") => { $ crate :: ATOM_LOCALNAME__6E_61_72_67_73 } ; +("nav") => { $ crate :: ATOM_LOCALNAME__6E_61_76 } ; +("neq") => { $ crate :: ATOM_LOCALNAME__6E_65_71 } ; +("nest") => { $ crate :: ATOM_LOCALNAME__6E_65_73_74 } ; +("nextid") => { $ crate :: ATOM_LOCALNAME__6E_65_78_74_69_64 } ; +("nobr") => { $ crate :: ATOM_LOCALNAME__6E_6F_62_72 } ; +("noembed") => { $ crate :: ATOM_LOCALNAME__6E_6F_65_6D_62_65_64 } ; +("nohref") => { $ crate :: ATOM_LOCALNAME__6E_6F_68_72_65_66 } ; +("nonce") => { $ crate :: ATOM_LOCALNAME__6E_6F_6E_63_65 } ; +("none") => { $ crate :: ATOM_LOCALNAME__6E_6F_6E_65 } ; +("noshade") => { $ crate :: ATOM_LOCALNAME__6E_6F_73_68_61_64_65 } ; +("not") => { $ crate :: ATOM_LOCALNAME__6E_6F_74 } ; +("notin") => { $ crate :: ATOM_LOCALNAME__6E_6F_74_69_6E } ; +("nowrap") => { $ crate :: ATOM_LOCALNAME__6E_6F_77_72_61_70 } ; +("object") => { $ crate :: ATOM_LOCALNAME__6F_62_6A_65_63_74 } ; +("offset") => { $ crate :: ATOM_LOCALNAME__6F_66_66_73_65_74 } ; +("ol") => { $ crate :: ATOM_LOCALNAME__6F_6C } ; +("onabort") => { $ crate :: ATOM_LOCALNAME__6F_6E_61_62_6F_72_74 } ; +("onbegin") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_65_67_69_6E } ; +("onblur") => { $ crate :: ATOM_LOCALNAME__6F_6E_62_6C_75_72 } ; +("onclick") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_6C_69_63_6B } ; +("oncopy") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_6F_70_79 } ; +("oncut") => { $ crate :: ATOM_LOCALNAME__6F_6E_63_75_74 } ; +("ondrag") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_61_67 } ; +("ondrop") => { $ crate :: ATOM_LOCALNAME__6F_6E_64_72_6F_70 } ; +("onend") => { $ crate :: ATOM_LOCALNAME__6F_6E_65_6E_64 } ; +("onerror") => { $ crate :: ATOM_LOCALNAME__6F_6E_65_72_72_6F_72 } ; +("onfocus") => { $ crate :: ATOM_LOCALNAME__6F_6E_66_6F_63_75_73 } ; +("onhelp") => { $ crate :: ATOM_LOCALNAME__6F_6E_68_65_6C_70 } ; +("oninput") => { $ crate :: ATOM_LOCALNAME__6F_6E_69_6E_70_75_74 } ; +("onkeyup") => { $ crate :: ATOM_LOCALNAME__6F_6E_6B_65_79_75_70 } ; +("onload") => { $ crate :: ATOM_LOCALNAME__6F_6E_6C_6F_61_64 } ; +("onmove") => { $ crate :: ATOM_LOCALNAME__6F_6E_6D_6F_76_65 } ; +("onpaste") => { $ crate :: ATOM_LOCALNAME__6F_6E_70_61_73_74_65 } ; +("onreset") => { $ crate :: ATOM_LOCALNAME__6F_6E_72_65_73_65_74 } ; +("onstart") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_74_61_72_74 } ; +("onstop") => { $ crate :: ATOM_LOCALNAME__6F_6E_73_74_6F_70 } ; +("onzoom") => { $ crate :: ATOM_LOCALNAME__6F_6E_7A_6F_6F_6D } ; +("opacity") => { $ crate :: ATOM_LOCALNAME__6F_70_61_63_69_74_79 } ; +("open") => { $ crate :: ATOM_LOCALNAME__6F_70_65_6E } ; +("optimum") => { $ crate :: ATOM_LOCALNAME__6F_70_74_69_6D_75_6D } ; +("option") => { $ crate :: ATOM_LOCALNAME__6F_70_74_69_6F_6E } ; +("or") => { $ crate :: ATOM_LOCALNAME__6F_72 } ; +("order") => { $ crate :: ATOM_LOCALNAME__6F_72_64_65_72 } ; +("orient") => { $ crate :: ATOM_LOCALNAME__6F_72_69_65_6E_74 } ; +("origin") => { $ crate :: ATOM_LOCALNAME__6F_72_69_67_69_6E } ; +("other") => { $ crate :: ATOM_LOCALNAME__6F_74_68_65_72 } ; +("output") => { $ crate :: ATOM_LOCALNAME__6F_75_74_70_75_74 } ; +("p") => { $ crate :: ATOM_LOCALNAME__70 } ; +("param") => { $ crate :: ATOM_LOCALNAME__70_61_72_61_6D } ; +("parse") => { $ crate :: ATOM_LOCALNAME__70_61_72_73_65 } ; +("path") => { $ crate :: ATOM_LOCALNAME__70_61_74_68 } ; +("pattern") => { $ crate :: ATOM_LOCALNAME__70_61_74_74_65_72_6E } ; +("pi") => { $ crate :: ATOM_LOCALNAME__70_69 } ; +("picture") => { $ crate :: ATOM_LOCALNAME__70_69_63_74_75_72_65 } ; +("piece") => { $ crate :: ATOM_LOCALNAME__70_69_65_63_65 } ; +("ping") => { $ crate :: ATOM_LOCALNAME__70_69_6E_67 } ; +("plus") => { $ crate :: ATOM_LOCALNAME__70_6C_75_73 } ; +("points") => { $ crate :: ATOM_LOCALNAME__70_6F_69_6E_74_73 } ; +("polygon") => { $ crate :: ATOM_LOCALNAME__70_6F_6C_79_67_6F_6E } ; +("poster") => { $ crate :: ATOM_LOCALNAME__70_6F_73_74_65_72 } ; +("power") => { $ crate :: ATOM_LOCALNAME__70_6F_77_65_72 } ; +("pre") => { $ crate :: ATOM_LOCALNAME__70_72_65 } ; +("preload") => { $ crate :: ATOM_LOCALNAME__70_72_65_6C_6F_61_64 } ; +("primes") => { $ crate :: ATOM_LOCALNAME__70_72_69_6D_65_73 } ; +("product") => { $ crate :: ATOM_LOCALNAME__70_72_6F_64_75_63_74 } ; +("profile") => { $ crate :: ATOM_LOCALNAME__70_72_6F_66_69_6C_65 } ; +("prompt") => { $ crate :: ATOM_LOCALNAME__70_72_6F_6D_70_74 } ; +("q") => { $ crate :: ATOM_LOCALNAME__71 } ; +("r") => { $ crate :: ATOM_LOCALNAME__72 } ; +("radius") => { $ crate :: ATOM_LOCALNAME__72_61_64_69_75_73 } ; +("rb") => { $ crate :: ATOM_LOCALNAME__72_62 } ; +("real") => { $ crate :: ATOM_LOCALNAME__72_65_61_6C } ; +("reals") => { $ crate :: ATOM_LOCALNAME__72_65_61_6C_73 } ; +("rect") => { $ crate :: ATOM_LOCALNAME__72_65_63_74 } ; +("refX") => { $ crate :: ATOM_LOCALNAME__72_65_66_58 } ; +("refY") => { $ crate :: ATOM_LOCALNAME__72_65_66_59 } ; +("refx") => { $ crate :: ATOM_LOCALNAME__72_65_66_78 } ; +("refy") => { $ crate :: ATOM_LOCALNAME__72_65_66_79 } ; +("rel") => { $ crate :: ATOM_LOCALNAME__72_65_6C } ; +("reln") => { $ crate :: ATOM_LOCALNAME__72_65_6C_6E } ; +("rem") => { $ crate :: ATOM_LOCALNAME__72_65_6D } ; +("repeat") => { $ crate :: ATOM_LOCALNAME__72_65_70_65_61_74 } ; +("replace") => { $ crate :: ATOM_LOCALNAME__72_65_70_6C_61_63_65 } ; +("restart") => { $ crate :: ATOM_LOCALNAME__72_65_73_74_61_72_74 } ; +("result") => { $ crate :: ATOM_LOCALNAME__72_65_73_75_6C_74 } ; +("rev") => { $ crate :: ATOM_LOCALNAME__72_65_76 } ; +("role") => { $ crate :: ATOM_LOCALNAME__72_6F_6C_65 } ; +("root") => { $ crate :: ATOM_LOCALNAME__72_6F_6F_74 } ; +("rotate") => { $ crate :: ATOM_LOCALNAME__72_6F_74_61_74_65 } ; +("rows") => { $ crate :: ATOM_LOCALNAME__72_6F_77_73 } ; +("rowspan") => { $ crate :: ATOM_LOCALNAME__72_6F_77_73_70_61_6E } ; +("rp") => { $ crate :: ATOM_LOCALNAME__72_70 } ; +("rquote") => { $ crate :: ATOM_LOCALNAME__72_71_75_6F_74_65 } ; +("rspace") => { $ crate :: ATOM_LOCALNAME__72_73_70_61_63_65 } ; +("rt") => { $ crate :: ATOM_LOCALNAME__72_74 } ; +("rtc") => { $ crate :: ATOM_LOCALNAME__72_74_63 } ; +("ruby") => { $ crate :: ATOM_LOCALNAME__72_75_62_79 } ; +("rule") => { $ crate :: ATOM_LOCALNAME__72_75_6C_65 } ; +("rules") => { $ crate :: ATOM_LOCALNAME__72_75_6C_65_73 } ; +("rx") => { $ crate :: ATOM_LOCALNAME__72_78 } ; +("ry") => { $ crate :: ATOM_LOCALNAME__72_79 } ; +("s") => { $ crate :: ATOM_LOCALNAME__73 } ; +("samp") => { $ crate :: ATOM_LOCALNAME__73_61_6D_70 } ; +("sandbox") => { $ crate :: ATOM_LOCALNAME__73_61_6E_64_62_6F_78 } ; +("scale") => { $ crate :: ATOM_LOCALNAME__73_63_61_6C_65 } ; +("scheme") => { $ crate :: ATOM_LOCALNAME__73_63_68_65_6D_65 } ; +("scope") => { $ crate :: ATOM_LOCALNAME__73_63_6F_70_65 } ; +("scoped") => { $ crate :: ATOM_LOCALNAME__73_63_6F_70_65_64 } ; +("script") => { $ crate :: ATOM_LOCALNAME__73_63_72_69_70_74 } ; +("sdev") => { $ crate :: ATOM_LOCALNAME__73_64_65_76 } ; +("search") => { $ crate :: ATOM_LOCALNAME__73_65_61_72_63_68 } ; +("sec") => { $ crate :: ATOM_LOCALNAME__73_65_63 } ; +("sech") => { $ crate :: ATOM_LOCALNAME__73_65_63_68 } ; +("section") => { $ crate :: ATOM_LOCALNAME__73_65_63_74_69_6F_6E } ; +("seed") => { $ crate :: ATOM_LOCALNAME__73_65_65_64 } ; +("select") => { $ crate :: ATOM_LOCALNAME__73_65_6C_65_63_74 } ; +("sep") => { $ crate :: ATOM_LOCALNAME__73_65_70 } ; +("set") => { $ crate :: ATOM_LOCALNAME__73_65_74 } ; +("setdiff") => { $ crate :: ATOM_LOCALNAME__73_65_74_64_69_66_66 } ; +("shape") => { $ crate :: ATOM_LOCALNAME__73_68_61_70_65 } ; +("show") => { $ crate :: ATOM_LOCALNAME__73_68_6F_77 } ; +("sin") => { $ crate :: ATOM_LOCALNAME__73_69_6E } ; +("sinh") => { $ crate :: ATOM_LOCALNAME__73_69_6E_68 } ; +("size") => { $ crate :: ATOM_LOCALNAME__73_69_7A_65 } ; +("sizes") => { $ crate :: ATOM_LOCALNAME__73_69_7A_65_73 } ; +("slope") => { $ crate :: ATOM_LOCALNAME__73_6C_6F_70_65 } ; +("slot") => { $ crate :: ATOM_LOCALNAME__73_6C_6F_74 } ; +("small") => { $ crate :: ATOM_LOCALNAME__73_6D_61_6C_6C } ; +("source") => { $ crate :: ATOM_LOCALNAME__73_6F_75_72_63_65 } ; +("space") => { $ crate :: ATOM_LOCALNAME__73_70_61_63_65 } ; +("spacer") => { $ crate :: ATOM_LOCALNAME__73_70_61_63_65_72 } ; +("spacing") => { $ crate :: ATOM_LOCALNAME__73_70_61_63_69_6E_67 } ; +("span") => { $ crate :: ATOM_LOCALNAME__73_70_61_6E } ; +("speed") => { $ crate :: ATOM_LOCALNAME__73_70_65_65_64 } ; +("src") => { $ crate :: ATOM_LOCALNAME__73_72_63 } ; +("srcdoc") => { $ crate :: ATOM_LOCALNAME__73_72_63_64_6F_63 } ; +("srclang") => { $ crate :: ATOM_LOCALNAME__73_72_63_6C_61_6E_67 } ; +("srcset") => { $ crate :: ATOM_LOCALNAME__73_72_63_73_65_74 } ; +("standby") => { $ crate :: ATOM_LOCALNAME__73_74_61_6E_64_62_79 } ; +("start") => { $ crate :: ATOM_LOCALNAME__73_74_61_72_74 } ; +("stemh") => { $ crate :: ATOM_LOCALNAME__73_74_65_6D_68 } ; +("stemv") => { $ crate :: ATOM_LOCALNAME__73_74_65_6D_76 } ; +("step") => { $ crate :: ATOM_LOCALNAME__73_74_65_70 } ; +("stop") => { $ crate :: ATOM_LOCALNAME__73_74_6F_70 } ; +("strike") => { $ crate :: ATOM_LOCALNAME__73_74_72_69_6B_65 } ; +("string") => { $ crate :: ATOM_LOCALNAME__73_74_72_69_6E_67 } ; +("stroke") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6B_65 } ; +("strong") => { $ crate :: ATOM_LOCALNAME__73_74_72_6F_6E_67 } ; +("style") => { $ crate :: ATOM_LOCALNAME__73_74_79_6C_65 } ; +("sub") => { $ crate :: ATOM_LOCALNAME__73_75_62 } ; +("subset") => { $ crate :: ATOM_LOCALNAME__73_75_62_73_65_74 } ; +("sum") => { $ crate :: ATOM_LOCALNAME__73_75_6D } ; +("summary") => { $ crate :: ATOM_LOCALNAME__73_75_6D_6D_61_72_79 } ; +("sup") => { $ crate :: ATOM_LOCALNAME__73_75_70 } ; +("svg") => { $ crate :: ATOM_LOCALNAME__73_76_67 } ; +("switch") => { $ crate :: ATOM_LOCALNAME__73_77_69_74_63_68 } ; +("symbol") => { $ crate :: ATOM_LOCALNAME__73_79_6D_62_6F_6C } ; +("table") => { $ crate :: ATOM_LOCALNAME__74_61_62_6C_65 } ; +("tan") => { $ crate :: ATOM_LOCALNAME__74_61_6E } ; +("tanh") => { $ crate :: ATOM_LOCALNAME__74_61_6E_68 } ; +("target") => { $ crate :: ATOM_LOCALNAME__74_61_72_67_65_74 } ; +("targetX") => { $ crate :: ATOM_LOCALNAME__74_61_72_67_65_74_58 } ; +("targetY") => { $ crate :: ATOM_LOCALNAME__74_61_72_67_65_74_59 } ; +("targetx") => { $ crate :: ATOM_LOCALNAME__74_61_72_67_65_74_78 } ; +("targety") => { $ crate :: ATOM_LOCALNAME__74_61_72_67_65_74_79 } ; +("tbody") => { $ crate :: ATOM_LOCALNAME__74_62_6F_64_79 } ; +("tbreak") => { $ crate :: ATOM_LOCALNAME__74_62_72_65_61_6B } ; +("td") => { $ crate :: ATOM_LOCALNAME__74_64 } ; +("tendsto") => { $ crate :: ATOM_LOCALNAME__74_65_6E_64_73_74_6F } ; +("text") => { $ crate :: ATOM_LOCALNAME__74_65_78_74 } ; +("tfoot") => { $ crate :: ATOM_LOCALNAME__74_66_6F_6F_74 } ; +("th") => { $ crate :: ATOM_LOCALNAME__74_68 } ; +("thead") => { $ crate :: ATOM_LOCALNAME__74_68_65_61_64 } ; +("time") => { $ crate :: ATOM_LOCALNAME__74_69_6D_65 } ; +("times") => { $ crate :: ATOM_LOCALNAME__74_69_6D_65_73 } ; +("title") => { $ crate :: ATOM_LOCALNAME__74_69_74_6C_65 } ; +("to") => { $ crate :: ATOM_LOCALNAME__74_6F } ; +("toggle") => { $ crate :: ATOM_LOCALNAME__74_6F_67_67_6C_65 } ; +("tr") => { $ crate :: ATOM_LOCALNAME__74_72 } ; +("track") => { $ crate :: ATOM_LOCALNAME__74_72_61_63_6B } ; +("tref") => { $ crate :: ATOM_LOCALNAME__74_72_65_66 } ; +("true") => { $ crate :: ATOM_LOCALNAME__74_72_75_65 } ; +("tspan") => { $ crate :: ATOM_LOCALNAME__74_73_70_61_6E } ; +("tt") => { $ crate :: ATOM_LOCALNAME__74_74 } ; +("type") => { $ crate :: ATOM_LOCALNAME__74_79_70_65 } ; +("u") => { $ crate :: ATOM_LOCALNAME__75 } ; +("u1") => { $ crate :: ATOM_LOCALNAME__75_31 } ; +("u2") => { $ crate :: ATOM_LOCALNAME__75_32 } ; +("ul") => { $ crate :: ATOM_LOCALNAME__75_6C } ; +("unicode") => { $ crate :: ATOM_LOCALNAME__75_6E_69_63_6F_64_65 } ; +("union") => { $ crate :: ATOM_LOCALNAME__75_6E_69_6F_6E } ; +("uplimit") => { $ crate :: ATOM_LOCALNAME__75_70_6C_69_6D_69_74 } ; +("use") => { $ crate :: ATOM_LOCALNAME__75_73_65 } ; +("usemap") => { $ crate :: ATOM_LOCALNAME__75_73_65_6D_61_70 } ; +("valign") => { $ crate :: ATOM_LOCALNAME__76_61_6C_69_67_6E } ; +("value") => { $ crate :: ATOM_LOCALNAME__76_61_6C_75_65 } ; +("values") => { $ crate :: ATOM_LOCALNAME__76_61_6C_75_65_73 } ; +("var") => { $ crate :: ATOM_LOCALNAME__76_61_72 } ; +("vector") => { $ crate :: ATOM_LOCALNAME__76_65_63_74_6F_72 } ; +("version") => { $ crate :: ATOM_LOCALNAME__76_65_72_73_69_6F_6E } ; +("video") => { $ crate :: ATOM_LOCALNAME__76_69_64_65_6F } ; +("view") => { $ crate :: ATOM_LOCALNAME__76_69_65_77 } ; +("viewBox") => { $ crate :: ATOM_LOCALNAME__76_69_65_77_42_6F_78 } ; +("viewbox") => { $ crate :: ATOM_LOCALNAME__76_69_65_77_62_6F_78 } ; +("vkern") => { $ crate :: ATOM_LOCALNAME__76_6B_65_72_6E } ; +("vlink") => { $ crate :: ATOM_LOCALNAME__76_6C_69_6E_6B } ; +("vspace") => { $ crate :: ATOM_LOCALNAME__76_73_70_61_63_65 } ; +("wbr") => { $ crate :: ATOM_LOCALNAME__77_62_72 } ; +("when") => { $ crate :: ATOM_LOCALNAME__77_68_65_6E } ; +("width") => { $ crate :: ATOM_LOCALNAME__77_69_64_74_68 } ; +("widths") => { $ crate :: ATOM_LOCALNAME__77_69_64_74_68_73 } ; +("wrap") => { $ crate :: ATOM_LOCALNAME__77_72_61_70 } ; +("x") => { $ crate :: ATOM_LOCALNAME__78 } ; +("x1") => { $ crate :: ATOM_LOCALNAME__78_31 } ; +("x2") => { $ crate :: ATOM_LOCALNAME__78_32 } ; +("xlink") => { $ crate :: ATOM_LOCALNAME__78_6C_69_6E_6B } ; +("xmlns") => { $ crate :: ATOM_LOCALNAME__78_6D_6C_6E_73 } ; +("xmp") => { $ crate :: ATOM_LOCALNAME__78_6D_70 } ; +("xor") => { $ crate :: ATOM_LOCALNAME__78_6F_72 } ; +("xref") => { $ crate :: ATOM_LOCALNAME__78_72_65_66 } ; +("y") => { $ crate :: ATOM_LOCALNAME__79 } ; +("y1") => { $ crate :: ATOM_LOCALNAME__79_31 } ; +("y2") => { $ crate :: ATOM_LOCALNAME__79_32 } ; +("z") => { $ crate :: ATOM_LOCALNAME__7A } ; +}pub type Prefix = :: string_cache :: Atom < PrefixStaticSet > ; +# [derive (PartialEq , Eq , PartialOrd , Ord)] pub struct PrefixStaticSet ; +impl :: string_cache :: StaticAtomSet for PrefixStaticSet { fn get () -> & 'static :: string_cache :: PhfStrSet { static SET : :: string_cache :: PhfStrSet = :: string_cache :: PhfStrSet { key : 12913932095322966823u64 , disps : & [(0u32 , 0u32)] , atoms : & [""] , hashes : & [4082073077u32] } ; +& SET } fn empty_string_index () -> u32 { 0u32 } } pub const ATOM_PREFIX_ : Prefix = Prefix :: pack_static (0u32) ; +pub const ATOM_PREFIX__2A : Prefix = Prefix :: pack_inline (10752u64 , 1u8) ; +pub const ATOM_PREFIX__68_74_6D_6C : Prefix = Prefix :: pack_inline (465692813312u64 , 4u8) ; +pub const ATOM_PREFIX__6D_61_74_68_6D_6C : Prefix = Prefix :: pack_inline (30519592881319168u64 , 6u8) ; +pub const ATOM_PREFIX__73_76_67 : Prefix = Prefix :: pack_inline (1735815936u64 , 3u8) ; +pub const ATOM_PREFIX__78_6C_69_6E_6B : Prefix = Prefix :: pack_inline (118121959290880u64 , 5u8) ; +pub const ATOM_PREFIX__78_6D_6C : Prefix = Prefix :: pack_inline (1819113472u64 , 3u8) ; +pub const ATOM_PREFIX__78_6D_6C_6E_73 : Prefix = Prefix :: pack_inline (126918102710272u64 , 5u8) ; +# [doc = "Takes a namespace prefix string and returns its key in a string cache."] # [macro_export] macro_rules ! namespace_prefix { ("") => { $ crate :: ATOM_PREFIX_ } ; +("*") => { $ crate :: ATOM_PREFIX__2A } ; +("html") => { $ crate :: ATOM_PREFIX__68_74_6D_6C } ; +("mathml") => { $ crate :: ATOM_PREFIX__6D_61_74_68_6D_6C } ; +("svg") => { $ crate :: ATOM_PREFIX__73_76_67 } ; +("xlink") => { $ crate :: ATOM_PREFIX__78_6C_69_6E_6B } ; +("xml") => { $ crate :: ATOM_PREFIX__78_6D_6C } ; +("xmlns") => { $ crate :: ATOM_PREFIX__78_6D_6C_6E_73 } ; +}pub type Namespace = :: string_cache :: Atom < NamespaceStaticSet > ; +# [derive (PartialEq , Eq , PartialOrd , Ord)] pub struct NamespaceStaticSet ; +impl :: string_cache :: StaticAtomSet for NamespaceStaticSet { fn get () -> & 'static :: string_cache :: PhfStrSet { static SET : :: string_cache :: PhfStrSet = :: string_cache :: PhfStrSet { key : 15467950696543387533u64 , disps : & [(1u32 , 0u32) , (1u32 , 4u32)] , atoms : & ["http://www.w3.org/1999/xhtml", +"http://www.w3.org/2000/svg", +"http://www.w3.org/XML/1998/namespace", +"http://www.w3.org/1998/Math/MathML", +"http://www.w3.org/1999/xlink", +"", +"http://www.w3.org/2000/xmlns/"] , hashes : & [1895391709u32 , 3069293938u32 , 2770585642u32 , 1216229735u32 , 2535599242u32 , 811901650u32 , 830072559u32] } ; +& SET } fn empty_string_index () -> u32 { 5u32 } } pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_39_2F_78_68_74_6D_6C : Namespace = Namespace :: pack_static (0u32) ; +pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_32_30_30_30_2F_73_76_67 : Namespace = Namespace :: pack_static (1u32) ; +pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_58_4D_4C_2F_31_39_39_38_2F_6E_61_6D_65_73_70_61_63_65 : Namespace = Namespace :: pack_static (2u32) ; +pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_38_2F_4D_61_74_68_2F_4D_61_74_68_4D_4C : Namespace = Namespace :: pack_static (3u32) ; +pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_39_2F_78_6C_69_6E_6B : Namespace = Namespace :: pack_static (4u32) ; +pub const ATOM_NAMESPACE_ : Namespace = Namespace :: pack_static (5u32) ; +pub const ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_32_30_30_30_2F_78_6D_6C_6E_73_2F : Namespace = Namespace :: pack_static (6u32) ; +pub const ATOM_NAMESPACE__2A : Namespace = Namespace :: pack_inline (10752u64 , 1u8) ; +# [doc = "Takes a namespace url string and returns its key in a string cache."] # [macro_export] macro_rules ! namespace_url { ("http://www.w3.org/1999/xhtml") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_39_2F_78_68_74_6D_6C } ; +("http://www.w3.org/2000/svg") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_32_30_30_30_2F_73_76_67 } ; +("http://www.w3.org/XML/1998/namespace") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_58_4D_4C_2F_31_39_39_38_2F_6E_61_6D_65_73_70_61_63_65 } ; +("http://www.w3.org/1998/Math/MathML") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_38_2F_4D_61_74_68_2F_4D_61_74_68_4D_4C } ; +("http://www.w3.org/1999/xlink") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_31_39_39_39_2F_78_6C_69_6E_6B } ; +("") => { $ crate :: ATOM_NAMESPACE_ } ; +("http://www.w3.org/2000/xmlns/") => { $ crate :: ATOM_NAMESPACE__68_74_74_70_3A_2F_2F_77_77_77_2E_77_33_2E_6F_72_67_2F_32_30_30_30_2F_78_6D_6C_6E_73_2F } ; +("*") => { $ crate :: ATOM_NAMESPACE__2A } ; +} + /// Maps the input of [`namespace_prefix!`](macro.namespace_prefix.html) to + /// the output of [`namespace_url!`](macro.namespace_url.html). + /// + #[macro_export] macro_rules! ns { + +() => { namespace_url!("") }; +(*) => { namespace_url!("*") }; +(html) => { namespace_url!("http://www.w3.org/1999/xhtml") }; +(xml) => { namespace_url!("http://www.w3.org/XML/1998/namespace") }; +(xmlns) => { namespace_url!("http://www.w3.org/2000/xmlns/") }; +(xlink) => { namespace_url!("http://www.w3.org/1999/xlink") }; +(svg) => { namespace_url!("http://www.w3.org/2000/svg") }; +(mathml) => { namespace_url!("http://www.w3.org/1998/Math/MathML") }; +} diff --git a/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/out/named_entities.rs b/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/out/named_entities.rs new file mode 100644 index 0000000..5c967d5 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/out/named_entities.rs @@ -0,0 +1,11844 @@ + +/// A map of entity names to their codepoints. The second codepoint will +/// be 0 if the entity contains a single codepoint. Entities have their preceding '&' removed. +/// +/// # Examples +/// +/// ``` +/// use markup5ever::data::NAMED_ENTITIES; +/// +/// assert_eq!(NAMED_ENTITIES.get("gt;").unwrap(), &(62, 0)); +/// ``` + +pub static NAMED_ENTITIES: Map<&'static str, (u32, u32)> = ::phf::Map { + key: 12913932095322966823, + disps: &[ + (0, 147), + (0, 2), + (0, 236), + (0, 9), + (0, 66), + (0, 0), + (0, 38), + (0, 154), + (0, 0), + (0, 2), + (0, 777), + (0, 73), + (0, 65), + (0, 0), + (0, 1), + (0, 0), + (0, 24), + (0, 131), + (0, 0), + (0, 5), + (0, 0), + (0, 193), + (0, 25), + (0, 7), + (0, 442), + (0, 154), + (0, 240), + (0, 8), + (0, 6), + (0, 53), + (0, 17), + (0, 4), + (0, 35), + (0, 346), + (0, 91), + (0, 85), + (0, 89), + (0, 0), + (0, 787), + (0, 27), + (0, 1), + (0, 4), + (0, 7), + (0, 79), + (0, 7), + (0, 44), + (0, 82), + (0, 437), + (0, 4), + (0, 58), + (0, 3), + (0, 51), + (0, 1), + (0, 65), + (0, 249), + (0, 9), + (0, 1), + (0, 66), + (0, 30), + (0, 1244), + (0, 21), + (0, 1), + (0, 15), + (0, 510), + (0, 5), + (0, 0), + (0, 9), + (0, 0), + (0, 5), + (0, 86), + (0, 46), + (0, 118), + (0, 28), + (0, 30), + (0, 0), + (0, 0), + (0, 0), + (0, 1009), + (0, 1), + (0, 10), + (0, 259), + (0, 326), + (0, 29), + (0, 1), + (0, 0), + (0, 889), + (0, 9), + (0, 165), + (0, 73), + (0, 19), + (0, 69), + (0, 237), + (0, 6), + (0, 686), + (0, 2), + (0, 6), + (0, 83), + (0, 1955), + (0, 116), + (0, 161), + (0, 2), + (0, 88), + (0, 10), + (0, 1066), + (0, 1), + (0, 1414), + (0, 3), + (0, 57), + (0, 10), + (0, 9), + (0, 276), + (0, 464), + (0, 26), + (0, 458), + (0, 9), + (0, 699), + (0, 117), + (0, 1136), + (0, 26), + (0, 218), + (0, 31), + (0, 46), + (0, 261), + (0, 183), + (0, 319), + (0, 1553), + (0, 232), + (0, 1), + (0, 1279), + (0, 13), + (0, 8), + (0, 1), + (0, 1728), + (0, 600), + (0, 4), + (0, 584), + (0, 1), + (0, 146), + (0, 342), + (0, 1442), + (0, 223), + (0, 473), + (0, 230), + (0, 510), + (0, 19), + (0, 255), + (0, 90), + (0, 152), + (0, 1), + (0, 1773), + (0, 3333), + (0, 1), + (0, 1855), + (0, 30), + (0, 1151), + (0, 132), + (0, 980), + (0, 0), + (0, 11), + (0, 1021), + (0, 398), + (0, 2985), + (0, 936), + (0, 26), + (0, 1563), + (0, 15), + (0, 26), + (0, 2), + (0, 570), + (0, 868), + (0, 200), + (0, 302), + (0, 27), + (0, 686), + (0, 196), + (0, 16), + (0, 33), + (0, 19), + (0, 162), + (0, 11), + (0, 24), + (0, 8), + (0, 7), + (0, 83), + (0, 766), + (0, 8), + (0, 1639), + (0, 555), + (0, 191), + (0, 0), + (0, 4), + (0, 28), + (0, 32), + (0, 25), + (0, 564), + (0, 11), + (0, 3), + (0, 8), + (0, 25), + (0, 3), + (0, 225), + (0, 47), + (0, 274), + (0, 51), + (0, 60), + (0, 2), + (0, 142), + (0, 84), + (0, 1236), + (0, 374), + (0, 528), + (0, 742), + (0, 156), + (0, 1), + (0, 0), + (0, 148), + (0, 7), + (0, 1), + (0, 5), + (0, 174), + (0, 479), + (0, 465), + (0, 125), + (0, 94), + (0, 8), + (0, 63), + (0, 119), + (0, 844), + (0, 147), + (0, 1), + (0, 325), + (0, 224), + (0, 1), + (0, 757), + (0, 4), + (0, 2), + (0, 69), + (0, 17), + (0, 165), + (0, 118), + (0, 20), + (0, 88), + (0, 12), + (0, 184), + (0, 1), + (0, 349), + (0, 319), + (0, 22), + (0, 247), + (0, 15), + (0, 255), + (0, 0), + (0, 0), + (0, 4), + (0, 0), + (0, 1951), + (0, 18), + (0, 58), + (0, 620), + (0, 495), + (0, 5), + (0, 2), + (0, 1166), + (0, 2), + (0, 0), + (0, 29), + (0, 2), + (0, 51), + (0, 7), + (0, 1075), + (0, 48), + (0, 680), + (0, 2970), + (0, 1), + (0, 255), + (0, 16), + (0, 57), + (0, 13), + (0, 2), + (0, 364), + (0, 75), + (0, 1821), + (0, 1), + (0, 0), + (0, 2), + (0, 10), + (0, 372), + (0, 6), + (0, 123), + (0, 1753), + (0, 103), + (0, 2), + (0, 2), + (0, 441), + (0, 38), + (0, 3), + (0, 4), + (0, 79), + (0, 0), + (0, 1), + (0, 272), + (0, 3), + (0, 2), + (0, 0), + (0, 42), + (0, 522), + (0, 42), + (0, 462), + (0, 31), + (0, 3), + (0, 18), + (0, 88), + (0, 13), + (0, 47), + (0, 2005), + (0, 76), + (0, 88), + (0, 18), + (0, 36), + (0, 26), + (0, 29), + (0, 7), + (0, 47), + (0, 14), + (0, 46), + (0, 169), + (0, 205), + (0, 1), + (0, 100), + (0, 523), + (0, 93), + (0, 23), + (0, 6), + (0, 74), + (0, 1), + (0, 4), + (0, 4), + (0, 115), + (0, 6), + (0, 5511), + (0, 6), + (0, 815), + (0, 2), + (0, 123), + (0, 332), + (0, 693), + (0, 328), + (0, 752), + (0, 39), + (0, 13), + (0, 101), + (0, 0), + (0, 2031), + (0, 65), + (0, 842), + (0, 13), + (0, 5), + (0, 1114), + (0, 25), + (0, 167), + (0, 457), + (0, 828), + (0, 156), + (0, 2), + (0, 500), + (0, 0), + (0, 348), + (0, 0), + (0, 15), + (0, 4), + (0, 7), + (0, 0), + (0, 596), + (0, 531), + (0, 92), + (0, 79), + (0, 1122), + (0, 108), + (0, 44), + (0, 75), + (0, 225), + (0, 438), + (0, 37), + (0, 12), + (0, 1), + (0, 1095), + (0, 131), + (0, 36), + (0, 299), + (0, 784), + (0, 1576), + (0, 396), + (0, 6), + (0, 0), + (0, 219), + (0, 6), + (0, 233), + (0, 726), + (0, 22), + (0, 301), + (0, 28), + (0, 1363), + (0, 45), + (0, 1761), + (0, 0), + (0, 744), + (0, 25), + (0, 2), + (0, 10), + (0, 6), + (0, 2), + (0, 1417), + (0, 822), + (0, 101), + (0, 4), + (0, 60), + (0, 226), + (0, 28), + (0, 13), + (0, 598), + (0, 4), + (0, 75), + (0, 2555), + (0, 6), + (0, 0), + (0, 74), + (0, 256), + (0, 11), + (0, 0), + (0, 231), + (0, 0), + (0, 4), + (0, 409), + (0, 68), + (0, 19), + (0, 176), + (0, 1), + (0, 416), + (0, 903), + (0, 28), + (0, 4), + (0, 287), + (0, 1781), + (0, 2163), + (0, 19), + (0, 3), + (0, 173), + (0, 1), + (0, 195), + (0, 67), + (0, 14), + (0, 157), + (0, 1), + (0, 130), + (0, 44), + (0, 68), + (0, 19), + (0, 11), + (0, 14), + (0, 198), + (0, 2), + (0, 30), + (0, 457), + (0, 634), + (0, 365), + (0, 10), + (0, 68), + (0, 63), + (0, 850), + (0, 28), + (0, 57), + (0, 638), + (0, 33), + (0, 250), + (0, 228), + (0, 2719), + (0, 21), + (0, 1), + (0, 71), + (0, 0), + (0, 132), + (0, 551), + (0, 23), + (0, 0), + (0, 831), + (0, 3), + (0, 2), + (0, 0), + (0, 7), + (0, 4873), + (0, 285), + (0, 21), + (0, 232), + (0, 1950), + (0, 164), + (0, 33), + (0, 237), + (0, 0), + (0, 1755), + (0, 0), + (0, 1922), + (0, 80), + (0, 4), + (0, 319), + (0, 6), + (0, 65), + (0, 1664), + (0, 319), + (0, 176), + (0, 784), + (0, 4), + (0, 15), + (0, 15), + (0, 4), + (0, 1), + (0, 8), + (0, 1009), + (0, 123), + (0, 83), + (0, 0), + (0, 25), + (0, 66), + (0, 11), + (0, 18), + (0, 7), + (0, 136), + (0, 0), + (0, 6), + (0, 648), + (0, 424), + (0, 0), + (0, 100), + (0, 579), + (0, 74), + (0, 6), + (0, 188), + (0, 3469), + (0, 293), + (0, 1), + (0, 145), + (0, 87), + (0, 46), + (0, 1088), + (0, 45), + (0, 131), + (0, 2375), + (0, 87), + (0, 2), + (0, 0), + (0, 1), + (0, 0), + (0, 167), + (0, 29), + (0, 121), + (0, 249), + (0, 9), + (0, 260), + (0, 24), + (0, 143), + (0, 59), + (0, 321), + (0, 273), + (0, 86), + (0, 457), + (0, 1028), + (0, 1327), + (0, 1093), + (0, 53), + (0, 324), + (0, 17), + (0, 7), + (0, 441), + (0, 312), + (0, 701), + (0, 10), + (0, 473), + (0, 2398), + (0, 460), + (0, 0), + (0, 364), + (0, 394), + (0, 334), + (0, 156), + (0, 560), + (0, 366), + (0, 456), + (0, 609), + (0, 224), + (0, 51), + (0, 972), + (0, 48), + (0, 964), + (0, 0), + (0, 0), + (0, 1371), + (0, 104), + (0, 73), + (0, 463), + (0, 1), + (0, 24), + (0, 40), + (0, 2), + (0, 162), + (0, 1), + (0, 49), + (0, 0), + (0, 0), + (0, 352), + (0, 243), + (0, 679), + (0, 64), + (0, 473), + (0, 95), + (0, 215), + (0, 312), + (0, 141), + (0, 4), + (0, 1024), + (0, 0), + (0, 1211), + (0, 11), + (0, 8), + (0, 25), + (0, 194), + (0, 261), + (0, 25), + (0, 145), + (0, 69), + (0, 125), + (0, 1), + (0, 2), + (0, 198), + (0, 180), + (0, 350), + (0, 1), + (0, 36), + (0, 340), + (0, 29), + (0, 99), + (0, 868), + (0, 0), + (0, 542), + (0, 255), + (0, 273), + (0, 12), + (0, 975), + (0, 3664), + (0, 206), + (0, 240), + (0, 2), + (0, 838), + (0, 316), + (0, 107), + (0, 1), + (0, 53), + (0, 62), + (0, 3), + (0, 1500), + (0, 1009), + (0, 145), + (0, 243), + (0, 1418), + (0, 6), + (0, 51), + (0, 225), + (0, 85), + (0, 10), + (0, 1), + (0, 69), + (0, 36), + (0, 22), + (0, 3), + (0, 69), + (0, 8), + (0, 47), + (0, 1351), + (0, 283), + (0, 12), + (0, 226), + (0, 603), + (0, 62), + (0, 2070), + (0, 8), + (0, 2), + (0, 631), + (0, 276), + (0, 449), + (0, 115), + (0, 240), + (0, 27), + (0, 1106), + (0, 7), + (0, 1), + (0, 85), + (0, 0), + (0, 42), + (0, 7), + (0, 1), + (0, 1611), + (0, 17), + (0, 0), + (0, 1), + (0, 143), + (0, 257), + (0, 220), + (0, 397), + (0, 353), + (0, 1), + (0, 5), + (0, 935), + (0, 1), + (0, 9), + (0, 5), + (0, 53), + (0, 4), + (0, 2559), + (0, 37), + (0, 75), + (0, 540), + (0, 2488), + (0, 136), + (0, 236), + (0, 57), + (0, 12), + (0, 54), + (0, 14), + (0, 648), + (0, 4), + (0, 0), + (0, 9), + (0, 635), + (0, 0), + (0, 357), + (0, 115), + (0, 91), + (0, 7), + (0, 221), + (0, 892), + (0, 2383), + (0, 551), + (0, 29), + (0, 18), + (0, 1416), + (0, 2697), + (0, 69), + (0, 131), + (0, 97), + (0, 1671), + (0, 39), + (0, 0), + (0, 179), + (0, 0), + (0, 360), + (0, 144), + (0, 649), + (0, 1516), + (0, 163), + (0, 52), + (0, 5), + (0, 531), + (0, 1028), + (0, 121), + (0, 204), + (0, 364), + (0, 867), + (0, 123), + (0, 38), + (0, 8), + (0, 2334), + (0, 9), + (0, 34), + (0, 351), + (0, 166), + (0, 1), + (0, 902), + (0, 832), + (0, 117), + (0, 256), + (0, 41), + (0, 4846), + (0, 444), + (0, 225), + (0, 25), + (0, 0), + (0, 1963), + (0, 0), + (0, 1834), + (0, 90), + (0, 30), + (0, 1786), + (0, 6), + (0, 42), + (0, 284), + (0, 281), + (0, 192), + (0, 11), + (0, 187), + (0, 2), + (0, 7), + (0, 4), + (0, 33), + (0, 847), + (0, 1), + (0, 0), + (0, 223), + (0, 52), + (0, 979), + (0, 11), + (0, 6), + (0, 121), + (0, 337), + (0, 92), + (0, 49), + (0, 87), + (0, 596), + (0, 58), + (0, 0), + (0, 0), + (0, 30), + (0, 19), + (0, 4), + (0, 849), + (0, 0), + (0, 12), + (0, 145), + (0, 857), + (0, 1), + (0, 177), + (0, 45), + (0, 3), + (0, 18), + (0, 5), + (0, 59), + (0, 1254), + (0, 335), + (0, 16), + (0, 26), + (0, 15), + (0, 1733), + (0, 1), + (0, 0), + (0, 1006), + (0, 1001), + (0, 219), + (0, 12), + (0, 271), + (0, 5), + (0, 34), + (0, 7), + (0, 11), + (0, 1), + (0, 12), + (0, 102), + (0, 31), + (0, 65), + (0, 408), + (0, 12), + (0, 2), + (0, 88), + (0, 3280), + (0, 93), + (0, 4546), + (0, 1530), + (0, 14), + (0, 26), + (0, 34), + (0, 4), + (0, 1), + (0, 279), + (0, 696), + (0, 64), + (0, 221), + (0, 39), + (0, 71), + (0, 81), + (0, 0), + (0, 15), + (0, 210), + (0, 72), + (0, 696), + (0, 2337), + (0, 954), + (0, 170), + (0, 1415), + (0, 180), + (0, 2104), + (0, 4), + (0, 38), + (0, 2), + (0, 5), + (0, 14), + (0, 98), + (0, 1), + (0, 193), + (0, 188), + (0, 61), + (0, 91), + (0, 1085), + (0, 586), + (0, 20), + (0, 611), + (0, 33), + (0, 5063), + (0, 0), + (0, 3200), + (0, 22), + (0, 757), + (0, 51), + (0, 1), + (0, 6), + (0, 150), + (0, 7), + (0, 1), + (0, 51), + (0, 526), + (0, 30), + (0, 0), + (0, 193), + (0, 482), + (0, 38), + (0, 2391), + (0, 2), + (0, 27), + (0, 30), + (0, 35), + (0, 0), + (0, 0), + (0, 1), + (0, 131), + (0, 2952), + (0, 38), + (0, 215), + (0, 5), + (0, 0), + (0, 1659), + (0, 181), + (0, 39), + (0, 23), + (0, 14), + (0, 3862), + (0, 197), + (0, 1), + (0, 0), + (0, 2428), + (0, 239), + (0, 1), + (0, 0), + (0, 106), + (0, 0), + (0, 9), + (0, 0), + (0, 85), + (0, 867), + (0, 205), + (0, 138), + (0, 1413), + (0, 70), + (0, 498), + (0, 1), + (0, 2269), + (0, 16), + (0, 6), + (0, 0), + (0, 2), + (0, 30), + (0, 282), + (0, 566), + (0, 54), + (0, 54), + (0, 182), + (0, 131), + (0, 1240), + (0, 89), + (0, 15), + (0, 36), + (0, 450), + (0, 9), + (0, 79), + (0, 2435), + (0, 5), + (0, 1589), + (0, 2), + (0, 97), + (0, 962), + (0, 21), + (0, 36), + (0, 409), + (0, 537), + (0, 1068), + (0, 9), + (0, 126), + (0, 830), + (0, 1), + (0, 1392), + (0, 1), + (0, 55), + (0, 2), + (0, 1), + (0, 305), + (0, 3260), + (0, 427), + (0, 262), + (0, 5), + (0, 253), + (0, 879), + (0, 52), + (0, 160), + (0, 4056), + (0, 3806), + (0, 6), + (0, 1539), + (0, 9), + (0, 580), + (0, 198), + (0, 617), + (0, 65), + (0, 14), + (0, 2), + (0, 50), + (0, 0), + (0, 50), + (0, 32), + (0, 6), + (0, 1402), + (0, 1074), + (0, 4601), + (0, 230), + (0, 23), + (0, 40), + (0, 789), + (0, 938), + (0, 1555), + (0, 2), + (0, 594), + (0, 2), + (0, 14), + (0, 223), + (0, 8), + (0, 75), + (0, 1198), + (0, 136), + (0, 0), + (0, 3), + (0, 864), + (0, 137), + (0, 9290), + (0, 0), + (0, 209), + (0, 165), + (0, 836), + (0, 103), + (0, 720), + (0, 708), + (0, 2), + (0, 0), + (0, 150), + (0, 1021), + (0, 41), + (0, 3329), + (0, 1), + (0, 191), + (0, 1), + (0, 148), + (0, 27), + (0, 154), + (0, 1498), + (0, 733), + (0, 154), + (0, 1), + (0, 3982), + (0, 8095), + (0, 3), + (0, 67), + (0, 1001), + (0, 703), + (0, 756), + (0, 76), + (0, 34), + (0, 963), + (0, 1197), + (0, 0), + (0, 2), + (0, 121), + (0, 1062), + (0, 776), + (0, 145), + (0, 276), + (0, 0), + (0, 20), + (0, 5030), + (0, 100), + (0, 3104), + (0, 1), + (0, 1), + (0, 15), + (0, 0), + (0, 2313), + (0, 31), + (0, 5277), + (0, 11), + (0, 434), + (0, 112), + (0, 2), + (0, 635), + (0, 339), + (0, 1103), + (0, 23), + (0, 86), + (0, 1), + (0, 145), + (0, 61), + (0, 1242), + (0, 0), + (0, 0), + (0, 2), + (0, 4), + (0, 28), + (0, 7), + (0, 5580), + (0, 22), + (0, 1125), + (0, 20), + (0, 137), + (0, 3609), + (0, 131), + (0, 6), + (0, 0), + (0, 1289), + (0, 2), + (0, 1559), + (0, 598), + (0, 11), + (0, 1909), + (0, 1591), + (0, 22), + (0, 0), + (0, 23), + (0, 296), + (0, 19), + (0, 8441), + (0, 0), + (0, 9), + (0, 8), + (0, 2), + (0, 1993), + (0, 69), + (0, 19), + (0, 19), + (0, 5), + (0, 331), + (0, 16), + (0, 6), + (0, 3347), + (0, 49), + (0, 17), + (0, 1), + (0, 516), + (0, 156), + (0, 26), + (0, 501), + (0, 72), + (0, 106), + (0, 2), + (0, 336), + (0, 22), + (0, 0), + (0, 107), + (0, 939), + (0, 341), + (0, 19), + (0, 2877), + (0, 6), + (0, 177), + (0, 821), + (0, 1100), + (0, 194), + (0, 24), + (0, 599), + (0, 18), + (0, 21), + (0, 17), + (0, 42), + (0, 7), + (0, 86), + (0, 0), + (0, 238), + (0, 8), + (0, 5), + (0, 1), + (0, 68), + (0, 9193), + (0, 11), + (0, 6763), + (0, 158), + (0, 386), + (0, 4041), + (0, 63), + (0, 1819), + (0, 18), + (0, 0), + (0, 2036), + (0, 345), + (0, 2203), + (0, 113), + (0, 6), + (0, 371), + (0, 7), + (0, 194), + (0, 26), + (0, 3184), + (0, 185), + (0, 136), + (0, 35), + (0, 1883), + (0, 981), + (0, 1497), + (0, 140), + (0, 6), + (0, 0), + (0, 5), + (0, 4246), + (0, 121), + (0, 404), + (0, 398), + (0, 260), + (0, 368), + (0, 212), + (0, 2), + (0, 30), + (0, 45), + (0, 988), + (0, 82), + (0, 79), + (0, 1556), + (0, 5), + (0, 168), + (0, 0), + (0, 336), + (0, 1699), + (0, 141), + (0, 13), + (0, 0), + (0, 242), + (0, 40), + (0, 263), + (0, 6464), + (0, 1332), + (0, 4), + (0, 459), + (0, 7), + (0, 20), + (0, 1), + (0, 3523), + (0, 19), + (0, 0), + (0, 11), + (0, 8), + (0, 24), + (0, 608), + (0, 8), + (0, 50), + (0, 1), + (0, 2), + (0, 1723), + (0, 157), + (1, 108), + (0, 3), + (0, 0), + (0, 7122), + (0, 151), + (0, 4), + (0, 0), + (0, 1), + (0, 30), + (0, 5289), + (0, 2), + (0, 122), + (0, 66), + (0, 3), + (0, 7), + (0, 8258), + (0, 227), + (0, 3), + (0, 652), + (0, 574), + (0, 376), + (0, 522), + (0, 110), + (0, 1), + (0, 920), + (0, 2012), + (0, 4754), + (0, 412), + (0, 2774), + (0, 12), + (0, 1262), + (0, 144), + (0, 181), + (0, 94), + (0, 1903), + (0, 249), + (0, 8), + (0, 9), + (0, 96), + (0, 1323), + (0, 65), + (0, 20), + (0, 1270), + (0, 0), + (0, 1551), + (0, 13), + (0, 0), + (0, 5090), + (0, 2007), + (0, 6405), + (1, 891), + (0, 2327), + (0, 2029), + (0, 1078), + (0, 2), + (0, 3), + (0, 1), + (0, 661), + (0, 71), + (0, 43), + (0, 73), + (0, 12), + (0, 223), + (0, 90), + (0, 1360), + (0, 5), + (0, 329), + (0, 29), + (0, 398), + (0, 25), + (0, 14), + (0, 980), + (0, 271), + (0, 0), + (0, 466), + (0, 6142), + (0, 247), + (0, 172), + (0, 47), + (0, 38), + (0, 1576), + (0, 364), + (0, 4167), + (0, 3656), + (0, 3934), + (0, 721), + (0, 1329), + (0, 96), + (0, 625), + (0, 82), + (0, 72), + (0, 1763), + (0, 20), + (0, 947), + (0, 62), + (0, 478), + (0, 0), + (0, 1), + (0, 5), + (0, 1), + (0, 272), + (0, 1522), + (0, 857), + (0, 10), + (0, 4), + (0, 51), + (0, 252), + (0, 4), + (0, 90), + (0, 65), + (0, 1148), + (0, 990), + (0, 39), + (0, 6), + (0, 3926), + (0, 49), + (0, 1362), + (0, 9), + (0, 35), + (0, 0), + (0, 3880), + (0, 330), + (0, 32), + (0, 16), + (0, 5919), + (0, 22), + (0, 122), + (0, 3527), + (0, 16), + (0, 1085), + (0, 308), + (0, 134), + (0, 185), + (0, 138), + (0, 2443), + (0, 754), + (0, 506), + (0, 184), + (0, 6121), + (0, 1), + (0, 162), + (0, 17), + (0, 28), + (0, 17), + (0, 3843), + (0, 5), + (0, 158), + (0, 29), + (0, 42), + (0, 664), + (0, 388), + (0, 1209), + (0, 0), + (0, 1640), + (0, 58), + (0, 1), + (0, 18), + (0, 41), + (0, 7498), + (0, 7138), + (0, 5), + (0, 134), + (0, 9), + (0, 1), + (0, 207), + (0, 82), + (0, 7984), + (0, 42), + (0, 903), + (0, 258), + (0, 9392), + (0, 36), + (0, 46), + (0, 0), + (0, 228), + (0, 1633), + (0, 2445), + (0, 163), + (0, 885), + (0, 2340), + (0, 1173), + (0, 137), + (0, 5859), + (0, 202), + (0, 12), + (0, 1147), + (0, 3825), + (0, 525), + (0, 198), + (0, 182), + (0, 326), + (0, 210), + (0, 3107), + (0, 50), + (0, 257), + (0, 47), + (0, 832), + (0, 4166), + (0, 1592), + (0, 16), + (0, 10), + (1, 6970), + (0, 36), + (0, 16), + (0, 1), + (0, 9), + (0, 31), + (0, 4294), + (0, 4069), + (0, 28), + (0, 476), + (0, 2810), + (0, 403), + (0, 225), + (0, 583), + (0, 29), + (0, 261), + (0, 705), + (0, 5), + (0, 1938), + (0, 948), + (0, 7), + (0, 3653), + (0, 612), + (0, 7244), + (0, 29), + (0, 154), + (0, 111), + (0, 164), + (0, 61), + (0, 36), + (0, 226), + (0, 7905), + (0, 767), + (0, 0), + (0, 32), + (0, 6), + (0, 949), + (0, 2011), + (0, 25), + (0, 0), + (0, 27), + (0, 993), + (0, 108), + (0, 496), + (0, 2591), + (0, 2225), + (1, 1620), + (0, 182), + (0, 369), + (0, 2765), + (0, 165), + (0, 78), + (0, 313), + (0, 163), + (0, 26), + (0, 5609), + (0, 123), + (0, 8), + (0, 750), + (0, 3621), + (0, 272), + (0, 1), + (0, 0), + (0, 2785), + (0, 1), + (0, 9118), + (0, 1166), + (0, 1564), + (0, 0), + (0, 2468), + (0, 20), + (0, 4), + (0, 1506), + (1, 371), + (0, 533), + (0, 7), + (0, 38), + (0, 1051), + (0, 4), + (0, 7), + (0, 5), + (0, 1), + (0, 1177), + (0, 6404), + (0, 64), + (0, 51), + (0, 17), + (0, 4), + (0, 3), + (0, 0), + (0, 31), + (0, 367), + (0, 211), + (0, 1066), + (0, 693), + (0, 74), + (0, 1175), + (0, 25), + (0, 900), + (0, 1848), + (0, 19), + (0, 64), + (0, 18), + (0, 28), + (1, 4212), + (0, 1909), + (0, 1480), + (0, 176), + (0, 33), + (0, 0), + (0, 223), + (0, 2), + (0, 34), + (0, 444), + (0, 1564), + (0, 25), + (0, 1085), + (0, 808), + (0, 5), + (0, 0), + (0, 27), + (0, 6328), + (0, 9), + (0, 69), + (0, 282), + (0, 1832), + (1, 8685), + (0, 299), + (0, 6813), + (0, 4), + (0, 167), + (0, 348), + (0, 4403), + (1, 3801), + (0, 66), + (0, 6324), + (0, 1879), + (0, 33), + (0, 145), + (0, 180), + (0, 4675), + (0, 11), + (0, 0), + (0, 38), + (0, 1119), + (0, 100), + (0, 430), + (0, 843), + (0, 77), + (0, 8663), + (0, 7), + (0, 6805), + (1, 2379), + (0, 1556), + (0, 6029), + (0, 6596), + (0, 99), + (0, 6554), + (0, 1025), + (0, 1223), + (0, 58), + (0, 7), + (0, 737), + (0, 443), + (0, 407), + (0, 219), + (0, 2227), + (0, 2286), + (0, 4165), + (0, 54), + (0, 298), + (2, 3184), + (0, 185), + (0, 8251), + (0, 0), + (0, 33), + (0, 30), + (0, 2), + (0, 310), + (0, 802), + (0, 5196), + (0, 2985), + (0, 211), + (0, 66), + (0, 74), + (0, 97), + (0, 40), + (0, 1), + (0, 521), + (0, 8), + (0, 813), + (0, 974), + (0, 3396), + (1, 5828), + (0, 40), + (0, 277), + (0, 17), + (0, 597), + (0, 718), + (0, 280), + (0, 9), + (0, 4), + (0, 340), + (0, 0), + (0, 552), + (0, 1), + (0, 275), + (1, 5278), + (0, 58), + (0, 3), + (0, 5371), + (0, 1), + (0, 16), + (0, 162), + (1, 8009), + (0, 835), + (0, 4572), + (0, 242), + (0, 510), + (0, 1), + (0, 52), + (0, 57), + (0, 517), + (0, 4415), + (0, 16), + (0, 3225), + (0, 31), + (0, 99), + (0, 0), + (0, 146), + (0, 0), + (0, 161), + (0, 4), + (0, 4), + (0, 216), + (0, 0), + (0, 1160), + (0, 5675), + (0, 154), + (0, 112), + (0, 132), + (0, 2), + (0, 66), + (0, 53), + (0, 51), + (0, 0), + (0, 325), + (0, 2296), + (0, 109), + (0, 7514), + (0, 2850), + (0, 44), + (0, 1530), + (0, 248), + (0, 654), + (0, 44), + (0, 2282), + (0, 299), + (0, 2151), + (0, 2886), + (0, 114), + (0, 5823), + (0, 182), + (0, 872), + (0, 0), + (0, 3170), + (0, 0), + (0, 50), + (0, 71), + (0, 33), + (0, 11), + (0, 1), + (0, 1258), + (0, 14), + (0, 3255), + (0, 216), + (0, 6127), + (0, 2144), + (0, 0), + (0, 2588), + (0, 1169), + (0, 1311), + (0, 588), + (0, 5), + (0, 174), + (0, 1393), + (0, 63), + (0, 50), + (0, 3955), + (0, 473), + (0, 1519), + (0, 0), + (0, 327), + (0, 2475), + (0, 15), + (0, 0), + (2, 2826), + (0, 2896), + (0, 0), + (0, 7005), + (1, 2910), + (0, 217), + (0, 2121), + (0, 75), + (0, 336), + (0, 9830), + (1, 1127), + (0, 26), + (0, 250), + (0, 1550), + (0, 31), + (0, 170), + (0, 21), + (0, 3383), + (0, 3241), + (0, 8864), + (0, 426), + (0, 45), + (0, 5113), + (0, 622), + (0, 288), + (0, 3), + (0, 3236), + (0, 23), + (0, 3996), + (0, 2), + (0, 2), + (0, 584), + (0, 0), + (0, 4), + (0, 0), + (0, 6088), + (0, 5672), + (0, 3725), + (0, 1803), + (0, 230), + (0, 251), + (0, 725), + (0, 2059), + (0, 421), + (0, 86), + (0, 5), + (0, 6924), + (0, 28), + (0, 1440), + (0, 1976), + (0, 1836), + (0, 2), + (1, 1615), + (0, 4462), + (0, 4846), + (0, 5436), + (0, 123), + (1, 519), + (0, 87), + (0, 1595), + (0, 2401), + (0, 5), + (0, 0), + (1, 341), + (0, 4), + (0, 899), + (0, 1939), + (0, 2), + (0, 1105), + (0, 1273), + (0, 74), + (0, 56), + (0, 1685), + (0, 1154), + (0, 1130), + (0, 19), + (0, 5971), + (0, 2940), + (0, 8020), + (0, 0), + (0, 116), + (2, 5930), + (0, 41), + (0, 162), + (0, 57), + (0, 1375), + (0, 398), + (0, 4008), + (0, 9287), + (0, 817), + (0, 0), + (0, 2793), + (0, 556), + (0, 997), + (0, 282), + (0, 0), + (0, 553), + (0, 5742), + (0, 382), + (0, 6670), + (0, 5301), + (0, 0), + (2, 9658), + (0, 463), + (1, 2981), + (0, 3716), + (0, 4894), + (0, 35), + (1, 75), + (0, 86), + (0, 3384), + (0, 0), + (0, 73), + (0, 635), + (0, 2), + (0, 7793), + (1, 126), + (0, 21), + (0, 173), + (0, 505), + (0, 1558), + (0, 45), + (0, 3137), + (2, 9424), + (0, 4030), + (0, 1749), + (0, 172), + (0, 1309), + (0, 240), + (0, 735), + (0, 400), + (0, 4), + (0, 160), + (0, 0), + (0, 1), + (0, 105), + (0, 1), + (0, 5051), + (0, 365), + (0, 146), + (0, 30), + (0, 3), + (0, 470), + (0, 452), + (0, 1824), + (0, 1716), + (0, 15), + (0, 1028), + (0, 332), + (0, 3606), + (0, 19), + (0, 6), + (0, 405), + (0, 7770), + (0, 4300), + (0, 247), + (0, 7550), + (0, 6643), + (2, 1261), + (0, 7147), + (0, 30), + (0, 9), + (0, 223), + (0, 403), + (0, 372), + (3, 4276), + (0, 9288), + (0, 6212), + (0, 714), + (4, 6377), + (0, 4), + (0, 46), + (1, 8403), + (0, 142), + (0, 4462), + (0, 7581), + (0, 12), + (0, 0), + (0, 4864), + (0, 2961), + (0, 265), + (0, 19), + (0, 119), + (0, 5454), + (2, 2981), + (0, 3230), + (0, 3), + (0, 0), + (0, 6000), + (1, 9805), + (0, 354), + (0, 61), + (0, 8529), + (0, 0), + (0, 2076), + (0, 629), + (1, 1194), + (0, 3377), + (0, 0), + (0, 1956), + (0, 1749), + (3, 3998), + (0, 109), + (0, 16), + (0, 1467), + (0, 5195), + (0, 35), + (0, 9700), + (0, 4738), + ], + entries: &[ + ("blacktrianglel", (0, 0)), + ("sharp", (0, 0)), + ("bowtie", (0, 0)), + ("NotPrecedesSlantEqual;", (8928, 0)), + ("Aci", (0, 0)), + ("Atilde;", (195, 0)), + ("Zacute;", (377, 0)), + ("gvertn", (0, 0)), + ("ordm", (186, 0)), + ("LeftV", (0, 0)), + ("circlearrowl", (0, 0)), + ("updo", (0, 0)), + ("wcirc", (0, 0)), + ("gtlPar;", (10645, 0)), + ("leftharpoondow", (0, 0)), + ("NotGreaterLess", (0, 0)), + ("curlyeqpr", (0, 0)), + ("Downarrow", (0, 0)), + ("mdas", (0, 0)), + ("timesd;", (10800, 0)), + ("smash", (0, 0)), + ("VerticalL", (0, 0)), + ("LessSlantE", (0, 0)), + ("Lamb", (0, 0)), + ("prap;", (10935, 0)), + ("Updownarro", (0, 0)), + ("right", (0, 0)), + ("bull", (0, 0)), + ("plusdo", (0, 0)), + ("Iuk", (0, 0)), + ("xmap;", (10236, 0)), + ("We", (0, 0)), + ("iiiin", (0, 0)), + ("Rsh;", (8625, 0)), + ("sac", (0, 0)), + ("nVDash;", (8879, 0)), + ("ns", (0, 0)), + ("NotNestedGr", (0, 0)), + ("RightCe", (0, 0)), + ("lce", (0, 0)), + ("lb", (0, 0)), + ("dArr;", (8659, 0)), + ("Hfr;", (8460, 0)), + ("lnE", (0, 0)), + ("emsp14", (0, 0)), + ("Ubre", (0, 0)), + ("bumpE", (0, 0)), + ("DoubleDo", (0, 0)), + ("g", (0, 0)), + ("grave", (0, 0)), + ("DoubleDownAr", (0, 0)), + ("bigt", (0, 0)), + ("nbu", (0, 0)), + ("Becau", (0, 0)), + ("curvearrowright;", (8631, 0)), + ("RightDownVector", (0, 0)), + ("xwedge;", (8896, 0)), + ("CircleTi", (0, 0)), + ("dashv", (0, 0)), + ("CupCa", (0, 0)), + ("vpro", (0, 0)), + ("scsim", (0, 0)), + ("kgr", (0, 0)), + ("fpartint", (0, 0)), + ("ShortDo", (0, 0)), + ("iiot", (0, 0)), + ("escr", (0, 0)), + ("lmidot", (0, 0)), + ("na", (0, 0)), + ("bigcup;", (8899, 0)), + ("bn", (0, 0)), + ("gneq", (0, 0)), + ("rBar", (0, 0)), + ("preceq;", (10927, 0)), + ("MediumSp", (0, 0)), + ("Ha", (0, 0)), + ("xve", (0, 0)), + ("tce", (0, 0)), + ("bsim", (0, 0)), + ("NotGreaterSlantEq", (0, 0)), + ("LeftAngleBra", (0, 0)), + ("nat", (0, 0)), + ("Acirc", (194, 0)), + ("Kappa", (0, 0)), + ("Uscr", (0, 0)), + ("intca", (0, 0)), + ("cylct", (0, 0)), + ("blk14", (0, 0)), + ("vdash", (0, 0)), + ("Laplacetr", (0, 0)), + ("Imaginar", (0, 0)), + ("Uma", (0, 0)), + ("DoubleLongRightArrow", (0, 0)), + ("lurd", (0, 0)), + ("icirc", (238, 0)), + ("lsquor;", (8218, 0)), + ("Idot", (0, 0)), + ("LessFull", (0, 0)), + ("ShortRightAr", (0, 0)), + ("DownLeftTeeVe", (0, 0)), + ("iiiint;", (10764, 0)), + ("ods", (0, 0)), + ("cwcon", (0, 0)), + ("ruluha", (0, 0)), + ("leftrightsquiga", (0, 0)), + ("odash", (0, 0)), + ("gel", (0, 0)), + ("Bu", (0, 0)), + ("xscr;", (120013, 0)), + ("succn", (0, 0)), + ("capdot;", (10816, 0)), + ("rat", (0, 0)), + ("topfor", (0, 0)), + ("NestedG", (0, 0)), + ("ContourIn", (0, 0)), + ("EqualT", (0, 0)), + ("Gscr;", (119970, 0)), + ("UpperLeftAr", (0, 0)), + ("pc", (0, 0)), + ("drcro", (0, 0)), + ("Vsc", (0, 0)), + ("thetasy", (0, 0)), + ("Clockwise", (0, 0)), + ("bigvee;", (8897, 0)), + ("jopf;", (120155, 0)), + ("Hcir", (0, 0)), + ("sw", (0, 0)), + ("Upsilon", (0, 0)), + ("CounterClockwiseContourIntegral;", (8755, 0)), + ("plusdu", (0, 0)), + ("searr;", (8600, 0)), + ("mnplus;", (8723, 0)), + ("shchc", (0, 0)), + ("clubsuit", (0, 0)), + ("epars", (0, 0)), + ("SquareUni", (0, 0)), + ("NotSubs", (0, 0)), + ("nltr", (0, 0)), + ("curly", (0, 0)), + ("NotGreater", (0, 0)), + ("DoubleLe", (0, 0)), + ("DoubleLongLeftRigh", (0, 0)), + ("ori", (0, 0)), + ("LeftAngl", (0, 0)), + ("jma", (0, 0)), + ("SquareSubs", (0, 0)), + ("Or", (0, 0)), + ("gna", (0, 0)), + ("circledast", (0, 0)), + ("RightUpVe", (0, 0)), + ("leftt", (0, 0)), + ("EmptySmallS", (0, 0)), + ("natu", (0, 0)), + ("succe", (0, 0)), + ("downdownar", (0, 0)), + ("Ogr", (0, 0)), + ("GT", (62, 0)), + ("YAcy;", (1071, 0)), + ("lcedil", (0, 0)), + ("clu", (0, 0)), + ("sd", (0, 0)), + ("nprec;", (8832, 0)), + ("NotSucceedsEq", (0, 0)), + ("slar", (0, 0)), + ("LongLeftRightA", (0, 0)), + ("smt;", (10922, 0)), + ("UnionPlus", (0, 0)), + ("col", (0, 0)), + ("clubsu", (0, 0)), + ("ruluh", (0, 0)), + ("vprop;", (8733, 0)), + ("gtreqles", (0, 0)), + ("succcurl", (0, 0)), + ("dotminus;", (8760, 0)), + ("DoubleLeftTee", (0, 0)), + ("duhar;", (10607, 0)), + ("Suc", (0, 0)), + ("DiacriticalDoubleAc", (0, 0)), + ("eqcolon;", (8789, 0)), + ("upharpoo", (0, 0)), + ("looparrow", (0, 0)), + ("ycirc;", (375, 0)), + ("gtra", (0, 0)), + ("succnsim;", (8937, 0)), + ("LeftRightV", (0, 0)), + ("dag", (0, 0)), + ("NotLessSlantEqual", (0, 0)), + ("varsigm", (0, 0)), + ("m", (0, 0)), + ("ouml", (246, 0)), + ("hkse", (0, 0)), + ("NotEqualTilde", (0, 0)), + ("NotGreaterTi", (0, 0)), + ("approxe", (0, 0)), + ("LeftTeeVe", (0, 0)), + ("sem", (0, 0)), + ("ou", (0, 0)), + ("straight", (0, 0)), + ("scc", (0, 0)), + ("ReverseElem", (0, 0)), + ("curlyeqprec;", (8926, 0)), + ("efr;", (120098, 0)), + ("ropl", (0, 0)), + ("downarro", (0, 0)), + ("Tild", (0, 0)), + ("SquareSubsetEqual;", (8849, 0)), + ("NotV", (0, 0)), + ("Ea", (0, 0)), + ("Lopf", (0, 0)), + ("swarr;", (8601, 0)), + ("rtimes;", (8906, 0)), + ("h", (0, 0)), + ("ntlg;", (8824, 0)), + ("Omicron;", (927, 0)), + ("Map;", (10501, 0)), + ("Gce", (0, 0)), + ("ZeroWidthSpac", (0, 0)), + ("Topf;", (120139, 0)), + ("ic", (0, 0)), + ("uarr;", (8593, 0)), + ("util", (0, 0)), + ("frac13", (0, 0)), + ("Longleftrightarro", (0, 0)), + ("Ufr", (0, 0)), + ("infin", (0, 0)), + ("Eq", (0, 0)), + ("cudarrl;", (10552, 0)), + ("Beta", (0, 0)), + ("NotEl", (0, 0)), + ("KHcy;", (1061, 0)), + ("diamonds", (0, 0)), + ("cca", (0, 0)), + ("LessF", (0, 0)), + ("nshortparallel;", (8742, 0)), + ("vsc", (0, 0)), + ("OverParenthe", (0, 0)), + ("Diamond", (0, 0)), + ("RightTri", (0, 0)), + ("iscr", (0, 0)), + ("HumpEqu", (0, 0)), + ("centerdot;", (183, 0)), + ("DownArrowUpA", (0, 0)), + ("lagran;", (8466, 0)), + ("dotpl", (0, 0)), + ("ulcorne", (0, 0)), + ("UpperLeftArr", (0, 0)), + ("lAarr", (0, 0)), + ("lhb", (0, 0)), + ("supnE", (0, 0)), + ("Brev", (0, 0)), + ("ulco", (0, 0)), + ("ccap", (0, 0)), + ("OverBracket", (0, 0)), + ("lArr", (0, 0)), + ("supplus", (0, 0)), + ("expe", (0, 0)), + ("expecta", (0, 0)), + ("om", (0, 0)), + ("eg;", (10906, 0)), + ("Ici", (0, 0)), + ("leftthreetime", (0, 0)), + ("iprod", (0, 0)), + ("ssetmn;", (8726, 0)), + ("A", (0, 0)), + ("ntrianglelefteq;", (8940, 0)), + ("Laplac", (0, 0)), + ("smeparsl;", (10724, 0)), + ("RightT", (0, 0)), + ("rsq", (0, 0)), + ("LeftUpDownVector;", (10577, 0)), + ("Rcedil;", (342, 0)), + ("Iot", (0, 0)), + ("NotSucceeds;", (8833, 0)), + ("uum", (0, 0)), + ("Llef", (0, 0)), + ("NegativeThinS", (0, 0)), + ("fj", (0, 0)), + ("breve", (0, 0)), + ("tbr", (0, 0)), + ("bkarow;", (10509, 0)), + ("NotSquare", (0, 0)), + ("RightArrowBar;", (8677, 0)), + ("RightDownVecto", (0, 0)), + ("Fi", (0, 0)), + ("Kfr", (0, 0)), + ("rightarrow;", (8594, 0)), + ("UpEquilib", (0, 0)), + ("leftrightsqu", (0, 0)), + ("succcurlye", (0, 0)), + ("blacktrianglele", (0, 0)), + ("Lcedi", (0, 0)), + ("djcy", (0, 0)), + ("ndash", (0, 0)), + ("LeftUpDownV", (0, 0)), + ("LessSlantEqu", (0, 0)), + ("RightDownTe", (0, 0)), + ("Ycy", (0, 0)), + ("exc", (0, 0)), + ("lef", (0, 0)), + ("ratai", (0, 0)), + ("LessFullEqual", (0, 0)), + ("icirc;", (238, 0)), + ("Nf", (0, 0)), + ("NotLessGr", (0, 0)), + ("gtreq", (0, 0)), + ("nvDa", (0, 0)), + ("Gcirc", (0, 0)), + ("otil", (0, 0)), + ("Hf", (0, 0)), + ("LeftUpTe", (0, 0)), + ("ThinSpace;", (8201, 0)), + ("el;", (10905, 0)), + ("Qf", (0, 0)), + ("backprime", (0, 0)), + ("LeftTr", (0, 0)), + ("DownRig", (0, 0)), + ("xhArr;", (10234, 0)), + ("Rop", (0, 0)), + ("DownTeeArrow", (0, 0)), + ("lozeng", (0, 0)), + ("CloseCurlyDoubleQu", (0, 0)), + ("Kcy", (0, 0)), + ("gsc", (0, 0)), + ("ReverseEquilibriu", (0, 0)), + ("GreaterSla", (0, 0)), + ("larrsim", (0, 0)), + ("vangrt;", (10652, 0)), + ("Rcaro", (0, 0)), + ("nco", (0, 0)), + ("LessEqual", (0, 0)), + ("uHar;", (10595, 0)), + ("andd", (0, 0)), + ("hstrok;", (295, 0)), + ("hyb", (0, 0)), + ("PrecedesTild", (0, 0)), + ("rangle;", (10217, 0)), + ("ContourIntegr", (0, 0)), + ("RBarr", (0, 0)), + ("Vscr", (0, 0)), + ("Negativ", (0, 0)), + ("Yo", (0, 0)), + ("cula", (0, 0)), + ("nGt", (0, 0)), + ("lesseqqg", (0, 0)), + ("rscr;", (120007, 0)), + ("nesim", (0, 0)), + ("LeftDownTeeVector;", (10593, 0)), + ("barv", (0, 0)), + ("succnapprox;", (10938, 0)), + ("lbrksld;", (10639, 0)), + ("triangl", (0, 0)), + ("CircleDo", (0, 0)), + ("xlarr", (0, 0)), + ("larrbf", (0, 0)), + ("larr", (0, 0)), + ("fal", (0, 0)), + ("Triple", (0, 0)), + ("opar", (0, 0)), + ("Uci", (0, 0)), + ("Roun", (0, 0)), + ("DoubleRightAr", (0, 0)), + ("planckh", (0, 0)), + ("EmptyVer", (0, 0)), + ("Prim", (0, 0)), + ("apo", (0, 0)), + ("RightTriangleEqua", (0, 0)), + ("blackt", (0, 0)), + ("Diac", (0, 0)), + ("UnderBracket", (0, 0)), + ("larrlp", (0, 0)), + ("Dot;", (168, 0)), + ("asympeq", (0, 0)), + ("mDDo", (0, 0)), + ("Uuml;", (220, 0)), + ("Tce", (0, 0)), + ("Integral", (0, 0)), + ("llcor", (0, 0)), + ("Prece", (0, 0)), + ("Part", (0, 0)), + ("herco", (0, 0)), + ("cacute", (0, 0)), + ("profli", (0, 0)), + ("of", (0, 0)), + ("uopf", (0, 0)), + ("Ti", (0, 0)), + ("edot;", (279, 0)), + ("drcor", (0, 0)), + ("RightArrowLeftArro", (0, 0)), + ("rightsquigarrow;", (8605, 0)), + ("upuparr", (0, 0)), + ("queste", (0, 0)), + ("Longleft", (0, 0)), + ("laemptyv", (0, 0)), + ("trie", (0, 0)), + ("hAr", (0, 0)), + ("xutr", (0, 0)), + ("siml;", (10909, 0)), + ("sup1", (185, 0)), + ("PrecedesSlan", (0, 0)), + ("Ntilde", (209, 0)), + ("uwa", (0, 0)), + ("frac34", (190, 0)), + ("boxVR;", (9568, 0)), + ("zig", (0, 0)), + ("dotsqua", (0, 0)), + ("dtr", (0, 0)), + ("Diacritic", (0, 0)), + ("gjcy;", (1107, 0)), + ("epsiv;", (1013, 0)), + ("IE", (0, 0)), + ("boxDR", (0, 0)), + ("fa", (0, 0)), + ("npara", (0, 0)), + ("frac45", (0, 0)), + ("pi;", (960, 0)), + ("cirmi", (0, 0)), + ("leftthreeti", (0, 0)), + ("bigotimes", (0, 0)), + ("bigsqc", (0, 0)), + ("xlarr;", (10229, 0)), + ("lhbl", (0, 0)), + ("ldc", (0, 0)), + ("ugrave;", (249, 0)), + ("NotHumpDownHump;", (8782, 824)), + ("Rho;", (929, 0)), + ("rarrs", (0, 0)), + ("NotLessS", (0, 0)), + ("inca", (0, 0)), + ("RoundImplies", (0, 0)), + ("FilledVerySmallS", (0, 0)), + ("esi", (0, 0)), + ("orslo", (0, 0)), + ("ddag", (0, 0)), + ("curre", (0, 0)), + ("uuarr;", (8648, 0)), + ("up", (0, 0)), + ("ccar", (0, 0)), + ("ri", (0, 0)), + ("lhard", (0, 0)), + ("nles", (0, 0)), + ("Utild", (0, 0)), + ("eqcirc;", (8790, 0)), + ("ltime", (0, 0)), + ("yacy;", (1103, 0)), + ("malt;", (10016, 0)), + ("aac", (0, 0)), + ("RoundImp", (0, 0)), + ("phmmat", (0, 0)), + ("RightDownTeeVect", (0, 0)), + ("cap;", (8745, 0)), + ("jm", (0, 0)), + ("looparrowle", (0, 0)), + ("profline;", (8978, 0)), + ("plus", (0, 0)), + ("straightepsi", (0, 0)), + ("RightCeili", (0, 0)), + ("awconin", (0, 0)), + ("mapstodown", (0, 0)), + ("triangleleft", (0, 0)), + ("gc", (0, 0)), + ("oo", (0, 0)), + ("zet", (0, 0)), + ("setmin", (0, 0)), + ("twix", (0, 0)), + ("mapstoleft", (0, 0)), + ("LowerLeftArrow", (0, 0)), + ("sqsub", (0, 0)), + ("iocy", (0, 0)), + ("imagpar", (0, 0)), + ("softcy", (0, 0)), + ("acd;", (8767, 0)), + ("Ium", (0, 0)), + ("DoubleLongRightArrow;", (10233, 0)), + ("Pri", (0, 0)), + ("tfr", (0, 0)), + ("DoubleLo", (0, 0)), + ("Tilde;", (8764, 0)), + ("Equal", (0, 0)), + ("Iu", (0, 0)), + ("Hs", (0, 0)), + ("nvl", (0, 0)), + ("ClockwiseContourIntegra", (0, 0)), + ("RightTriangleBar", (0, 0)), + ("downharpoonle", (0, 0)), + ("expec", (0, 0)), + ("bigotim", (0, 0)), + ("AMP;", (38, 0)), + ("boxH;", (9552, 0)), + ("Intersectio", (0, 0)), + ("aum", (0, 0)), + ("niv", (0, 0)), + ("nlefta", (0, 0)), + ("lesseq", (0, 0)), + ("mar", (0, 0)), + ("male", (0, 0)), + ("curlyeqpre", (0, 0)), + ("LowerRight", (0, 0)), + ("lon", (0, 0)), + ("Exponenti", (0, 0)), + ("nexist", (0, 0)), + ("siml", (0, 0)), + ("NotGreaterT", (0, 0)), + ("rfloor;", (8971, 0)), + ("Bsc", (0, 0)), + ("Otim", (0, 0)), + ("capbrcup", (0, 0)), + ("varkappa;", (1008, 0)), + ("circ", (0, 0)), + ("plan", (0, 0)), + ("Sacu", (0, 0)), + ("varsig", (0, 0)), + ("RoundImpli", (0, 0)), + ("jsercy;", (1112, 0)), + ("di", (0, 0)), + ("bepsi", (0, 0)), + ("hearts", (0, 0)), + ("nleqsla", (0, 0)), + ("RuleDel", (0, 0)), + ("boxhd", (0, 0)), + ("profl", (0, 0)), + ("downharpo", (0, 0)), + ("raemptyv;", (10675, 0)), + ("ominus", (0, 0)), + ("bsolb;", (10693, 0)), + ("straightepsilon;", (1013, 0)), + ("nsub", (0, 0)), + ("DoubleLongLeftArro", (0, 0)), + ("ensp", (0, 0)), + ("Aopf", (0, 0)), + ("gacute", (0, 0)), + ("Colone;", (10868, 0)), + ("zw", (0, 0)), + ("leftharpoo", (0, 0)), + ("UpArrowDownAr", (0, 0)), + ("IEcy", (0, 0)), + ("shortpar", (0, 0)), + ("nGtv;", (8811, 824)), + ("downh", (0, 0)), + ("commat;", (64, 0)), + ("ContourIntegral;", (8750, 0)), + ("eacut", (0, 0)), + ("gnapprox;", (10890, 0)), + ("breve;", (728, 0)), + ("iinf", (0, 0)), + ("hom", (0, 0)), + ("nlA", (0, 0)), + ("cupdo", (0, 0)), + ("ee", (0, 0)), + ("TScy;", (1062, 0)), + ("LeftDoubl", (0, 0)), + ("Succee", (0, 0)), + ("curlyv", (0, 0)), + ("rightarro", (0, 0)), + ("rbrace", (0, 0)), + ("NotGreaterFullE", (0, 0)), + ("quest;", (63, 0)), + ("cuvee", (0, 0)), + ("Cou", (0, 0)), + ("ReverseE", (0, 0)), + ("barwedg", (0, 0)), + ("succc", (0, 0)), + ("B", (0, 0)), + ("Uring", (0, 0)), + ("supne;", (8843, 0)), + ("capca", (0, 0)), + ("ohba", (0, 0)), + ("CloseCurlyQuote", (0, 0)), + ("nleqs", (0, 0)), + ("thksi", (0, 0)), + ("dol", (0, 0)), + ("ro", (0, 0)), + ("NotSucceedsSlantEqu", (0, 0)), + ("VerticalTi", (0, 0)), + ("LessGrea", (0, 0)), + ("copro", (0, 0)), + ("LessSlantEqual", (0, 0)), + ("upsilo", (0, 0)), + ("osol", (0, 0)), + ("peri", (0, 0)), + ("NotTildeE", (0, 0)), + ("varsupse", (0, 0)), + ("Eogon;", (280, 0)), + ("Ys", (0, 0)), + ("NotGreaterSlant", (0, 0)), + ("PrecedesEqual;", (10927, 0)), + ("FilledSmall", (0, 0)), + ("updownarrow;", (8597, 0)), + ("cupdot;", (8845, 0)), + ("Verb", (0, 0)), + ("subse", (0, 0)), + ("swar", (0, 0)), + ("pop", (0, 0)), + ("YAcy", (0, 0)), + ("PrecedesEqual", (0, 0)), + ("rHa", (0, 0)), + ("Bernoullis;", (8492, 0)), + ("DownRigh", (0, 0)), + ("circlearrowlef", (0, 0)), + ("hair", (0, 0)), + ("odi", (0, 0)), + ("NotTildeFullEqu", (0, 0)), + ("ntrianglele", (0, 0)), + ("Verbar;", (8214, 0)), + ("llcorner;", (8990, 0)), + ("AMP", (38, 0)), + ("hardc", (0, 0)), + ("LessFullEqu", (0, 0)), + ("ucy", (0, 0)), + ("rtri", (0, 0)), + ("Longleftarrow;", (10232, 0)), + ("SquareSupersetE", (0, 0)), + ("gesles;", (10900, 0)), + ("gg", (0, 0)), + ("Nscr;", (119977, 0)), + ("sqsubsete", (0, 0)), + ("twoheadrig", (0, 0)), + ("curvear", (0, 0)), + ("eqcirc", (0, 0)), + ("ClockwiseContourInt", (0, 0)), + ("Mop", (0, 0)), + ("pointint", (0, 0)), + ("NotTild", (0, 0)), + ("empt", (0, 0)), + ("Sma", (0, 0)), + ("aleph;", (8501, 0)), + ("copysr;", (8471, 0)), + ("la", (0, 0)), + ("lAa", (0, 0)), + ("Iop", (0, 0)), + ("CloseCurlyDoubleQuot", (0, 0)), + ("ltrie;", (8884, 0)), + ("rul", (0, 0)), + ("Umacr;", (362, 0)), + ("NJcy;", (1034, 0)), + ("NotSupersetEqual;", (8841, 0)), + ("rlar", (0, 0)), + ("NotPrecedesEqual", (0, 0)), + ("sopf;", (120164, 0)), + ("fork;", (8916, 0)), + ("Jopf;", (120129, 0)), + ("nsccue", (0, 0)), + ("leftrightarrow;", (8596, 0)), + ("ForAll", (0, 0)), + ("urin", (0, 0)), + ("nvap", (0, 0)), + ("squf;", (9642, 0)), + ("Gbreve", (0, 0)), + ("lmidot;", (320, 0)), + ("mapstoleft;", (8612, 0)), + ("er", (0, 0)), + ("LeftDownTeeVe", (0, 0)), + ("ominu", (0, 0)), + ("sharp;", (9839, 0)), + ("ccaps;", (10829, 0)), + ("Thet", (0, 0)), + ("Upsilo", (0, 0)), + ("rightharpoonup;", (8640, 0)), + ("spades;", (9824, 0)), + ("rightharpoond", (0, 0)), + ("SquareSubset;", (8847, 0)), + ("yscr;", (120014, 0)), + ("iac", (0, 0)), + ("permil", (0, 0)), + ("Rsh", (0, 0)), + ("rangd", (0, 0)), + ("els", (0, 0)), + ("cuepr", (0, 0)), + ("Ama", (0, 0)), + ("TripleDot;", (8411, 0)), + ("OpenCurlyDoubleQuote;", (8220, 0)), + ("gesl;", (8923, 65024)), + ("yci", (0, 0)), + ("nlAr", (0, 0)), + ("notnivc", (0, 0)), + ("gscr;", (8458, 0)), + ("NegativeMe", (0, 0)), + ("twi", (0, 0)), + ("lvertneqq", (0, 0)), + ("eth", (240, 0)), + ("Pi", (0, 0)), + ("MediumSpac", (0, 0)), + ("ultri", (0, 0)), + ("LongLeftA", (0, 0)), + ("SquareSupers", (0, 0)), + ("TildeT", (0, 0)), + ("FilledSmallSquare;", (9724, 0)), + ("nvrAr", (0, 0)), + ("nsho", (0, 0)), + ("RightAngl", (0, 0)), + ("dcy;", (1076, 0)), + ("RightVecto", (0, 0)), + ("szlig", (223, 0)), + ("NotSucce", (0, 0)), + ("lna", (0, 0)), + ("Not;", (10988, 0)), + ("InvisibleTimes", (0, 0)), + ("acir", (0, 0)), + ("uharr", (0, 0)), + ("RightFloor", (0, 0)), + ("npars", (0, 0)), + ("DownArro", (0, 0)), + ("squ", (0, 0)), + ("numer", (0, 0)), + ("Cc", (0, 0)), + ("succappr", (0, 0)), + ("cwco", (0, 0)), + ("dso", (0, 0)), + ("bu", (0, 0)), + ("Alph", (0, 0)), + ("UpTeeArrow;", (8613, 0)), + ("upharpoonrig", (0, 0)), + ("rarrt", (0, 0)), + ("expectati", (0, 0)), + ("easter", (0, 0)), + ("nsime", (0, 0)), + ("OpenC", (0, 0)), + ("lparl", (0, 0)), + ("LongRightA", (0, 0)), + ("NotGreate", (0, 0)), + ("LeftTria", (0, 0)), + ("sscr", (0, 0)), + ("drbkarow;", (10512, 0)), + ("Fscr;", (8497, 0)), + ("scap", (0, 0)), + ("minusdu", (0, 0)), + ("ycy", (0, 0)), + ("curlyve", (0, 0)), + ("trpezium", (0, 0)), + ("smtes", (0, 0)), + ("subr", (0, 0)), + ("For", (0, 0)), + ("dzcy;", (1119, 0)), + ("UpEquilibriu", (0, 0)), + ("order", (0, 0)), + ("iogon;", (303, 0)), + ("racute;", (341, 0)), + ("shortparallel", (0, 0)), + ("TildeFul", (0, 0)), + ("Ro", (0, 0)), + ("proflin", (0, 0)), + ("iukc", (0, 0)), + ("VeryThi", (0, 0)), + ("blo", (0, 0)), + ("Lmidot;", (319, 0)), + ("IJlig", (0, 0)), + ("LeftAng", (0, 0)), + ("circe", (0, 0)), + ("Ts", (0, 0)), + ("exponentiale;", (8519, 0)), + ("TildeFullE", (0, 0)), + ("angmsdab;", (10665, 0)), + ("Jo", (0, 0)), + ("Lscr;", (8466, 0)), + ("dis", (0, 0)), + ("Ut", (0, 0)), + ("odo", (0, 0)), + ("uwangle;", (10663, 0)), + ("apaci", (0, 0)), + ("comm", (0, 0)), + ("cirs", (0, 0)), + ("risin", (0, 0)), + ("NotSquareSupe", (0, 0)), + ("uparrow", (0, 0)), + ("UnderBracke", (0, 0)), + ("xlar", (0, 0)), + ("NotPrecedesEqual;", (10927, 824)), + ("Zscr;", (119989, 0)), + ("barwedge", (0, 0)), + ("Oop", (0, 0)), + ("bigsq", (0, 0)), + ("llcorn", (0, 0)), + ("backepsil", (0, 0)), + ("LJc", (0, 0)), + ("kh", (0, 0)), + ("varsupsetneq;", (8843, 65024)), + ("ve", (0, 0)), + ("omicron;", (959, 0)), + ("leftrightarro", (0, 0)), + ("leftrightarr", (0, 0)), + ("caret", (0, 0)), + ("topf", (0, 0)), + ("sdot", (0, 0)), + ("thickappr", (0, 0)), + ("radi", (0, 0)), + ("dopf;", (120149, 0)), + ("nex", (0, 0)), + ("copy", (169, 0)), + ("NotLessE", (0, 0)), + ("vltri", (0, 0)), + ("comma;", (44, 0)), + ("hoar", (0, 0)), + ("orig", (0, 0)), + ("nshortparal", (0, 0)), + ("rightsquiga", (0, 0)), + ("RightDown", (0, 0)), + ("ap", (0, 0)), + ("nltrie", (0, 0)), + ("HumpDow", (0, 0)), + ("straightph", (0, 0)), + ("circlearrowleft;", (8634, 0)), + ("tw", (0, 0)), + ("olci", (0, 0)), + ("phmm", (0, 0)), + ("SOFT", (0, 0)), + ("gopf", (0, 0)), + ("dotsquare", (0, 0)), + ("Bumpeq", (0, 0)), + ("erar", (0, 0)), + ("boxbo", (0, 0)), + ("nVDas", (0, 0)), + ("shch", (0, 0)), + ("OverBra", (0, 0)), + ("angmsdac", (0, 0)), + ("RightArrowLef", (0, 0)), + ("bigca", (0, 0)), + ("NotReverseElemen", (0, 0)), + ("perp", (0, 0)), + ("appr", (0, 0)), + ("js", (0, 0)), + ("profline", (0, 0)), + ("Wedge", (0, 0)), + ("LeftArrow;", (8592, 0)), + ("nwnear;", (10535, 0)), + ("eqvparsl", (0, 0)), + ("Vbar;", (10987, 0)), + ("lpa", (0, 0)), + ("searrow", (0, 0)), + ("DJ", (0, 0)), + ("nlarr;", (8602, 0)), + ("bigci", (0, 0)), + ("Clockwi", (0, 0)), + ("Sups", (0, 0)), + ("loarr", (0, 0)), + ("Cro", (0, 0)), + ("Beca", (0, 0)), + ("cirf", (0, 0)), + ("NotLeftTriangleEqu", (0, 0)), + ("vartriangl", (0, 0)), + ("real", (0, 0)), + ("ZeroWidthSp", (0, 0)), + ("lba", (0, 0)), + ("NotRightTriangleBar", (0, 0)), + ("oplus;", (8853, 0)), + ("times", (215, 0)), + ("rightr", (0, 0)), + ("leftri", (0, 0)), + ("Dcaron", (0, 0)), + ("rarrbfs;", (10528, 0)), + ("nLeftrightarr", (0, 0)), + ("ReverseUpE", (0, 0)), + ("DownLeftRightVector;", (10576, 0)), + ("pert", (0, 0)), + ("DoubleLongRightArro", (0, 0)), + ("iukcy;", (1110, 0)), + ("lowa", (0, 0)), + ("og", (0, 0)), + ("Cente", (0, 0)), + ("kcedil;", (311, 0)), + ("DoubleLongLeftRightArro", (0, 0)), + ("bnot", (0, 0)), + ("nrarrw;", (8605, 824)), + ("rfr;", (120111, 0)), + ("oti", (0, 0)), + ("Left", (0, 0)), + ("OverParenthesis;", (9180, 0)), + ("measuredangle", (0, 0)), + ("fpart", (0, 0)), + ("dotsquar", (0, 0)), + ("NotSquareSubsetEq", (0, 0)), + ("DiacriticalAcute", (0, 0)), + ("DS", (0, 0)), + ("downharpoonleft;", (8643, 0)), + ("harrcir", (0, 0)), + ("DownLeftRightVec", (0, 0)), + ("Egr", (0, 0)), + ("Jserc", (0, 0)), + ("ShortL", (0, 0)), + ("lessd", (0, 0)), + ("succcu", (0, 0)), + ("dotplu", (0, 0)), + ("PlusM", (0, 0)), + ("hyph", (0, 0)), + ("rightleftarrows;", (8644, 0)), + ("LeftTe", (0, 0)), + ("EmptySmallSqua", (0, 0)), + ("NotGreaterFullEq", (0, 0)), + ("cl", (0, 0)), + ("rppo", (0, 0)), + ("ldqu", (0, 0)), + ("DiacriticalDot", (0, 0)), + ("nvdas", (0, 0)), + ("LessTil", (0, 0)), + ("LowerRightArrow", (0, 0)), + ("dalet", (0, 0)), + ("Otilde", (213, 0)), + ("sh", (0, 0)), + ("lbrke;", (10635, 0)), + ("seArr;", (8664, 0)), + ("oma", (0, 0)), + ("gEl", (0, 0)), + ("NonBreakingSpace", (0, 0)), + ("LessEqualGreat", (0, 0)), + ("uhblk;", (9600, 0)), + ("timesba", (0, 0)), + ("bopf", (0, 0)), + ("CloseCu", (0, 0)), + ("curlyvee", (0, 0)), + ("thksim;", (8764, 0)), + ("boxvH;", (9578, 0)), + ("luruha", (0, 0)), + ("vns", (0, 0)), + ("Hopf;", (8461, 0)), + ("CloseCurlyDoub", (0, 0)), + ("Square;", (9633, 0)), + ("subs", (0, 0)), + ("fltn", (0, 0)), + ("diga", (0, 0)), + ("rfloo", (0, 0)), + ("nspar;", (8742, 0)), + ("rightleftar", (0, 0)), + ("precnapprox;", (10937, 0)), + ("leftharpo", (0, 0)), + ("nleq;", (8816, 0)), + ("boxVR", (0, 0)), + ("range", (0, 0)), + ("robrk", (0, 0)), + ("xup", (0, 0)), + ("vangrt", (0, 0)), + ("nLeftrightarro", (0, 0)), + ("var", (0, 0)), + ("nRi", (0, 0)), + ("gnE", (0, 0)), + ("cros", (0, 0)), + ("pla", (0, 0)), + ("RightF", (0, 0)), + ("DoubleUpDownArrow;", (8661, 0)), + ("trianglerighte", (0, 0)), + ("Sfr", (0, 0)), + ("copys", (0, 0)), + ("xcir", (0, 0)), + ("odbla", (0, 0)), + ("rHar", (0, 0)), + ("yuc", (0, 0)), + ("alefsy", (0, 0)), + ("bigwedge;", (8896, 0)), + ("olar", (0, 0)), + ("Igrave", (204, 0)), + ("EmptyVerySmallSquar", (0, 0)), + ("ContourInte", (0, 0)), + ("vartrianglerigh", (0, 0)), + ("NegativeThinSpac", (0, 0)), + ("twoheadrightarrow;", (8608, 0)), + ("subne", (0, 0)), + ("NegativeTh", (0, 0)), + ("lBarr", (0, 0)), + ("oeli", (0, 0)), + ("Iota", (0, 0)), + ("intcal;", (8890, 0)), + ("equals", (0, 0)), + ("frac2", (0, 0)), + ("abreve;", (259, 0)), + ("upharpoonri", (0, 0)), + ("DiacriticalDoub", (0, 0)), + ("pe", (0, 0)), + ("SquareSubsetEqua", (0, 0)), + ("Lambda;", (923, 0)), + ("Dashv;", (10980, 0)), + ("Za", (0, 0)), + ("NonBreak", (0, 0)), + ("LeftUpDownVe", (0, 0)), + ("setm", (0, 0)), + ("spadesu", (0, 0)), + ("Nacut", (0, 0)), + ("approx;", (8776, 0)), + ("parsl;", (11005, 0)), + ("leftrightharpoons", (0, 0)), + ("rarrap", (0, 0)), + ("NestedGreaterGreat", (0, 0)), + ("plusacir;", (10787, 0)), + ("CircleTimes", (0, 0)), + ("dwa", (0, 0)), + ("cul", (0, 0)), + ("SupersetEqua", (0, 0)), + ("downha", (0, 0)), + ("sqcaps;", (8851, 65024)), + ("Therefo", (0, 0)), + ("hookrightarrow;", (8618, 0)), + ("boxDL;", (9559, 0)), + ("complexes;", (8450, 0)), + ("dopf", (0, 0)), + ("nLeftrightarrow;", (8654, 0)), + ("leftthr", (0, 0)), + ("rulu", (0, 0)), + ("NotElemen", (0, 0)), + ("LessFullE", (0, 0)), + ("EmptySmallSq", (0, 0)), + ("rAtail;", (10524, 0)), + ("zigrar", (0, 0)), + ("DownArr", (0, 0)), + ("Yopf", (0, 0)), + ("boxtimes", (0, 0)), + ("Upsil", (0, 0)), + ("nrarrc;", (10547, 824)), + ("DownLe", (0, 0)), + ("Bopf", (0, 0)), + ("minusdu;", (10794, 0)), + ("TSHc", (0, 0)), + ("Gdot;", (288, 0)), + ("LessEqua", (0, 0)), + ("Re", (0, 0)), + ("icy;", (1080, 0)), + ("im", (0, 0)), + ("bumpE;", (10926, 0)), + ("Ema", (0, 0)), + ("or", (0, 0)), + ("djc", (0, 0)), + ("phmma", (0, 0)), + ("ocir", (0, 0)), + ("profsurf;", (8979, 0)), + ("looparrowleft;", (8619, 0)), + ("lefth", (0, 0)), + ("nabl", (0, 0)), + ("iq", (0, 0)), + ("emac", (0, 0)), + ("odot", (0, 0)), + ("RightAngleBracke", (0, 0)), + ("wcir", (0, 0)), + ("LeftTeeArro", (0, 0)), + ("oelig;", (339, 0)), + ("nlef", (0, 0)), + ("imagline;", (8464, 0)), + ("ssm", (0, 0)), + ("NotGrea", (0, 0)), + ("LowerLef", (0, 0)), + ("Lfr;", (120079, 0)), + ("DownRightVecto", (0, 0)), + ("longmaps", (0, 0)), + ("sol", (0, 0)), + ("exponential", (0, 0)), + ("barwedge;", (8965, 0)), + ("ltq", (0, 0)), + ("LongRightArr", (0, 0)), + ("aa", (0, 0)), + ("ofr;", (120108, 0)), + ("numsp;", (8199, 0)), + ("oscr", (0, 0)), + ("Iacut", (0, 0)), + ("lvertneq", (0, 0)), + ("udar", (0, 0)), + ("to", (0, 0)), + ("varsupsetn", (0, 0)), + ("racute", (0, 0)), + ("kfr;", (120104, 0)), + ("mid;", (8739, 0)), + ("npolint", (0, 0)), + ("ContourIntegra", (0, 0)), + ("rightthree", (0, 0)), + ("velli", (0, 0)), + ("ngeq", (0, 0)), + ("nums", (0, 0)), + ("upd", (0, 0)), + ("thor", (0, 0)), + ("rthree;", (8908, 0)), + ("Pf", (0, 0)), + ("mapstoup", (0, 0)), + ("NotGreaterSlantE", (0, 0)), + ("Poin", (0, 0)), + ("Laplacetrf", (0, 0)), + ("roa", (0, 0)), + ("precn", (0, 0)), + ("imaglin", (0, 0)), + ("hookl", (0, 0)), + ("Ccedil;", (199, 0)), + ("searhk;", (10533, 0)), + ("downharpoon", (0, 0)), + ("RightUpDownVe", (0, 0)), + ("cf", (0, 0)), + ("Efr", (0, 0)), + ("Rrightarrow;", (8667, 0)), + ("bigodo", (0, 0)), + ("Wcir", (0, 0)), + ("loang;", (10220, 0)), + ("rightsquig", (0, 0)), + ("langd", (0, 0)), + ("laem", (0, 0)), + ("nsqsu", (0, 0)), + ("smallsetminu", (0, 0)), + ("dl", (0, 0)), + ("DiacriticalD", (0, 0)), + ("DownLeftVe", (0, 0)), + ("DownLeftVectorBar;", (10582, 0)), + ("vzig", (0, 0)), + ("varnothing;", (8709, 0)), + ("Rri", (0, 0)), + ("NonBre", (0, 0)), + ("andv;", (10842, 0)), + ("NotLessSlantEqual;", (10877, 824)), + ("isindot", (0, 0)), + ("nspa", (0, 0)), + ("complemen", (0, 0)), + ("frac56;", (8538, 0)), + ("ReverseUpEqui", (0, 0)), + ("varsubs", (0, 0)), + ("sacut", (0, 0)), + ("bnequi", (0, 0)), + ("DownArrow", (0, 0)), + ("UpperRight", (0, 0)), + ("Jsercy", (0, 0)), + ("ac", (0, 0)), + ("lfi", (0, 0)), + ("natura", (0, 0)), + ("TildeEqua", (0, 0)), + ("UpArrowBar;", (10514, 0)), + ("uparr", (0, 0)), + ("Uogon;", (370, 0)), + ("pcy", (0, 0)), + ("Dcaron;", (270, 0)), + ("Cconint;", (8752, 0)), + ("LessFul", (0, 0)), + ("ReverseUpEq", (0, 0)), + ("cylc", (0, 0)), + ("DoubleLeftTee;", (10980, 0)), + ("oopf;", (120160, 0)), + ("nR", (0, 0)), + ("hami", (0, 0)), + ("nesea", (0, 0)), + ("mcy", (0, 0)), + ("boxm", (0, 0)), + ("RightTeeArro", (0, 0)), + ("varsubsetneqq", (0, 0)), + ("lthr", (0, 0)), + ("dharl", (0, 0)), + ("mD", (0, 0)), + ("OpenCurly", (0, 0)), + ("UpperLeftA", (0, 0)), + ("DownLeftRightVector", (0, 0)), + ("lneqq;", (8808, 0)), + ("rightsq", (0, 0)), + ("DotE", (0, 0)), + ("SquareIntersect", (0, 0)), + ("Succeeds;", (8827, 0)), + ("ReverseElemen", (0, 0)), + ("RightArrowLeftArr", (0, 0)), + ("gla", (0, 0)), + ("CircleM", (0, 0)), + ("VeryThinSpac", (0, 0)), + ("elin", (0, 0)), + ("xu", (0, 0)), + ("UpEquil", (0, 0)), + ("big", (0, 0)), + ("Bfr;", (120069, 0)), + ("Cross;", (10799, 0)), + ("gdo", (0, 0)), + ("ctdot", (0, 0)), + ("larrfs", (0, 0)), + ("vnsub;", (8834, 8402)), + ("leftharpoonu", (0, 0)), + ("cdot;", (267, 0)), + ("NotExist", (0, 0)), + ("NotCongru", (0, 0)), + ("lB", (0, 0)), + ("curlyvee;", (8910, 0)), + ("ShortLe", (0, 0)), + ("prece", (0, 0)), + ("Aring;", (197, 0)), + ("tar", (0, 0)), + ("Zdo", (0, 0)), + ("Bscr", (0, 0)), + ("upupar", (0, 0)), + ("NotSquareSuperset;", (8848, 824)), + ("origof", (0, 0)), + ("sset", (0, 0)), + ("Differential", (0, 0)), + ("NegativeThickSpace", (0, 0)), + ("CloseCurlyQuote;", (8217, 0)), + ("SquareIntersection", (0, 0)), + ("su", (0, 0)), + ("downarr", (0, 0)), + ("GreaterEq", (0, 0)), + ("leftrightharpo", (0, 0)), + ("LessFu", (0, 0)), + ("ecolon;", (8789, 0)), + ("LeftVe", (0, 0)), + ("ks", (0, 0)), + ("Theref", (0, 0)), + ("Sci", (0, 0)), + ("lrhar", (0, 0)), + ("ntilde;", (241, 0)), + ("iop", (0, 0)), + ("suphso", (0, 0)), + ("DoubleLongLeftRightArr", (0, 0)), + ("hyp", (0, 0)), + ("Ntild", (0, 0)), + ("rdldh", (0, 0)), + ("notni", (0, 0)), + ("rdca;", (10551, 0)), + ("Ccedi", (0, 0)), + ("leftarrow", (0, 0)), + ("Leftarrow", (0, 0)), + ("Dia", (0, 0)), + ("IOcy", (0, 0)), + ("Vcy;", (1042, 0)), + ("zd", (0, 0)), + ("QUOT;", (34, 0)), + ("YAc", (0, 0)), + ("angz", (0, 0)), + ("co", (0, 0)), + ("Lleftarro", (0, 0)), + ("odiv;", (10808, 0)), + ("Leftri", (0, 0)), + ("Horizo", (0, 0)), + ("Longlefta", (0, 0)), + ("LeftVecto", (0, 0)), + ("Nscr", (0, 0)), + ("Aa", (0, 0)), + ("RightUpVectorBar;", (10580, 0)), + ("Con", (0, 0)), + ("ldrdhar", (0, 0)), + ("Iuml", (207, 0)), + ("sacu", (0, 0)), + ("nLt", (0, 0)), + ("circlearr", (0, 0)), + ("AEli", (0, 0)), + ("Lacute", (0, 0)), + ("NotSuc", (0, 0)), + ("llarr", (0, 0)), + ("Negat", (0, 0)), + ("intercal", (0, 0)), + ("twoheadrighta", (0, 0)), + ("lefthar", (0, 0)), + ("middot", (183, 0)), + ("prc", (0, 0)), + ("Minu", (0, 0)), + ("tau", (0, 0)), + ("yacy", (0, 0)), + ("andand;", (10837, 0)), + ("LeftDownTeeVecto", (0, 0)), + ("ntriangl", (0, 0)), + ("scpolin", (0, 0)), + ("DownArrowUpArr", (0, 0)), + ("jmath;", (567, 0)), + ("ique", (0, 0)), + ("Ho", (0, 0)), + ("Ari", (0, 0)), + ("nscr;", (120003, 0)), + ("utilde;", (361, 0)), + ("succnsim", (0, 0)), + ("Bopf;", (120121, 0)), + ("InvisibleCo", (0, 0)), + ("barwe", (0, 0)), + ("lam", (0, 0)), + ("capcu", (0, 0)), + ("NotCu", (0, 0)), + ("rarrhk;", (8618, 0)), + ("bf", (0, 0)), + ("wfr;", (120116, 0)), + ("GreaterSl", (0, 0)), + ("wreat", (0, 0)), + ("leftthreetimes;", (8907, 0)), + ("a", (0, 0)), + ("mapsto", (0, 0)), + ("acute", (180, 0)), + ("mldr", (0, 0)), + ("VerticalLi", (0, 0)), + ("rnmid", (0, 0)), + ("Succ", (0, 0)), + ("LeftTriangle", (0, 0)), + ("dz", (0, 0)), + ("hy", (0, 0)), + ("LongLeftRig", (0, 0)), + ("LeftDoubleBrac", (0, 0)), + ("NonB", (0, 0)), + ("DownLeftTe", (0, 0)), + ("frac18;", (8539, 0)), + ("disi", (0, 0)), + ("Longleftrightarrow;", (10234, 0)), + ("lambda;", (955, 0)), + ("rBarr;", (10511, 0)), + ("boxt", (0, 0)), + ("nvle", (0, 0)), + ("ograv", (0, 0)), + ("poin", (0, 0)), + ("xlArr;", (10232, 0)), + ("rdquor;", (8221, 0)), + ("Iukcy", (0, 0)), + ("tp", (0, 0)), + ("ge;", (8805, 0)), + ("rceil;", (8969, 0)), + ("Lt;", (8810, 0)), + ("acirc;", (226, 0)), + ("bullet;", (8226, 0)), + ("sm", (0, 0)), + ("LJ", (0, 0)), + ("rightha", (0, 0)), + ("NotGreaterSlantEqual", (0, 0)), + ("hookleftarrow;", (8617, 0)), + ("qopf", (0, 0)), + ("ShortRightArrow", (0, 0)), + ("rppol", (0, 0)), + ("caps", (0, 0)), + ("quo", (0, 0)), + ("ycirc", (0, 0)), + ("digamm", (0, 0)), + ("LT", (60, 0)), + ("rlarr", (0, 0)), + ("Udblac", (0, 0)), + ("yen;", (165, 0)), + ("luruhar", (0, 0)), + ("ddarr", (0, 0)), + ("nexist;", (8708, 0)), + ("RoundImplie", (0, 0)), + ("rightharpoondo", (0, 0)), + ("nsqsupe;", (8931, 0)), + ("Minus", (0, 0)), + ("bigv", (0, 0)), + ("Backs", (0, 0)), + ("nleftrigh", (0, 0)), + ("plusa", (0, 0)), + ("rtr", (0, 0)), + ("NotLessG", (0, 0)), + ("Barw", (0, 0)), + ("ShortRightA", (0, 0)), + ("vrt", (0, 0)), + ("epl", (0, 0)), + ("lbra", (0, 0)), + ("nh", (0, 0)), + ("bigtriangledown", (0, 0)), + ("longmapst", (0, 0)), + ("LeftTriangleEqu", (0, 0)), + ("zac", (0, 0)), + ("bigtriangleup", (0, 0)), + ("lesdot;", (10879, 0)), + ("hai", (0, 0)), + ("llar", (0, 0)), + ("sma", (0, 0)), + ("fltns", (0, 0)), + ("Icirc", (206, 0)), + ("MediumSpa", (0, 0)), + ("cwconint;", (8754, 0)), + ("blacklo", (0, 0)), + ("Cl", (0, 0)), + ("ncedil;", (326, 0)), + ("lopf", (0, 0)), + ("Is", (0, 0)), + ("eqslan", (0, 0)), + ("ohbar", (0, 0)), + ("xodot;", (10752, 0)), + ("rarrb", (0, 0)), + ("supds", (0, 0)), + ("down", (0, 0)), + ("Differentia", (0, 0)), + ("nhA", (0, 0)), + ("LeftCeiling", (0, 0)), + ("measure", (0, 0)), + ("NotLessSlantE", (0, 0)), + ("supseteq", (0, 0)), + ("Ecir", (0, 0)), + ("Afr;", (120068, 0)), + ("barve", (0, 0)), + ("LeftDoubleBracket", (0, 0)), + ("downdowna", (0, 0)), + ("planckh;", (8462, 0)), + ("Aogon", (0, 0)), + ("plusb;", (8862, 0)), + ("center", (0, 0)), + ("PrecedesEqu", (0, 0)), + ("rsh;", (8625, 0)), + ("Mellin", (0, 0)), + ("SubsetEqu", (0, 0)), + ("gve", (0, 0)), + ("LeftArrowRightArrow", (0, 0)), + ("Ar", (0, 0)), + ("loang", (0, 0)), + ("supmul", (0, 0)), + ("Horizontal", (0, 0)), + ("Cac", (0, 0)), + ("supe;", (8839, 0)), + ("LeftRightArrow", (0, 0)), + ("gbreve;", (287, 0)), + ("LeftVect", (0, 0)), + ("micro;", (181, 0)), + ("fl", (0, 0)), + ("RightCeiling", (0, 0)), + ("em", (0, 0)), + ("Rca", (0, 0)), + ("OpenCurlyDoubl", (0, 0)), + ("bcong;", (8780, 0)), + ("HorizontalLin", (0, 0)), + ("nvHa", (0, 0)), + ("CloseCurlyDoubleQuo", (0, 0)), + ("rAr", (0, 0)), + ("RightDownVectorB", (0, 0)), + ("NotNestedGreaterGr", (0, 0)), + ("rightthreetime", (0, 0)), + ("nlArr;", (8653, 0)), + ("DownArrowUpAr", (0, 0)), + ("Iti", (0, 0)), + ("nsupseteqq", (0, 0)), + ("nrarr;", (8603, 0)), + ("lesdoto;", (10881, 0)), + ("angmsdah;", (10671, 0)), + ("OverPare", (0, 0)), + ("kfr", (0, 0)), + ("lsi", (0, 0)), + ("Be", (0, 0)), + ("ReverseU", (0, 0)), + ("low", (0, 0)), + ("asympeq;", (8781, 0)), + ("leftarrowtail", (0, 0)), + ("andv", (0, 0)), + ("iquest;", (191, 0)), + ("heartsuit", (0, 0)), + ("blacktrian", (0, 0)), + ("UnderBrack", (0, 0)), + ("vert", (0, 0)), + ("quat", (0, 0)), + ("cir", (0, 0)), + ("wf", (0, 0)), + ("downdownarrows", (0, 0)), + ("smallset", (0, 0)), + ("sccue", (0, 0)), + ("RightTriangleEqual;", (8885, 0)), + ("quaternio", (0, 0)), + ("DownRightTeeVecto", (0, 0)), + ("eqv", (0, 0)), + ("npreceq", (0, 0)), + ("Zac", (0, 0)), + ("oli", (0, 0)), + ("parsim", (0, 0)), + ("supdsub", (0, 0)), + ("equiv;", (8801, 0)), + ("ola", (0, 0)), + ("dtdot;", (8945, 0)), + ("raempt", (0, 0)), + ("LeftAngle", (0, 0)), + ("nshort", (0, 0)), + ("Rarrtl", (0, 0)), + ("frac4", (0, 0)), + ("ltrP", (0, 0)), + ("curvearrow", (0, 0)), + ("mdash", (0, 0)), + ("nearhk", (0, 0)), + ("suplar", (0, 0)), + ("GreaterEqualLes", (0, 0)), + ("kjcy", (0, 0)), + ("vartheta;", (977, 0)), + ("llco", (0, 0)), + ("boxHU;", (9577, 0)), + ("rightthr", (0, 0)), + ("nharr", (0, 0)), + ("para", (182, 0)), + ("W", (0, 0)), + ("andslope", (0, 0)), + ("sqsupsete", (0, 0)), + ("CircleMinus;", (8854, 0)), + ("nexi", (0, 0)), + ("Hilber", (0, 0)), + ("iex", (0, 0)), + ("UnionPlu", (0, 0)), + ("Bumpe", (0, 0)), + ("acu", (0, 0)), + ("cw", (0, 0)), + ("Eop", (0, 0)), + ("bigupl", (0, 0)), + ("mapstodown;", (8615, 0)), + ("hslash", (0, 0)), + ("Congruent", (0, 0)), + ("nGg", (0, 0)), + ("supE;", (10950, 0)), + ("parsl", (0, 0)), + ("lsa", (0, 0)), + ("spadesuit;", (9824, 0)), + ("ju", (0, 0)), + ("Juk", (0, 0)), + ("cwint;", (8753, 0)), + ("Equilibrium;", (8652, 0)), + ("Lon", (0, 0)), + ("NotNestedLe", (0, 0)), + ("succsim", (0, 0)), + ("varr", (0, 0)), + ("rbrke", (0, 0)), + ("Precedes", (0, 0)), + ("angmsd;", (8737, 0)), + ("lth", (0, 0)), + ("dal", (0, 0)), + ("GJc", (0, 0)), + ("ldrushar", (0, 0)), + ("Upsi;", (978, 0)), + ("nLtv", (0, 0)), + ("rationa", (0, 0)), + ("downharpoonr", (0, 0)), + ("DoubleDownArrow", (0, 0)), + ("urcorner", (0, 0)), + ("tscy;", (1094, 0)), + ("upharpoonleft;", (8639, 0)), + ("vBarv", (0, 0)), + ("square;", (9633, 0)), + ("HumpEqua", (0, 0)), + ("jcy;", (1081, 0)), + ("gtlPar", (0, 0)), + ("nsucceq", (0, 0)), + ("sacute;", (347, 0)), + ("eta;", (951, 0)), + ("bop", (0, 0)), + ("PrecedesSlantEqual;", (8828, 0)), + ("VerticalB", (0, 0)), + ("NotSucceedsSlantEq", (0, 0)), + ("vsupnE;", (10956, 65024)), + ("hoa", (0, 0)), + ("ea", (0, 0)), + ("leftrighth", (0, 0)), + ("LT;", (60, 0)), + ("divo", (0, 0)), + ("sra", (0, 0)), + ("DownLeftR", (0, 0)), + ("lopa", (0, 0)), + ("Esim;", (10867, 0)), + ("rhov", (0, 0)), + ("xha", (0, 0)), + ("NotNestedLessLess", (0, 0)), + ("DoubleLongLeftRightAr", (0, 0)), + ("kcy", (0, 0)), + ("Zop", (0, 0)), + ("nvdash;", (8876, 0)), + ("NonBreakin", (0, 0)), + ("NotLeftTriangleE", (0, 0)), + ("subedot", (0, 0)), + ("LeftDouble", (0, 0)), + ("hba", (0, 0)), + ("DoubleUpArr", (0, 0)), + ("D", (0, 0)), + ("bull;", (8226, 0)), + ("EmptySmallSqu", (0, 0)), + ("Rule", (0, 0)), + ("RightTeeV", (0, 0)), + ("Imag", (0, 0)), + ("Sh", (0, 0)), + ("lesdo", (0, 0)), + ("EmptyVery", (0, 0)), + ("nla", (0, 0)), + ("nv", (0, 0)), + ("botto", (0, 0)), + ("NotEle", (0, 0)), + ("InvisibleComm", (0, 0)), + ("cen", (0, 0)), + ("QU", (0, 0)), + ("llt", (0, 0)), + ("boxhu", (0, 0)), + ("psi", (0, 0)), + ("LongLeftArr", (0, 0)), + ("NotSucceedsEqual;", (10928, 824)), + ("bempt", (0, 0)), + ("mcom", (0, 0)), + ("p", (0, 0)), + ("Abrev", (0, 0)), + ("Longl", (0, 0)), + ("ClockwiseContour", (0, 0)), + ("NotSucceedsTi", (0, 0)), + ("curlyeqsuc", (0, 0)), + ("rpargt", (0, 0)), + ("lacut", (0, 0)), + ("TildeFullEqual;", (8773, 0)), + ("NotRightTri", (0, 0)), + ("rsaqu", (0, 0)), + ("shortparall", (0, 0)), + ("homt", (0, 0)), + ("nvg", (0, 0)), + ("rlhar", (0, 0)), + ("nr", (0, 0)), + ("bprime;", (8245, 0)), + ("zeta;", (950, 0)), + ("LeftTriangleBa", (0, 0)), + ("supsetn", (0, 0)), + ("kgreen;", (312, 0)), + ("uua", (0, 0)), + ("exi", (0, 0)), + ("LongLeftRightArro", (0, 0)), + ("dzc", (0, 0)), + ("Pcy;", (1055, 0)), + ("SquareSupersetEq", (0, 0)), + ("rba", (0, 0)), + ("Clockwis", (0, 0)), + ("DJc", (0, 0)), + ("fpartint;", (10765, 0)), + ("gesles", (0, 0)), + ("CloseCurly", (0, 0)), + ("lowbar;", (95, 0)), + ("toea", (0, 0)), + ("OverParenthesis", (0, 0)), + ("measu", (0, 0)), + ("inodo", (0, 0)), + ("jop", (0, 0)), + ("Psi", (0, 0)), + ("Yscr", (0, 0)), + ("RightUpVect", (0, 0)), + ("NotGreaterGreat", (0, 0)), + ("acy;", (1072, 0)), + ("ulcor", (0, 0)), + ("gla;", (10917, 0)), + ("emacr", (0, 0)), + ("nsupe", (0, 0)), + ("lltri;", (9722, 0)), + ("COPY;", (169, 0)), + ("NotSucceedsSl", (0, 0)), + ("lagran", (0, 0)), + ("thetav", (0, 0)), + ("boxVL", (0, 0)), + ("risingdo", (0, 0)), + ("NotSucceedsTil", (0, 0)), + ("blan", (0, 0)), + ("NotTildeFullEqual", (0, 0)), + ("DoubleLongLef", (0, 0)), + ("top", (0, 0)), + ("tin", (0, 0)), + ("olcross", (0, 0)), + ("intege", (0, 0)), + ("YIcy", (0, 0)), + ("dw", (0, 0)), + ("nleftrightar", (0, 0)), + ("doteq", (0, 0)), + ("S", (0, 0)), + ("egs", (0, 0)), + ("jmat", (0, 0)), + ("vdas", (0, 0)), + ("vsup", (0, 0)), + ("DZcy;", (1039, 0)), + ("rational", (0, 0)), + ("rthr", (0, 0)), + ("imagpart", (0, 0)), + ("RightUpDownVect", (0, 0)), + ("GreaterGrea", (0, 0)), + ("Uri", (0, 0)), + ("blacktriang", (0, 0)), + ("GreaterSlantE", (0, 0)), + ("ncy", (0, 0)), + ("colone;", (8788, 0)), + ("rpargt;", (10644, 0)), + ("lH", (0, 0)), + ("lgE", (0, 0)), + ("ari", (0, 0)), + ("Vf", (0, 0)), + ("Oma", (0, 0)), + ("lAtail;", (10523, 0)), + ("escr;", (8495, 0)), + ("cylcty", (0, 0)), + ("Updownarr", (0, 0)), + ("spades", (0, 0)), + ("DDotrahd;", (10513, 0)), + ("AEl", (0, 0)), + ("fem", (0, 0)), + ("image;", (8465, 0)), + ("CapitalDifferential", (0, 0)), + ("leftrightsquig", (0, 0)), + ("prurel", (0, 0)), + ("fallin", (0, 0)), + ("agr", (0, 0)), + ("DoubleUpA", (0, 0)), + ("uhar", (0, 0)), + ("DownLeftVectorB", (0, 0)), + ("RightAngleBrac", (0, 0)), + ("dsol;", (10742, 0)), + ("vcy;", (1074, 0)), + ("NestedGr", (0, 0)), + ("lopar", (0, 0)), + ("Lmid", (0, 0)), + ("aeli", (0, 0)), + ("nsubset;", (8834, 8402)), + ("LeftRightArr", (0, 0)), + ("longlef", (0, 0)), + ("leftleft", (0, 0)), + ("NewLin", (0, 0)), + ("dash;", (8208, 0)), + ("Udbl", (0, 0)), + ("thickappro", (0, 0)), + ("LeftUpV", (0, 0)), + ("awconint", (0, 0)), + ("DoubleLeftArr", (0, 0)), + ("qfr", (0, 0)), + ("DoubleVert", (0, 0)), + ("rob", (0, 0)), + ("hArr;", (8660, 0)), + ("backepsilo", (0, 0)), + ("DSc", (0, 0)), + ("RightVe", (0, 0)), + ("ba", (0, 0)), + ("bigcup", (0, 0)), + ("lv", (0, 0)), + ("Rev", (0, 0)), + ("fltns;", (9649, 0)), + ("lAtail", (0, 0)), + ("OElig", (0, 0)), + ("looparrowlef", (0, 0)), + ("swarr", (0, 0)), + ("olt;", (10688, 0)), + ("Zc", (0, 0)), + ("rightlefta", (0, 0)), + ("OEl", (0, 0)), + ("triangleright;", (9657, 0)), + ("cupbrca", (0, 0)), + ("square", (0, 0)), + ("Cr", (0, 0)), + ("longleftrig", (0, 0)), + ("lced", (0, 0)), + ("As", (0, 0)), + ("eacute", (233, 0)), + ("backsimeq;", (8909, 0)), + ("rightharp", (0, 0)), + ("not;", (172, 0)), + ("ord", (0, 0)), + ("Gbreve;", (286, 0)), + ("lve", (0, 0)), + ("rarrb;", (8677, 0)), + ("hairsp", (0, 0)), + ("Pi;", (928, 0)), + ("ltc", (0, 0)), + ("Dcar", (0, 0)), + ("nvlA", (0, 0)), + ("Dag", (0, 0)), + ("Imacr;", (298, 0)), + ("fi", (0, 0)), + ("leftarrowtai", (0, 0)), + ("Ascr", (0, 0)), + ("midast;", (42, 0)), + ("aogo", (0, 0)), + ("AElig", (198, 0)), + ("RightArrowL", (0, 0)), + ("oh", (0, 0)), + ("I", (0, 0)), + ("DiacriticalG", (0, 0)), + ("NestedLessLess;", (8810, 0)), + ("Int;", (8748, 0)), + ("capdo", (0, 0)), + ("straighte", (0, 0)), + ("NotExis", (0, 0)), + ("CupC", (0, 0)), + ("napprox", (0, 0)), + ("NotSquareSubsetEqual;", (8930, 0)), + ("ssmi", (0, 0)), + ("loti", (0, 0)), + ("SucceedsEqu", (0, 0)), + ("hf", (0, 0)), + ("Dash", (0, 0)), + ("lceil;", (8968, 0)), + ("sim", (0, 0)), + ("tcar", (0, 0)), + ("ccaps", (0, 0)), + ("frac12;", (189, 0)), + ("ufr", (0, 0)), + ("iff", (0, 0)), + ("noti", (0, 0)), + ("Das", (0, 0)), + ("Tfr", (0, 0)), + ("apE;", (10864, 0)), + ("equa", (0, 0)), + ("leftleftarr", (0, 0)), + ("NewL", (0, 0)), + ("ShortRi", (0, 0)), + ("ddagge", (0, 0)), + ("diamondsu", (0, 0)), + ("Ya", (0, 0)), + ("ul", (0, 0)), + ("LongRightArrow", (0, 0)), + ("Hilbe", (0, 0)), + ("ntgl;", (8825, 0)), + ("DoubleLeftRigh", (0, 0)), + ("sstarf", (0, 0)), + ("blank", (0, 0)), + ("vopf;", (120167, 0)), + ("uhbl", (0, 0)), + ("NotLessEqual", (0, 0)), + ("NotElem", (0, 0)), + ("NotLeftTria", (0, 0)), + ("DoubleContou", (0, 0)), + ("vopf", (0, 0)), + ("Xo", (0, 0)), + ("lmoust", (0, 0)), + ("NestedGreaterGrea", (0, 0)), + ("nt", (0, 0)), + ("NegativeV", (0, 0)), + ("ShortUpArr", (0, 0)), + ("alep", (0, 0)), + ("uopf;", (120166, 0)), + ("LeftDoubleBrack", (0, 0)), + ("ngE", (0, 0)), + ("NJc", (0, 0)), + ("Precede", (0, 0)), + ("hybull", (0, 0)), + ("hybu", (0, 0)), + ("vartrianglele", (0, 0)), + ("DoubleLeftRightArr", (0, 0)), + ("Ccaron;", (268, 0)), + ("range;", (10661, 0)), + ("angle", (0, 0)), + ("Cco", (0, 0)), + ("SucceedsEqua", (0, 0)), + ("nisd;", (8954, 0)), + ("NotSubset", (0, 0)), + ("rcedi", (0, 0)), + ("kjcy;", (1116, 0)), + ("Wedge;", (8896, 0)), + ("nleftarrow;", (8602, 0)), + ("there4", (0, 0)), + ("Iogon;", (302, 0)), + ("minusb", (0, 0)), + ("longl", (0, 0)), + ("NotSupersetEqua", (0, 0)), + ("trianglele", (0, 0)), + ("hel", (0, 0)), + ("ltrPar;", (10646, 0)), + ("NotGreaterFullEqua", (0, 0)), + ("CloseCur", (0, 0)), + ("aelig", (230, 0)), + ("ltrie", (0, 0)), + ("tstrok;", (359, 0)), + ("fopf", (0, 0)), + ("upharpoonl", (0, 0)), + ("tshc", (0, 0)), + ("imo", (0, 0)), + ("rthree", (0, 0)), + ("iinfin", (0, 0)), + ("Longleftri", (0, 0)), + ("oda", (0, 0)), + ("EmptyVerySma", (0, 0)), + ("lang;", (10216, 0)), + ("rbbrk;", (10099, 0)), + ("nbump", (0, 0)), + ("Wscr", (0, 0)), + ("LeftRightA", (0, 0)), + ("sesw", (0, 0)), + ("oint", (0, 0)), + ("pm;", (177, 0)), + ("nparal", (0, 0)), + ("subsup;", (10963, 0)), + ("Tced", (0, 0)), + ("xnis", (0, 0)), + ("lst", (0, 0)), + ("utdot;", (8944, 0)), + ("Yfr", (0, 0)), + ("NegativeThin", (0, 0)), + ("orv", (0, 0)), + ("Mu;", (924, 0)), + ("agrave", (224, 0)), + ("del", (0, 0)), + ("GreaterEqualL", (0, 0)), + ("dwangl", (0, 0)), + ("approx", (0, 0)), + ("ClockwiseC", (0, 0)), + ("Dsc", (0, 0)), + ("doublebarwedg", (0, 0)), + ("DownArrowU", (0, 0)), + ("lrtri", (0, 0)), + ("NegativeVeryThinSpace;", (8203, 0)), + ("bump;", (8782, 0)), + ("bigcirc", (0, 0)), + ("divideontime", (0, 0)), + ("uph", (0, 0)), + ("upharpoonleft", (0, 0)), + ("bigwed", (0, 0)), + ("GreaterLess", (0, 0)), + ("Invisible", (0, 0)), + ("RightTee", (0, 0)), + ("measuredan", (0, 0)), + ("DoubleLef", (0, 0)), + ("NestedGre", (0, 0)), + ("eDDot;", (10871, 0)), + ("Ccirc;", (264, 0)), + ("RightUpD", (0, 0)), + ("Sig", (0, 0)), + ("Scedi", (0, 0)), + ("NotNestedGrea", (0, 0)), + ("cwconi", (0, 0)), + ("DoubleContourInteg", (0, 0)), + ("curvearrowri", (0, 0)), + ("lfr;", (120105, 0)), + ("olin", (0, 0)), + ("vlt", (0, 0)), + ("RuleDela", (0, 0)), + ("imof;", (8887, 0)), + ("RightTeeVect", (0, 0)), + ("Mu", (0, 0)), + ("gescc", (0, 0)), + ("NotSuperset;", (8835, 8402)), + ("curlyeqsu", (0, 0)), + ("Element", (0, 0)), + ("ut", (0, 0)), + ("boxminu", (0, 0)), + ("DoubleUpDownA", (0, 0)), + ("xoplus", (0, 0)), + ("varkapp", (0, 0)), + ("Clock", (0, 0)), + ("Superset", (0, 0)), + ("sha", (0, 0)), + ("cap", (0, 0)), + ("Ucy", (0, 0)), + ("neAr", (0, 0)), + ("isind", (0, 0)), + ("npolint;", (10772, 0)), + ("bemptyv", (0, 0)), + ("cuw", (0, 0)), + ("Leftarro", (0, 0)), + ("EmptyVerySmallSqu", (0, 0)), + ("Cu", (0, 0)), + ("squar", (0, 0)), + ("Bec", (0, 0)), + ("Longleftarrow", (0, 0)), + ("LeftTriangl", (0, 0)), + ("nva", (0, 0)), + ("odsold", (0, 0)), + ("straightepsil", (0, 0)), + ("circlearrowleft", (0, 0)), + ("Cros", (0, 0)), + ("OEli", (0, 0)), + ("boxUL", (0, 0)), + ("DoubleLongR", (0, 0)), + ("NotTildeT", (0, 0)), + ("boxVl;", (9570, 0)), + ("gE;", (8807, 0)), + ("ThickSpac", (0, 0)), + ("NotL", (0, 0)), + ("longri", (0, 0)), + ("eas", (0, 0)), + ("ThickSpace", (0, 0)), + ("Rfr", (0, 0)), + ("Prod", (0, 0)), + ("pr;", (8826, 0)), + ("dot;", (729, 0)), + ("duarr;", (8693, 0)), + ("T", (0, 0)), + ("hbar", (0, 0)), + ("ange", (0, 0)), + ("duarr", (0, 0)), + ("ufish", (0, 0)), + ("Del;", (8711, 0)), + ("xv", (0, 0)), + ("SucceedsSlant", (0, 0)), + ("ofcir;", (10687, 0)), + ("forall;", (8704, 0)), + ("reals;", (8477, 0)), + ("afr;", (120094, 0)), + ("rightrigh", (0, 0)), + ("cirfni", (0, 0)), + ("rfisht;", (10621, 0)), + ("nacut", (0, 0)), + ("Sa", (0, 0)), + ("VeryThin", (0, 0)), + ("emp", (0, 0)), + ("angrtvbd", (0, 0)), + ("iot", (0, 0)), + ("cup;", (8746, 0)), + ("ngsim;", (8821, 0)), + ("latail", (0, 0)), + ("dtd", (0, 0)), + ("neA", (0, 0)), + ("NotSupersetEqual", (0, 0)), + ("Lang", (0, 0)), + ("Exp", (0, 0)), + ("supedot;", (10948, 0)), + ("SquareSupe", (0, 0)), + ("eta", (0, 0)), + ("slarr;", (8592, 0)), + ("xdtr", (0, 0)), + ("euro;", (8364, 0)), + ("nvrA", (0, 0)), + ("NotSuccee", (0, 0)), + ("mnplus", (0, 0)), + ("emptyset", (0, 0)), + ("gopf;", (120152, 0)), + ("profsu", (0, 0)), + ("RightDoubleBra", (0, 0)), + ("angmsdab", (0, 0)), + ("Leftrightar", (0, 0)), + ("zcaron;", (382, 0)), + ("timesb;", (8864, 0)), + ("curlywedg", (0, 0)), + ("QUO", (0, 0)), + ("NotReverse", (0, 0)), + ("ogra", (0, 0)), + ("hstr", (0, 0)), + ("NotNe", (0, 0)), + ("l", (0, 0)), + ("nab", (0, 0)), + ("bepsi;", (1014, 0)), + ("upar", (0, 0)), + ("Subse", (0, 0)), + ("rs", (0, 0)), + ("Congruent;", (8801, 0)), + ("NotGreaterLes", (0, 0)), + ("juk", (0, 0)), + ("Cfr;", (8493, 0)), + ("nleftrightarrow;", (8622, 0)), + ("gel;", (8923, 0)), + ("Leftrig", (0, 0)), + ("Uarroci", (0, 0)), + ("fnof", (0, 0)), + ("angmsdaf;", (10669, 0)), + ("YUc", (0, 0)), + ("Tcedi", (0, 0)), + ("les", (0, 0)), + ("loze", (0, 0)), + ("lesseqqgtr", (0, 0)), + ("percnt;", (37, 0)), + ("bne;", (61, 8421)), + ("nrightarrow", (0, 0)), + ("piv;", (982, 0)), + ("lsim;", (8818, 0)), + ("COP", (0, 0)), + ("blacksquar", (0, 0)), + ("DoubleVertica", (0, 0)), + ("Reverse", (0, 0)), + ("vsupne", (0, 0)), + ("It", (0, 0)), + ("Popf;", (8473, 0)), + ("GreaterGr", (0, 0)), + ("bbrk;", (9141, 0)), + ("Pl", (0, 0)), + ("NotCupCa", (0, 0)), + ("simd", (0, 0)), + ("boxtim", (0, 0)), + ("GreaterSlantEqu", (0, 0)), + ("GreaterLes", (0, 0)), + ("LessEqualG", (0, 0)), + ("ntrianglerighteq", (0, 0)), + ("ho", (0, 0)), + ("HumpEqual", (0, 0)), + ("hookleftarro", (0, 0)), + ("smid", (0, 0)), + ("shchcy;", (1097, 0)), + ("rbra", (0, 0)), + ("LeftArrowRig", (0, 0)), + ("Doub", (0, 0)), + ("bernou;", (8492, 0)), + ("Vdas", (0, 0)), + ("dote", (0, 0)), + ("eac", (0, 0)), + ("gneqq", (0, 0)), + ("ApplyFunc", (0, 0)), + ("rationals;", (8474, 0)), + ("kapp", (0, 0)), + ("NotG", (0, 0)), + ("ag", (0, 0)), + ("supplu", (0, 0)), + ("sec", (0, 0)), + ("Expone", (0, 0)), + ("ctdo", (0, 0)), + ("pound", (163, 0)), + ("NotGreaterGreater;", (8811, 824)), + ("simplu", (0, 0)), + ("Exi", (0, 0)), + ("st", (0, 0)), + ("kopf;", (120156, 0)), + ("zwnj;", (8204, 0)), + ("UnionPlus;", (8846, 0)), + ("ntriangleri", (0, 0)), + ("xdtri", (0, 0)), + ("supmult", (0, 0)), + ("The", (0, 0)), + ("blacklozenge", (0, 0)), + ("ngeqsl", (0, 0)), + ("iio", (0, 0)), + ("fallingdotseq;", (8786, 0)), + ("Co", (0, 0)), + ("bcong", (0, 0)), + ("lvertneqq;", (8808, 65024)), + ("LeftUpTeeVec", (0, 0)), + ("triangledow", (0, 0)), + ("Uparrow;", (8657, 0)), + ("varep", (0, 0)), + ("R", (0, 0)), + ("alefsym", (0, 0)), + ("RBar", (0, 0)), + ("lceil", (0, 0)), + ("DownRightVector", (0, 0)), + ("suph", (0, 0)), + ("DownAr", (0, 0)), + ("ZeroWidth", (0, 0)), + ("NotRi", (0, 0)), + ("precsim", (0, 0)), + ("xop", (0, 0)), + ("Mfr", (0, 0)), + ("pluss", (0, 0)), + ("ogt;", (10689, 0)), + ("gtlP", (0, 0)), + ("nwArr;", (8662, 0)), + ("rarrl", (0, 0)), + ("larrp", (0, 0)), + ("ShortRigh", (0, 0)), + ("lneqq", (0, 0)), + ("Cconint", (0, 0)), + ("CounterClockwi", (0, 0)), + ("inodot;", (305, 0)), + ("planc", (0, 0)), + ("nsupseteqq;", (10950, 824)), + ("Updownarrow;", (8661, 0)), + ("DD;", (8517, 0)), + ("black", (0, 0)), + ("gtcir;", (10874, 0)), + ("righta", (0, 0)), + ("Uum", (0, 0)), + ("NotLess;", (8814, 0)), + ("pu", (0, 0)), + ("SquareIntersecti", (0, 0)), + ("rarr;", (8594, 0)), + ("capand", (0, 0)), + ("nrtri;", (8939, 0)), + ("LeftUpDownVect", (0, 0)), + ("trade;", (8482, 0)), + ("Eacut", (0, 0)), + ("sqsups", (0, 0)), + ("CircleD", (0, 0)), + ("rsaquo;", (8250, 0)), + ("sum", (0, 0)), + ("vell", (0, 0)), + ("ZeroWid", (0, 0)), + ("hscr", (0, 0)), + ("Subset", (0, 0)), + ("Gcirc;", (284, 0)), + ("awconi", (0, 0)), + ("VDas", (0, 0)), + ("Ouml", (214, 0)), + ("Im", (0, 0)), + ("sdo", (0, 0)), + ("Ecirc", (202, 0)), + ("supsetneqq;", (10956, 0)), + ("Scar", (0, 0)), + ("kgreen", (0, 0)), + ("ncaron;", (328, 0)), + ("doublebarwedge", (0, 0)), + ("femal", (0, 0)), + ("gammad;", (989, 0)), + ("dlcorn", (0, 0)), + ("twoh", (0, 0)), + ("RuleDelay", (0, 0)), + ("submul", (0, 0)), + ("mapsto;", (8614, 0)), + ("rtime", (0, 0)), + ("scar", (0, 0)), + ("Ecaron;", (282, 0)), + ("late;", (10925, 0)), + ("QUOT", (34, 0)), + ("aring", (229, 0)), + ("Rscr;", (8475, 0)), + ("Hstro", (0, 0)), + ("ZHcy", (0, 0)), + ("anda", (0, 0)), + ("Elem", (0, 0)), + ("nsucc", (0, 0)), + ("prna", (0, 0)), + ("NotHumpDownHum", (0, 0)), + ("succapp", (0, 0)), + ("DoubleVerticalBar", (0, 0)), + ("sigmav;", (962, 0)), + ("TRA", (0, 0)), + ("ofci", (0, 0)), + ("UpTee;", (8869, 0)), + ("zdo", (0, 0)), + ("NotDoubleVer", (0, 0)), + ("delta", (0, 0)), + ("rbrke;", (10636, 0)), + ("zopf", (0, 0)), + ("lesdotor;", (10883, 0)), + ("sig", (0, 0)), + ("epa", (0, 0)), + ("divideontimes;", (8903, 0)), + ("NotTilde;", (8769, 0)), + ("NotPrecedesSlantEq", (0, 0)), + ("Eo", (0, 0)), + ("UpDownA", (0, 0)), + ("frown;", (8994, 0)), + ("DotEqual", (0, 0)), + ("IO", (0, 0)), + ("iuml", (239, 0)), + ("lharul", (0, 0)), + ("falli", (0, 0)), + ("udhar;", (10606, 0)), + ("dfr;", (120097, 0)), + ("Qopf;", (8474, 0)), + ("frac14;", (188, 0)), + ("raemptyv", (0, 0)), + ("nprece", (0, 0)), + ("rdquor", (0, 0)), + ("vnsup;", (8835, 8402)), + ("iacu", (0, 0)), + ("longrightarrow", (0, 0)), + ("leftrightarrows", (0, 0)), + ("prop", (0, 0)), + ("orde", (0, 0)), + ("otimesa", (0, 0)), + ("suplarr;", (10619, 0)), + ("macr;", (175, 0)), + ("grav", (0, 0)), + ("napos", (0, 0)), + ("weierp;", (8472, 0)), + ("leftharpoon", (0, 0)), + ("RightTeeVec", (0, 0)), + ("GreaterEqualLe", (0, 0)), + ("SO", (0, 0)), + ("bdquo;", (8222, 0)), + ("NegativeMediumSpac", (0, 0)), + ("vscr", (0, 0)), + ("nop", (0, 0)), + ("nsups", (0, 0)), + ("boxhd;", (9516, 0)), + ("nea", (0, 0)), + ("Ne", (0, 0)), + ("EmptyVerySm", (0, 0)), + ("zh", (0, 0)), + ("Smal", (0, 0)), + ("oopf", (0, 0)), + ("hA", (0, 0)), + ("Au", (0, 0)), + ("apE", (0, 0)), + ("Eogo", (0, 0)), + ("int;", (8747, 0)), + ("Urin", (0, 0)), + ("fras", (0, 0)), + ("leftrightha", (0, 0)), + ("rtrie;", (8885, 0)), + ("nvsi", (0, 0)), + ("eogon;", (281, 0)), + ("OpenCurlyQuot", (0, 0)), + ("lscr", (0, 0)), + ("ufisht;", (10622, 0)), + ("Gbr", (0, 0)), + ("NotSquareSupersetEq", (0, 0)), + ("capcup;", (10823, 0)), + ("DoubleLeft", (0, 0)), + ("oplus", (0, 0)), + ("equivDD", (0, 0)), + ("LeftRightVec", (0, 0)), + ("dj", (0, 0)), + ("DownArrowUp", (0, 0)), + ("Epsilon;", (917, 0)), + ("Ubrev", (0, 0)), + ("RightDownVect", (0, 0)), + ("Lang;", (10218, 0)), + ("laq", (0, 0)), + ("Poincarep", (0, 0)), + ("vpr", (0, 0)), + ("straighteps", (0, 0)), + ("phi", (0, 0)), + ("quaternions;", (8461, 0)), + ("nsqsupe", (0, 0)), + ("RB", (0, 0)), + ("varnoth", (0, 0)), + ("realine", (0, 0)), + ("rB", (0, 0)), + ("curvea", (0, 0)), + ("UpperL", (0, 0)), + ("Io", (0, 0)), + ("RightUpTeeVector", (0, 0)), + ("NotRightTriangle", (0, 0)), + ("ltdo", (0, 0)), + ("nVd", (0, 0)), + ("bc", (0, 0)), + ("nshortpa", (0, 0)), + ("nu", (0, 0)), + ("midas", (0, 0)), + ("angmsd", (0, 0)), + ("cup", (0, 0)), + ("heartsu", (0, 0)), + ("Tstro", (0, 0)), + ("dfis", (0, 0)), + ("lesseqgtr;", (8922, 0)), + ("bnequiv;", (8801, 8421)), + ("rcub", (0, 0)), + ("orsl", (0, 0)), + ("Lstr", (0, 0)), + ("ForAl", (0, 0)), + ("downdo", (0, 0)), + ("npar;", (8742, 0)), + ("rx;", (8478, 0)), + ("curarr;", (8631, 0)), + ("Emacr", (0, 0)), + ("sigma", (0, 0)), + ("topc", (0, 0)), + ("Gcy;", (1043, 0)), + ("nLef", (0, 0)), + ("spad", (0, 0)), + ("NotRightTriangleEqu", (0, 0)), + ("gi", (0, 0)), + ("vfr", (0, 0)), + ("CounterClockwiseContou", (0, 0)), + ("lsc", (0, 0)), + ("downd", (0, 0)), + ("ap;", (8776, 0)), + ("ubrcy", (0, 0)), + ("piv", (0, 0)), + ("backpr", (0, 0)), + ("DiacriticalTil", (0, 0)), + ("Hori", (0, 0)), + ("supdsub;", (10968, 0)), + ("scns", (0, 0)), + ("precnsi", (0, 0)), + ("Horizonta", (0, 0)), + ("VerticalSeparat", (0, 0)), + ("angst", (0, 0)), + ("VeryThinS", (0, 0)), + ("uring", (0, 0)), + ("Itild", (0, 0)), + ("ShortDownArr", (0, 0)), + ("nd", (0, 0)), + ("Preced", (0, 0)), + ("glE", (0, 0)), + ("G", (0, 0)), + ("plustwo;", (10791, 0)), + ("notindo", (0, 0)), + ("CounterC", (0, 0)), + ("Iacute;", (205, 0)), + ("looparrowrigh", (0, 0)), + ("Hfr", (0, 0)), + ("isinE;", (8953, 0)), + ("gtques", (0, 0)), + ("Oscr", (0, 0)), + ("Ps", (0, 0)), + ("DoubleLeftArro", (0, 0)), + ("Ot", (0, 0)), + ("Qs", (0, 0)), + ("curarr", (0, 0)), + ("RightUpT", (0, 0)), + ("check;", (10003, 0)), + ("trpezi", (0, 0)), + ("bla", (0, 0)), + ("intcal", (0, 0)), + ("LeftUpVe", (0, 0)), + ("Fscr", (0, 0)), + ("uplu", (0, 0)), + ("npoli", (0, 0)), + ("lfisht;", (10620, 0)), + ("precc", (0, 0)), + ("lotime", (0, 0)), + ("nleftar", (0, 0)), + ("Tr", (0, 0)), + ("quot;", (34, 0)), + ("gimel;", (8503, 0)), + ("twoheadlefta", (0, 0)), + ("jcir", (0, 0)), + ("Dstr", (0, 0)), + ("Backslash;", (8726, 0)), + ("hookleftarrow", (0, 0)), + ("Oslash", (216, 0)), + ("orslop", (0, 0)), + ("Wfr;", (120090, 0)), + ("NestedLe", (0, 0)), + ("nvap;", (8781, 8402)), + ("Vopf", (0, 0)), + ("strns;", (175, 0)), + ("nLl;", (8920, 824)), + ("varkap", (0, 0)), + ("backp", (0, 0)), + ("ffilig", (0, 0)), + ("image", (0, 0)), + ("Zcaron;", (381, 0)), + ("OE", (0, 0)), + ("frown", (0, 0)), + ("Implies;", (8658, 0)), + ("dca", (0, 0)), + ("ApplyFunction", (0, 0)), + ("DoubleLongRig", (0, 0)), + ("oas", (0, 0)), + ("prs", (0, 0)), + ("HAR", (0, 0)), + ("SmallCirc", (0, 0)), + ("succnappro", (0, 0)), + ("Unde", (0, 0)), + ("RightDownTeeV", (0, 0)), + ("star;", (9734, 0)), + ("notinvb;", (8951, 0)), + ("nvlAr", (0, 0)), + ("NotRightTriangl", (0, 0)), + ("prure", (0, 0)), + ("DownRightT", (0, 0)), + ("P", (0, 0)), + ("subpl", (0, 0)), + ("Thic", (0, 0)), + ("TRADE", (0, 0)), + ("rH", (0, 0)), + ("elinter", (0, 0)), + ("M", (0, 0)), + ("boxvL", (0, 0)), + ("NotSubsetEq", (0, 0)), + ("lagr", (0, 0)), + ("vDa", (0, 0)), + ("itilde;", (297, 0)), + ("blacktrianglerig", (0, 0)), + ("agrave;", (224, 0)), + ("Lcy;", (1051, 0)), + ("apacir;", (10863, 0)), + ("sqsube;", (8849, 0)), + ("roan", (0, 0)), + ("ts", (0, 0)), + ("lesge", (0, 0)), + ("vartrianglerig", (0, 0)), + ("cemptyv;", (10674, 0)), + ("nscc", (0, 0)), + ("verb", (0, 0)), + ("ubrcy;", (1118, 0)), + ("dotminu", (0, 0)), + ("dstr", (0, 0)), + ("auml;", (228, 0)), + ("rtrif", (0, 0)), + ("NotGreaterG", (0, 0)), + ("nvltrie", (0, 0)), + ("Leftrightarrow;", (8660, 0)), + ("CHcy;", (1063, 0)), + ("curvearrowr", (0, 0)), + ("NotLessGreater;", (8824, 0)), + ("suppl", (0, 0)), + ("FilledSmallSquar", (0, 0)), + ("Horiz", (0, 0)), + ("CloseC", (0, 0)), + ("precappr", (0, 0)), + ("Atil", (0, 0)), + ("opl", (0, 0)), + ("nLeft", (0, 0)), + ("Ba", (0, 0)), + ("LeftVector", (0, 0)), + ("UpArrowB", (0, 0)), + ("InvisibleC", (0, 0)), + ("kgree", (0, 0)), + ("Dfr;", (120071, 0)), + ("bigcirc;", (9711, 0)), + ("NotCong", (0, 0)), + ("gesdotol", (0, 0)), + ("DownLeftRight", (0, 0)), + ("hcir", (0, 0)), + ("sqsubseteq;", (8849, 0)), + ("succnappr", (0, 0)), + ("rang;", (10217, 0)), + ("leg", (0, 0)), + ("Utilde", (0, 0)), + ("eqvparsl;", (10725, 0)), + ("LeftAngleBracket;", (10216, 0)), + ("pcy;", (1087, 0)), + ("RightDownVector;", (8642, 0)), + ("vartrianglel", (0, 0)), + ("HorizontalLine;", (9472, 0)), + ("downar", (0, 0)), + ("backepsilon;", (1014, 0)), + ("t", (0, 0)), + ("spadesuit", (0, 0)), + ("nsubE", (0, 0)), + ("rightt", (0, 0)), + ("LessTild", (0, 0)), + ("rightharpoondow", (0, 0)), + ("Umac", (0, 0)), + ("ange;", (10660, 0)), + ("circlearrowri", (0, 0)), + ("lrhar;", (8651, 0)), + ("NotEqualT", (0, 0)), + ("squ;", (9633, 0)), + ("tstrok", (0, 0)), + ("lmoustac", (0, 0)), + ("dcaron", (0, 0)), + ("succappro", (0, 0)), + ("gcirc;", (285, 0)), + ("RBarr;", (10512, 0)), + ("multimap;", (8888, 0)), + ("cempt", (0, 0)), + ("Right", (0, 0)), + ("Atilde", (195, 0)), + ("nvltr", (0, 0)), + ("NotLeftTrian", (0, 0)), + ("nV", (0, 0)), + ("Rarrtl;", (10518, 0)), + ("drco", (0, 0)), + ("GT;", (62, 0)), + ("Al", (0, 0)), + ("shortparal", (0, 0)), + ("ljc", (0, 0)), + ("sse", (0, 0)), + ("MinusP", (0, 0)), + ("Cayle", (0, 0)), + ("bigtriangledo", (0, 0)), + ("erDo", (0, 0)), + ("mcomm", (0, 0)), + ("intpr", (0, 0)), + ("Scirc", (0, 0)), + ("Kf", (0, 0)), + ("Coni", (0, 0)), + ("llha", (0, 0)), + ("xuplus", (0, 0)), + ("leftrightharpoons;", (8651, 0)), + ("dzigra", (0, 0)), + ("Lcedil;", (315, 0)), + ("diam;", (8900, 0)), + ("CircleTim", (0, 0)), + ("nwArr", (0, 0)), + ("pa", (0, 0)), + ("ordf;", (170, 0)), + ("tra", (0, 0)), + ("kce", (0, 0)), + ("ocirc;", (244, 0)), + ("Itil", (0, 0)), + ("Nfr;", (120081, 0)), + ("RightUpDownVector;", (10575, 0)), + ("cupcap;", (10822, 0)), + ("intpro", (0, 0)), + ("SubsetEqual;", (8838, 0)), + ("nleftri", (0, 0)), + ("easter;", (10862, 0)), + ("erDot", (0, 0)), + ("NotLeftTriangleEqua", (0, 0)), + ("betwe", (0, 0)), + ("cirmid;", (10991, 0)), + ("gtrar", (0, 0)), + ("SquareI", (0, 0)), + ("boxmi", (0, 0)), + ("realpart;", (8476, 0)), + ("varsups", (0, 0)), + ("hArr", (0, 0)), + ("NotNestedGreaterG", (0, 0)), + ("par;", (8741, 0)), + ("DoubleUpDo", (0, 0)), + ("zhc", (0, 0)), + ("DoubleContourInte", (0, 0)), + ("cop", (0, 0)), + ("xscr", (0, 0)), + ("nvgt;", (62, 8402)), + ("rightarr", (0, 0)), + ("xcap", (0, 0)), + ("blacktriangleleft;", (9666, 0)), + ("Ascr;", (119964, 0)), + ("pscr;", (120005, 0)), + ("straightepsilo", (0, 0)), + ("Upd", (0, 0)), + ("rnm", (0, 0)), + ("nright", (0, 0)), + ("NotNestedLessLe", (0, 0)), + ("cupc", (0, 0)), + ("rightthreet", (0, 0)), + ("ordf", (170, 0)), + ("notind", (0, 0)), + ("lBa", (0, 0)), + ("varsubsetne", (0, 0)), + ("Pr;", (10939, 0)), + ("Scaro", (0, 0)), + ("odot;", (8857, 0)), + ("OverPa", (0, 0)), + ("TSHcy", (0, 0)), + ("drcrop", (0, 0)), + ("Clos", (0, 0)), + ("UnderPar", (0, 0)), + ("dagge", (0, 0)), + ("nvsim", (0, 0)), + ("lowast;", (8727, 0)), + ("succa", (0, 0)), + ("ncup;", (10818, 0)), + ("v", (0, 0)), + ("backsime", (0, 0)), + ("frac25", (0, 0)), + ("backcong;", (8780, 0)), + ("DownRightTeeVe", (0, 0)), + ("Sc", (0, 0)), + ("odblac;", (337, 0)), + ("oslash", (248, 0)), + ("HumpDownHump;", (8782, 0)), + ("dHar;", (10597, 0)), + ("Circle", (0, 0)), + ("xcup", (0, 0)), + ("centerdo", (0, 0)), + ("yc", (0, 0)), + ("searhk", (0, 0)), + ("aw", (0, 0)), + ("Ograve;", (210, 0)), + ("HumpDo", (0, 0)), + ("nLe", (0, 0)), + ("DoubleUpArrow", (0, 0)), + ("DownRightVec", (0, 0)), + ("Nfr", (0, 0)), + ("lambd", (0, 0)), + ("Exis", (0, 0)), + ("CupCap;", (8781, 0)), + ("angl", (0, 0)), + ("trade", (0, 0)), + ("straightp", (0, 0)), + ("swarhk", (0, 0)), + ("llhard;", (10603, 0)), + ("fallingdotseq", (0, 0)), + ("roti", (0, 0)), + ("excl", (0, 0)), + ("NegativeMediumS", (0, 0)), + ("Righ", (0, 0)), + ("Uparro", (0, 0)), + ("Barwed;", (8966, 0)), + ("LeftDownTeeV", (0, 0)), + ("demptyv;", (10673, 0)), + ("udblac;", (369, 0)), + ("sub;", (8834, 0)), + ("urtr", (0, 0)), + ("vartriang", (0, 0)), + ("race;", (8765, 817)), + ("LeftRight", (0, 0)), + ("doubleb", (0, 0)), + ("Delt", (0, 0)), + ("DoubleRightA", (0, 0)), + ("RightDownVectorBar;", (10581, 0)), + ("DD", (0, 0)), + ("boxUL;", (9565, 0)), + ("uacut", (0, 0)), + ("NonBreaking", (0, 0)), + ("aacute", (225, 0)), + ("rarrfs;", (10526, 0)), + ("Prime;", (8243, 0)), + ("blk34", (0, 0)), + ("capcap;", (10827, 0)), + ("sext", (0, 0)), + ("cups;", (8746, 65024)), + ("LeftArrowBa", (0, 0)), + ("upharpoon", (0, 0)), + ("gl", (0, 0)), + ("ngs", (0, 0)), + ("lsh", (0, 0)), + ("NegativeThi", (0, 0)), + ("circledast;", (8859, 0)), + ("GreaterEqual", (0, 0)), + ("paral", (0, 0)), + ("Bernoul", (0, 0)), + ("Vert;", (8214, 0)), + ("swarh", (0, 0)), + ("spade", (0, 0)), + ("Aacute;", (193, 0)), + ("boxhU", (0, 0)), + ("LowerLeftAr", (0, 0)), + ("NotGreaterEq", (0, 0)), + ("csup;", (10960, 0)), + ("vee;", (8744, 0)), + ("DownTeeAr", (0, 0)), + ("Pr", (0, 0)), + ("gvertneqq;", (8809, 65024)), + ("NotPrecedesS", (0, 0)), + ("boxV", (0, 0)), + ("ngsim", (0, 0)), + ("NotGreaterF", (0, 0)), + ("vArr", (0, 0)), + ("origof;", (8886, 0)), + ("RightUpDown", (0, 0)), + ("DoubleCont", (0, 0)), + ("pitchfork;", (8916, 0)), + ("Iacu", (0, 0)), + ("rl", (0, 0)), + ("precneqq", (0, 0)), + ("larrlp;", (8619, 0)), + ("geqq", (0, 0)), + ("nb", (0, 0)), + ("simne;", (8774, 0)), + ("ldrdhar;", (10599, 0)), + ("nshortp", (0, 0)), + ("DownLeftVector", (0, 0)), + ("wp;", (8472, 0)), + ("LeftDownVectorBa", (0, 0)), + ("Cacute", (0, 0)), + ("swarhk;", (10534, 0)), + ("Rrightarr", (0, 0)), + ("NegativeMediumSp", (0, 0)), + ("Qscr", (0, 0)), + ("GJcy", (0, 0)), + ("imagpart;", (8465, 0)), + ("rmous", (0, 0)), + ("there4;", (8756, 0)), + ("larrb", (0, 0)), + ("angzar", (0, 0)), + ("me", (0, 0)), + ("Nacute", (0, 0)), + ("rbrkslu;", (10640, 0)), + ("RightUpTeeVec", (0, 0)), + ("EmptySmal", (0, 0)), + ("NotGreat", (0, 0)), + ("VerticalTild", (0, 0)), + ("pitchf", (0, 0)), + ("nexists", (0, 0)), + ("notinva;", (8713, 0)), + ("Conto", (0, 0)), + ("clubs", (0, 0)), + ("bigtriangleu", (0, 0)), + ("harrc", (0, 0)), + ("nwarr", (0, 0)), + ("wopf;", (120168, 0)), + ("downarrow;", (8595, 0)), + ("Partia", (0, 0)), + ("nvrArr", (0, 0)), + ("supse", (0, 0)), + ("And;", (10835, 0)), + ("thks", (0, 0)), + ("triangleq", (0, 0)), + ("Pc", (0, 0)), + ("GreaterTild", (0, 0)), + ("CounterClockwiseConto", (0, 0)), + ("szl", (0, 0)), + ("preccurlyeq", (0, 0)), + ("NotPrecedesSla", (0, 0)), + ("ac;", (8766, 0)), + ("lfloor", (0, 0)), + ("eplus", (0, 0)), + ("rbrace;", (125, 0)), + ("rarrap;", (10613, 0)), + ("awin", (0, 0)), + ("eqc", (0, 0)), + ("fscr;", (119995, 0)), + ("hairsp;", (8202, 0)), + ("searro", (0, 0)), + ("DoubleContourIntegra", (0, 0)), + ("VerticalSeparator", (0, 0)), + ("Cedil", (0, 0)), + ("smepars", (0, 0)), + ("LowerRig", (0, 0)), + ("NotPr", (0, 0)), + ("rha", (0, 0)), + ("boxhD;", (9573, 0)), + ("ems", (0, 0)), + ("efDot", (0, 0)), + ("shortmi", (0, 0)), + ("lmoustache", (0, 0)), + ("backs", (0, 0)), + ("rdldha", (0, 0)), + ("bsolhsub", (0, 0)), + ("mapstoup;", (8613, 0)), + ("fla", (0, 0)), + ("circledcir", (0, 0)), + ("uscr", (0, 0)), + ("bigopl", (0, 0)), + ("niv;", (8715, 0)), + ("RoundI", (0, 0)), + ("boxplus", (0, 0)), + ("dha", (0, 0)), + ("smtes;", (10924, 65024)), + ("vB", (0, 0)), + ("imagli", (0, 0)), + ("bfr;", (120095, 0)), + ("HilbertS", (0, 0)), + ("GreaterFullEqu", (0, 0)), + ("uri", (0, 0)), + ("circlearrow", (0, 0)), + ("Me", (0, 0)), + ("RightUpVector", (0, 0)), + ("njcy", (0, 0)), + ("Lcaron", (0, 0)), + ("ncaron", (0, 0)), + ("bigtri", (0, 0)), + ("nlsi", (0, 0)), + ("reg", (174, 0)), + ("lescc;", (10920, 0)), + ("gbrev", (0, 0)), + ("prnE;", (10933, 0)), + ("leq;", (8804, 0)), + ("Reve", (0, 0)), + ("cwconin", (0, 0)), + ("RightV", (0, 0)), + ("becaus;", (8757, 0)), + ("Racu", (0, 0)), + ("Ncedil;", (325, 0)), + ("SquareInte", (0, 0)), + ("hookrightarrow", (0, 0)), + ("qprim", (0, 0)), + ("Kced", (0, 0)), + ("nrtrie", (0, 0)), + ("lowast", (0, 0)), + ("ltquest;", (10875, 0)), + ("SucceedsTil", (0, 0)), + ("Amacr", (0, 0)), + ("Hilb", (0, 0)), + ("NotHumpDownH", (0, 0)), + ("sqsupse", (0, 0)), + ("bep", (0, 0)), + ("boxu", (0, 0)), + ("Ma", (0, 0)), + ("bem", (0, 0)), + ("ApplyFunctio", (0, 0)), + ("dagger;", (8224, 0)), + ("Colone", (0, 0)), + ("lesd", (0, 0)), + ("SubsetEq", (0, 0)), + ("khcy;", (1093, 0)), + ("nvrtr", (0, 0)), + ("Oopf;", (120134, 0)), + ("otimes;", (8855, 0)), + ("trianglelefteq;", (8884, 0)), + ("nVdash", (0, 0)), + ("profala", (0, 0)), + ("risingdotseq;", (8787, 0)), + ("NotReverseElement", (0, 0)), + ("nRighta", (0, 0)), + ("langle;", (10216, 0)), + ("Kc", (0, 0)), + ("numero;", (8470, 0)), + ("UpEquilibrium;", (10606, 0)), + ("DiacriticalDoubleA", (0, 0)), + ("Xs", (0, 0)), + ("lrc", (0, 0)), + ("Abre", (0, 0)), + ("iota;", (953, 0)), + ("Rcy", (0, 0)), + ("simlE;", (10911, 0)), + ("Os", (0, 0)), + ("ugr", (0, 0)), + ("PrecedesEqua", (0, 0)), + ("eo", (0, 0)), + ("kjc", (0, 0)), + ("SquareUnio", (0, 0)), + ("lacute", (0, 0)), + ("GreaterEqualLess", (0, 0)), + ("bec", (0, 0)), + ("backsim;", (8765, 0)), + ("DoubleLongLeftA", (0, 0)), + ("longmap", (0, 0)), + ("tho", (0, 0)), + ("ApplyFu", (0, 0)), + ("equ", (0, 0)), + ("Kopf", (0, 0)), + ("Agr", (0, 0)), + ("LongLeftArro", (0, 0)), + ("Scaron;", (352, 0)), + ("SquareSubsetEqual", (0, 0)), + ("frac18", (0, 0)), + ("succns", (0, 0)), + ("bigcap;", (8898, 0)), + ("plusdu;", (10789, 0)), + ("nsm", (0, 0)), + ("real;", (8476, 0)), + ("NJcy", (0, 0)), + ("blacklozen", (0, 0)), + ("ncaro", (0, 0)), + ("bkar", (0, 0)), + ("gtrap", (0, 0)), + ("rdq", (0, 0)), + ("SquareInt", (0, 0)), + ("rpar", (0, 0)), + ("VD", (0, 0)), + ("CapitalDiffere", (0, 0)), + ("Gam", (0, 0)), + ("geqslant", (0, 0)), + ("leq", (0, 0)), + ("dia", (0, 0)), + ("straightepsilon", (0, 0)), + ("ncap", (0, 0)), + ("vDash", (0, 0)), + ("ugrave", (249, 0)), + ("rightleftharpoons;", (8652, 0)), + ("approxeq", (0, 0)), + ("RightTriang", (0, 0)), + ("odiv", (0, 0)), + ("egsdo", (0, 0)), + ("Exist", (0, 0)), + ("RightTeeArr", (0, 0)), + ("Equilibriu", (0, 0)), + ("Qsc", (0, 0)), + ("rightleftharp", (0, 0)), + ("srar", (0, 0)), + ("gl;", (8823, 0)), + ("rmoust;", (9137, 0)), + ("Bern", (0, 0)), + ("hksearow", (0, 0)), + ("oacute", (243, 0)), + ("Xscr", (0, 0)), + ("gfr;", (120100, 0)), + ("bsime", (0, 0)), + ("ordero", (0, 0)), + ("uAr", (0, 0)), + ("UnderBrace", (0, 0)), + ("NotLes", (0, 0)), + ("lscr;", (120001, 0)), + ("ntrianglerigh", (0, 0)), + ("nleftright", (0, 0)), + ("rh", (0, 0)), + ("pra", (0, 0)), + ("SucceedsE", (0, 0)), + ("RightTriangleB", (0, 0)), + ("per", (0, 0)), + ("eqvpar", (0, 0)), + ("mlcp", (0, 0)), + ("NegativeVeryThi", (0, 0)), + ("TildeEqual", (0, 0)), + ("api", (0, 0)), + ("therefore;", (8756, 0)), + ("gdot;", (289, 0)), + ("ntrianglelefte", (0, 0)), + ("scpo", (0, 0)), + ("Ifr;", (8465, 0)), + ("Tst", (0, 0)), + ("Invisib", (0, 0)), + ("csu", (0, 0)), + ("RightD", (0, 0)), + ("Differe", (0, 0)), + ("nra", (0, 0)), + ("lesges;", (10899, 0)), + ("Psc", (0, 0)), + ("io", (0, 0)), + ("iprod;", (10812, 0)), + ("Int", (0, 0)), + ("DownLeftTeeVector;", (10590, 0)), + ("LeftDownVec", (0, 0)), + ("ml", (0, 0)), + ("DownLeftT", (0, 0)), + ("ReverseElement;", (8715, 0)), + ("lsim", (0, 0)), + ("nlar", (0, 0)), + ("CapitalDifferenti", (0, 0)), + ("Ua", (0, 0)), + ("uml", (168, 0)), + ("nmi", (0, 0)), + ("sce", (0, 0)), + ("Hacek;", (711, 0)), + ("Coun", (0, 0)), + ("poun", (0, 0)), + ("rhov;", (1009, 0)), + ("NotDoubleVe", (0, 0)), + ("UpTeeAr", (0, 0)), + ("larrf", (0, 0)), + ("Bump", (0, 0)), + ("nLeftarro", (0, 0)), + ("ddo", (0, 0)), + ("lflo", (0, 0)), + ("Wc", (0, 0)), + ("ovbar;", (9021, 0)), + ("starf", (0, 0)), + ("Wci", (0, 0)), + ("Longrightarr", (0, 0)), + ("looparr", (0, 0)), + ("Appl", (0, 0)), + ("ascr;", (119990, 0)), + ("NotNestedGreaterGreat", (0, 0)), + ("NotVertica", (0, 0)), + ("subset", (0, 0)), + ("npol", (0, 0)), + ("Ou", (0, 0)), + ("nsupseteq", (0, 0)), + ("Iscr;", (8464, 0)), + ("nscr", (0, 0)), + ("Q", (0, 0)), + ("lnap", (0, 0)), + ("sla", (0, 0)), + ("DiacriticalDoubleAcute", (0, 0)), + ("RightUpVectorB", (0, 0)), + ("NotPrecedesSlant", (0, 0)), + ("DoubleLongRightArr", (0, 0)), + ("LeftDownV", (0, 0)), + ("Ecirc;", (202, 0)), + ("lbrksld", (0, 0)), + ("NotGreaterLe", (0, 0)), + ("LongLeftRi", (0, 0)), + ("cyl", (0, 0)), + ("Longrightarro", (0, 0)), + ("DDotrahd", (0, 0)), + ("tscy", (0, 0)), + ("If", (0, 0)), + ("plustwo", (0, 0)), + ("rcu", (0, 0)), + ("ch", (0, 0)), + ("Diacritica", (0, 0)), + ("Hace", (0, 0)), + ("InvisibleT", (0, 0)), + ("Dfr", (0, 0)), + ("Yuml;", (376, 0)), + ("bcy", (0, 0)), + ("udhar", (0, 0)), + ("Propo", (0, 0)), + ("dashv;", (8867, 0)), + ("nprcue;", (8928, 0)), + ("Asc", (0, 0)), + ("commat", (0, 0)), + ("Grea", (0, 0)), + ("xvee;", (8897, 0)), + ("rbrksl", (0, 0)), + ("Tsc", (0, 0)), + ("ccupss", (0, 0)), + ("nesear", (0, 0)), + ("rightlefthar", (0, 0)), + ("DoubleLongRightAr", (0, 0)), + ("min", (0, 0)), + ("meas", (0, 0)), + ("npolin", (0, 0)), + ("swn", (0, 0)), + ("bd", (0, 0)), + ("nsuc", (0, 0)), + ("fra", (0, 0)), + ("dzigr", (0, 0)), + ("usc", (0, 0)), + ("risingdotse", (0, 0)), + ("ocirc", (244, 0)), + ("csup", (0, 0)), + ("tscr;", (120009, 0)), + ("hor", (0, 0)), + ("cuesc", (0, 0)), + ("cudarrr", (0, 0)), + ("boxDL", (0, 0)), + ("ncongdo", (0, 0)), + ("Mscr", (0, 0)), + ("DownLeftVec", (0, 0)), + ("Cay", (0, 0)), + ("cupb", (0, 0)), + ("checkma", (0, 0)), + ("gjc", (0, 0)), + ("lm", (0, 0)), + ("Gced", (0, 0)), + ("vee", (0, 0)), + ("xi", (0, 0)), + ("preccu", (0, 0)), + ("EmptyVerySmallS", (0, 0)), + ("Rightarrow", (0, 0)), + ("longleftr", (0, 0)), + ("ipro", (0, 0)), + ("frac23;", (8532, 0)), + ("lA", (0, 0)), + ("Cconin", (0, 0)), + ("Vba", (0, 0)), + ("ddar", (0, 0)), + ("mstpos;", (8766, 0)), + ("angsph;", (8738, 0)), + ("HARD", (0, 0)), + ("sup;", (8835, 0)), + ("HumpDown", (0, 0)), + ("Edot;", (278, 0)), + ("NotSucceedsTilde;", (8831, 824)), + ("Uog", (0, 0)), + ("NestedLessLe", (0, 0)), + ("Ocir", (0, 0)), + ("heart", (0, 0)), + ("Agrave;", (192, 0)), + ("SquareIntersection;", (8851, 0)), + ("uparro", (0, 0)), + ("strn", (0, 0)), + ("rsh", (0, 0)), + ("lHa", (0, 0)), + ("hci", (0, 0)), + ("bigotime", (0, 0)), + ("LessLe", (0, 0)), + ("Capit", (0, 0)), + ("Equ", (0, 0)), + ("nrt", (0, 0)), + ("Lam", (0, 0)), + ("centerdot", (0, 0)), + ("realpa", (0, 0)), + ("gammad", (0, 0)), + ("NotLessTi", (0, 0)), + ("OverBrace", (0, 0)), + ("vda", (0, 0)), + ("twoheadrightarr", (0, 0)), + ("ClockwiseContourInteg", (0, 0)), + ("dot", (0, 0)), + ("ii", (0, 0)), + ("curvearrowrigh", (0, 0)), + ("PrecedesSl", (0, 0)), + ("zi", (0, 0)), + ("tsh", (0, 0)), + ("vnsub", (0, 0)), + ("rb", (0, 0)), + ("lcub;", (123, 0)), + ("betwee", (0, 0)), + ("Super", (0, 0)), + ("NotGreaterTilde;", (8821, 0)), + ("dua", (0, 0)), + ("Great", (0, 0)), + ("NotS", (0, 0)), + ("nle", (0, 0)), + ("lharu", (0, 0)), + ("rin", (0, 0)), + ("Sacute;", (346, 0)), + ("rbrack;", (93, 0)), + ("DoubleDot;", (168, 0)), + ("Jcy;", (1049, 0)), + ("xsqcup;", (10758, 0)), + ("UpArrowDownArrow", (0, 0)), + ("Laplacet", (0, 0)), + ("Map", (0, 0)), + ("HARDc", (0, 0)), + ("bfr", (0, 0)), + ("preceq", (0, 0)), + ("rdsh", (0, 0)), + ("Mellintrf;", (8499, 0)), + ("LeftRightVector", (0, 0)), + ("Poinca", (0, 0)), + ("imp", (0, 0)), + ("varsubsetneqq;", (10955, 65024)), + ("nsupset;", (8835, 8402)), + ("exp", (0, 0)), + ("rmoust", (0, 0)), + ("NegativeVeryThinS", (0, 0)), + ("NotHumpEqual", (0, 0)), + ("rdquo;", (8221, 0)), + ("TildeEqu", (0, 0)), + ("sccue;", (8829, 0)), + ("ThinSpa", (0, 0)), + ("hairs", (0, 0)), + ("nes", (0, 0)), + ("Hat", (0, 0)), + ("Rcaron", (0, 0)), + ("TildeE", (0, 0)), + ("hslas", (0, 0)), + ("bcy;", (1073, 0)), + ("amalg", (0, 0)), + ("SquareSubse", (0, 0)), + ("NotGreater;", (8815, 0)), + ("bullet", (0, 0)), + ("otimesas;", (10806, 0)), + ("ed", (0, 0)), + ("NegativeVeryThinSpac", (0, 0)), + ("jukc", (0, 0)), + ("planck;", (8463, 0)), + ("VerticalLine", (0, 0)), + ("nvD", (0, 0)), + ("oel", (0, 0)), + ("nparall", (0, 0)), + ("qpr", (0, 0)), + ("capa", (0, 0)), + ("gtrd", (0, 0)), + ("nsupseteq;", (8841, 0)), + ("Conint;", (8751, 0)), + ("NonBr", (0, 0)), + ("twoheadrightar", (0, 0)), + ("Iuml;", (207, 0)), + ("rlarr;", (8644, 0)), + ("epar;", (8917, 0)), + ("LeftUpVectorBar;", (10584, 0)), + ("To", (0, 0)), + ("LessEqualGrea", (0, 0)), + ("jc", (0, 0)), + ("yacute", (253, 0)), + ("leftrightsquigar", (0, 0)), + ("targe", (0, 0)), + ("uArr", (0, 0)), + ("EmptyVerySmallSquare;", (9643, 0)), + ("Rang", (0, 0)), + ("uwangle", (0, 0)), + ("iopf", (0, 0)), + ("gtrappr", (0, 0)), + ("smte", (0, 0)), + ("hslash;", (8463, 0)), + ("Impli", (0, 0)), + ("nrig", (0, 0)), + ("imag", (0, 0)), + ("od", (0, 0)), + ("Thi", (0, 0)), + ("O", (0, 0)), + ("RightUpDownVector", (0, 0)), + ("vltri;", (8882, 0)), + ("ShortRight", (0, 0)), + ("ntr", (0, 0)), + ("ddotseq;", (10871, 0)), + ("LessLess", (0, 0)), + ("toea;", (10536, 0)), + ("macr", (175, 0)), + ("LeftUpVectorBa", (0, 0)), + ("tsc", (0, 0)), + ("ldru", (0, 0)), + ("simpl", (0, 0)), + ("bigtriangled", (0, 0)), + ("DownRightVect", (0, 0)), + ("zfr", (0, 0)), + ("CloseCurlyQu", (0, 0)), + ("bdqu", (0, 0)), + ("lessap", (0, 0)), + ("NegativeThinSpa", (0, 0)), + ("verba", (0, 0)), + ("gsi", (0, 0)), + ("ClockwiseContou", (0, 0)), + ("phone", (0, 0)), + ("Zopf;", (8484, 0)), + ("lbrke", (0, 0)), + ("wopf", (0, 0)), + ("clubs;", (9827, 0)), + ("parallel;", (8741, 0)), + ("mapstole", (0, 0)), + ("sfrown;", (8994, 0)), + ("rAar", (0, 0)), + ("lrhard;", (10605, 0)), + ("Nopf;", (8469, 0)), + ("rppolint", (0, 0)), + ("notniv", (0, 0)), + ("gtr", (0, 0)), + ("NotGre", (0, 0)), + ("ENG;", (330, 0)), + ("inter", (0, 0)), + ("Jcirc", (0, 0)), + ("Intersecti", (0, 0)), + ("bscr", (0, 0)), + ("order;", (8500, 0)), + ("fll", (0, 0)), + ("xc", (0, 0)), + ("supdo", (0, 0)), + ("DDotra", (0, 0)), + ("cylcty;", (9005, 0)), + ("DownRightTee", (0, 0)), + ("supseteq;", (8839, 0)), + ("gim", (0, 0)), + ("ctdot;", (8943, 0)), + ("mu;", (956, 0)), + ("part;", (8706, 0)), + ("Bc", (0, 0)), + ("npreceq;", (10927, 824)), + ("cupor;", (10821, 0)), + ("looparrowl", (0, 0)), + ("boxvR;", (9566, 0)), + ("doubl", (0, 0)), + ("ldquo;", (8220, 0)), + ("Ecy", (0, 0)), + ("minusb;", (8863, 0)), + ("RightUpDow", (0, 0)), + ("oin", (0, 0)), + ("lneq;", (10887, 0)), + ("DoubleLongLeftRi", (0, 0)), + ("awc", (0, 0)), + ("latail;", (10521, 0)), + ("blacktriangle", (0, 0)), + ("sfro", (0, 0)), + ("questeq;", (8799, 0)), + ("bigtria", (0, 0)), + ("ZeroWidthSpace", (0, 0)), + ("NotCupCap;", (8813, 0)), + ("urc", (0, 0)), + ("Hsc", (0, 0)), + ("llcorne", (0, 0)), + ("rscr", (0, 0)), + ("DoubleLeftT", (0, 0)), + ("LongRightArro", (0, 0)), + ("PlusMinus;", (177, 0)), + ("Lacu", (0, 0)), + ("SquareUnion", (0, 0)), + ("bne", (0, 0)), + ("Ccirc", (0, 0)), + ("FilledVerySmallSquare;", (9642, 0)), + ("rightrightarro", (0, 0)), + ("HARDcy;", (1066, 0)), + ("Barwe", (0, 0)), + ("Very", (0, 0)), + ("CircleDot;", (8857, 0)), + ("jo", (0, 0)), + ("lata", (0, 0)), + ("nge;", (8817, 0)), + ("imat", (0, 0)), + ("boxUR;", (9562, 0)), + ("DoubleContourIntegral", (0, 0)), + ("notin", (0, 0)), + ("curlyeqp", (0, 0)), + ("equi", (0, 0)), + ("npre;", (10927, 824)), + ("diamo", (0, 0)), + ("LeftDoub", (0, 0)), + ("Yu", (0, 0)), + ("leftarrowtail;", (8610, 0)), + ("CounterClockwiseContourInte", (0, 0)), + ("Ri", (0, 0)), + ("ThickSpace;", (8287, 8202)), + ("hscr;", (119997, 0)), + ("fcy;", (1092, 0)), + ("rang", (0, 0)), + ("longrigh", (0, 0)), + ("Ncaro", (0, 0)), + ("ses", (0, 0)), + ("LeftArrowRightArr", (0, 0)), + ("DoubleDown", (0, 0)), + ("lessgt", (0, 0)), + ("ReverseEquilibri", (0, 0)), + ("RightCei", (0, 0)), + ("fall", (0, 0)), + ("de", (0, 0)), + ("precnappr", (0, 0)), + ("NonBreaki", (0, 0)), + ("xoplus;", (10753, 0)), + ("jserc", (0, 0)), + ("updownar", (0, 0)), + ("N", (0, 0)), + ("frac38;", (8540, 0)), + ("Nes", (0, 0)), + ("subseteqq", (0, 0)), + ("NotLessTilde", (0, 0)), + ("NotHumpE", (0, 0)), + ("OverBa", (0, 0)), + ("Prop", (0, 0)), + ("bbrk", (0, 0)), + ("bno", (0, 0)), + ("nLt;", (8810, 8402)), + ("ltqu", (0, 0)), + ("looparrowrig", (0, 0)), + ("lsqb;", (91, 0)), + ("efDot;", (8786, 0)), + ("gamma", (0, 0)), + ("Rrightarro", (0, 0)), + ("longleft", (0, 0)), + ("TildeEq", (0, 0)), + ("mho;", (8487, 0)), + ("longrig", (0, 0)), + ("Kce", (0, 0)), + ("scnap", (0, 0)), + ("Scedil;", (350, 0)), + ("nVdas", (0, 0)), + ("Om", (0, 0)), + ("xwedg", (0, 0)), + ("vzigzag;", (10650, 0)), + ("Exists", (0, 0)), + ("rightleftharpo", (0, 0)), + ("gsiml;", (10896, 0)), + ("rsquor;", (8217, 0)), + ("LongLef", (0, 0)), + ("Capi", (0, 0)), + ("isinE", (0, 0)), + ("triangle;", (9653, 0)), + ("SucceedsSlantEqual", (0, 0)), + ("twoheadright", (0, 0)), + ("jcy", (0, 0)), + ("OverPar", (0, 0)), + ("Of", (0, 0)), + ("frac13;", (8531, 0)), + ("toe", (0, 0)), + ("lamb", (0, 0)), + ("nLeftri", (0, 0)), + ("stra", (0, 0)), + ("RightTe", (0, 0)), + ("rp", (0, 0)), + ("DownB", (0, 0)), + ("els;", (10901, 0)), + ("larrbfs", (0, 0)), + ("CH", (0, 0)), + ("bco", (0, 0)), + ("naturals", (0, 0)), + ("odsol", (0, 0)), + ("nsu", (0, 0)), + ("DiacriticalAcu", (0, 0)), + ("phi;", (966, 0)), + ("RuleDelaye", (0, 0)), + ("frac56", (0, 0)), + ("rtrilt", (0, 0)), + ("nsupE;", (10950, 824)), + ("doubleba", (0, 0)), + ("yac", (0, 0)), + ("curlywed", (0, 0)), + ("Hstrok;", (294, 0)), + ("cuda", (0, 0)), + ("capc", (0, 0)), + ("Kscr;", (119974, 0)), + ("seArr", (0, 0)), + ("LongRigh", (0, 0)), + ("larrl", (0, 0)), + ("ThinSp", (0, 0)), + ("scpol", (0, 0)), + ("raq", (0, 0)), + ("Tscr;", (119983, 0)), + ("rlm;", (8207, 0)), + ("xsqcup", (0, 0)), + ("varepsilo", (0, 0)), + ("RightUpDownVec", (0, 0)), + ("prn", (0, 0)), + ("NotRightTrian", (0, 0)), + ("Racute;", (340, 0)), + ("lacu", (0, 0)), + ("eg", (0, 0)), + ("scpolint;", (10771, 0)), + ("gbre", (0, 0)), + ("TScy", (0, 0)), + ("curvearrowleft;", (8630, 0)), + ("nedot", (0, 0)), + ("angzarr", (0, 0)), + ("Top", (0, 0)), + ("dolla", (0, 0)), + ("CapitalDifferent", (0, 0)), + ("amacr", (0, 0)), + ("ldquor;", (8222, 0)), + ("ecolo", (0, 0)), + ("notinE", (0, 0)), + ("Clo", (0, 0)), + ("nvinfi", (0, 0)), + ("succapprox", (0, 0)), + ("lesssim", (0, 0)), + ("para;", (182, 0)), + ("plankv;", (8463, 0)), + ("ClockwiseContourIn", (0, 0)), + ("nrarr", (0, 0)), + ("searh", (0, 0)), + ("precneq", (0, 0)), + ("ensp;", (8194, 0)), + ("RightC", (0, 0)), + ("Ce", (0, 0)), + ("rtriltri", (0, 0)), + ("LeftFlo", (0, 0)), + ("RightAngleBracket;", (10217, 0)), + ("boxdR", (0, 0)), + ("Contou", (0, 0)), + ("boxUR", (0, 0)), + ("Rarrt", (0, 0)), + ("FilledVerySmallSquar", (0, 0)), + ("Diacrit", (0, 0)), + ("NotLeftTriangleEq", (0, 0)), + ("dots", (0, 0)), + ("ijli", (0, 0)), + ("Od", (0, 0)), + ("ReverseUp", (0, 0)), + ("Colon", (0, 0)), + ("zc", (0, 0)), + ("DownLeftTeeVect", (0, 0)), + ("ecy;", (1101, 0)), + ("afr", (0, 0)), + ("emsp13", (0, 0)), + ("ulcrop;", (8975, 0)), + ("rarrw", (0, 0)), + ("nvsim;", (8764, 8402)), + ("rc", (0, 0)), + ("vartrian", (0, 0)), + ("dfish", (0, 0)), + ("acute;", (180, 0)), + ("edot", (0, 0)), + ("Vvda", (0, 0)), + ("RightUpVectorBa", (0, 0)), + ("LeftTee", (0, 0)), + ("notniva", (0, 0)), + ("Iota;", (921, 0)), + ("iocy;", (1105, 0)), + ("NotTildeTi", (0, 0)), + ("scnsim;", (8937, 0)), + ("PrecedesTilde;", (8830, 0)), + ("nsupe;", (8841, 0)), + ("bsim;", (8765, 0)), + ("se", (0, 0)), + ("asymp", (0, 0)), + ("EmptyVerySmallSq", (0, 0)), + ("omid;", (10678, 0)), + ("circledR", (0, 0)), + ("NotGreaterFull", (0, 0)), + ("acE", (0, 0)), + ("Congr", (0, 0)), + ("olarr;", (8634, 0)), + ("bigtrian", (0, 0)), + ("X", (0, 0)), + ("nl", (0, 0)), + ("lAarr;", (8666, 0)), + ("isinsv", (0, 0)), + ("SquareIntersec", (0, 0)), + ("udblac", (0, 0)), + ("Xfr", (0, 0)), + ("vBarv;", (10985, 0)), + ("capbrc", (0, 0)), + ("simrarr;", (10610, 0)), + ("prsim", (0, 0)), + ("CirclePlus", (0, 0)), + ("spadesui", (0, 0)), + ("varsigma;", (962, 0)), + ("TR", (0, 0)), + ("oper", (0, 0)), + ("diamondsuit;", (9830, 0)), + ("sqcap", (0, 0)), + ("ltl", (0, 0)), + ("NotRightTriang", (0, 0)), + ("ici", (0, 0)), + ("gtrappro", (0, 0)), + ("HorizontalL", (0, 0)), + ("boxHU", (0, 0)), + ("Imacr", (0, 0)), + ("rect;", (9645, 0)), + ("GJ", (0, 0)), + ("boxplu", (0, 0)), + ("circledd", (0, 0)), + ("gnsim", (0, 0)), + ("eque", (0, 0)), + ("boxHd", (0, 0)), + ("swAr", (0, 0)), + ("boxb", (0, 0)), + ("LessSlant", (0, 0)), + ("Ll;", (8920, 0)), + ("larr;", (8592, 0)), + ("Lowe", (0, 0)), + ("ma", (0, 0)), + ("vop", (0, 0)), + ("eog", (0, 0)), + ("Sac", (0, 0)), + ("nvrt", (0, 0)), + ("precnsim", (0, 0)), + ("fopf;", (120151, 0)), + ("loarr;", (8701, 0)), + ("lg;", (8822, 0)), + ("iiiint", (0, 0)), + ("approxeq;", (8778, 0)), + ("hookright", (0, 0)), + ("NotDoubl", (0, 0)), + ("nsc", (0, 0)), + ("Sscr;", (119982, 0)), + ("Diacriti", (0, 0)), + ("gtreqqless", (0, 0)), + ("NotGreaterSlan", (0, 0)), + ("icir", (0, 0)), + ("Sub", (0, 0)), + ("twoheadrightarrow", (0, 0)), + ("DoubleUpDown", (0, 0)), + ("NotSucceedsSlantE", (0, 0)), + ("subseteq", (0, 0)), + ("nsubE;", (10949, 824)), + ("rtri;", (9657, 0)), + ("LongLeft", (0, 0)), + ("Tca", (0, 0)), + ("vsupne;", (8843, 65024)), + ("Updow", (0, 0)), + ("xrArr;", (10233, 0)), + ("prec;", (8826, 0)), + ("efr", (0, 0)), + ("VerticalSeparator;", (10072, 0)), + ("OpenCurlyDoub", (0, 0)), + ("Qop", (0, 0)), + ("homtht", (0, 0)), + ("Ido", (0, 0)), + ("rightrig", (0, 0)), + ("andslo", (0, 0)), + ("lesc", (0, 0)), + ("Scy;", (1057, 0)), + ("LeftTriangleEq", (0, 0)), + ("simdot;", (10858, 0)), + ("ffllig", (0, 0)), + ("trim", (0, 0)), + ("larrtl", (0, 0)), + ("nri", (0, 0)), + ("GreaterSlantEqua", (0, 0)), + ("rightarrowta", (0, 0)), + ("nshortpar", (0, 0)), + ("ncedi", (0, 0)), + ("RightArrowLe", (0, 0)), + ("simdot", (0, 0)), + ("GreaterFu", (0, 0)), + ("RightUpTeeVector;", (10588, 0)), + ("gtrsim;", (8819, 0)), + ("lates;", (10925, 65024)), + ("NotTildeF", (0, 0)), + ("simra", (0, 0)), + ("zcaro", (0, 0)), + ("LeftTriangleE", (0, 0)), + ("DoubleVertical", (0, 0)), + ("awi", (0, 0)), + ("Ucir", (0, 0)), + ("qua", (0, 0)), + ("LessTilde;", (8818, 0)), + ("propto", (0, 0)), + ("precsi", (0, 0)), + ("compf", (0, 0)), + ("lsq", (0, 0)), + ("Wo", (0, 0)), + ("ltlarr", (0, 0)), + ("andand", (0, 0)), + ("LongRight", (0, 0)), + ("cire", (0, 0)), + ("DownTee", (0, 0)), + ("Jukcy", (0, 0)), + ("simr", (0, 0)), + ("infinti", (0, 0)), + ("upuparrow", (0, 0)), + ("SquareSubset", (0, 0)), + ("expon", (0, 0)), + ("DiacriticalT", (0, 0)), + ("apac", (0, 0)), + ("Superset;", (8835, 0)), + ("Iogon", (0, 0)), + ("NoBrea", (0, 0)), + ("circledc", (0, 0)), + ("LeftArrowRi", (0, 0)), + ("LongLeftRight", (0, 0)), + ("LeftUpDownVec", (0, 0)), + ("FilledSmallS", (0, 0)), + ("Vvdash", (0, 0)), + ("fflli", (0, 0)), + ("thkap;", (8776, 0)), + ("frac16;", (8537, 0)), + ("RightAr", (0, 0)), + ("DoubleRightArro", (0, 0)), + ("ur", (0, 0)), + ("DownLeftRig", (0, 0)), + ("DoubleLeftAr", (0, 0)), + ("rsaquo", (0, 0)), + ("succ;", (8827, 0)), + ("NotHumpDownHu", (0, 0)), + ("rightrightarrow", (0, 0)), + ("lrha", (0, 0)), + ("gap;", (10886, 0)), + ("Xf", (0, 0)), + ("bul", (0, 0)), + ("RuleDelayed;", (10740, 0)), + ("eparsl;", (10723, 0)), + ("gimel", (0, 0)), + ("telrec;", (8981, 0)), + ("lowas", (0, 0)), + ("PlusMinus", (0, 0)), + ("nleqq;", (8806, 824)), + ("precapprox;", (10935, 0)), + ("vartriangleright;", (8883, 0)), + ("uu", (0, 0)), + ("NegativeVeryThin", (0, 0)), + ("frac78;", (8542, 0)), + ("Iopf", (0, 0)), + ("LowerRightA", (0, 0)), + ("NotExi", (0, 0)), + ("xot", (0, 0)), + ("CapitalDifferentialD;", (8517, 0)), + ("lacute;", (314, 0)), + ("Cap;", (8914, 0)), + ("zeetrf", (0, 0)), + ("NotRevers", (0, 0)), + ("Ao", (0, 0)), + ("ulc", (0, 0)), + ("blacktrianglelef", (0, 0)), + ("eum", (0, 0)), + ("ltquest", (0, 0)), + ("mida", (0, 0)), + ("uda", (0, 0)), + ("DiacriticalDoubl", (0, 0)), + ("ltrif", (0, 0)), + ("rightharpoonu", (0, 0)), + ("OpenCurlyQu", (0, 0)), + ("Pcy", (0, 0)), + ("sdote", (0, 0)), + ("SubsetE", (0, 0)), + ("mst", (0, 0)), + ("NestedGreaterGreate", (0, 0)), + ("Ntil", (0, 0)), + ("Amac", (0, 0)), + ("nbumpe", (0, 0)), + ("Equa", (0, 0)), + ("eqsim", (0, 0)), + ("Cent", (0, 0)), + ("Aum", (0, 0)), + ("gnsim;", (8935, 0)), + ("Because", (0, 0)), + ("xotim", (0, 0)), + ("supset;", (8835, 0)), + ("simn", (0, 0)), + ("sqsubs", (0, 0)), + ("Equili", (0, 0)), + ("LeftArrowBar", (0, 0)), + ("nless", (0, 0)), + ("NotGreaterGreater", (0, 0)), + ("gvnE;", (8809, 65024)), + ("varth", (0, 0)), + ("veeeq;", (8794, 0)), + ("Dagge", (0, 0)), + ("bigtriangl", (0, 0)), + ("SuchThat", (0, 0)), + ("OverParenthesi", (0, 0)), + ("DoubleUp", (0, 0)), + ("cups", (0, 0)), + ("DScy;", (1029, 0)), + ("dAr", (0, 0)), + ("emsp13;", (8196, 0)), + ("Yacute", (221, 0)), + ("lsimg", (0, 0)), + ("mfr;", (120106, 0)), + ("nvin", (0, 0)), + ("osl", (0, 0)), + ("vnsup", (0, 0)), + ("RightArrowLeftAr", (0, 0)), + ("weier", (0, 0)), + ("zop", (0, 0)), + ("lessgtr", (0, 0)), + ("leftleftarro", (0, 0)), + ("lessa", (0, 0)), + ("varpi;", (982, 0)), + ("Gopf;", (120126, 0)), + ("OverBracket;", (9140, 0)), + ("isins;", (8948, 0)), + ("wedgeq;", (8793, 0)), + ("simplus", (0, 0)), + ("ufisht", (0, 0)), + ("lurds", (0, 0)), + ("verbar;", (124, 0)), + ("urco", (0, 0)), + ("Uuml", (220, 0)), + ("Cacut", (0, 0)), + ("NotSucceedsSlant", (0, 0)), + ("ReverseUpEquili", (0, 0)), + ("NotDoubleVert", (0, 0)), + ("sst", (0, 0)), + ("pertenk;", (8241, 0)), + ("blacksq", (0, 0)), + ("hal", (0, 0)), + ("NotNested", (0, 0)), + ("DiacriticalGrav", (0, 0)), + ("rharul;", (10604, 0)), + ("Cca", (0, 0)), + ("yuml", (255, 0)), + ("incare;", (8453, 0)), + ("varsubse", (0, 0)), + ("ru", (0, 0)), + ("vDas", (0, 0)), + ("ifr;", (120102, 0)), + ("LeftDoubleBracke", (0, 0)), + ("ThinSpace", (0, 0)), + ("supsetne", (0, 0)), + ("sqsupset", (0, 0)), + ("Uarrocir", (0, 0)), + ("nacute;", (324, 0)), + ("xsq", (0, 0)), + ("succnapp", (0, 0)), + ("topfork", (0, 0)), + ("tritim", (0, 0)), + ("nrtr", (0, 0)), + ("quot", (34, 0)), + ("ep", (0, 0)), + ("mho", (0, 0)), + ("Proportiona", (0, 0)), + ("NestedGreaterGre", (0, 0)), + ("DoubleCon", (0, 0)), + ("cire;", (8791, 0)), + ("RightTeeArrow", (0, 0)), + ("nedot;", (8784, 824)), + ("OpenCurlyDouble", (0, 0)), + ("NotGr", (0, 0)), + ("sea", (0, 0)), + ("geqq;", (8807, 0)), + ("um", (0, 0)), + ("rlh", (0, 0)), + ("jf", (0, 0)), + ("lc", (0, 0)), + ("das", (0, 0)), + ("swArr;", (8665, 0)), + ("DownLeftVectorBa", (0, 0)), + ("ssetmn", (0, 0)), + ("Eleme", (0, 0)), + ("upa", (0, 0)), + ("angsph", (0, 0)), + ("com", (0, 0)), + ("cirE;", (10691, 0)), + ("loan", (0, 0)), + ("Yacute;", (221, 0)), + ("dollar;", (36, 0)), + ("Contour", (0, 0)), + ("gvert", (0, 0)), + ("rceil", (0, 0)), + ("cuepr;", (8926, 0)), + ("La", (0, 0)), + ("CircleMi", (0, 0)), + ("DoubleLongLeftRight", (0, 0)), + ("nm", (0, 0)), + ("ltimes;", (8905, 0)), + ("UpperRigh", (0, 0)), + ("rae", (0, 0)), + ("Ocirc", (212, 0)), + ("gesl", (0, 0)), + ("pointi", (0, 0)), + ("rsqb;", (93, 0)), + ("ko", (0, 0)), + ("nhpar", (0, 0)), + ("scy", (0, 0)), + ("urcorner;", (8989, 0)), + ("ImaginaryI;", (8520, 0)), + ("Equil", (0, 0)), + ("vert;", (124, 0)), + ("leftlef", (0, 0)), + ("boxVH;", (9580, 0)), + ("yscr", (0, 0)), + ("uacute", (250, 0)), + ("RightArrowLeftArrow;", (8644, 0)), + ("Negative", (0, 0)), + ("Diamond;", (8900, 0)), + ("punc", (0, 0)), + ("Aogon;", (260, 0)), + ("LeftCe", (0, 0)), + ("NegativeMed", (0, 0)), + ("iques", (0, 0)), + ("forall", (0, 0)), + ("Supse", (0, 0)), + ("boxVH", (0, 0)), + ("NotRightTriangleBar;", (10704, 824)), + ("NotNestedLessLess;", (10913, 824)), + ("Diamo", (0, 0)), + ("NotRever", (0, 0)), + ("profsur", (0, 0)), + ("LeftTeeArrow", (0, 0)), + ("rarrlp;", (8620, 0)), + ("filig;", (64257, 0)), + ("Ex", (0, 0)), + ("nearh", (0, 0)), + ("ssc", (0, 0)), + ("Qfr", (0, 0)), + ("ecolon", (0, 0)), + ("Product", (0, 0)), + ("triangleright", (0, 0)), + ("mapstod", (0, 0)), + ("igrave;", (236, 0)), + ("bigstar;", (9733, 0)), + ("Uni", (0, 0)), + ("rightthreetim", (0, 0)), + ("Poincarepl", (0, 0)), + ("Gammad", (0, 0)), + ("bigoplu", (0, 0)), + ("varnothi", (0, 0)), + ("DownLeftVectorBar", (0, 0)), + ("fscr", (0, 0)), + ("Jscr", (0, 0)), + ("nsup", (0, 0)), + ("smil", (0, 0)), + ("Updowna", (0, 0)), + ("NotDoubleVertica", (0, 0)), + ("ropf", (0, 0)), + ("uH", (0, 0)), + ("hks", (0, 0)), + ("sce;", (10928, 0)), + ("xmap", (0, 0)), + ("loopar", (0, 0)), + ("SquareSupersetEqual;", (8850, 0)), + ("iota", (0, 0)), + ("delta;", (948, 0)), + ("xopf;", (120169, 0)), + ("wp", (0, 0)), + ("amal", (0, 0)), + ("nlt;", (8814, 0)), + ("NoB", (0, 0)), + ("yuml;", (255, 0)), + ("neArr;", (8663, 0)), + ("Cf", (0, 0)), + ("Gbrev", (0, 0)), + ("doll", (0, 0)), + ("oc", (0, 0)), + ("ulcorn", (0, 0)), + ("UnderP", (0, 0)), + ("nabla", (0, 0)), + ("leftleftarrows", (0, 0)), + ("Coproduct;", (8720, 0)), + ("nsqsube", (0, 0)), + ("angmsdaa", (0, 0)), + ("Dst", (0, 0)), + ("CapitalDifferentialD", (0, 0)), + ("shortm", (0, 0)), + ("doteqdot;", (8785, 0)), + ("SHcy", (0, 0)), + ("SOFTc", (0, 0)), + ("Gbre", (0, 0)), + ("quate", (0, 0)), + ("subnE;", (10955, 0)), + ("LessTilde", (0, 0)), + ("supd", (0, 0)), + ("doublebarwedge;", (8966, 0)), + ("iff;", (8660, 0)), + ("awcon", (0, 0)), + ("lfl", (0, 0)), + ("FilledSmallSqua", (0, 0)), + ("VeryThinSpace;", (8202, 0)), + ("subrarr;", (10617, 0)), + ("alpha", (0, 0)), + ("Csc", (0, 0)), + ("ovbar", (0, 0)), + ("lra", (0, 0)), + ("ubreve;", (365, 0)), + ("NotLessSla", (0, 0)), + ("Rce", (0, 0)), + ("nLeftrighta", (0, 0)), + ("NegativeVeryT", (0, 0)), + ("lrtr", (0, 0)), + ("Yuml", (0, 0)), + ("CloseCurlyDou", (0, 0)), + ("fork", (0, 0)), + ("ruluhar;", (10600, 0)), + ("rBa", (0, 0)), + ("varr;", (8597, 0)), + ("smallsetminus;", (8726, 0)), + ("lsqb", (0, 0)), + ("yu", (0, 0)), + ("olcr", (0, 0)), + ("bigcap", (0, 0)), + ("NotSubsetEqua", (0, 0)), + ("NotSucceedsSlantEqua", (0, 0)), + ("DoubleLongRightA", (0, 0)), + ("interca", (0, 0)), + ("larrbfs;", (10527, 0)), + ("apa", (0, 0)), + ("NotSquareSuperset", (0, 0)), + ("nvdash", (0, 0)), + ("DownTee;", (8868, 0)), + ("xuplus;", (10756, 0)), + ("OverBrace;", (9182, 0)), + ("tridot", (0, 0)), + ("bigtr", (0, 0)), + ("Osl", (0, 0)), + ("lmo", (0, 0)), + ("Sscr", (0, 0)), + ("OverBrac", (0, 0)), + ("rightleftarr", (0, 0)), + ("nsime;", (8772, 0)), + ("sqcups;", (8852, 65024)), + ("NotTildeFullEq", (0, 0)), + ("nsc;", (8833, 0)), + ("notinvc", (0, 0)), + ("erD", (0, 0)), + ("lcar", (0, 0)), + ("CounterClockwiseContourInt", (0, 0)), + ("Fouriertrf;", (8497, 0)), + ("Rh", (0, 0)), + ("near", (0, 0)), + ("Mo", (0, 0)), + ("DotD", (0, 0)), + ("sof", (0, 0)), + ("ngt;", (8815, 0)), + ("ccups", (0, 0)), + ("appro", (0, 0)), + ("LeftDownVector;", (8643, 0)), + ("beca", (0, 0)), + ("trpez", (0, 0)), + ("blacktriangleri", (0, 0)), + ("congd", (0, 0)), + ("sacute", (0, 0)), + ("b", (0, 0)), + ("Sop", (0, 0)), + ("fllig", (0, 0)), + ("doteqdot", (0, 0)), + ("rpp", (0, 0)), + ("cente", (0, 0)), + ("bse", (0, 0)), + ("NotDoubleVerticalBar", (0, 0)), + ("brvbar", (166, 0)), + ("backprim", (0, 0)), + ("ReverseUpEquil", (0, 0)), + ("crarr", (0, 0)), + ("Zd", (0, 0)), + ("Afr", (0, 0)), + ("nvinfin;", (10718, 0)), + ("csub", (0, 0)), + ("lEg;", (10891, 0)), + ("eopf", (0, 0)), + ("scaro", (0, 0)), + ("rra", (0, 0)), + ("ncongd", (0, 0)), + ("abrev", (0, 0)), + ("Ther", (0, 0)), + ("DiacriticalDoubleAcute;", (733, 0)), + ("NotElement", (0, 0)), + ("updownarrow", (0, 0)), + ("ShortDownArro", (0, 0)), + ("ig", (0, 0)), + ("vangr", (0, 0)), + ("cuesc;", (8927, 0)), + ("Yac", (0, 0)), + ("ljcy", (0, 0)), + ("sqsubseteq", (0, 0)), + ("map;", (8614, 0)), + ("ljcy;", (1113, 0)), + ("Under", (0, 0)), + ("LeftTeeVector", (0, 0)), + ("TildeTil", (0, 0)), + ("quati", (0, 0)), + ("DoubleVerticalBa", (0, 0)), + ("longleftar", (0, 0)), + ("Auml;", (196, 0)), + ("tcaro", (0, 0)), + ("equal", (0, 0)), + ("NotGreaterFullEqual;", (8807, 824)), + ("nsupE", (0, 0)), + ("Proportio", (0, 0)), + ("epsilon", (0, 0)), + ("dbkar", (0, 0)), + ("upharpoonright", (0, 0)), + ("rata", (0, 0)), + ("NotNestedGreaterGreate", (0, 0)), + ("lrm;", (8206, 0)), + ("ael", (0, 0)), + ("frac23", (0, 0)), + ("Emac", (0, 0)), + ("Counter", (0, 0)), + ("capcup", (0, 0)), + ("Wfr", (0, 0)), + ("VerticalSe", (0, 0)), + ("rAta", (0, 0)), + ("NotSupersetEqu", (0, 0)), + ("angmsda", (0, 0)), + ("subm", (0, 0)), + ("LowerLeftArro", (0, 0)), + ("scnap;", (10938, 0)), + ("rotimes;", (10805, 0)), + ("Lacut", (0, 0)), + ("bigodot", (0, 0)), + ("veebar;", (8891, 0)), + ("leg;", (8922, 0)), + ("du", (0, 0)), + ("aopf", (0, 0)), + ("hbar;", (8463, 0)), + ("ouml;", (246, 0)), + ("tbrk;", (9140, 0)), + ("lnapprox", (0, 0)), + ("lharu;", (8636, 0)), + ("upsih", (0, 0)), + ("nsi", (0, 0)), + ("nwne", (0, 0)), + ("Nest", (0, 0)), + ("plusacir", (0, 0)), + ("LeftTriangleBar;", (10703, 0)), + ("bsolhsub;", (10184, 0)), + ("Egra", (0, 0)), + ("ccaron;", (269, 0)), + ("vcy", (0, 0)), + ("Proportional", (0, 0)), + ("ShortLeftArrow", (0, 0)), + ("SubsetEqua", (0, 0)), + ("hearts;", (9829, 0)), + ("because;", (8757, 0)), + ("mcy;", (1084, 0)), + ("shortpa", (0, 0)), + ("NotGreaterS", (0, 0)), + ("lAr", (0, 0)), + ("realp", (0, 0)), + ("Cayley", (0, 0)), + ("RightTriangleBar;", (10704, 0)), + ("aop", (0, 0)), + ("NotLess", (0, 0)), + ("RightA", (0, 0)), + ("looparro", (0, 0)), + ("NotVe", (0, 0)), + ("equivD", (0, 0)), + ("Circl", (0, 0)), + ("leftthreetim", (0, 0)), + ("popf;", (120161, 0)), + ("DoubleVer", (0, 0)), + ("raqu", (0, 0)), + ("nbum", (0, 0)), + ("Larr", (0, 0)), + ("NotReverseElement;", (8716, 0)), + ("NotPrecedesSl", (0, 0)), + ("downharpoonl", (0, 0)), + ("nVDash", (0, 0)), + ("loopa", (0, 0)), + ("plusci", (0, 0)), + ("Eopf;", (120124, 0)), + ("larrhk;", (8617, 0)), + ("orarr", (0, 0)), + ("subnE", (0, 0)), + ("leftthreet", (0, 0)), + ("prop;", (8733, 0)), + ("nlsim", (0, 0)), + ("care", (0, 0)), + ("Inter", (0, 0)), + ("cc", (0, 0)), + ("CounterClo", (0, 0)), + ("nrar", (0, 0)), + ("DoubleLeftRightArro", (0, 0)), + ("permil;", (8240, 0)), + ("ps", (0, 0)), + ("Back", (0, 0)), + ("hookle", (0, 0)), + ("cs", (0, 0)), + ("ddagger", (0, 0)), + ("Succeeds", (0, 0)), + ("eqslantl", (0, 0)), + ("rbr", (0, 0)), + ("LeftArrowBar;", (8676, 0)), + ("Amacr;", (256, 0)), + ("angmsdaf", (0, 0)), + ("ImaginaryI", (0, 0)), + ("Ed", (0, 0)), + ("becau", (0, 0)), + ("Backslash", (0, 0)), + ("NotPrec", (0, 0)), + ("Rs", (0, 0)), + ("Rcedil", (0, 0)), + ("succcur", (0, 0)), + ("NotHumpEqual;", (8783, 824)), + ("Ssc", (0, 0)), + ("nsubsete", (0, 0)), + ("con", (0, 0)), + ("cdo", (0, 0)), + ("Fopf", (0, 0)), + ("Rrightarrow", (0, 0)), + ("scp", (0, 0)), + ("NotTildeEqua", (0, 0)), + ("napi", (0, 0)), + ("ab", (0, 0)), + ("Cap", (0, 0)), + ("lrh", (0, 0)), + ("NotHu", (0, 0)), + ("osla", (0, 0)), + ("rightsquigarro", (0, 0)), + ("exist", (0, 0)), + ("veeeq", (0, 0)), + ("DoubleLongLeftArr", (0, 0)), + ("Leftar", (0, 0)), + ("twoheadri", (0, 0)), + ("for", (0, 0)), + ("NotGreaterFullEqual", (0, 0)), + ("RightTr", (0, 0)), + ("Mellintrf", (0, 0)), + ("YIc", (0, 0)), + ("it;", (8290, 0)), + ("Uac", (0, 0)), + ("herc", (0, 0)), + ("mlcp;", (10971, 0)), + ("sqsupset;", (8848, 0)), + ("mp", (0, 0)), + ("rightthreetimes;", (8908, 0)), + ("MediumS", (0, 0)), + ("dharl;", (8643, 0)), + ("leftrightharp", (0, 0)), + ("cular", (0, 0)), + ("Sho", (0, 0)), + ("iexcl", (161, 0)), + ("pitc", (0, 0)), + ("L", (0, 0)), + ("LeftRightArro", (0, 0)), + ("Uring;", (366, 0)), + ("pars", (0, 0)), + ("asymp;", (8776, 0)), + ("Ati", (0, 0)), + ("angmsdad", (0, 0)), + ("malt", (0, 0)), + ("realin", (0, 0)), + ("RightVectorBar;", (10579, 0)), + ("Sc;", (10940, 0)), + ("NotTildeFull", (0, 0)), + ("Oci", (0, 0)), + ("rightharpoondown;", (8641, 0)), + ("trido", (0, 0)), + ("submult", (0, 0)), + ("elinters;", (9191, 0)), + ("cedil", (184, 0)), + ("eq", (0, 0)), + ("varepsi", (0, 0)), + ("circleddash;", (8861, 0)), + ("hoarr;", (8703, 0)), + ("ucirc", (251, 0)), + ("measureda", (0, 0)), + ("ContourInt", (0, 0)), + ("LowerLe", (0, 0)), + ("dzigrar", (0, 0)), + ("boxtimes;", (8864, 0)), + ("percnt", (0, 0)), + ("ogt", (0, 0)), + ("Iukc", (0, 0)), + ("DownTeeArrow;", (8615, 0)), + ("Agrav", (0, 0)), + ("gtrles", (0, 0)), + ("erDot;", (8787, 0)), + ("Mellint", (0, 0)), + ("PrecedesE", (0, 0)), + ("as", (0, 0)), + ("NotEx", (0, 0)), + ("sqsube", (0, 0)), + ("precsim;", (8830, 0)), + ("fs", (0, 0)), + ("realpart", (0, 0)), + ("Ropf", (0, 0)), + ("barvee;", (8893, 0)), + ("leftthre", (0, 0)), + ("NotSucceedsE", (0, 0)), + ("frac25;", (8534, 0)), + ("backe", (0, 0)), + ("Colo", (0, 0)), + ("vd", (0, 0)), + ("OverBar;", (8254, 0)), + ("exist;", (8707, 0)), + ("Cup;", (8915, 0)), + ("paralle", (0, 0)), + ("OverB", (0, 0)), + ("LessSlantEqual;", (10877, 0)), + ("zscr;", (120015, 0)), + ("DownL", (0, 0)), + ("mDD", (0, 0)), + ("boxH", (0, 0)), + ("fjl", (0, 0)), + ("Bre", (0, 0)), + ("NotLessEq", (0, 0)), + ("bso", (0, 0)), + ("blacklozenge;", (10731, 0)), + ("Rig", (0, 0)), + ("rparg", (0, 0)), + ("EmptyVerySmallSquare", (0, 0)), + ("smid;", (8739, 0)), + ("nis;", (8956, 0)), + ("DZcy", (0, 0)), + ("bigtriang", (0, 0)), + ("khc", (0, 0)), + ("lltr", (0, 0)), + ("OpenCurlyDo", (0, 0)), + ("NotRightTr", (0, 0)), + ("DiacriticalDoubleAcu", (0, 0)), + ("backepsi", (0, 0)), + ("OpenCurlyQ", (0, 0)), + ("trianglerigh", (0, 0)), + ("supe", (0, 0)), + ("Equi", (0, 0)), + ("NotHumpEqu", (0, 0)), + ("Usc", (0, 0)), + ("Msc", (0, 0)), + ("upsilon;", (965, 0)), + ("sex", (0, 0)), + ("FilledVerySmallSqu", (0, 0)), + ("RightUpDownV", (0, 0)), + ("copysr", (0, 0)), + ("ShortLeft", (0, 0)), + ("ultri;", (9720, 0)), + ("lsaquo", (0, 0)), + ("LeftUpT", (0, 0)), + ("De", (0, 0)), + ("twoheadleftarrow", (0, 0)), + ("nesear;", (10536, 0)), + ("NonBreakingS", (0, 0)), + ("thicksim;", (8764, 0)), + ("alefs", (0, 0)), + ("cupcap", (0, 0)), + ("hcirc", (0, 0)), + ("Kcedi", (0, 0)), + ("angrtvbd;", (10653, 0)), + ("capbr", (0, 0)), + ("UnderParen", (0, 0)), + ("GreaterS", (0, 0)), + ("solbar;", (9023, 0)), + ("fn", (0, 0)), + ("cularr;", (8630, 0)), + ("zee", (0, 0)), + ("laquo;", (171, 0)), + ("poi", (0, 0)), + ("roang;", (10221, 0)), + ("rHar;", (10596, 0)), + ("natur;", (9838, 0)), + ("Fill", (0, 0)), + ("y", (0, 0)), + ("NotSquareSubsetEqu", (0, 0)), + ("deg", (176, 0)), + ("ecy", (0, 0)), + ("aogon;", (261, 0)), + ("raemp", (0, 0)), + ("xlA", (0, 0)), + ("cupbrc", (0, 0)), + ("Imp", (0, 0)), + ("nang;", (8736, 8402)), + ("gtq", (0, 0)), + ("leftha", (0, 0)), + ("KHcy", (0, 0)), + ("xotime;", (10754, 0)), + ("nce", (0, 0)), + ("SquareIntersectio", (0, 0)), + ("varepsilon;", (1013, 0)), + ("DownBreve;", (785, 0)), + ("ulcr", (0, 0)), + ("vrtr", (0, 0)), + ("Js", (0, 0)), + ("gtrs", (0, 0)), + ("gtrl", (0, 0)), + ("VerticalSepara", (0, 0)), + ("blacktriangle;", (9652, 0)), + ("circlearrowright", (0, 0)), + ("bneq", (0, 0)), + ("frac", (0, 0)), + ("NotLessEqual;", (8816, 0)), + ("nrarrw", (0, 0)), + ("dzigrarr", (0, 0)), + ("cr", (0, 0)), + ("Xscr;", (119987, 0)), + ("rbbr", (0, 0)), + ("gb", (0, 0)), + ("hell", (0, 0)), + ("ntriangleleft;", (8938, 0)), + ("OverParent", (0, 0)), + ("longleftrightarr", (0, 0)), + ("rightar", (0, 0)), + ("pointint;", (10773, 0)), + ("ther", (0, 0)), + ("angsp", (0, 0)), + ("gime", (0, 0)), + ("Us", (0, 0)), + ("ropf;", (120163, 0)), + ("Df", (0, 0)), + ("dempty", (0, 0)), + ("complexe", (0, 0)), + ("Star;", (8902, 0)), + ("Idot;", (304, 0)), + ("soft", (0, 0)), + ("ccedil", (231, 0)), + ("nwarr;", (8598, 0)), + ("dfisht", (0, 0)), + ("Vert", (0, 0)), + ("dbk", (0, 0)), + ("gne", (0, 0)), + ("neq", (0, 0)), + ("boxHd;", (9572, 0)), + ("rfl", (0, 0)), + ("bigwedge", (0, 0)), + ("operp;", (10681, 0)), + ("lnapprox;", (10889, 0)), + ("times;", (215, 0)), + ("NestedGreaterGr", (0, 0)), + ("Ms", (0, 0)), + ("Vscr;", (119985, 0)), + ("UpEquilibr", (0, 0)), + ("inc", (0, 0)), + ("downdow", (0, 0)), + ("ApplyFuncti", (0, 0)), + ("lbrack", (0, 0)), + ("rce", (0, 0)), + ("ldrush", (0, 0)), + ("backsim", (0, 0)), + ("ph", (0, 0)), + ("LeftVector;", (8636, 0)), + ("umac", (0, 0)), + ("hsc", (0, 0)), + ("kscr", (0, 0)), + ("lrhard", (0, 0)), + ("NotEqual", (0, 0)), + ("map", (0, 0)), + ("fjlig", (0, 0)), + ("lsquo;", (8216, 0)), + ("sect", (167, 0)), + ("lbrkslu", (0, 0)), + ("Isc", (0, 0)), + ("K", (0, 0)), + ("ddagg", (0, 0)), + ("ReverseEquilibr", (0, 0)), + ("leftharpoonup", (0, 0)), + ("seswar;", (10537, 0)), + ("complement", (0, 0)), + ("Lleftarr", (0, 0)), + ("iuml;", (239, 0)), + ("simg", (0, 0)), + ("boxbox", (0, 0)), + ("Gg", (0, 0)), + ("cwc", (0, 0)), + ("NotSquareSupersetEqual", (0, 0)), + ("weie", (0, 0)), + ("agrav", (0, 0)), + ("UpEquilibrium", (0, 0)), + ("RightCeil", (0, 0)), + ("op", (0, 0)), + ("boxvl", (0, 0)), + ("dtri;", (9663, 0)), + ("nhp", (0, 0)), + ("rbrac", (0, 0)), + ("Leftrightarro", (0, 0)), + ("ccedil;", (231, 0)), + ("UnderBar;", (95, 0)), + ("UpperLe", (0, 0)), + ("pre", (0, 0)), + ("middot;", (183, 0)), + ("Hst", (0, 0)), + ("Downarro", (0, 0)), + ("Four", (0, 0)), + ("nshortmid", (0, 0)), + ("lesdoto", (0, 0)), + ("rnmid;", (10990, 0)), + ("leftlefta", (0, 0)), + ("rightleft", (0, 0)), + ("Bernoulli", (0, 0)), + ("qint;", (10764, 0)), + ("quatint", (0, 0)), + ("nsubseteqq;", (10949, 824)), + ("rot", (0, 0)), + ("Mscr;", (8499, 0)), + ("quatern", (0, 0)), + ("boxD", (0, 0)), + ("supmult;", (10946, 0)), + ("NotLeftTriangle", (0, 0)), + ("Gcedil", (0, 0)), + ("LeftUpDownVector", (0, 0)), + ("NotRightTria", (0, 0)), + ("wedbar;", (10847, 0)), + ("horbar", (0, 0)), + ("RightDownTee", (0, 0)), + ("Eog", (0, 0)), + ("boxVr", (0, 0)), + ("lesseqqgt", (0, 0)), + ("OverP", (0, 0)), + ("Eopf", (0, 0)), + ("Ograv", (0, 0)), + ("nearrow;", (8599, 0)), + ("ima", (0, 0)), + ("ffll", (0, 0)), + ("DownRightVector;", (8641, 0)), + ("dscy;", (1109, 0)), + ("Expon", (0, 0)), + ("DownRightTeeV", (0, 0)), + ("Darr", (0, 0)), + ("Tstrok;", (358, 0)), + ("boxHu", (0, 0)), + ("nearro", (0, 0)), + ("thkap", (0, 0)), + ("vartrianglelef", (0, 0)), + ("downdownarrow", (0, 0)), + ("sz", (0, 0)), + ("hookleftarr", (0, 0)), + ("Ll", (0, 0)), + ("vn", (0, 0)), + ("quaternion", (0, 0)), + ("omac", (0, 0)), + ("SquareSupersetEqua", (0, 0)), + ("thins", (0, 0)), + ("Lstrok;", (321, 0)), + ("dscr", (0, 0)), + ("longleftarrow;", (10229, 0)), + ("DoubleContourIn", (0, 0)), + ("LongLeftRightArrow;", (10231, 0)), + ("LongLeftArrow;", (10229, 0)), + ("trianglerighteq", (0, 0)), + ("lfloor;", (8970, 0)), + ("subseteqq;", (10949, 0)), + ("laquo", (171, 0)), + ("RightTeeA", (0, 0)), + ("brv", (0, 0)), + ("ltdot;", (8918, 0)), + ("brvba", (0, 0)), + ("fpartin", (0, 0)), + ("Downarr", (0, 0)), + ("swarrow", (0, 0)), + ("Assign", (0, 0)), + ("UpperRightArro", (0, 0)), + ("alefsym;", (8501, 0)), + ("DoubleLongLe", (0, 0)), + ("Lefta", (0, 0)), + ("khcy", (0, 0)), + ("NotSucceedsEqual", (0, 0)), + ("nsubseteq", (0, 0)), + ("drb", (0, 0)), + ("NonBreakingSp", (0, 0)), + ("Ta", (0, 0)), + ("succ", (0, 0)), + ("utd", (0, 0)), + ("exponentiale", (0, 0)), + ("gt;", (62, 0)), + ("eDDot", (0, 0)), + ("rlm", (0, 0)), + ("PrecedesSlantEq", (0, 0)), + ("DownArrowUpArrow", (0, 0)), + ("DDo", (0, 0)), + ("solb;", (10692, 0)), + ("laemptyv;", (10676, 0)), + ("bigve", (0, 0)), + ("Fourier", (0, 0)), + ("Epsilon", (0, 0)), + ("subd", (0, 0)), + ("CapitalDiffer", (0, 0)), + ("SHc", (0, 0)), + ("Gg;", (8921, 0)), + ("boxtime", (0, 0)), + ("OpenCurlyD", (0, 0)), + ("simrarr", (0, 0)), + ("Ksc", (0, 0)), + ("angrtvb;", (8894, 0)), + ("sbquo", (0, 0)), + ("precapp", (0, 0)), + ("Ef", (0, 0)), + ("OverBr", (0, 0)), + ("gns", (0, 0)), + ("Tstrok", (0, 0)), + ("setmi", (0, 0)), + ("LeftCeil", (0, 0)), + ("RightVectorBar", (0, 0)), + ("boxul", (0, 0)), + ("Lmidot", (0, 0)), + ("smepar", (0, 0)), + ("Zet", (0, 0)), + ("rising", (0, 0)), + ("ncedil", (0, 0)), + ("Longleftar", (0, 0)), + ("lsquo", (0, 0)), + ("Hop", (0, 0)), + ("elsdot;", (10903, 0)), + ("sigmaf", (0, 0)), + ("varsu", (0, 0)), + ("Ks", (0, 0)), + ("twoheadle", (0, 0)), + ("tri", (0, 0)), + ("blacks", (0, 0)), + ("wfr", (0, 0)), + ("ZeroWidthS", (0, 0)), + ("ZHc", (0, 0)), + ("ddotseq", (0, 0)), + ("DoubleLeftArrow", (0, 0)), + ("ijlig", (0, 0)), + ("straightep", (0, 0)), + ("Uarro", (0, 0)), + ("lj", (0, 0)), + ("LeftDownT", (0, 0)), + ("zeta", (0, 0)), + ("ssta", (0, 0)), + ("Un", (0, 0)), + ("mf", (0, 0)), + ("harrcir;", (10568, 0)), + ("UnderBar", (0, 0)), + ("midd", (0, 0)), + ("bsol", (0, 0)), + ("lrcorn", (0, 0)), + ("hooklefta", (0, 0)), + ("bsemi;", (8271, 0)), + ("searrow;", (8600, 0)), + ("thickapprox", (0, 0)), + ("scnE;", (10934, 0)), + ("elsdo", (0, 0)), + ("ao", (0, 0)), + ("Min", (0, 0)), + ("nlE", (0, 0)), + ("bigs", (0, 0)), + ("disin;", (8946, 0)), + ("NotTildeTil", (0, 0)), + ("Zacut", (0, 0)), + ("nwarrow", (0, 0)), + ("NotExists", (0, 0)), + ("oS", (0, 0)), + ("Ocy;", (1054, 0)), + ("scedil", (0, 0)), + ("there", (0, 0)), + ("notinv", (0, 0)), + ("Nacu", (0, 0)), + ("Lca", (0, 0)), + ("lha", (0, 0)), + ("vAr", (0, 0)), + ("Ugrave;", (217, 0)), + ("ntriangleleft", (0, 0)), + ("mid", (0, 0)), + ("DoubleC", (0, 0)), + ("GreaterSlantEqual;", (10878, 0)), + ("sc;", (8827, 0)), + ("NotTildeTild", (0, 0)), + ("LessEqualGreater", (0, 0)), + ("swA", (0, 0)), + ("ordm;", (186, 0)), + ("ominus;", (8854, 0)), + ("DotDot;", (8412, 0)), + ("LowerL", (0, 0)), + ("lbbr", (0, 0)), + ("lcu", (0, 0)), + ("vsub", (0, 0)), + ("Util", (0, 0)), + ("iog", (0, 0)), + ("ex", (0, 0)), + ("DotEq", (0, 0)), + ("scnsi", (0, 0)), + ("rmo", (0, 0)), + ("Sopf", (0, 0)), + ("empty;", (8709, 0)), + ("nang", (0, 0)), + ("upsilon", (0, 0)), + ("rightharpo", (0, 0)), + ("ee;", (8519, 0)), + ("vltr", (0, 0)), + ("yacute;", (253, 0)), + ("pscr", (0, 0)), + ("supla", (0, 0)), + ("sopf", (0, 0)), + ("varnothing", (0, 0)), + ("supdot;", (10942, 0)), + ("RightDoubl", (0, 0)), + ("RBa", (0, 0)), + ("precnap", (0, 0)), + ("hookrighta", (0, 0)), + ("setmn;", (8726, 0)), + ("angmsdah", (0, 0)), + ("Imaginary", (0, 0)), + ("ccedi", (0, 0)), + ("Union", (0, 0)), + ("xuplu", (0, 0)), + ("sum;", (8721, 0)), + ("trisb", (0, 0)), + ("amp;", (38, 0)), + ("rightle", (0, 0)), + ("theta", (0, 0)), + ("nleqq", (0, 0)), + ("preccur", (0, 0)), + ("lob", (0, 0)), + ("erarr", (0, 0)), + ("Icir", (0, 0)), + ("bum", (0, 0)), + ("amp", (38, 0)), + ("EmptySmallSquar", (0, 0)), + ("sp", (0, 0)), + ("Longleftrightarrow", (0, 0)), + ("hybul", (0, 0)), + ("Tcedil", (0, 0)), + ("tosa", (0, 0)), + ("SucceedsSl", (0, 0)), + ("Berno", (0, 0)), + ("RightDownVectorBar", (0, 0)), + ("half", (0, 0)), + ("emptys", (0, 0)), + ("rhard;", (8641, 0)), + ("nsim;", (8769, 0)), + ("solb", (0, 0)), + ("between", (0, 0)), + ("nwar", (0, 0)), + ("larrsim;", (10611, 0)), + ("UpEqui", (0, 0)), + ("ngtr;", (8815, 0)), + ("FilledSmallSquare", (0, 0)), + ("uogon", (0, 0)), + ("mi", (0, 0)), + ("cwin", (0, 0)), + ("varsupsetneq", (0, 0)), + ("LeftUpVec", (0, 0)), + ("nprcu", (0, 0)), + ("nan", (0, 0)), + ("blacksquare;", (9642, 0)), + ("rcedil", (0, 0)), + ("ShortDownArrow;", (8595, 0)), + ("rarrsim;", (10612, 0)), + ("Xopf;", (120143, 0)), + ("cross", (0, 0)), + ("DownTeeArr", (0, 0)), + ("Otild", (0, 0)), + ("Jop", (0, 0)), + ("NotGreaterFullEqu", (0, 0)), + ("bbr", (0, 0)), + ("biguplu", (0, 0)), + ("uop", (0, 0)), + ("Thin", (0, 0)), + ("ov", (0, 0)), + ("boxuR;", (9560, 0)), + ("nRightarrow;", (8655, 0)), + ("Iacute", (205, 0)), + ("reali", (0, 0)), + ("cupcup", (0, 0)), + ("LongRightAr", (0, 0)), + ("nleftr", (0, 0)), + ("clubsui", (0, 0)), + ("andan", (0, 0)), + ("ycy;", (1099, 0)), + ("nvinfin", (0, 0)), + ("Ac", (0, 0)), + ("longmapsto;", (10236, 0)), + ("RightDoubleBracket;", (10215, 0)), + ("blacksqua", (0, 0)), + ("DoubleContour", (0, 0)), + ("isins", (0, 0)), + ("varsupsetne", (0, 0)), + ("LeftUpVect", (0, 0)), + ("nearr", (0, 0)), + ("Lle", (0, 0)), + ("Dscr;", (119967, 0)), + ("SucceedsSlan", (0, 0)), + ("Ass", (0, 0)), + ("sime", (0, 0)), + ("popf", (0, 0)), + ("LJcy;", (1033, 0)), + ("backeps", (0, 0)), + ("disin", (0, 0)), + ("ReverseEq", (0, 0)), + ("LeftAngleBr", (0, 0)), + ("UnderB", (0, 0)), + ("fallingdots", (0, 0)), + ("Verba", (0, 0)), + ("nrArr;", (8655, 0)), + ("Unio", (0, 0)), + ("Vc", (0, 0)), + ("female;", (9792, 0)), + ("topcir", (0, 0)), + ("NotSquareSubs", (0, 0)), + ("intl", (0, 0)), + ("her", (0, 0)), + ("prsi", (0, 0)), + ("downdownarr", (0, 0)), + ("Plus", (0, 0)), + ("elsd", (0, 0)), + ("lvertne", (0, 0)), + ("ccaron", (0, 0)), + ("lang", (0, 0)), + ("loar", (0, 0)), + ("LessS", (0, 0)), + ("LeftRigh", (0, 0)), + ("eqslantg", (0, 0)), + ("zwn", (0, 0)), + ("nsimeq", (0, 0)), + ("urcro", (0, 0)), + ("CHcy", (0, 0)), + ("Lapl", (0, 0)), + ("leqsl", (0, 0)), + ("LeftDownTeeVect", (0, 0)), + ("shortparalle", (0, 0)), + ("nvHar", (0, 0)), + ("Different", (0, 0)), + ("scE;", (10932, 0)), + ("Su", (0, 0)), + ("rcar", (0, 0)), + ("utri;", (9653, 0)), + ("UpTe", (0, 0)), + ("GreaterTilde;", (8819, 0)), + ("isin;", (8712, 0)), + ("eur", (0, 0)), + ("darr;", (8595, 0)), + ("longleftright", (0, 0)), + ("euro", (0, 0)), + ("NotDoubleVerticalBa", (0, 0)), + ("orslope", (0, 0)), + ("Icy;", (1048, 0)), + ("af;", (8289, 0)), + ("blacktriangleright;", (9656, 0)), + ("rsa", (0, 0)), + ("lE", (0, 0)), + ("Longleftrighta", (0, 0)), + ("esdot;", (8784, 0)), + ("lmi", (0, 0)), + ("backprime;", (8245, 0)), + ("NotSuperse", (0, 0)), + ("curlyeqsucc", (0, 0)), + ("dwangle;", (10662, 0)), + ("uacute;", (250, 0)), + ("Longleftr", (0, 0)), + ("DotDo", (0, 0)), + ("Hstrok", (0, 0)), + ("thick", (0, 0)), + ("Longright", (0, 0)), + ("NotHumpDown", (0, 0)), + ("TH", (0, 0)), + ("lbrkslu;", (10637, 0)), + ("gvn", (0, 0)), + ("imagl", (0, 0)), + ("Proporti", (0, 0)), + ("sup", (0, 0)), + ("EmptyVerySmal", (0, 0)), + ("npr;", (8832, 0)), + ("circeq;", (8791, 0)), + ("suphs", (0, 0)), + ("angle;", (8736, 0)), + ("rAtai", (0, 0)), + ("rop", (0, 0)), + ("NegativeM", (0, 0)), + ("Longle", (0, 0)), + ("Invisibl", (0, 0)), + ("angza", (0, 0)), + ("bigu", (0, 0)), + ("NotHumpEq", (0, 0)), + ("DoubleLongLeftRightArrow", (0, 0)), + ("VDash;", (8875, 0)), + ("nGg;", (8921, 824)), + ("Gre", (0, 0)), + ("cempty", (0, 0)), + ("NegativeThick", (0, 0)), + ("leftl", (0, 0)), + ("Ucirc", (219, 0)), + ("tr", (0, 0)), + ("easte", (0, 0)), + ("lo", (0, 0)), + ("COPY", (169, 0)), + ("Poi", (0, 0)), + ("Congruen", (0, 0)), + ("smepa", (0, 0)), + ("rfi", (0, 0)), + ("eplus;", (10865, 0)), + ("LeftArrowRightArro", (0, 0)), + ("CounterClockwiseCo", (0, 0)), + ("frac34;", (190, 0)), + ("bopf;", (120147, 0)), + ("rightleftha", (0, 0)), + ("blacktriangledow", (0, 0)), + ("xutri;", (9651, 0)), + ("eqvp", (0, 0)), + ("Rho", (0, 0)), + ("profa", (0, 0)), + ("circleda", (0, 0)), + ("frac58", (0, 0)), + ("prsim;", (8830, 0)), + ("scsim;", (8831, 0)), + ("leftarrowta", (0, 0)), + ("LeftUpDown", (0, 0)), + ("eqco", (0, 0)), + ("NestedGreaterGreater", (0, 0)), + ("nwarhk;", (10531, 0)), + ("epsilo", (0, 0)), + ("Eg", (0, 0)), + ("dtdo", (0, 0)), + ("es", (0, 0)), + ("uwangl", (0, 0)), + ("zwj;", (8205, 0)), + ("LeftVec", (0, 0)), + ("succnap", (0, 0)), + ("iec", (0, 0)), + ("softc", (0, 0)), + ("topfo", (0, 0)), + ("vf", (0, 0)), + ("Hilbert", (0, 0)), + ("pro", (0, 0)), + ("gs", (0, 0)), + ("ReverseEquili", (0, 0)), + ("Wscr;", (119986, 0)), + ("DownLeftRigh", (0, 0)), + ("LeftRightAr", (0, 0)), + ("rmoustac", (0, 0)), + ("nprec", (0, 0)), + ("Trip", (0, 0)), + ("circlearrowright;", (8635, 0)), + ("SucceedsS", (0, 0)), + ("NoBr", (0, 0)), + ("xod", (0, 0)), + ("DoubleDot", (0, 0)), + ("mapstou", (0, 0)), + ("ncap;", (10819, 0)), + ("Diacri", (0, 0)), + ("subset;", (8834, 0)), + ("YA", (0, 0)), + ("Sigm", (0, 0)), + ("gtrarr;", (10616, 0)), + ("DoubleLongRigh", (0, 0)), + ("Beta;", (914, 0)), + ("gtrarr", (0, 0)), + ("nsup;", (8837, 0)), + ("LeftTeeVect", (0, 0)), + ("plank", (0, 0)), + ("omid", (0, 0)), + ("DownRightVectorB", (0, 0)), + ("lmoustach", (0, 0)), + ("OpenCu", (0, 0)), + ("Lt", (0, 0)), + ("gtreqqless;", (10892, 0)), + ("twohea", (0, 0)), + ("ni", (0, 0)), + ("laemp", (0, 0)), + ("lhblk;", (9604, 0)), + ("Ud", (0, 0)), + ("PrecedesS", (0, 0)), + ("MediumSpace", (0, 0)), + ("varnot", (0, 0)), + ("divonx", (0, 0)), + ("bar", (0, 0)), + ("RightUpTeeV", (0, 0)), + ("bigst", (0, 0)), + ("ExponentialE", (0, 0)), + ("rightthre", (0, 0)), + ("prod", (0, 0)), + ("npa", (0, 0)), + ("ufr;", (120114, 0)), + ("preccurl", (0, 0)), + ("oi", (0, 0)), + ("sf", (0, 0)), + ("IOc", (0, 0)), + ("loplu", (0, 0)), + ("Uo", (0, 0)), + ("rharu;", (8640, 0)), + ("LessG", (0, 0)), + ("doteqd", (0, 0)), + ("chc", (0, 0)), + ("Ubreve;", (364, 0)), + ("ris", (0, 0)), + ("nGtv", (0, 0)), + ("boxdr", (0, 0)), + ("rarrp", (0, 0)), + ("eco", (0, 0)), + ("hamil", (0, 0)), + ("ord;", (10845, 0)), + ("wedb", (0, 0)), + ("nsucc;", (8833, 0)), + ("zcy;", (1079, 0)), + ("NotLef", (0, 0)), + ("Ocy", (0, 0)), + ("Intersection", (0, 0)), + ("Ntilde;", (209, 0)), + ("vartriangleri", (0, 0)), + ("uuar", (0, 0)), + ("suphsol;", (10185, 0)), + ("verbar", (0, 0)), + ("exponentia", (0, 0)), + ("eop", (0, 0)), + ("boxU", (0, 0)), + ("twoheadlef", (0, 0)), + ("dotmin", (0, 0)), + ("rho", (0, 0)), + ("Ubreve", (0, 0)), + ("Jfr;", (120077, 0)), + ("LessGreate", (0, 0)), + ("Rced", (0, 0)), + ("vBar;", (10984, 0)), + ("Longleftarro", (0, 0)), + ("wsc", (0, 0)), + ("yen", (165, 0)), + ("NotGreaterFul", (0, 0)), + ("gcirc", (0, 0)), + ("qpri", (0, 0)), + ("napo", (0, 0)), + ("Aacu", (0, 0)), + ("UpDow", (0, 0)), + ("Assign;", (8788, 0)), + ("Chi", (0, 0)), + ("blank;", (9251, 0)), + ("VerticalSep", (0, 0)), + ("vars", (0, 0)), + ("SuchTh", (0, 0)), + ("NotSucceedsS", (0, 0)), + ("Ced", (0, 0)), + ("NotSquareS", (0, 0)), + ("LowerR", (0, 0)), + ("DoubleRight", (0, 0)), + ("NotDoub", (0, 0)), + ("subrar", (0, 0)), + ("boxpl", (0, 0)), + ("ogon", (0, 0)), + ("lescc", (0, 0)), + ("capan", (0, 0)), + ("egrave", (232, 0)), + ("VerticalBa", (0, 0)), + ("ltr", (0, 0)), + ("Fourie", (0, 0)), + ("Precedes;", (8826, 0)), + ("rarr", (0, 0)), + ("cuv", (0, 0)), + ("ct", (0, 0)), + ("Longleftrig", (0, 0)), + ("VDash", (0, 0)), + ("nsimeq;", (8772, 0)), + ("natural", (0, 0)), + ("TildeFullEqua", (0, 0)), + ("Updo", (0, 0)), + ("hamilt", (0, 0)), + ("OpenCur", (0, 0)), + ("Ve", (0, 0)), + ("Cdot;", (266, 0)), + ("updow", (0, 0)), + ("nleftarrow", (0, 0)), + ("jsercy", (0, 0)), + ("upharpoonr", (0, 0)), + ("ang;", (8736, 0)), + ("blacktriangledown;", (9662, 0)), + ("Im;", (8465, 0)), + ("curlyeq", (0, 0)), + ("cularrp", (0, 0)), + ("lrcor", (0, 0)), + ("comp", (0, 0)), + ("sstarf;", (8902, 0)), + ("apid;", (8779, 0)), + ("curvearrowlef", (0, 0)), + ("GreaterFull", (0, 0)), + ("xr", (0, 0)), + ("SupersetEqual", (0, 0)), + ("Ph", (0, 0)), + ("rightsquigarrow", (0, 0)), + ("divideonti", (0, 0)), + ("euml", (235, 0)), + ("Kappa;", (922, 0)), + ("npre", (0, 0)), + ("njcy;", (1114, 0)), + ("xla", (0, 0)), + ("blacktriangl", (0, 0)), + ("RightDownT", (0, 0)), + ("ReverseEle", (0, 0)), + ("DoubleLongRi", (0, 0)), + ("wreath;", (8768, 0)), + ("race", (0, 0)), + ("NotSquareSu", (0, 0)), + ("nbsp", (160, 0)), + ("ZeroWidt", (0, 0)), + ("wedg", (0, 0)), + ("he", (0, 0)), + ("UpperRightAr", (0, 0)), + ("xcirc;", (9711, 0)), + ("ges;", (10878, 0)), + ("trian", (0, 0)), + ("nsucceq;", (10928, 824)), + ("j", (0, 0)), + ("Cayl", (0, 0)), + ("Xsc", (0, 0)), + ("circle", (0, 0)), + ("yo", (0, 0)), + ("rcedil;", (343, 0)), + ("notn", (0, 0)), + ("NotCup", (0, 0)), + ("cirmid", (0, 0)), + ("o", (0, 0)), + ("UpperR", (0, 0)), + ("smallsetmin", (0, 0)), + ("boxvh;", (9532, 0)), + ("boxhU;", (9576, 0)), + ("ForA", (0, 0)), + ("RightDoub", (0, 0)), + ("nvHarr;", (10500, 0)), + ("Kcedil;", (310, 0)), + ("mdash;", (8212, 0)), + ("LeftUpTee", (0, 0)), + ("prnsi", (0, 0)), + ("rarrbf", (0, 0)), + ("thickapp", (0, 0)), + ("simg;", (10910, 0)), + ("Low", (0, 0)), + ("oast", (0, 0)), + ("rppoli", (0, 0)), + ("CloseCurlyDoubleQuote", (0, 0)), + ("RE", (0, 0)), + ("rbrk", (0, 0)), + ("Gop", (0, 0)), + ("epsi", (0, 0)), + ("RightU", (0, 0)), + ("aring;", (229, 0)), + ("eps", (0, 0)), + ("amalg;", (10815, 0)), + ("SquareInterse", (0, 0)), + ("Omic", (0, 0)), + ("bigo", (0, 0)), + ("rightleftharpoons", (0, 0)), + ("uog", (0, 0)), + ("ShortUpAr", (0, 0)), + ("Ropf;", (8477, 0)), + ("UpperLeft", (0, 0)), + ("downarrow", (0, 0)), + ("succsi", (0, 0)), + ("otime", (0, 0)), + ("Til", (0, 0)), + ("suphsub;", (10967, 0)), + ("llhard", (0, 0)), + ("Lop", (0, 0)), + ("ShortLeftA", (0, 0)), + ("NotPrecede", (0, 0)), + ("Gscr", (0, 0)), + ("NotD", (0, 0)), + ("boxminus", (0, 0)), + ("qi", (0, 0)), + ("iiint;", (8749, 0)), + ("NotEqualTild", (0, 0)), + ("Phi;", (934, 0)), + ("Clockw", (0, 0)), + ("cudar", (0, 0)), + ("Inte", (0, 0)), + ("midcir;", (10992, 0)), + ("UpE", (0, 0)), + ("lbar", (0, 0)), + ("ZeroWidthSpa", (0, 0)), + ("Zdot", (0, 0)), + ("lbrk", (0, 0)), + ("ReverseUpEquilibri", (0, 0)), + ("Capital", (0, 0)), + ("nhpa", (0, 0)), + ("precns", (0, 0)), + ("NotSquareSubset;", (8847, 824)), + ("Hi", (0, 0)), + ("eacute;", (233, 0)), + ("smile", (0, 0)), + ("RightUpTeeVect", (0, 0)), + ("pfr;", (120109, 0)), + ("Ncy", (0, 0)), + ("opa", (0, 0)), + ("xo", (0, 0)), + ("ntriangler", (0, 0)), + ("lotim", (0, 0)), + ("Element;", (8712, 0)), + ("Mcy;", (1052, 0)), + ("vdash;", (8866, 0)), + ("ExponentialE;", (8519, 0)), + ("vA", (0, 0)), + ("precnappro", (0, 0)), + ("Cci", (0, 0)), + ("ome", (0, 0)), + ("blk12", (0, 0)), + ("yf", (0, 0)), + ("plust", (0, 0)), + ("LeftDoubleBr", (0, 0)), + ("angrtv", (0, 0)), + ("cupor", (0, 0)), + ("gvnE", (0, 0)), + ("LessSlan", (0, 0)), + ("triangle", (0, 0)), + ("Lsh;", (8624, 0)), + ("ecir;", (8790, 0)), + ("NotPrecedes;", (8832, 0)), + ("Y", (0, 0)), + ("edo", (0, 0)), + ("PlusMin", (0, 0)), + ("DoubleLongL", (0, 0)), + ("racu", (0, 0)), + ("SHCH", (0, 0)), + ("Rrightar", (0, 0)), + ("u", (0, 0)), + ("cur", (0, 0)), + ("Copr", (0, 0)), + ("llh", (0, 0)), + ("NotCupC", (0, 0)), + ("Vee", (0, 0)), + ("lsquor", (0, 0)), + ("sop", (0, 0)), + ("nese", (0, 0)), + ("shar", (0, 0)), + ("hc", (0, 0)), + ("har", (0, 0)), + ("RuleDe", (0, 0)), + ("RightVec", (0, 0)), + ("bbrktb", (0, 0)), + ("boxDR;", (9556, 0)), + ("Lfr", (0, 0)), + ("Zfr;", (8488, 0)), + ("it", (0, 0)), + ("expectation;", (8496, 0)), + ("Lstro", (0, 0)), + ("sol;", (47, 0)), + ("ShortLef", (0, 0)), + ("tel", (0, 0)), + ("mul", (0, 0)), + ("uac", (0, 0)), + ("dblac;", (733, 0)), + ("Esim", (0, 0)), + ("nappr", (0, 0)), + ("ulcorn;", (8988, 0)), + ("lotimes;", (10804, 0)), + ("SucceedsEq", (0, 0)), + ("nti", (0, 0)), + ("ffl", (0, 0)), + ("beth;", (8502, 0)), + ("circledas", (0, 0)), + ("nVda", (0, 0)), + ("udh", (0, 0)), + ("ET", (0, 0)), + ("luru", (0, 0)), + ("fp", (0, 0)), + ("simne", (0, 0)), + ("NotCongruent;", (8802, 0)), + ("less", (0, 0)), + ("thetav;", (977, 0)), + ("lopar;", (10629, 0)), + ("zeetrf;", (8488, 0)), + ("uwang", (0, 0)), + ("nearhk;", (10532, 0)), + ("rect", (0, 0)), + ("IJlig;", (306, 0)), + ("mscr", (0, 0)), + ("crarr;", (8629, 0)), + ("vartriangler", (0, 0)), + ("tcy", (0, 0)), + ("varpr", (0, 0)), + ("InvisibleTimes;", (8290, 0)), + ("urtri;", (9721, 0)), + ("Hci", (0, 0)), + ("UpEq", (0, 0)), + ("LeftVectorB", (0, 0)), + ("rmoustache;", (9137, 0)), + ("ngeqsla", (0, 0)), + ("NotEqual;", (8800, 0)), + ("imac", (0, 0)), + ("quater", (0, 0)), + ("Tf", (0, 0)), + ("nvge", (0, 0)), + ("LeftUpTeeV", (0, 0)), + ("fallingd", (0, 0)), + ("Zs", (0, 0)), + ("Fouriertr", (0, 0)), + ("lessdot", (0, 0)), + ("Ec", (0, 0)), + ("nsce;", (10928, 824)), + ("tcaron;", (357, 0)), + ("seAr", (0, 0)), + ("agra", (0, 0)), + ("GreaterGreater", (0, 0)), + ("ug", (0, 0)), + ("NotSucceedsTilde", (0, 0)), + ("UpAr", (0, 0)), + ("hopf;", (120153, 0)), + ("NotLessSl", (0, 0)), + ("iinfin;", (10716, 0)), + ("dlcro", (0, 0)), + ("bet", (0, 0)), + ("cir;", (9675, 0)), + ("iacute", (237, 0)), + ("gtl", (0, 0)), + ("olcross;", (10683, 0)), + ("Non", (0, 0)), + ("impe", (0, 0)), + ("Exponential", (0, 0)), + ("VeryThinSpace", (0, 0)), + ("CloseCurlyD", (0, 0)), + ("ef", (0, 0)), + ("Conin", (0, 0)), + ("za", (0, 0)), + ("DoubleLongLeftArrow;", (10232, 0)), + ("dsol", (0, 0)), + ("ra", (0, 0)), + ("hellip;", (8230, 0)), + ("loz;", (9674, 0)), + ("Cayleys", (0, 0)), + ("RightDownTeeVe", (0, 0)), + ("Si", (0, 0)), + ("ohbar;", (10677, 0)), + ("U", (0, 0)), + ("trit", (0, 0)), + ("pl", (0, 0)), + ("timesd", (0, 0)), + ("nless;", (8814, 0)), + ("sqsupseteq;", (8850, 0)), + ("Vda", (0, 0)), + ("SquareSupersetEqual", (0, 0)), + ("ShortDownArrow", (0, 0)), + ("Edo", (0, 0)), + ("DownRightTeeVector;", (10591, 0)), + ("CounterClockwiseContourInteg", (0, 0)), + ("lap;", (10885, 0)), + ("SquareSuperset", (0, 0)), + ("Lower", (0, 0)), + ("check", (0, 0)), + ("Ca", (0, 0)), + ("looparrowright;", (8620, 0)), + ("CapitalDif", (0, 0)), + ("ncongdot", (0, 0)), + ("ub", (0, 0)), + ("nwa", (0, 0)), + ("Mellintr", (0, 0)), + ("elinters", (0, 0)), + ("lessappr", (0, 0)), + ("perm", (0, 0)), + ("Succeed", (0, 0)), + ("odsold;", (10684, 0)), + ("Ep", (0, 0)), + ("DZc", (0, 0)), + ("wei", (0, 0)), + ("Cong", (0, 0)), + ("preccurlye", (0, 0)), + ("nparallel;", (8742, 0)), + ("NotLeftTriangleBar;", (10703, 824)), + ("Pfr;", (120083, 0)), + ("GreaterGreater;", (10914, 0)), + ("Odblac", (0, 0)), + ("xd", (0, 0)), + ("puncsp", (0, 0)), + ("ntrianglelef", (0, 0)), + ("gtcc;", (10919, 0)), + ("scnE", (0, 0)), + ("osc", (0, 0)), + ("rAarr", (0, 0)), + ("boxdr;", (9484, 0)), + ("rarrsi", (0, 0)), + ("Sacute", (0, 0)), + ("NegativeThinSpace", (0, 0)), + ("Nega", (0, 0)), + ("LeftArrowRightArrow;", (8646, 0)), + ("ecaron;", (283, 0)), + ("Les", (0, 0)), + ("sim;", (8764, 0)), + ("bot;", (8869, 0)), + ("ShortRightArr", (0, 0)), + ("blacktrianglerigh", (0, 0)), + ("zsc", (0, 0)), + ("expone", (0, 0)), + ("NotLessL", (0, 0)), + ("ors", (0, 0)), + ("bNot;", (10989, 0)), + ("Upper", (0, 0)), + ("Le", (0, 0)), + ("gtrapprox", (0, 0)), + ("tprime", (0, 0)), + ("veeb", (0, 0)), + ("nvinf", (0, 0)), + ("ffi", (0, 0)), + ("Dagger", (0, 0)), + ("Kscr", (0, 0)), + ("vartr", (0, 0)), + ("smeparsl", (0, 0)), + ("star", (0, 0)), + ("rightsqu", (0, 0)), + ("die;", (168, 0)), + ("Pop", (0, 0)), + ("divon", (0, 0)), + ("nle;", (8816, 0)), + ("larrsi", (0, 0)), + ("nequ", (0, 0)), + ("rightleftarrows", (0, 0)), + ("q", (0, 0)), + ("Abreve;", (258, 0)), + ("dop", (0, 0)), + ("longlefta", (0, 0)), + ("LeftRi", (0, 0)), + ("bulle", (0, 0)), + ("nvrtri", (0, 0)), + ("Mopf;", (120132, 0)), + ("hcirc;", (293, 0)), + ("incar", (0, 0)), + ("RightTrian", (0, 0)), + ("precne", (0, 0)), + ("target;", (8982, 0)), + ("Ocirc;", (212, 0)), + ("ama", (0, 0)), + ("prcue", (0, 0)), + ("uHar", (0, 0)), + ("IJ", (0, 0)), + ("lsimg;", (10895, 0)), + ("simeq;", (8771, 0)), + ("TS", (0, 0)), + ("solbar", (0, 0)), + ("rarrsim", (0, 0)), + ("asym", (0, 0)), + ("ggg;", (8921, 0)), + ("raempty", (0, 0)), + ("hookrightarr", (0, 0)), + ("bow", (0, 0)), + ("CircleMinu", (0, 0)), + ("nshortpara", (0, 0)), + ("nrightar", (0, 0)), + ("straigh", (0, 0)), + ("DoubleLeftRightArrow;", (8660, 0)), + ("gesdo", (0, 0)), + ("bbrkt", (0, 0)), + ("DoubleRightTee;", (8872, 0)), + ("rrar", (0, 0)), + ("SquareUnion;", (8852, 0)), + ("NotGreaterGre", (0, 0)), + ("sqcap;", (8851, 0)), + ("DotEqua", (0, 0)), + ("RightArr", (0, 0)), + ("Ju", (0, 0)), + ("sqsupseteq", (0, 0)), + ("ltrPa", (0, 0)), + ("NotSquareSuper", (0, 0)), + ("orv;", (10843, 0)), + ("varsigma", (0, 0)), + ("andslop", (0, 0)), + ("nwarrow;", (8598, 0)), + ("CloseCurl", (0, 0)), + ("copf", (0, 0)), + ("UpDown", (0, 0)), + ("bk", (0, 0)), + ("Pro", (0, 0)), + ("NegativeVeryThinSpace", (0, 0)), + ("tripl", (0, 0)), + ("frac14", (188, 0)), + ("Lambd", (0, 0)), + ("Jcirc;", (308, 0)), + ("npo", (0, 0)), + ("yfr", (0, 0)), + ("DoubleU", (0, 0)), + ("mstp", (0, 0)), + ("Rightarr", (0, 0)), + ("que", (0, 0)), + ("divide", (247, 0)), + ("Cced", (0, 0)), + ("bNo", (0, 0)), + ("swnwar", (0, 0)), + ("dlcor", (0, 0)), + ("time", (0, 0)), + ("thk", (0, 0)), + ("ltcir", (0, 0)), + ("sup3", (179, 0)), + ("Ncaron", (0, 0)), + ("Therefore;", (8756, 0)), + ("CloseCurlyQuo", (0, 0)), + ("NotSubset;", (8834, 8402)), + ("ruluhar", (0, 0)), + ("blk1", (0, 0)), + ("lcub", (0, 0)), + ("period;", (46, 0)), + ("vzigz", (0, 0)), + ("tos", (0, 0)), + ("nwn", (0, 0)), + ("Id", (0, 0)), + ("ddots", (0, 0)), + ("eqvpa", (0, 0)), + ("intprod", (0, 0)), + ("scna", (0, 0)), + ("Medium", (0, 0)), + ("ffr", (0, 0)), + ("ii;", (8520, 0)), + ("CounterClockwiseCont", (0, 0)), + ("boxur;", (9492, 0)), + ("colo", (0, 0)), + ("trianglerig", (0, 0)), + ("latai", (0, 0)), + ("IEc", (0, 0)), + ("awco", (0, 0)), + ("rightharpoondown", (0, 0)), + ("shortmid", (0, 0)), + ("LeftUpTeeVecto", (0, 0)), + ("Longleftrigh", (0, 0)), + ("Tcar", (0, 0)), + ("LeftUpDo", (0, 0)), + ("checkmark", (0, 0)), + ("Rarr;", (8608, 0)), + ("isindot;", (8949, 0)), + ("Rac", (0, 0)), + ("solba", (0, 0)), + ("dda", (0, 0)), + ("sc", (0, 0)), + ("infin;", (8734, 0)), + ("npr", (0, 0)), + ("prnE", (0, 0)), + ("NotRightT", (0, 0)), + ("NegativeMediumSpace;", (8203, 0)), + ("alpha;", (945, 0)), + ("Ccaro", (0, 0)), + ("NotTildeTilde;", (8777, 0)), + ("rca", (0, 0)), + ("geqslant;", (10878, 0)), + ("bsolh", (0, 0)), + ("mapstodo", (0, 0)), + ("NotLessGrea", (0, 0)), + ("RightAngleBr", (0, 0)), + ("middo", (0, 0)), + ("lcaron;", (318, 0)), + ("supedo", (0, 0)), + ("iogon", (0, 0)), + ("GreaterTilde", (0, 0)), + ("PrecedesSlant", (0, 0)), + ("HA", (0, 0)), + ("leftrighta", (0, 0)), + ("boxdl", (0, 0)), + ("NotN", (0, 0)), + ("LeftVectorBa", (0, 0)), + ("Cacute;", (262, 0)), + ("ae", (0, 0)), + ("suped", (0, 0)), + ("infi", (0, 0)), + ("Esi", (0, 0)), + ("gnapprox", (0, 0)), + ("uha", (0, 0)), + ("Br", (0, 0)), + ("divideontimes", (0, 0)), + ("heartsui", (0, 0)), + ("Dc", (0, 0)), + ("boxvr", (0, 0)), + ("EmptyS", (0, 0)), + ("cirscir;", (10690, 0)), + ("egsd", (0, 0)), + ("hookleft", (0, 0)), + ("nvr", (0, 0)), + ("lne", (0, 0)), + ("ati", (0, 0)), + ("NotTildeEqual", (0, 0)), + ("NotSucceeds", (0, 0)), + ("LeftDownVector", (0, 0)), + ("Ffr;", (120073, 0)), + ("Sfr;", (120086, 0)), + ("eng;", (331, 0)), + ("lurdshar;", (10570, 0)), + ("NotVer", (0, 0)), + ("frac78", (0, 0)), + ("LeftUpTeeVector", (0, 0)), + ("longleftrightarro", (0, 0)), + ("nleftarr", (0, 0)), + ("Thick", (0, 0)), + ("Llefta", (0, 0)), + ("VerticalSepa", (0, 0)), + ("Sq", (0, 0)), + ("TRADE;", (8482, 0)), + ("Diamon", (0, 0)), + ("ell;", (8467, 0)), + ("Cop", (0, 0)), + ("Zfr", (0, 0)), + ("succsim;", (8831, 0)), + ("NonBrea", (0, 0)), + ("Rcaron;", (344, 0)), + ("rth", (0, 0)), + ("nparalle", (0, 0)), + ("Wcirc;", (372, 0)), + ("jukcy", (0, 0)), + ("dwang", (0, 0)), + ("SuchTha", (0, 0)), + ("varsubset", (0, 0)), + ("Vfr;", (120089, 0)), + ("nsubse", (0, 0)), + ("hop", (0, 0)), + ("multimap", (0, 0)), + ("nvd", (0, 0)), + ("NotLeftTri", (0, 0)), + ("curvearrowl", (0, 0)), + ("tilde", (0, 0)), + ("zacu", (0, 0)), + ("zcy", (0, 0)), + ("PrecedesTilde", (0, 0)), + ("DoubleLeftR", (0, 0)), + ("Larr;", (8606, 0)), + ("Ss", (0, 0)), + ("zacut", (0, 0)), + ("Poincarepla", (0, 0)), + ("urcorn;", (8989, 0)), + ("boxUl", (0, 0)), + ("Rc", (0, 0)), + ("lbarr", (0, 0)), + ("vartriangleright", (0, 0)), + ("eqcolon", (0, 0)), + ("CapitalDiffe", (0, 0)), + ("subsetneqq;", (10955, 0)), + ("Dcaro", (0, 0)), + ("ldsh;", (8626, 0)), + ("ccup", (0, 0)), + ("CircleTimes;", (8855, 0)), + ("coprod;", (8720, 0)), + ("RightDownVec", (0, 0)), + ("SquareSup", (0, 0)), + ("nprc", (0, 0)), + ("sr", (0, 0)), + ("rea", (0, 0)), + ("LeftUpTeeVector;", (10592, 0)), + ("midci", (0, 0)), + ("upl", (0, 0)), + ("DoubleContourIntegral;", (8751, 0)), + ("RightDownVectorBa", (0, 0)), + ("Zcy", (0, 0)), + ("NotSquareSupersetE", (0, 0)), + ("UpA", (0, 0)), + ("circlearro", (0, 0)), + ("gescc;", (10921, 0)), + ("dtrif;", (9662, 0)), + ("Ig", (0, 0)), + ("NotGreaterSlantEqual;", (10878, 824)), + ("die", (0, 0)), + ("NotSupersetE", (0, 0)), + ("dollar", (0, 0)), + ("tritime;", (10811, 0)), + ("digamma", (0, 0)), + ("CapitalDifferen", (0, 0)), + ("ffili", (0, 0)), + ("scedil;", (351, 0)), + ("delt", (0, 0)), + ("sqsupe", (0, 0)), + ("nc", (0, 0)), + ("NotSucceedsEqu", (0, 0)), + ("NoBreak;", (8288, 0)), + ("NegativeVeryThinSp", (0, 0)), + ("ShortLeftArr", (0, 0)), + ("SOF", (0, 0)), + ("egr", (0, 0)), + ("CHc", (0, 0)), + ("NestedLessLess", (0, 0)), + ("leftr", (0, 0)), + ("SucceedsTilde", (0, 0)), + ("Square", (0, 0)), + ("Oo", (0, 0)), + ("d", (0, 0)), + ("varsupsetneqq", (0, 0)), + ("varsi", (0, 0)), + ("nlE;", (8806, 824)), + ("Lm", (0, 0)), + ("rtriltri;", (10702, 0)), + ("dfisht;", (10623, 0)), + ("DoubleRightTee", (0, 0)), + ("ltcc", (0, 0)), + ("triti", (0, 0)), + ("loa", (0, 0)), + ("Dscr", (0, 0)), + ("rtriltr", (0, 0)), + ("nRightarr", (0, 0)), + ("ngsi", (0, 0)), + ("curlyeqsucc;", (8927, 0)), + ("horbar;", (8213, 0)), + ("Kcy;", (1050, 0)), + ("LeftUpVectorBar", (0, 0)), + ("DoubleVerticalB", (0, 0)), + ("subdot", (0, 0)), + ("fro", (0, 0)), + ("ThinSpac", (0, 0)), + ("Ograve", (210, 0)), + ("lti", (0, 0)), + ("copy;", (169, 0)), + ("cro", (0, 0)), + ("DoubleVertic", (0, 0)), + ("prnsim;", (8936, 0)), + ("kj", (0, 0)), + ("lsqu", (0, 0)), + ("Igrave;", (204, 0)), + ("DoubleRightT", (0, 0)), + ("Alpha;", (913, 0)), + ("Lan", (0, 0)), + ("llcorner", (0, 0)), + ("risingdotseq", (0, 0)), + ("olcro", (0, 0)), + ("MinusPlu", (0, 0)), + ("gtdot", (0, 0)), + ("bsolhs", (0, 0)), + ("hb", (0, 0)), + ("hkswarow;", (10534, 0)), + ("dbkaro", (0, 0)), + ("SquareSubsetEqu", (0, 0)), + ("lmous", (0, 0)), + ("AM", (0, 0)), + ("tpri", (0, 0)), + ("ofr", (0, 0)), + ("ZHcy;", (1046, 0)), + ("equiv", (0, 0)), + ("EmptyVe", (0, 0)), + ("eqslantless;", (10901, 0)), + ("upharpoonrigh", (0, 0)), + ("eng", (0, 0)), + ("Lo", (0, 0)), + ("Invisi", (0, 0)), + ("larrhk", (0, 0)), + ("nbumpe;", (8783, 824)), + ("nshortparalle", (0, 0)), + ("lsaquo;", (8249, 0)), + ("nLeftrig", (0, 0)), + ("omi", (0, 0)), + ("lu", (0, 0)), + ("Cedi", (0, 0)), + ("bnot;", (8976, 0)), + ("Dca", (0, 0)), + ("xcap;", (8898, 0)), + ("ca", (0, 0)), + ("fpa", (0, 0)), + ("UpDownArro", (0, 0)), + ("NotTildeFullEqual;", (8775, 0)), + ("Pa", (0, 0)), + ("iiint", (0, 0)), + ("plankv", (0, 0)), + ("curr", (0, 0)), + ("shc", (0, 0)), + ("At", (0, 0)), + ("plusmn", (177, 0)), + ("lates", (0, 0)), + ("cent;", (162, 0)), + ("dbka", (0, 0)), + ("Sum", (0, 0)), + ("NotCo", (0, 0)), + ("lurdsh", (0, 0)), + ("nhAr", (0, 0)), + ("UnderBa", (0, 0)), + ("vsubn", (0, 0)), + ("rdsh;", (8627, 0)), + ("leftth", (0, 0)), + ("SubsetEqual", (0, 0)), + ("EqualTilde;", (8770, 0)), + ("lnE;", (8808, 0)), + ("dou", (0, 0)), + ("telre", (0, 0)), + ("DownArrowB", (0, 0)), + ("nsccu", (0, 0)), + ("Colon;", (8759, 0)), + ("bac", (0, 0)), + ("UpperRi", (0, 0)), + ("longleftrigh", (0, 0)), + ("Eta;", (919, 0)), + ("NotNestedGre", (0, 0)), + ("Nopf", (0, 0)), + ("Upar", (0, 0)), + ("circleddas", (0, 0)), + ("rcaron;", (345, 0)), + ("ApplyF", (0, 0)), + ("djcy;", (1106, 0)), + ("succnsi", (0, 0)), + ("xra", (0, 0)), + ("frac3", (0, 0)), + ("succneq", (0, 0)), + ("eqsla", (0, 0)), + ("NotNestedG", (0, 0)), + ("upsi;", (965, 0)), + ("CounterClockwiseContourIntegr", (0, 0)), + ("subdo", (0, 0)), + ("Leftright", (0, 0)), + ("GreaterEqua", (0, 0)), + ("Lsh", (0, 0)), + ("itilde", (0, 0)), + ("SmallCircle;", (8728, 0)), + ("diamond", (0, 0)), + ("ApplyFunction;", (8289, 0)), + ("iiota;", (8489, 0)), + ("upharpo", (0, 0)), + ("ContourIntegral", (0, 0)), + ("ffilig;", (64259, 0)), + ("NotEqualTi", (0, 0)), + ("gvertneq", (0, 0)), + ("NotPre", (0, 0)), + ("fflig", (0, 0)), + ("varsubsetneq;", (8842, 65024)), + ("NotSquareSup", (0, 0)), + ("models", (0, 0)), + ("nLefta", (0, 0)), + ("drbkarow", (0, 0)), + ("DoubleUpDownArr", (0, 0)), + ("xcirc", (0, 0)), + ("empty", (0, 0)), + ("CounterClockw", (0, 0)), + ("quatint;", (10774, 0)), + ("LeftDou", (0, 0)), + ("LeftTeeVecto", (0, 0)), + ("dotsquare;", (8865, 0)), + ("bernou", (0, 0)), + ("Omicro", (0, 0)), + ("colone", (0, 0)), + ("xh", (0, 0)), + ("varnothin", (0, 0)), + ("pound;", (163, 0)), + ("gtc", (0, 0)), + ("LowerLeftA", (0, 0)), + ("xoplu", (0, 0)), + ("geqsla", (0, 0)), + ("uogo", (0, 0)), + ("epar", (0, 0)), + ("cacut", (0, 0)), + ("apos", (0, 0)), + ("xdtri;", (9661, 0)), + ("CupCap", (0, 0)), + ("iti", (0, 0)), + ("Breve", (0, 0)), + ("utilde", (0, 0)), + ("Ycirc", (0, 0)), + ("Rcy;", (1056, 0)), + ("NotSubse", (0, 0)), + ("napE;", (10864, 824)), + ("lat", (0, 0)), + ("UpDownArrow;", (8597, 0)), + ("pluse", (0, 0)), + ("ShortDow", (0, 0)), + ("OverBracke", (0, 0)), + ("vprop", (0, 0)), + ("flt", (0, 0)), + ("Rf", (0, 0)), + ("lbr", (0, 0)), + ("DoubleRightTe", (0, 0)), + ("conint", (0, 0)), + ("SucceedsSlantEqual;", (8829, 0)), + ("DownArrow;", (8595, 0)), + ("LessGreat", (0, 0)), + ("Ru", (0, 0)), + ("exis", (0, 0)), + ("csub;", (10959, 0)), + ("lcaron", (0, 0)), + ("ntrianglel", (0, 0)), + ("ip", (0, 0)), + ("Aopf;", (120120, 0)), + ("Phi", (0, 0)), + ("TildeTild", (0, 0)), + ("rightright", (0, 0)), + ("ffr;", (120099, 0)), + ("ograve", (242, 0)), + ("cacute;", (263, 0)), + ("NotVert", (0, 0)), + ("scedi", (0, 0)), + ("succcurlyeq", (0, 0)), + ("Bs", (0, 0)), + ("weierp", (0, 0)), + ("lesss", (0, 0)), + ("backc", (0, 0)), + ("rpar;", (41, 0)), + ("LeftFloor", (0, 0)), + ("yic", (0, 0)), + ("Omacr;", (332, 0)), + ("nabla;", (8711, 0)), + ("gne;", (10888, 0)), + ("nvDas", (0, 0)), + ("reg;", (174, 0)), + ("CounterClockwiseContourI", (0, 0)), + ("geqsl", (0, 0)), + ("lobrk;", (10214, 0)), + ("oslas", (0, 0)), + ("Ds", (0, 0)), + ("Odbla", (0, 0)), + ("bigstar", (0, 0)), + ("olc", (0, 0)), + ("perte", (0, 0)), + ("dotp", (0, 0)), + ("DoubleUpArro", (0, 0)), + ("gtrdot;", (8919, 0)), + ("Jscr;", (119973, 0)), + ("tcedil", (0, 0)), + ("Mel", (0, 0)), + ("gtrapprox;", (10886, 0)), + ("dotmi", (0, 0)), + ("harrw", (0, 0)), + ("ntg", (0, 0)), + ("EmptySmall", (0, 0)), + ("CapitalD", (0, 0)), + ("cudarr", (0, 0)), + ("lvert", (0, 0)), + ("subdot;", (10941, 0)), + ("sup3;", (179, 0)), + ("minu", (0, 0)), + ("yicy", (0, 0)), + ("boxVr;", (9567, 0)), + ("Ncar", (0, 0)), + ("otild", (0, 0)), + ("RightTriangl", (0, 0)), + ("UpperRightArrow", (0, 0)), + ("subedo", (0, 0)), + ("dr", (0, 0)), + ("GreaterFullEqual;", (8807, 0)), + ("RightAngleBrack", (0, 0)), + ("we", (0, 0)), + ("DiacriticalGrave", (0, 0)), + ("Oscr;", (119978, 0)), + ("zigrarr;", (8669, 0)), + ("Eci", (0, 0)), + ("LeftTriangleBar", (0, 0)), + ("lozf", (0, 0)), + ("Ns", (0, 0)), + ("omeg", (0, 0)), + ("sime;", (8771, 0)), + ("gtrless;", (8823, 0)), + ("Cen", (0, 0)), + ("Ia", (0, 0)), + ("mnplu", (0, 0)), + ("lae", (0, 0)), + ("primes;", (8473, 0)), + ("acd", (0, 0)), + ("NotNeste", (0, 0)), + ("nhArr", (0, 0)), + ("ltcir;", (10873, 0)), + ("thinsp;", (8201, 0)), + ("lt", (60, 0)), + ("ApplyFunct", (0, 0)), + ("nsubseteq;", (8840, 0)), + ("lesssim;", (8818, 0)), + ("dstro", (0, 0)), + ("Tab", (0, 0)), + ("circlearrowle", (0, 0)), + ("LessLes", (0, 0)), + ("Squa", (0, 0)), + ("Topf", (0, 0)), + ("eqvpars", (0, 0)), + ("UnderBrac", (0, 0)), + ("quaterni", (0, 0)), + ("curlye", (0, 0)), + ("dagg", (0, 0)), + ("profalar;", (9006, 0)), + ("frac15;", (8533, 0)), + ("Longrightarrow", (0, 0)), + ("bigsqcup;", (10758, 0)), + ("Uppe", (0, 0)), + ("GreaterSlan", (0, 0)), + ("Lleftar", (0, 0)), + ("trpe", (0, 0)), + ("SucceedsEqual;", (10928, 0)), + ("NegativeMediumSpace", (0, 0)), + ("wedba", (0, 0)), + ("leftle", (0, 0)), + ("RightVector", (0, 0)), + ("bsol;", (92, 0)), + ("Acy", (0, 0)), + ("dzigrarr;", (10239, 0)), + ("double", (0, 0)), + ("SquareIn", (0, 0)), + ("emsp", (0, 0)), + ("thetasym;", (977, 0)), + ("Xop", (0, 0)), + ("cwi", (0, 0)), + ("Mcy", (0, 0)), + ("ltcc;", (10918, 0)), + ("vsubne;", (8842, 65024)), + ("cfr;", (120096, 0)), + ("thorn;", (254, 0)), + ("Lar", (0, 0)), + ("fllig;", (64258, 0)), + ("foral", (0, 0)), + ("boxvh", (0, 0)), + ("boxdl;", (9488, 0)), + ("DoubleContourInt", (0, 0)), + ("GJcy;", (1027, 0)), + ("shchcy", (0, 0)), + ("Uopf", (0, 0)), + ("ze", (0, 0)), + ("at", (0, 0)), + ("model", (0, 0)), + ("uharl", (0, 0)), + ("prec", (0, 0)), + ("UnderParenth", (0, 0)), + ("NotSucceedsSlantEqual", (0, 0)), + ("curve", (0, 0)), + ("rnmi", (0, 0)), + ("ClockwiseCon", (0, 0)), + ("Rar", (0, 0)), + ("nsubs", (0, 0)), + ("sccu", (0, 0)), + ("SucceedsSla", (0, 0)), + ("atild", (0, 0)), + ("ddotse", (0, 0)), + ("curarrm;", (10556, 0)), + ("LeftDoubleB", (0, 0)), + ("exponenti", (0, 0)), + ("apid", (0, 0)), + ("awconint;", (8755, 0)), + ("te", (0, 0)), + ("ult", (0, 0)), + ("LessT", (0, 0)), + ("uarr", (0, 0)), + ("Jfr", (0, 0)), + ("radic", (0, 0)), + ("NotLeftTriang", (0, 0)), + ("intprod;", (10812, 0)), + ("xf", (0, 0)), + ("GreaterSlantEq", (0, 0)), + ("ngeqq;", (8807, 824)), + ("prcue;", (8828, 0)), + ("bigwedg", (0, 0)), + ("dH", (0, 0)), + ("gesdotol;", (10884, 0)), + ("ShortDownA", (0, 0)), + ("div;", (247, 0)), + ("dfi", (0, 0)), + ("larrt", (0, 0)), + ("varrho", (0, 0)), + ("NotTildeFullE", (0, 0)), + ("intlarhk;", (10775, 0)), + ("upsi", (0, 0)), + ("dcaro", (0, 0)), + ("Gfr", (0, 0)), + ("nequiv", (0, 0)), + ("lobr", (0, 0)), + ("Euml;", (203, 0)), + ("NotCongrue", (0, 0)), + ("nG", (0, 0)), + ("vzi", (0, 0)), + ("NegativeMediumSpa", (0, 0)), + ("Plu", (0, 0)), + ("Ccaron", (0, 0)), + ("nj", (0, 0)), + ("roarr;", (8702, 0)), + ("rtril", (0, 0)), + ("nwnear", (0, 0)), + ("hksear", (0, 0)), + ("ssmile;", (8995, 0)), + ("numero", (0, 0)), + ("Kapp", (0, 0)), + ("parsim;", (10995, 0)), + ("ccupssm", (0, 0)), + ("AE", (0, 0)), + ("Nc", (0, 0)), + ("Supe", (0, 0)), + ("angrt", (0, 0)), + ("RightTriangleEq", (0, 0)), + ("DoubleLongLeftR", (0, 0)), + ("lcedi", (0, 0)), + ("in", (0, 0)), + ("rightri", (0, 0)), + ("RightFl", (0, 0)), + ("LessEqualGreater;", (8922, 0)), + ("upsih;", (978, 0)), + ("frac38", (0, 0)), + ("EmptyVeryS", (0, 0)), + ("hook", (0, 0)), + ("blk3", (0, 0)), + ("longrightarrow;", (10230, 0)), + ("NotLessGreat", (0, 0)), + ("RightArrow;", (8594, 0)), + ("EqualTilde", (0, 0)), + ("Par", (0, 0)), + ("rcaro", (0, 0)), + ("sqcups", (0, 0)), + ("comma", (0, 0)), + ("cirm", (0, 0)), + ("InvisibleCom", (0, 0)), + ("dblac", (0, 0)), + ("PrecedesSla", (0, 0)), + ("NotLe", (0, 0)), + ("xotime", (0, 0)), + ("Vdash;", (8873, 0)), + ("HumpDownHu", (0, 0)), + ("lf", (0, 0)), + ("sbq", (0, 0)), + ("succeq", (0, 0)), + ("DownLeftVector;", (8637, 0)), + ("gvertne", (0, 0)), + ("NegativeMedium", (0, 0)), + ("lesdot", (0, 0)), + ("expo", (0, 0)), + ("nldr;", (8229, 0)), + ("So", (0, 0)), + ("lobrk", (0, 0)), + ("chec", (0, 0)), + ("RightUpTe", (0, 0)), + ("xhA", (0, 0)), + ("ntrianglelefteq", (0, 0)), + ("GreaterFullE", (0, 0)), + ("SHC", (0, 0)), + ("Fouriert", (0, 0)), + ("str", (0, 0)), + ("IJli", (0, 0)), + ("imath;", (305, 0)), + ("lmoustache;", (9136, 0)), + ("minusd", (0, 0)), + ("uogon;", (371, 0)), + ("erarr;", (10609, 0)), + ("Cup", (0, 0)), + ("and", (0, 0)), + ("dbkarow;", (10511, 0)), + ("cularr", (0, 0)), + ("NJ", (0, 0)), + ("succcurlyeq;", (8829, 0)), + ("drcr", (0, 0)), + ("nlarr", (0, 0)), + ("PlusMinu", (0, 0)), + ("nacute", (0, 0)), + ("SHcy;", (1064, 0)), + ("SupersetEqual;", (8839, 0)), + ("Lleftarrow;", (8666, 0)), + ("DoubleL", (0, 0)), + ("Ecaro", (0, 0)), + ("uh", (0, 0)), + ("oast;", (8859, 0)), + ("IJl", (0, 0)), + ("sup2;", (178, 0)), + ("curvearrowleft", (0, 0)), + ("vscr;", (120011, 0)), + ("equest", (0, 0)), + ("RightVect", (0, 0)), + ("varsubsetneq", (0, 0)), + ("Yci", (0, 0)), + ("UnderPare", (0, 0)), + ("lot", (0, 0)), + ("triplu", (0, 0)), + ("Oslash;", (216, 0)), + ("Down", (0, 0)), + ("RightTeeVecto", (0, 0)), + ("dh", (0, 0)), + ("supl", (0, 0)), + ("nisd", (0, 0)), + ("nacu", (0, 0)), + ("xrArr", (0, 0)), + ("vart", (0, 0)), + ("ntri", (0, 0)), + ("frac1", (0, 0)), + ("bsi", (0, 0)), + ("ya", (0, 0)), + ("DoubleLongLeft", (0, 0)), + ("Icirc;", (206, 0)), + ("notindot;", (8949, 824)), + ("two", (0, 0)), + ("twohe", (0, 0)), + ("SupersetEqu", (0, 0)), + ("gacu", (0, 0)), + ("leftrightsquigarrow", (0, 0)), + ("ratail", (0, 0)), + ("UnionPl", (0, 0)), + ("bemp", (0, 0)), + ("notni;", (8716, 0)), + ("hellip", (0, 0)), + ("pun", (0, 0)), + ("DoubleLongLeftRightA", (0, 0)), + ("eqslantgtr", (0, 0)), + ("n", (0, 0)), + ("longmapsto", (0, 0)), + ("longrightarro", (0, 0)), + ("NotReve", (0, 0)), + ("brvbar;", (166, 0)), + ("Gt;", (8811, 0)), + ("tcedil;", (355, 0)), + ("RightFloo", (0, 0)), + ("Sup", (0, 0)), + ("Ugr", (0, 0)), + ("Esc", (0, 0)), + ("circledR;", (174, 0)), + ("hksw", (0, 0)), + ("Diacr", (0, 0)), + ("RightAngle", (0, 0)), + ("precap", (0, 0)), + ("topbot;", (9014, 0)), + ("oe", (0, 0)), + ("NotReverseEl", (0, 0)), + ("supset", (0, 0)), + ("lesg;", (8922, 65024)), + ("EmptySmallSquare", (0, 0)), + ("isc", (0, 0)), + ("tosa;", (10537, 0)), + ("EmptyV", (0, 0)), + ("yucy", (0, 0)), + ("NotRightTriangleEqual", (0, 0)), + ("InvisibleComma", (0, 0)), + ("OverParen", (0, 0)), + ("ltques", (0, 0)), + ("Otimes", (0, 0)), + ("inf", (0, 0)), + ("prime", (0, 0)), + ("dempt", (0, 0)), + ("Tau;", (932, 0)), + ("simrar", (0, 0)), + ("FilledSma", (0, 0)), + ("ia", (0, 0)), + ("qo", (0, 0)), + ("minus;", (8722, 0)), + ("NotSquareSuperse", (0, 0)), + ("gbreve", (0, 0)), + ("thickapprox;", (8776, 0)), + ("ultr", (0, 0)), + ("simeq", (0, 0)), + ("Exponen", (0, 0)), + ("nsp", (0, 0)), + ("Iopf;", (120128, 0)), + ("ocy;", (1086, 0)), + ("subed", (0, 0)), + ("drcrop;", (8972, 0)), + ("twoheadl", (0, 0)), + ("vo", (0, 0)), + ("LeftDownVe", (0, 0)), + ("Acy;", (1040, 0)), + ("Nested", (0, 0)), + ("Fc", (0, 0)), + ("Eac", (0, 0)), + ("nfr", (0, 0)), + ("subsetneq;", (8842, 0)), + ("nearr;", (8599, 0)), + ("DownLeftVecto", (0, 0)), + ("Gopf", (0, 0)), + ("thinsp", (0, 0)), + ("DownTeeA", (0, 0)), + ("Ofr;", (120082, 0)), + ("nvlt", (0, 0)), + ("circleddash", (0, 0)), + ("ldr", (0, 0)), + ("aleph", (0, 0)), + ("doub", (0, 0)), + ("nac", (0, 0)), + ("Zscr", (0, 0)), + ("LeftCei", (0, 0)), + ("LeftArrowR", (0, 0)), + ("NotGreaterGrea", (0, 0)), + ("rangl", (0, 0)), + ("NotReverseEleme", (0, 0)), + ("puncsp;", (8200, 0)), + ("lArr;", (8656, 0)), + ("hookrightarro", (0, 0)), + ("CenterDot", (0, 0)), + ("LowerLeftArrow;", (8601, 0)), + ("bsem", (0, 0)), + ("zigrarr", (0, 0)), + ("ecol", (0, 0)), + ("rA", (0, 0)), + ("xhar", (0, 0)), + ("PrecedesEq", (0, 0)), + ("Escr", (0, 0)), + ("uhblk", (0, 0)), + ("subsetn", (0, 0)), + ("ApplyFun", (0, 0)), + ("eacu", (0, 0)), + ("rightrightar", (0, 0)), + ("nda", (0, 0)), + ("GreaterTil", (0, 0)), + ("DownArrowBa", (0, 0)), + ("centerd", (0, 0)), + ("kc", (0, 0)), + ("lltri", (0, 0)), + ("DoubleUpArrow;", (8657, 0)), + ("Zcar", (0, 0)), + ("tau;", (964, 0)), + ("angmsdae", (0, 0)), + ("cupca", (0, 0)), + ("Invis", (0, 0)), + ("raquo", (187, 0)), + ("SucceedsTi", (0, 0)), + ("LessFullEqual;", (8806, 0)), + ("sqsu", (0, 0)), + ("equest;", (8799, 0)), + ("nleqsl", (0, 0)), + ("raem", (0, 0)), + ("Double", (0, 0)), + ("horba", (0, 0)), + ("NotCon", (0, 0)), + ("lE;", (8806, 0)), + ("Dcy", (0, 0)), + ("gra", (0, 0)), + ("simgE", (0, 0)), + ("semi", (0, 0)), + ("mic", (0, 0)), + ("CenterDot;", (183, 0)), + ("ha", (0, 0)), + ("setminus;", (8726, 0)), + ("dotplus", (0, 0)), + ("suc", (0, 0)), + ("varpro", (0, 0)), + ("gsime;", (10894, 0)), + ("Sum;", (8721, 0)), + ("iin", (0, 0)), + ("nbs", (0, 0)), + ("nvrArr;", (10499, 0)), + ("ldrdha", (0, 0)), + ("OpenCurlyDoubleQu", (0, 0)), + ("ncu", (0, 0)), + ("dHa", (0, 0)), + ("boxv", (0, 0)), + ("brev", (0, 0)), + ("Tcy;", (1058, 0)), + ("Oslas", (0, 0)), + ("PrecedesSlantEqua", (0, 0)), + ("DiacriticalTilde;", (732, 0)), + ("Zcaron", (0, 0)), + ("yucy;", (1102, 0)), + ("dd;", (8518, 0)), + ("harr;", (8596, 0)), + ("DoubleRigh", (0, 0)), + ("looparrowri", (0, 0)), + ("orslope;", (10839, 0)), + ("RuleDelayed", (0, 0)), + ("xrar", (0, 0)), + ("acy", (0, 0)), + ("FilledS", (0, 0)), + ("DoubleLeftRig", (0, 0)), + ("varepsil", (0, 0)), + ("RightDow", (0, 0)), + ("Updownarrow", (0, 0)), + ("nha", (0, 0)), + ("oslash;", (248, 0)), + ("Cayleys;", (8493, 0)), + ("iiii", (0, 0)), + ("subplus", (0, 0)), + ("cuwed;", (8911, 0)), + ("NotReverseElem", (0, 0)), + ("suphsu", (0, 0)), + ("vang", (0, 0)), + ("ClockwiseContourI", (0, 0)), + ("Vd", (0, 0)), + ("fe", (0, 0)), + ("Leftarrow;", (8656, 0)), + ("NotR", (0, 0)), + ("cra", (0, 0)), + ("NotNestedLessL", (0, 0)), + ("rsqb", (0, 0)), + ("TripleDo", (0, 0)), + ("gesd", (0, 0)), + ("Longri", (0, 0)), + ("block;", (9608, 0)), + ("NestedGreater", (0, 0)), + ("RightArrowBa", (0, 0)), + ("KJc", (0, 0)), + ("LeftTeeVector;", (10586, 0)), + ("NotVerticalBar;", (8740, 0)), + ("GreaterG", (0, 0)), + ("LeftDown", (0, 0)), + ("Eum", (0, 0)), + ("Wop", (0, 0)), + ("bpri", (0, 0)), + ("br", (0, 0)), + ("profsurf", (0, 0)), + ("rharu", (0, 0)), + ("SquareU", (0, 0)), + ("strns", (0, 0)), + ("boxdR;", (9554, 0)), + ("larrh", (0, 0)), + ("TripleDot", (0, 0)), + ("FilledVerySmallSq", (0, 0)), + ("scpoli", (0, 0)), + ("YUcy", (0, 0)), + ("xrAr", (0, 0)), + ("Qfr;", (120084, 0)), + ("NewLine;", (10, 0)), + ("angmsdac;", (10666, 0)), + ("nsucce", (0, 0)), + ("wcirc;", (373, 0)), + ("dem", (0, 0)), + ("van", (0, 0)), + ("NotSquareSupersetEqu", (0, 0)), + ("Bop", (0, 0)), + ("Exponent", (0, 0)), + ("mapstolef", (0, 0)), + ("prap", (0, 0)), + ("squf", (0, 0)), + ("DoubleRi", (0, 0)), + ("origo", (0, 0)), + ("plussi", (0, 0)), + ("Longrig", (0, 0)), + ("twoheadleftarro", (0, 0)), + ("Uar", (0, 0)), + ("Cce", (0, 0)), + ("Parti", (0, 0)), + ("drbkar", (0, 0)), + ("SH", (0, 0)), + ("nsubset", (0, 0)), + ("semi;", (59, 0)), + ("supsim", (0, 0)), + ("YU", (0, 0)), + ("igrave", (236, 0)), + ("Aogo", (0, 0)), + ("HumpDownH", (0, 0)), + ("DownRightVectorBar", (0, 0)), + ("ga", (0, 0)), + ("geq;", (8805, 0)), + ("Tau", (0, 0)), + ("ratio", (0, 0)), + ("DownRight", (0, 0)), + ("aci", (0, 0)), + ("NestedGreaterGreater;", (8811, 0)), + ("gv", (0, 0)), + ("Mi", (0, 0)), + ("Bcy;", (1041, 0)), + ("Tcaron", (0, 0)), + ("boxv;", (9474, 0)), + ("ua", (0, 0)), + ("LeftDownVecto", (0, 0)), + ("plusb", (0, 0)), + ("NotSucceedsT", (0, 0)), + ("LongLe", (0, 0)), + ("RightDou", (0, 0)), + ("bsolhsu", (0, 0)), + ("cong;", (8773, 0)), + ("rsqu", (0, 0)), + ("rfisht", (0, 0)), + ("app", (0, 0)), + ("ClockwiseContourIntegral", (0, 0)), + ("ale", (0, 0)), + ("eques", (0, 0)), + ("RightTeeVector", (0, 0)), + ("leftarro", (0, 0)), + ("ysc", (0, 0)), + ("ne", (0, 0)), + ("Backsla", (0, 0)), + ("hkswarow", (0, 0)), + ("excl;", (33, 0)), + ("nges", (0, 0)), + ("Dar", (0, 0)), + ("NotSucceedsSla", (0, 0)), + ("Ub", (0, 0)), + ("igra", (0, 0)), + ("VeryT", (0, 0)), + ("ntilde", (241, 0)), + ("copr", (0, 0)), + ("Lce", (0, 0)), + ("swnwar;", (10538, 0)), + ("ecaron", (0, 0)), + ("bumpeq;", (8783, 0)), + ("rightsqui", (0, 0)), + ("bnequiv", (0, 0)), + ("lhar", (0, 0)), + ("RightTee;", (8866, 0)), + ("FilledVer", (0, 0)), + ("ens", (0, 0)), + ("leftrightar", (0, 0)), + ("RightDownV", (0, 0)), + ("NotRe", (0, 0)), + ("bowti", (0, 0)), + ("falling", (0, 0)), + ("HilbertSp", (0, 0)), + ("LeftTri", (0, 0)), + ("gnsi", (0, 0)), + ("lgE;", (10897, 0)), + ("ThinS", (0, 0)), + ("gtdo", (0, 0)), + ("gacut", (0, 0)), + ("oro", (0, 0)), + ("Produc", (0, 0)), + ("emsp14;", (8197, 0)), + ("gcy", (0, 0)), + ("SuchThat;", (8715, 0)), + ("tstro", (0, 0)), + ("lesdotor", (0, 0)), + ("bbrktbrk", (0, 0)), + ("NotDoubleV", (0, 0)), + ("Kcedil", (0, 0)), + ("lessdot;", (8918, 0)), + ("cirE", (0, 0)), + ("DiacriticalGra", (0, 0)), + ("lAta", (0, 0)), + ("grave;", (96, 0)), + ("bigc", (0, 0)), + ("DoubleDownArro", (0, 0)), + ("elsdot", (0, 0)), + ("NotSub", (0, 0)), + ("DoubleVerti", (0, 0)), + ("VerticalBar", (0, 0)), + ("Sigma;", (931, 0)), + ("Ag", (0, 0)), + ("Fille", (0, 0)), + ("glE;", (10898, 0)), + ("lbrac", (0, 0)), + ("pitchfork", (0, 0)), + ("doublebarwed", (0, 0)), + ("num;", (35, 0)), + ("Uacute;", (218, 0)), + ("Zf", (0, 0)), + ("boxhu;", (9524, 0)), + ("ld", (0, 0)), + ("SuchT", (0, 0)), + ("LongRig", (0, 0)), + ("LowerLeft", (0, 0)), + ("veee", (0, 0)), + ("muma", (0, 0)), + ("thka", (0, 0)), + ("Ogra", (0, 0)), + ("SquareSu", (0, 0)), + ("compleme", (0, 0)), + ("Jukcy;", (1028, 0)), + ("Di", (0, 0)), + ("blk", (0, 0)), + ("zigra", (0, 0)), + ("lneq", (0, 0)), + ("gtquest;", (10876, 0)), + ("LeftArrowB", (0, 0)), + ("UpArro", (0, 0)), + ("succna", (0, 0)), + ("pluscir;", (10786, 0)), + ("sfr;", (120112, 0)), + ("vartriangle", (0, 0)), + ("Leftrightarrow", (0, 0)), + ("RightTria", (0, 0)), + ("upharpoonright;", (8638, 0)), + ("LeftUpVecto", (0, 0)), + ("TSc", (0, 0)), + ("colon;", (58, 0)), + ("DownLeftRightVe", (0, 0)), + ("Do", (0, 0)), + ("DoubleRightArrow;", (8658, 0)), + ("bump", (0, 0)), + ("cuvee;", (8910, 0)), + ("Ycirc;", (374, 0)), + ("lca", (0, 0)), + ("Revers", (0, 0)), + ("tdo", (0, 0)), + ("gtci", (0, 0)), + ("mDDot;", (8762, 0)), + ("nrightarrow;", (8603, 0)), + ("laqu", (0, 0)), + ("rpa", (0, 0)), + ("ned", (0, 0)), + ("NotCongr", (0, 0)), + ("Kap", (0, 0)), + ("eopf;", (120150, 0)), + ("num", (0, 0)), + ("plusdo;", (8724, 0)), + ("hookr", (0, 0)), + ("egs;", (10902, 0)), + ("varno", (0, 0)), + ("Downar", (0, 0)), + ("boxDr", (0, 0)), + ("lesseqqgtr;", (10891, 0)), + ("vl", (0, 0)), + ("uHa", (0, 0)), + ("osol;", (8856, 0)), + ("scaron", (0, 0)), + ("Ccedil", (199, 0)), + ("El", (0, 0)), + ("Coprod", (0, 0)), + ("divideontim", (0, 0)), + ("Nt", (0, 0)), + ("ss", (0, 0)), + ("lthree", (0, 0)), + ("utrif", (0, 0)), + ("RightTeeAr", (0, 0)), + ("SucceedsEqual", (0, 0)), + ("rotimes", (0, 0)), + ("gn", (0, 0)), + ("eogon", (0, 0)), + ("boxd", (0, 0)), + ("nLtv;", (8810, 824)), + ("nRigh", (0, 0)), + ("ShortRig", (0, 0)), + ("curlyeqs", (0, 0)), + ("Otime", (0, 0)), + ("UpD", (0, 0)), + ("theta;", (952, 0)), + ("Fouri", (0, 0)), + ("EmptySmallSquare;", (9723, 0)), + ("lpar;", (40, 0)), + ("lowb", (0, 0)), + ("SquareSuperse", (0, 0)), + ("Jf", (0, 0)), + ("gnappr", (0, 0)), + ("sear", (0, 0)), + ("NotLessEqua", (0, 0)), + ("DiacriticalDo", (0, 0)), + ("gtd", (0, 0)), + ("bowtie;", (8904, 0)), + ("precna", (0, 0)), + ("nprcue", (0, 0)), + ("Aring", (197, 0)), + ("Vb", (0, 0)), + ("ThickS", (0, 0)), + ("Lc", (0, 0)), + ("DiacriticalTild", (0, 0)), + ("TildeFullEqual", (0, 0)), + ("wc", (0, 0)), + ("Ff", (0, 0)), + ("dc", (0, 0)), + ("NotExists;", (8708, 0)), + ("atilde;", (227, 0)), + ("doteq;", (8784, 0)), + ("nvs", (0, 0)), + ("lbrack;", (91, 0)), + ("biguplus", (0, 0)), + ("hyphen", (0, 0)), + ("Scy", (0, 0)), + ("lsime", (0, 0)), + ("tb", (0, 0)), + ("intla", (0, 0)), + ("dst", (0, 0)), + ("back", (0, 0)), + ("DownBre", (0, 0)), + ("smile;", (8995, 0)), + ("ugra", (0, 0)), + ("Lced", (0, 0)), + ("H", (0, 0)), + ("urt", (0, 0)), + ("NotNest", (0, 0)), + ("precs", (0, 0)), + ("smallsetmi", (0, 0)), + ("DownRightTeeVec", (0, 0)), + ("Rrighta", (0, 0)), + ("Ycy;", (1067, 0)), + ("Oti", (0, 0)), + ("Xi;", (926, 0)), + ("leftarrow;", (8592, 0)), + ("ZH", (0, 0)), + ("permi", (0, 0)), + ("NotLessSlant", (0, 0)), + ("nopf", (0, 0)), + ("timesb", (0, 0)), + ("Zer", (0, 0)), + ("cupbrcap", (0, 0)), + ("LowerRi", (0, 0)), + ("late", (0, 0)), + ("InvisibleComma;", (8291, 0)), + ("eDD", (0, 0)), + ("softcy;", (1100, 0)), + ("nvrtrie;", (8885, 8402)), + ("xw", (0, 0)), + ("Tripl", (0, 0)), + ("rcub;", (125, 0)), + ("cudarrl", (0, 0)), + ("DoubleDownArrow;", (8659, 0)), + ("lag", (0, 0)), + ("ltlar", (0, 0)), + ("NoBre", (0, 0)), + ("Ecaron", (0, 0)), + ("lessapp", (0, 0)), + ("submu", (0, 0)), + ("wedbar", (0, 0)), + ("NestedGreaterG", (0, 0)), + ("RightDownVe", (0, 0)), + ("cu", (0, 0)), + ("hksearo", (0, 0)), + ("bigup", (0, 0)), + ("omic", (0, 0)), + ("aacut", (0, 0)), + ("notniva;", (8716, 0)), + ("dale", (0, 0)), + ("capbrcu", (0, 0)), + ("NotGreaterSlantEqu", (0, 0)), + ("atilde", (227, 0)), + ("wrea", (0, 0)), + ("imagp", (0, 0)), + ("Prec", (0, 0)), + ("otim", (0, 0)), + ("Nacute;", (323, 0)), + ("lesseqg", (0, 0)), + ("k", (0, 0)), + ("mod", (0, 0)), + ("Lleft", (0, 0)), + ("LessLess;", (10913, 0)), + ("pre;", (10927, 0)), + ("blk14;", (9617, 0)), + ("chcy;", (1095, 0)), + ("Integra", (0, 0)), + ("NotGreaterL", (0, 0)), + ("downa", (0, 0)), + ("gf", (0, 0)), + ("conint;", (8750, 0)), + ("thickap", (0, 0)), + ("vsubnE", (0, 0)), + ("boxuR", (0, 0)), + ("GreaterF", (0, 0)), + ("ETH", (208, 0)), + ("ced", (0, 0)), + ("gtcir", (0, 0)), + ("DoubleUpD", (0, 0)), + ("ulcorner", (0, 0)), + ("UpEqu", (0, 0)), + ("digamma;", (989, 0)), + ("rightsquigar", (0, 0)), + ("berno", (0, 0)), + ("divideo", (0, 0)), + ("digam", (0, 0)), + ("scir", (0, 0)), + ("exponent", (0, 0)), + ("apacir", (0, 0)), + ("i", (0, 0)), + ("LongLeftRightArrow", (0, 0)), + ("ngeqs", (0, 0)), + ("Cloc", (0, 0)), + ("pf", (0, 0)), + ("compfn", (0, 0)), + ("LeftTriangleEqual;", (8884, 0)), + ("wreath", (0, 0)), + ("boxVl", (0, 0)), + ("congdot", (0, 0)), + ("lstro", (0, 0)), + ("nopf;", (120159, 0)), + ("yacut", (0, 0)), + ("triplus", (0, 0)), + ("mapstol", (0, 0)), + ("Intersect", (0, 0)), + ("DiacriticalTi", (0, 0)), + ("utr", (0, 0)), + ("Omi", (0, 0)), + ("plussim;", (10790, 0)), + ("aopf;", (120146, 0)), + ("Oacute;", (211, 0)), + ("uplus", (0, 0)), + ("Tilde", (0, 0)), + ("ctd", (0, 0)), + ("div", (0, 0)), + ("gamm", (0, 0)), + ("NotHumpD", (0, 0)), + ("SquareS", (0, 0)), + ("ulcorner;", (8988, 0)), + ("succnapprox", (0, 0)), + ("shcy;", (1096, 0)), + ("MediumSpace;", (8287, 0)), + ("LeftTriangleEqual", (0, 0)), + ("iukcy", (0, 0)), + ("RightUpVector;", (8638, 0)), + ("bigodot;", (10752, 0)), + ("c", (0, 0)), + ("UpArrowDownArr", (0, 0)), + ("NotGreaterEqua", (0, 0)), + ("itild", (0, 0)), + ("Vopf;", (120141, 0)), + ("lvnE", (0, 0)), + ("lmoust;", (9136, 0)), + ("lotimes", (0, 0)), + ("numsp", (0, 0)), + ("sfr", (0, 0)), + ("subsetne", (0, 0)), + ("chi", (0, 0)), + ("boxVL;", (9571, 0)), + ("NotHump", (0, 0)), + ("ShortRightArro", (0, 0)), + ("xs", (0, 0)), + ("squa", (0, 0)), + ("Rarr", (0, 0)), + ("cirscir", (0, 0)), + ("intercal;", (8890, 0)), + ("UpTeeArr", (0, 0)), + ("Barwed", (0, 0)), + ("nsupset", (0, 0)), + ("Omeg", (0, 0)), + ("NewLine", (0, 0)), + ("LeftUpVector;", (8639, 0)), + ("Xfr;", (120091, 0)), + ("Tstr", (0, 0)), + ("nparallel", (0, 0)), + ("succapprox;", (10936, 0)), + ("subsub;", (10965, 0)), + ("lvertn", (0, 0)), + ("simgE;", (10912, 0)), + ("qsc", (0, 0)), + ("emacr;", (275, 0)), + ("LongL", (0, 0)), + ("longleftrightarrow", (0, 0)), + ("boxp", (0, 0)), + ("nesi", (0, 0)), + ("zf", (0, 0)), + ("Long", (0, 0)), + ("downharpoonlef", (0, 0)), + ("icy", (0, 0)), + ("LeftC", (0, 0)), + ("upupa", (0, 0)), + ("NotRigh", (0, 0)), + ("LeftFloor;", (8970, 0)), + ("Succe", (0, 0)), + ("box", (0, 0)), + ("cedi", (0, 0)), + ("PartialD;", (8706, 0)), + ("ora", (0, 0)), + ("UpArrowDownA", (0, 0)), + ("rmoustach", (0, 0)), + ("bNot", (0, 0)), + ("varp", (0, 0)), + ("lmido", (0, 0)), + ("Oacut", (0, 0)), + ("rig", (0, 0)), + ("vartri", (0, 0)), + ("odb", (0, 0)), + ("searr", (0, 0)), + ("xsqcu", (0, 0)), + ("SucceedsTild", (0, 0)), + ("sect;", (167, 0)), + ("tpr", (0, 0)), + ("gtreqq", (0, 0)), + ("Ab", (0, 0)), + ("isin", (0, 0)), + ("ntriang", (0, 0)), + ("leftharpoond", (0, 0)), + ("shy;", (173, 0)), + ("par", (0, 0)), + ("NotSubsetEqu", (0, 0)), + ("prcu", (0, 0)), + ("thet", (0, 0)), + ("UpTeeArro", (0, 0)), + ("kopf", (0, 0)), + ("LeftUpDow", (0, 0)), + ("cupbrcap;", (10824, 0)), + ("xlArr", (0, 0)), + ("Darr;", (8609, 0)), + ("DoubleVerticalBar;", (8741, 0)), + ("eqcir", (0, 0)), + ("qscr;", (120006, 0)), + ("looparrowleft", (0, 0)), + ("ltlarr;", (10614, 0)), + ("robr", (0, 0)), + ("cdot", (0, 0)), + ("integers", (0, 0)), + ("Iac", (0, 0)), + ("micr", (0, 0)), + ("LeftArrowRightAr", (0, 0)), + ("supn", (0, 0)), + ("RightDoubleBracket", (0, 0)), + ("olarr", (0, 0)), + ("larrs", (0, 0)), + ("utri", (0, 0)), + ("imped;", (437, 0)), + ("FilledVerySmal", (0, 0)), + ("leftrightharpoo", (0, 0)), + ("xrarr;", (10230, 0)), + ("olcros", (0, 0)), + ("sqcup", (0, 0)), + ("hercon;", (8889, 0)), + ("Em", (0, 0)), + ("prnsim", (0, 0)), + ("Nac", (0, 0)), + ("varrh", (0, 0)), + ("sfrown", (0, 0)), + ("dArr", (0, 0)), + ("longleftrightarrow;", (10231, 0)), + ("DownLeftTeeVector", (0, 0)), + ("NotSquareSub", (0, 0)), + ("NegativeVer", (0, 0)), + ("egsdot", (0, 0)), + ("rightrightarrows;", (8649, 0)), + ("sups", (0, 0)), + ("DownArrowBar;", (10515, 0)), + ("drc", (0, 0)), + ("nsube;", (8840, 0)), + ("fparti", (0, 0)), + ("mumap;", (8888, 0)), + ("Gdo", (0, 0)), + ("car", (0, 0)), + ("rotim", (0, 0)), + ("tilde;", (732, 0)), + ("sqc", (0, 0)), + ("yicy;", (1111, 0)), + ("nvHarr", (0, 0)), + ("Diam", (0, 0)), + ("ncar", (0, 0)), + ("lpar", (0, 0)), + ("Hc", (0, 0)), + ("Expo", (0, 0)), + ("Dagg", (0, 0)), + ("varsub", (0, 0)), + ("Sced", (0, 0)), + ("frac12", (189, 0)), + ("no", (0, 0)), + ("npart;", (8706, 824)), + ("lAar", (0, 0)), + ("bpr", (0, 0)), + ("oS;", (9416, 0)), + ("pru", (0, 0)), + ("harr", (0, 0)), + ("Gr", (0, 0)), + ("Cir", (0, 0)), + ("DJcy;", (1026, 0)), + ("zhcy;", (1078, 0)), + ("rightarrow", (0, 0)), + ("VerticalS", (0, 0)), + ("qop", (0, 0)), + ("ReverseEquilibrium", (0, 0)), + ("Vo", (0, 0)), + ("urcrop;", (8974, 0)), + ("TildeEqual;", (8771, 0)), + ("kcedil", (0, 0)), + ("Et", (0, 0)), + ("nLeftright", (0, 0)), + ("ReverseUpEquilib", (0, 0)), + ("tshcy", (0, 0)), + ("Uparr", (0, 0)), + ("angmsdae;", (10668, 0)), + ("Sqr", (0, 0)), + ("DownRi", (0, 0)), + ("Eta", (0, 0)), + ("succap", (0, 0)), + ("hyphe", (0, 0)), + ("Jsercy;", (1032, 0)), + ("GreaterEqualLess;", (8923, 0)), + ("ij", (0, 0)), + ("squarf;", (9642, 0)), + ("GreaterGre", (0, 0)), + ("OElig;", (338, 0)), + ("urcorne", (0, 0)), + ("LeftArr", (0, 0)), + ("Ecar", (0, 0)), + ("nles;", (10877, 824)), + ("pri", (0, 0)), + ("lessg", (0, 0)), + ("rbar", (0, 0)), + ("LessSl", (0, 0)), + ("md", (0, 0)), + ("DownBreve", (0, 0)), + ("succcurly", (0, 0)), + ("ncup", (0, 0)), + ("UnionP", (0, 0)), + ("HumpDownHump", (0, 0)), + ("sqcaps", (0, 0)), + ("NotNestedGreaterGre", (0, 0)), + ("triang", (0, 0)), + ("eqcol", (0, 0)), + ("oum", (0, 0)), + ("lbbrk;", (10098, 0)), + ("nsupsete", (0, 0)), + ("Icy", (0, 0)), + ("EN", (0, 0)), + ("nvltri", (0, 0)), + ("Uop", (0, 0)), + ("inte", (0, 0)), + ("darr", (0, 0)), + ("LeftArro", (0, 0)), + ("Diff", (0, 0)), + ("Empty", (0, 0)), + ("rangd;", (10642, 0)), + ("ln", (0, 0)), + ("Acir", (0, 0)), + ("Theta", (0, 0)), + ("Bscr;", (8492, 0)), + ("vfr;", (120115, 0)), + ("shortpara", (0, 0)), + ("curlywe", (0, 0)), + ("rarra", (0, 0)), + ("bigtriangledow", (0, 0)), + ("triminus;", (10810, 0)), + ("utdo", (0, 0)), + ("sme", (0, 0)), + ("LeftCeili", (0, 0)), + ("xcu", (0, 0)), + ("ge", (0, 0)), + ("smashp;", (10803, 0)), + ("dsc", (0, 0)), + ("twoheadleft", (0, 0)), + ("urtri", (0, 0)), + ("horb", (0, 0)), + ("upharpoonlef", (0, 0)), + ("lessdo", (0, 0)), + ("curvearrowrig", (0, 0)), + ("Ap", (0, 0)), + ("trad", (0, 0)), + ("LeftDownTeeVec", (0, 0)), + ("np", (0, 0)), + ("cirsci", (0, 0)), + ("prur", (0, 0)), + ("cirfnint", (0, 0)), + ("nbump;", (8782, 824)), + ("UpArrowD", (0, 0)), + ("GreaterFul", (0, 0)), + ("ntil", (0, 0)), + ("DoubleDow", (0, 0)), + ("Lst", (0, 0)), + ("GreaterEqual;", (8805, 0)), + ("mld", (0, 0)), + ("gtreql", (0, 0)), + ("thetas", (0, 0)), + ("Hopf", (0, 0)), + ("rrarr;", (8649, 0)), + ("napid", (0, 0)), + ("glj;", (10916, 0)), + ("nLeftarrow;", (8653, 0)), + ("emptyset;", (8709, 0)), + ("NotEqualTilde;", (8770, 824)), + ("angmsdad;", (10667, 0)), + ("njc", (0, 0)), + ("NotPrecedesSlantE", (0, 0)), + ("vrtri;", (8883, 0)), + ("Ws", (0, 0)), + ("prnap;", (10937, 0)), + ("nhArr;", (8654, 0)), + ("cuep", (0, 0)), + ("Cedill", (0, 0)), + ("Wopf;", (120142, 0)), + ("sigm", (0, 0)), + ("leftrightsq", (0, 0)), + ("nvlArr;", (10498, 0)), + ("jukcy;", (1108, 0)), + ("Gc", (0, 0)), + ("leftharpoondo", (0, 0)), + ("DoubleLeftA", (0, 0)), + ("Bum", (0, 0)), + ("Omicr", (0, 0)), + ("Uf", (0, 0)), + ("rdc", (0, 0)), + ("DownT", (0, 0)), + ("ropa", (0, 0)), + ("DoubleLong", (0, 0)), + ("Lmido", (0, 0)), + ("Bernoull", (0, 0)), + ("NotLeftTriangl", (0, 0)), + ("NotRightTriangleEqua", (0, 0)), + ("lparlt;", (10643, 0)), + ("HumpE", (0, 0)), + ("Becaus", (0, 0)), + ("female", (0, 0)), + ("Wed", (0, 0)), + ("LessGreater", (0, 0)), + ("LessE", (0, 0)), + ("phiv", (0, 0)), + ("LongLeftRightAr", (0, 0)), + ("", (0, 0)), + ("Gt", (0, 0)), + ("nsqsup", (0, 0)), + ("gr", (0, 0)), + ("ape", (0, 0)), + ("dagger", (0, 0)), + ("lrarr;", (8646, 0)), + ("Otimes;", (10807, 0)), + ("topbot", (0, 0)), + ("RightAngleB", (0, 0)), + ("precapprox", (0, 0)), + ("TSHcy;", (1035, 0)), + ("HorizontalLine", (0, 0)), + ("KJ", (0, 0)), + ("rightrightarr", (0, 0)), + ("rightrightarrows", (0, 0)), + ("bigcu", (0, 0)), + ("nVDa", (0, 0)), + ("RightVectorB", (0, 0)), + ("Rever", (0, 0)), + ("curvearrowle", (0, 0)), + ("vsubne", (0, 0)), + ("RightArro", (0, 0)), + ("gesle", (0, 0)), + ("Rcedi", (0, 0)), + ("gdot", (0, 0)), + ("GreaterL", (0, 0)), + ("Odblac;", (336, 0)), + ("NegativeVeryThinSpa", (0, 0)), + ("abre", (0, 0)), + ("backcong", (0, 0)), + ("Vbar", (0, 0)), + ("dotsq", (0, 0)), + ("mcomma", (0, 0)), + ("NotTil", (0, 0)), + ("NotVerticalBar", (0, 0)), + ("opar;", (10679, 0)), + ("rarrbfs", (0, 0)), + ("Lstrok", (0, 0)), + ("zfr;", (120119, 0)), + ("nrtrie;", (8941, 0)), + ("prof", (0, 0)), + ("odbl", (0, 0)), + ("UpArrowDo", (0, 0)), + ("UpEquili", (0, 0)), + ("uA", (0, 0)), + ("Mfr;", (120080, 0)), + ("lesseqq", (0, 0)), + ("Ur", (0, 0)), + ("supedot", (0, 0)), + ("mldr;", (8230, 0)), + ("succs", (0, 0)), + ("congdo", (0, 0)), + ("pr", (0, 0)), + ("LeftUpTeeVect", (0, 0)), + ("cularrp;", (10557, 0)), + ("lh", (0, 0)), + ("supplus;", (10944, 0)), + ("NotNestedGreater", (0, 0)), + ("leftrights", (0, 0)), + ("asc", (0, 0)), + ("Efr;", (120072, 0)), + ("utdot", (0, 0)), + ("omicron", (0, 0)), + ("YIcy;", (1031, 0)), + ("supsup;", (10966, 0)), + ("rfis", (0, 0)), + ("andd;", (10844, 0)), + ("nrAr", (0, 0)), + ("nwarro", (0, 0)), + ("eli", (0, 0)), + ("gacute;", (501, 0)), + ("NonBreakingSpace;", (160, 0)), + ("NotReverseEle", (0, 0)), + ("uf", (0, 0)), + ("nshortm", (0, 0)), + ("ltim", (0, 0)), + ("angr", (0, 0)), + ("uplus;", (8846, 0)), + ("part", (0, 0)), + ("RightArrowB", (0, 0)), + ("DoubleUpDownAr", (0, 0)), + ("LessL", (0, 0)), + ("Poincareplane;", (8460, 0)), + ("RightDoubleBrack", (0, 0)), + ("LeftA", (0, 0)), + ("ngeqslant;", (10878, 824)), + ("FilledSmallSq", (0, 0)), + ("uar", (0, 0)), + ("dharr", (0, 0)), + ("rf", (0, 0)), + ("MinusPlus;", (8723, 0)), + ("leftthree", (0, 0)), + ("NotGreaterSla", (0, 0)), + ("circlearrowrig", (0, 0)), + ("DoubleRig", (0, 0)), + ("cupcu", (0, 0)), + ("lparlt", (0, 0)), + ("bdq", (0, 0)), + ("Go", (0, 0)), + ("xi;", (958, 0)), + ("Lscr", (0, 0)), + ("ubreve", (0, 0)), + ("checkmar", (0, 0)), + ("LeftDoubleBra", (0, 0)), + ("NestedLes", (0, 0)), + ("rec", (0, 0)), + ("rlha", (0, 0)), + ("msc", (0, 0)), + ("CounterClockwiseCon", (0, 0)), + ("supsete", (0, 0)), + ("boxDl;", (9558, 0)), + ("hkswa", (0, 0)), + ("vDash;", (8872, 0)), + ("xca", (0, 0)), + ("DownLeftRi", (0, 0)), + ("seswa", (0, 0)), + ("mDDot", (0, 0)), + ("ubre", (0, 0)), + ("RightDownTeeVector", (0, 0)), + ("Gamma;", (915, 0)), + ("Wsc", (0, 0)), + ("Ofr", (0, 0)), + ("blacktriangledo", (0, 0)), + ("triangledo", (0, 0)), + ("lnapp", (0, 0)), + ("upuparrows;", (8648, 0)), + ("Kop", (0, 0)), + ("PrecedesTil", (0, 0)), + ("circledcirc", (0, 0)), + ("RightTriangle;", (8883, 0)), + ("copf;", (120148, 0)), + ("dar", (0, 0)), + ("sb", (0, 0)), + ("lvn", (0, 0)), + ("eqslantles", (0, 0)), + ("hkswaro", (0, 0)), + ("eDDo", (0, 0)), + ("CenterDo", (0, 0)), + ("LeftAngleB", (0, 0)), + ("in;", (8712, 0)), + ("LessEq", (0, 0)), + ("gnappro", (0, 0)), + ("LeftD", (0, 0)), + ("rad", (0, 0)), + ("Hscr;", (8459, 0)), + ("Circ", (0, 0)), + ("curlywedge", (0, 0)), + ("smalls", (0, 0)), + ("racut", (0, 0)), + ("loz", (0, 0)), + ("xhArr", (0, 0)), + ("DoubleUpDownArro", (0, 0)), + ("gtrless", (0, 0)), + ("DoubleLeftRightA", (0, 0)), + ("ZeroWi", (0, 0)), + ("Yfr;", (120092, 0)), + ("inodot", (0, 0)), + ("nshortparallel", (0, 0)), + ("curren", (164, 0)), + ("Uu", (0, 0)), + ("Lopf;", (120131, 0)), + ("Um", (0, 0)), + ("Del", (0, 0)), + ("langd;", (10641, 0)), + ("frac35;", (8535, 0)), + ("capdot", (0, 0)), + ("Dstro", (0, 0)), + ("smi", (0, 0)), + ("thetasym", (0, 0)), + ("szlig;", (223, 0)), + ("rtrif;", (9656, 0)), + ("NotLessSlan", (0, 0)), + ("ups", (0, 0)), + ("becaus", (0, 0)), + ("bbrktbrk;", (9142, 0)), + ("NegativeThickSpac", (0, 0)), + ("rarrh", (0, 0)), + ("Leftr", (0, 0)), + ("xoti", (0, 0)), + ("Union;", (8899, 0)), + ("ema", (0, 0)), + ("RightArrowBar", (0, 0)), + ("rced", (0, 0)), + ("hea", (0, 0)), + ("NotNestedLessLes", (0, 0)), + ("ltimes", (0, 0)), + ("itil", (0, 0)), + ("nsube", (0, 0)), + ("jsc", (0, 0)), + ("Cross", (0, 0)), + ("sdotb;", (8865, 0)), + ("NotDoubleVertical", (0, 0)), + ("NotVertic", (0, 0)), + ("drbkaro", (0, 0)), + ("sqsup", (0, 0)), + ("Zeta;", (918, 0)), + ("supsetneq", (0, 0)), + ("UpArrowDow", (0, 0)), + ("eqci", (0, 0)), + ("uti", (0, 0)), + ("UpTeeA", (0, 0)), + ("varpropto;", (8733, 0)), + ("NotTildeFullEqua", (0, 0)), + ("Dot", (0, 0)), + ("gver", (0, 0)), + ("cong", (0, 0)), + ("measuredangle;", (8737, 0)), + ("FilledSmal", (0, 0)), + ("zeet", (0, 0)), + ("rdquo", (0, 0)), + ("Proportion;", (8759, 0)), + ("ldquor", (0, 0)), + ("Lcaron;", (317, 0)), + ("ldsh", (0, 0)), + ("rarrfs", (0, 0)), + ("PlusMi", (0, 0)), + ("omicr", (0, 0)), + ("RoundImplies;", (10608, 0)), + ("UpDownAr", (0, 0)), + ("lrcorner", (0, 0)), + ("roplus", (0, 0)), + ("uma", (0, 0)), + ("bigod", (0, 0)), + ("gap", (0, 0)), + ("NotSup", (0, 0)), + ("LeftAn", (0, 0)), + ("Oc", (0, 0)), + ("sdotb", (0, 0)), + ("barwed", (0, 0)), + ("lnappr", (0, 0)), + ("fora", (0, 0)), + ("Kfr;", (120078, 0)), + ("rightharpoo", (0, 0)), + ("Therefor", (0, 0)), + ("au", (0, 0)), + ("daleth", (0, 0)), + ("leftrightsquigarr", (0, 0)), + ("subsetneq", (0, 0)), + ("iexcl;", (161, 0)), + ("NegativeVery", (0, 0)), + ("plusd", (0, 0)), + ("qprime;", (8279, 0)), + ("subra", (0, 0)), + ("hst", (0, 0)), + ("vr", (0, 0)), + ("parall", (0, 0)), + ("Eu", (0, 0)), + ("TSH", (0, 0)), + ("trip", (0, 0)), + ("ssmil", (0, 0)), + ("cue", (0, 0)), + ("tint", (0, 0)), + ("eqsim;", (8770, 0)), + ("Ucirc;", (219, 0)), + ("tdot", (0, 0)), + ("lnsim", (0, 0)), + ("Wopf", (0, 0)), + ("NotLeftTriangleB", (0, 0)), + ("Imagi", (0, 0)), + ("backpri", (0, 0)), + ("sube", (0, 0)), + ("bigcir", (0, 0)), + ("ngtr", (0, 0)), + ("mode", (0, 0)), + ("am", (0, 0)), + ("trisb;", (10701, 0)), + ("DoubleLongLeftAr", (0, 0)), + ("rationals", (0, 0)), + ("GreaterLe", (0, 0)), + ("capbrcup;", (10825, 0)), + ("NotLessSlantEq", (0, 0)), + ("Emp", (0, 0)), + ("InvisibleTime", (0, 0)), + ("ast;", (42, 0)), + ("therefore", (0, 0)), + ("Bac", (0, 0)), + ("LessGreater;", (8822, 0)), + ("Propor", (0, 0)), + ("Fopf;", (120125, 0)), + ("Eacute", (201, 0)), + ("rbrkslu", (0, 0)), + ("lowba", (0, 0)), + ("gg;", (8811, 0)), + ("Hac", (0, 0)), + ("ohb", (0, 0)), + ("lg", (0, 0)), + ("Longrigh", (0, 0)), + ("angmsdag", (0, 0)), + ("backsimeq", (0, 0)), + ("elinte", (0, 0)), + ("rdldhar", (0, 0)), + ("thicksim", (0, 0)), + ("udbla", (0, 0)), + ("malte", (0, 0)), + ("gbr", (0, 0)), + ("supp", (0, 0)), + ("Downa", (0, 0)), + ("NotTi", (0, 0)), + ("mo", (0, 0)), + ("ngeqslan", (0, 0)), + ("nshortparall", (0, 0)), + ("swArr", (0, 0)), + ("Ups", (0, 0)), + ("triangler", (0, 0)), + ("nRightarro", (0, 0)), + ("nu;", (957, 0)), + ("LessSla", (0, 0)), + ("cced", (0, 0)), + ("SucceedsTilde;", (8831, 0)), + ("gesdoto", (0, 0)), + ("Longlef", (0, 0)), + ("Egrave", (200, 0)), + ("ShortUpArro", (0, 0)), + ("duh", (0, 0)), + ("Therefore", (0, 0)), + ("blacktriangledown", (0, 0)), + ("nhar", (0, 0)), + ("Gsc", (0, 0)), + ("nleftrighta", (0, 0)), + ("csupe;", (10962, 0)), + ("nRig", (0, 0)), + ("ofc", (0, 0)), + ("gscr", (0, 0)), + ("set", (0, 0)), + ("RightUpVec", (0, 0)), + ("Vdashl", (0, 0)), + ("prod;", (8719, 0)), + ("Fil", (0, 0)), + ("jfr;", (120103, 0)), + ("sdote;", (10854, 0)), + ("nshortmi", (0, 0)), + ("naturals;", (8469, 0)), + ("Zo", (0, 0)), + ("rightarrowt", (0, 0)), + ("lozen", (0, 0)), + ("parsi", (0, 0)), + ("emptyv;", (8709, 0)), + ("Count", (0, 0)), + ("NotLessGreater", (0, 0)), + ("NotSquareSupersetEqua", (0, 0)), + ("angrt;", (8735, 0)), + ("epsil", (0, 0)), + ("crar", (0, 0)), + ("LeftCeilin", (0, 0)), + ("LeftArrowRight", (0, 0)), + ("Vdashl;", (10982, 0)), + ("iiota", (0, 0)), + ("LeftArrow", (0, 0)), + ("LowerRightArr", (0, 0)), + ("scirc", (0, 0)), + ("Hil", (0, 0)), + ("duar", (0, 0)), + ("Rightarrow;", (8658, 0)), + ("Mc", (0, 0)), + ("SucceedsSlantE", (0, 0)), + ("Af", (0, 0)), + ("ran", (0, 0)), + ("circlearrowr", (0, 0)), + ("natural;", (9838, 0)), + ("VerticalTilde", (0, 0)), + ("NotLessT", (0, 0)), + ("esim", (0, 0)), + ("td", (0, 0)), + ("boxminus;", (8863, 0)), + ("rightthreeti", (0, 0)), + ("tridot;", (9708, 0)), + ("gtreqle", (0, 0)), + ("LeftUpVector", (0, 0)), + ("boxvR", (0, 0)), + ("twoheadrigh", (0, 0)), + ("OverParenth", (0, 0)), + ("roarr", (0, 0)), + ("epsiv", (0, 0)), + ("There", (0, 0)), + ("rcy", (0, 0)), + ("tca", (0, 0)), + ("DoubleLongRight", (0, 0)), + ("Yacut", (0, 0)), + ("CirclePl", (0, 0)), + ("nLeftrigh", (0, 0)), + ("dscy", (0, 0)), + ("laempt", (0, 0)), + ("mnp", (0, 0)), + ("upup", (0, 0)), + ("isi", (0, 0)), + ("bbrktbr", (0, 0)), + ("NotPreced", (0, 0)), + ("NegativeThickS", (0, 0)), + ("supsetneqq", (0, 0)), + ("Lacute;", (313, 0)), + ("Euml", (203, 0)), + ("Egrave;", (200, 0)), + ("zwj", (0, 0)), + ("gnE;", (8809, 0)), + ("fcy", (0, 0)), + ("ape;", (8778, 0)), + ("demp", (0, 0)), + ("DownLeft", (0, 0)), + ("nbsp;", (160, 0)), + ("angs", (0, 0)), + ("ltri;", (9667, 0)), + ("natur", (0, 0)), + ("lessappro", (0, 0)), + ("frac5", (0, 0)), + ("FilledVerySmallSquare", (0, 0)), + ("qprime", (0, 0)), + ("aogon", (0, 0)), + ("wo", (0, 0)), + ("vArr;", (8661, 0)), + ("omicro", (0, 0)), + ("HilbertSpa", (0, 0)), + ("rightarrowtai", (0, 0)), + ("ifr", (0, 0)), + ("infintie", (0, 0)), + ("ti", (0, 0)), + ("Cscr", (0, 0)), + ("ot", (0, 0)), + ("dt", (0, 0)), + ("ecirc;", (234, 0)), + ("marker;", (9646, 0)), + ("NotPrecedesSlantEqua", (0, 0)), + ("oop", (0, 0)), + ("Or;", (10836, 0)), + ("le;", (8804, 0)), + ("puncs", (0, 0)), + ("timesbar;", (10801, 0)), + ("Cont", (0, 0)), + ("Ome", (0, 0)), + ("lvnE;", (8808, 65024)), + ("w", (0, 0)), + ("sigmav", (0, 0)), + ("colon", (0, 0)), + ("Zca", (0, 0)), + ("leftharpoondown;", (8637, 0)), + ("ic;", (8291, 0)), + ("Eca", (0, 0)), + ("Egrav", (0, 0)), + ("larrb;", (8676, 0)), + ("boxul;", (9496, 0)), + ("upuparro", (0, 0)), + ("Sopf;", (120138, 0)), + ("VerticalTil", (0, 0)), + ("eqs", (0, 0)), + ("DoubleDownArr", (0, 0)), + ("NotP", (0, 0)), + ("Fcy;", (1060, 0)), + ("bkaro", (0, 0)), + ("UnderBr", (0, 0)), + ("lt;", (60, 0)), + ("Nu;", (925, 0)), + ("ReverseElement", (0, 0)), + ("micro", (181, 0)), + ("Atild", (0, 0)), + ("exponen", (0, 0)), + ("egra", (0, 0)), + ("pluscir", (0, 0)), + ("perten", (0, 0)), + ("ShortLeftArro", (0, 0)), + ("LeftUpD", (0, 0)), + ("NotPrece", (0, 0)), + ("NotCongruent", (0, 0)), + ("NotLessTild", (0, 0)), + ("trianglelefteq", (0, 0)), + ("RightArrowLeftArrow", (0, 0)), + ("notinvb", (0, 0)), + ("DotEqu", (0, 0)), + ("NotRightTriangleEqual;", (8941, 0)), + ("Lf", (0, 0)), + ("Because;", (8757, 0)), + ("RightTeeArrow;", (8614, 0)), + ("NotLessTil", (0, 0)), + ("bumpe;", (8783, 0)), + ("ijlig;", (307, 0)), + ("Ysc", (0, 0)), + ("theref", (0, 0)), + ("supnE;", (10956, 0)), + ("DScy", (0, 0)), + ("Nop", (0, 0)), + ("Uogo", (0, 0)), + ("eqsi", (0, 0)), + ("CapitalDifferentia", (0, 0)), + ("laempty", (0, 0)), + ("Bernou", (0, 0)), + ("e", (0, 0)), + ("prE", (0, 0)), + ("zs", (0, 0)), + ("csupe", (0, 0)), + ("Ope", (0, 0)), + ("block", (0, 0)), + ("NotLeftTriangle;", (8938, 0)), + ("xopf", (0, 0)), + ("NotLessTilde;", (8820, 0)), + ("ls", (0, 0)), + ("intlarh", (0, 0)), + ("ulcrop", (0, 0)), + ("OverParenthes", (0, 0)), + ("triangled", (0, 0)), + ("Tscr", (0, 0)), + ("rightlef", (0, 0)), + ("SmallCir", (0, 0)), + ("LeftArrowRigh", (0, 0)), + ("sqca", (0, 0)), + ("cirsc", (0, 0)), + ("NotNes", (0, 0)), + ("odblac", (0, 0)), + ("the", (0, 0)), + ("boxbox;", (10697, 0)), + ("LeftAngleBracke", (0, 0)), + ("Col", (0, 0)), + ("Yscr;", (119988, 0)), + ("Ra", (0, 0)), + ("dzi", (0, 0)), + ("Bfr", (0, 0)), + ("nltri;", (8938, 0)), + ("Igr", (0, 0)), + ("TildeF", (0, 0)), + ("Squar", (0, 0)), + ("Sacut", (0, 0)), + ("divi", (0, 0)), + ("Capita", (0, 0)), + ("wscr;", (120012, 0)), + ("Wf", (0, 0)), + ("NotLessSlantEqua", (0, 0)), + ("dbl", (0, 0)), + ("rcei", (0, 0)), + ("rightleftarrow", (0, 0)), + ("gtrdot", (0, 0)), + ("gtquest", (0, 0)), + ("lstr", (0, 0)), + ("VerticalT", (0, 0)), + ("rhard", (0, 0)), + ("NotLessLess;", (8810, 824)), + ("cac", (0, 0)), + ("nfr;", (120107, 0)), + ("caron;", (711, 0)), + ("maltes", (0, 0)), + ("NewLi", (0, 0)), + ("rlhar;", (8652, 0)), + ("uparrow;", (8593, 0)), + ("CounterClockwiseContourIntegral", (0, 0)), + ("Apply", (0, 0)), + ("ncong;", (8775, 0)), + ("topbo", (0, 0)), + ("V", (0, 0)), + ("dtri", (0, 0)), + ("ubrev", (0, 0)), + ("ff", (0, 0)), + ("LeftDow", (0, 0)), + ("lfisht", (0, 0)), + ("emptyv", (0, 0)), + ("DiacriticalAcut", (0, 0)), + ("nrightarr", (0, 0)), + ("upharp", (0, 0)), + ("Ci", (0, 0)), + ("uc", (0, 0)), + ("awint;", (10769, 0)), + ("ci", (0, 0)), + ("scap;", (10936, 0)), + ("ope", (0, 0)), + ("oplu", (0, 0)), + ("Neg", (0, 0)), + ("LowerRightArro", (0, 0)), + ("SupersetE", (0, 0)), + ("Yopf;", (120144, 0)), + ("multi", (0, 0)), + ("Equilibrium", (0, 0)), + ("Less", (0, 0)), + ("NegativeThickSpa", (0, 0)), + ("sl", (0, 0)), + ("nshortmid;", (8740, 0)), + ("OverBar", (0, 0)), + ("NestedGreate", (0, 0)), + ("Ka", (0, 0)), + ("Oacute", (211, 0)), + ("prE;", (10931, 0)), + ("ReverseUpEquilibrium;", (10607, 0)), + ("Updownar", (0, 0)), + ("simplus;", (10788, 0)), + ("boxti", (0, 0)), + ("vsupn", (0, 0)), + ("FilledVerySmall", (0, 0)), + ("ol", (0, 0)), + ("marker", (0, 0)), + ("df", (0, 0)), + ("aelig;", (230, 0)), + ("longrightar", (0, 0)), + ("upsil", (0, 0)), + ("squarf", (0, 0)), + ("nVdash;", (8878, 0)), + ("do", (0, 0)), + ("Up", (0, 0)), + ("daleth;", (8504, 0)), + ("capd", (0, 0)), + ("isinv;", (8712, 0)), + ("NotNestedGreaterGreater;", (10914, 824)), + ("Tri", (0, 0)), + ("E", (0, 0)), + ("nLeftrightar", (0, 0)), + ("Medi", (0, 0)), + ("LessEqualGre", (0, 0)), + ("Rightarro", (0, 0)), + ("boxV;", (9553, 0)), + ("gvertneqq", (0, 0)), + ("ast", (0, 0)), + ("NotRight", (0, 0)), + ("asy", (0, 0)), + ("profal", (0, 0)), + ("go", (0, 0)), + ("Copf;", (8450, 0)), + ("nrighta", (0, 0)), + ("RightUpDo", (0, 0)), + ("notnivc;", (8957, 0)), + ("thic", (0, 0)), + ("Not", (0, 0)), + ("wedgeq", (0, 0)), + ("orderof", (0, 0)), + ("scnsim", (0, 0)), + ("Laplacetrf;", (8466, 0)), + ("subne;", (8842, 0)), + ("ffli", (0, 0)), + ("SquareInter", (0, 0)), + ("Vvd", (0, 0)), + ("lds", (0, 0)), + ("rarrc", (0, 0)), + ("NotLeftTriangleBa", (0, 0)), + ("Ber", (0, 0)), + ("Op", (0, 0)), + ("KH", (0, 0)), + ("lAt", (0, 0)), + ("therefor", (0, 0)), + ("eci", (0, 0)), + ("llhar", (0, 0)), + ("phm", (0, 0)), + ("gesdot;", (10880, 0)), + ("xni", (0, 0)), + ("nrigh", (0, 0)), + ("varsup", (0, 0)), + ("LessFullEqua", (0, 0)), + ("ReverseUpEquilibriu", (0, 0)), + ("boxhD", (0, 0)), + ("plus;", (43, 0)), + ("lowbar", (0, 0)), + ("Omega;", (937, 0)), + ("notindot", (0, 0)), + ("lat;", (10923, 0)), + ("leftrightsquigarro", (0, 0)), + ("Mopf", (0, 0)), + ("odso", (0, 0)), + ("srarr", (0, 0)), + ("ssmile", (0, 0)), + ("lrarr", (0, 0)), + ("emsp1", (0, 0)), + ("rr", (0, 0)), + ("measured", (0, 0)), + ("hoo", (0, 0)), + ("GreaterSlantEqual", (0, 0)), + ("ngeqslant", (0, 0)), + ("ndash;", (8211, 0)), + ("lns", (0, 0)), + ("shy", (173, 0)), + ("triminu", (0, 0)), + ("Oum", (0, 0)), + ("updownarr", (0, 0)), + ("lrt", (0, 0)), + ("ocir;", (8858, 0)), + ("DoubleVe", (0, 0)), + ("Gcedil;", (290, 0)), + ("nleft", (0, 0)), + ("gesc", (0, 0)), + ("bigwe", (0, 0)), + ("twoheadr", (0, 0)), + ("drbka", (0, 0)), + ("GreaterLess;", (8823, 0)), + ("NotDou", (0, 0)), + ("comp;", (8705, 0)), + ("Tcy", (0, 0)), + ("geq", (0, 0)), + ("Cconi", (0, 0)), + ("nsupse", (0, 0)), + ("LeftDownVectorBar", (0, 0)), + ("RightUpV", (0, 0)), + ("Eogon", (0, 0)), + ("suplarr", (0, 0)), + ("LeftRightArrow;", (8596, 0)), + ("topf;", (120165, 0)), + ("Zero", (0, 0)), + ("uharr;", (8638, 0)), + ("rar", (0, 0)), + ("longleftarr", (0, 0)), + ("OpenCurlyDoubleQuot", (0, 0)), + ("lmou", (0, 0)), + ("nleqslant;", (10877, 824)), + ("Vertical", (0, 0)), + ("boxdL", (0, 0)), + ("yopf", (0, 0)), + ("Congru", (0, 0)), + ("gesdot", (0, 0)), + ("boxDr;", (9555, 0)), + ("NotSqu", (0, 0)), + ("ntrianglerig", (0, 0)), + ("CloseCurlyDoubleQ", (0, 0)), + ("RightArrow", (0, 0)), + ("xut", (0, 0)), + ("ltla", (0, 0)), + ("Jc", (0, 0)), + ("zo", (0, 0)), + ("Racut", (0, 0)), + ("Jcy", (0, 0)), + ("EmptySm", (0, 0)), + ("eDot;", (8785, 0)), + ("trpezium;", (9186, 0)), + ("rdld", (0, 0)), + ("VerticalSeparato", (0, 0)), + ("ka", (0, 0)), + ("Sigma", (0, 0)), + ("RightTeeVector;", (10587, 0)), + ("xwed", (0, 0)), + ("DoubleUpDownArrow", (0, 0)), + ("CirclePlus;", (8853, 0)), + ("xopl", (0, 0)), + ("RightAng", (0, 0)), + ("bumpe", (0, 0)), + ("Chi;", (935, 0)), + ("rfish", (0, 0)), + ("nwarhk", (0, 0)), + ("fjli", (0, 0)), + ("rarrw;", (8605, 0)), + ("supseteqq", (0, 0)), + ("bsemi", (0, 0)), + ("DoubleRightArrow", (0, 0)), + ("robrk;", (10215, 0)), + ("cscr;", (119992, 0)), + ("boxvH", (0, 0)), + ("egrav", (0, 0)), + ("Yacu", (0, 0)), + ("roar", (0, 0)), + ("OpenCurlyQuote;", (8216, 0)), + ("Yop", (0, 0)), + ("subE", (0, 0)), + ("LeftRightVe", (0, 0)), + ("loo", (0, 0)), + ("rarrc;", (10547, 0)), + ("cupd", (0, 0)), + ("upu", (0, 0)), + ("xupl", (0, 0)), + ("rightthreetimes", (0, 0)), + ("KJcy;", (1036, 0)), + ("GreaterEqu", (0, 0)), + ("Med", (0, 0)), + ("NotSucc", (0, 0)), + ("bka", (0, 0)), + ("nrtri", (0, 0)), + ("qp", (0, 0)), + ("HilbertSpac", (0, 0)), + ("vp", (0, 0)), + ("cupo", (0, 0)), + ("Ufr;", (120088, 0)), + ("sub", (0, 0)), + ("rdldhar;", (10601, 0)), + ("otilde;", (245, 0)), + ("maltese", (0, 0)), + ("Scaron", (0, 0)), + ("Zacu", (0, 0)), + ("rbarr", (0, 0)), + ("bprim", (0, 0)), + ("loplus;", (10797, 0)), + ("tbrk", (0, 0)), + ("epsilon;", (949, 0)), + ("uml;", (168, 0)), + ("nparsl;", (11005, 8421)), + ("Nce", (0, 0)), + ("UpEquilibri", (0, 0)), + ("CounterCloc", (0, 0)), + ("leqq;", (8806, 0)), + ("SucceedsSlantEqu", (0, 0)), + ("sced", (0, 0)), + ("dotplus;", (8724, 0)), + ("REG", (174, 0)), + ("Omacr", (0, 0)), + ("trpeziu", (0, 0)), + ("LeftTee;", (8867, 0)), + ("UnderParent", (0, 0)), + ("UpperLeftArrow;", (8598, 0)), + ("DownArrowUpArrow;", (8693, 0)), + ("eD", (0, 0)), + ("lagra", (0, 0)), + ("spa", (0, 0)), + ("sscr;", (120008, 0)), + ("ETH;", (208, 0)), + ("rbarr;", (10509, 0)), + ("phiv;", (981, 0)), + ("Cedilla", (0, 0)), + ("andslope;", (10840, 0)), + ("slarr", (0, 0)), + ("angzarr;", (9084, 0)), + ("varthe", (0, 0)), + ("preccurly", (0, 0)), + ("triangledown", (0, 0)), + ("Sta", (0, 0)), + ("leftrightarrow", (0, 0)), + ("therefo", (0, 0)), + ("imagline", (0, 0)), + ("Udblac;", (368, 0)), + ("elint", (0, 0)), + ("uhb", (0, 0)), + ("NotSucceedsSlan", (0, 0)), + ("larrfs;", (10525, 0)), + ("Ze", (0, 0)), + ("varprop", (0, 0)), + ("varphi", (0, 0)), + ("lcaro", (0, 0)), + ("bre", (0, 0)), + ("dharr;", (8642, 0)), + ("Inters", (0, 0)), + ("ffllig;", (64260, 0)), + ("int", (0, 0)), + ("Implies", (0, 0)), + ("iecy", (0, 0)), + ("NotNestedGreaterGreater", (0, 0)), + ("csube;", (10961, 0)), + ("DDotrah", (0, 0)), + ("blacktriangleright", (0, 0)), + ("rsquo", (0, 0)), + ("Qscr;", (119980, 0)), + ("RightFloor;", (8971, 0)), + ("NotCupCap", (0, 0)), + ("bs", (0, 0)), + ("FilledVe", (0, 0)), + ("straig", (0, 0)), + ("ecaro", (0, 0)), + ("NotT", (0, 0)), + ("langle", (0, 0)), + ("Ga", (0, 0)), + ("kf", (0, 0)), + ("Wcirc", (0, 0)), + ("boxvL;", (9569, 0)), + ("qin", (0, 0)), + ("hercon", (0, 0)), + ("NotLessGre", (0, 0)), + ("LeftR", (0, 0)), + ("VerticalSepar", (0, 0)), + ("NegativeThinSp", (0, 0)), + ("Greate", (0, 0)), + ("jcirc;", (309, 0)), + ("ldquo", (0, 0)), + ("uphar", (0, 0)), + ("lambda", (0, 0)), + ("neArr", (0, 0)), + ("lbarr;", (10508, 0)), + ("downharpoonright", (0, 0)), + ("Lcaro", (0, 0)), + ("SquareUn", (0, 0)), + ("lp", (0, 0)), + ("varsupset", (0, 0)), + ("fr", (0, 0)), + ("ncong", (0, 0)), + ("Dcy;", (1044, 0)), + ("DownA", (0, 0)), + ("DiacriticalTilde", (0, 0)), + ("ReverseEquil", (0, 0)), + ("NotSucceedsSlantEqual;", (8929, 0)), + ("eqcolo", (0, 0)), + ("DoubleContourIntegr", (0, 0)), + ("HumpD", (0, 0)), + ("questeq", (0, 0)), + ("cem", (0, 0)), + ("Dashv", (0, 0)), + ("parallel", (0, 0)), + ("rightleftharpoon", (0, 0)), + ("ClockwiseConto", (0, 0)), + ("NotPrecedesEqu", (0, 0)), + ("DownLeftTee", (0, 0)), + ("OverBrack", (0, 0)), + ("NotEleme", (0, 0)), + ("nf", (0, 0)), + ("Hu", (0, 0)), + ("intc", (0, 0)), + ("Jser", (0, 0)), + ("circledS;", (9416, 0)), + ("Gamm", (0, 0)), + ("iqu", (0, 0)), + ("Oacu", (0, 0)), + ("divonx;", (8903, 0)), + ("lessapprox;", (10885, 0)), + ("orar", (0, 0)), + ("TildeFull", (0, 0)), + ("ShortLeftArrow;", (8592, 0)), + ("ie", (0, 0)), + ("NotRig", (0, 0)), + ("Pscr;", (119979, 0)), + ("oso", (0, 0)), + ("alef", (0, 0)), + ("pou", (0, 0)), + ("NotRightTriangle;", (8939, 0)), + ("prnap", (0, 0)), + ("da", (0, 0)), + ("RightArrowLeftA", (0, 0)), + ("utild", (0, 0)), + ("ReverseEl", (0, 0)), + ("scE", (0, 0)), + ("duhar", (0, 0)), + ("Ycir", (0, 0)), + ("NotSquareSubsetEqua", (0, 0)), + ("LongLeftRightArr", (0, 0)), + ("ShortD", (0, 0)), + ("male;", (9794, 0)), + ("sta", (0, 0)), + ("lharul;", (10602, 0)), + ("dscr;", (119993, 0)), + ("VerticalLine;", (124, 0)), + ("RightDouble", (0, 0)), + ("NotRightTriangleE", (0, 0)), + ("Close", (0, 0)), + ("perio", (0, 0)), + ("subsub", (0, 0)), + ("iu", (0, 0)), + ("gtreqqles", (0, 0)), + ("Leftrighta", (0, 0)), + ("caret;", (8257, 0)), + ("smallsetm", (0, 0)), + ("coprod", (0, 0)), + ("ipr", (0, 0)), + ("ta", (0, 0)), + ("Hcirc;", (292, 0)), + ("rfr", (0, 0)), + ("downharpoo", (0, 0)), + ("Uc", (0, 0)), + ("NotSupers", (0, 0)), + ("xfr", (0, 0)), + ("xfr;", (120117, 0)), + ("downharpoonrig", (0, 0)), + ("tced", (0, 0)), + ("barwed;", (8965, 0)), + ("lfis", (0, 0)), + ("comple", (0, 0)), + ("CounterClockwiseContourIn", (0, 0)), + ("gsiml", (0, 0)), + ("scpolint", (0, 0)), + ("NotGreaterSlantEqua", (0, 0)), + ("OpenCurlyDou", (0, 0)), + ("Nti", (0, 0)), + ("lstrok", (0, 0)), + ("NotTildeEqual;", (8772, 0)), + ("rightleftarro", (0, 0)), + ("plussim", (0, 0)), + ("subsi", (0, 0)), + ("SupersetEq", (0, 0)), + ("egrave;", (232, 0)), + ("risingdots", (0, 0)), + ("DifferentialD;", (8518, 0)), + ("omin", (0, 0)), + ("righ", (0, 0)), + ("succne", (0, 0)), + ("DoubleR", (0, 0)), + ("ratio;", (8758, 0)), + ("sca", (0, 0)), + ("NotLessEqu", (0, 0)), + ("NestedLessLes", (0, 0)), + ("LeftRightVector;", (10574, 0)), + ("ldq", (0, 0)), + ("gsime", (0, 0)), + ("f", (0, 0)), + ("zca", (0, 0)), + ("downdown", (0, 0)), + ("DownLeftV", (0, 0)), + ("supne", (0, 0)), + ("ni;", (8715, 0)), + ("Jukc", (0, 0)), + ("Acirc;", (194, 0)), + ("bnequ", (0, 0)), + ("LeftTriangleEqua", (0, 0)), + ("LongR", (0, 0)), + ("Racute", (0, 0)), + ("triplus;", (10809, 0)), + ("NonBreakingSpa", (0, 0)), + ("sq", (0, 0)), + ("triangleri", (0, 0)), + ("nis", (0, 0)), + ("Doubl", (0, 0)), + ("nsqsub", (0, 0)), + ("longle", (0, 0)), + ("nlsim;", (8820, 0)), + ("cfr", (0, 0)), + ("AElig;", (198, 0)), + ("LeftVectorBar;", (10578, 0)), + ("tprime;", (8244, 0)), + ("nmid", (0, 0)), + ("LeftFl", (0, 0)), + ("NotGreaterEqual", (0, 0)), + ("DownTe", (0, 0)), + ("Ubr", (0, 0)), + ("ascr", (0, 0)), + ("esdot", (0, 0)), + ("ropar;", (10630, 0)), + ("LowerRightArrow;", (8600, 0)), + ("sube;", (8838, 0)), + ("mumap", (0, 0)), + ("nca", (0, 0)), + ("ShortUpA", (0, 0)), + ("RightUpTeeVecto", (0, 0)), + ("dow", (0, 0)), + ("vartria", (0, 0)), + ("NotDoubleVerticalB", (0, 0)), + ("LeftDo", (0, 0)), + ("xn", (0, 0)), + ("ws", (0, 0)), + ("yi", (0, 0)), + ("luruh", (0, 0)), + ("heartsuit;", (9829, 0)), + ("olt", (0, 0)), + ("NestedLessL", (0, 0)), + ("NotReverseE", (0, 0)), + ("REG;", (174, 0)), + ("sqs", (0, 0)), + ("geqslan", (0, 0)), + ("precnapp", (0, 0)), + ("FilledVery", (0, 0)), + ("bigot", (0, 0)), + ("rAt", (0, 0)), + ("leftrighthar", (0, 0)), + ("gesdoto;", (10882, 0)), + ("LeftUpVectorB", (0, 0)), + ("Pscr", (0, 0)), + ("umacr", (0, 0)), + ("rati", (0, 0)), + ("Pfr", (0, 0)), + ("capand;", (10820, 0)), + ("thicks", (0, 0)), + ("varka", (0, 0)), + ("Mf", (0, 0)), + ("subplu", (0, 0)), + ("gtreqql", (0, 0)), + ("dd", (0, 0)), + ("complexes", (0, 0)), + ("ubr", (0, 0)), + ("xrarr", (0, 0)), + ("phmmat;", (8499, 0)), + ("UpArrowBar", (0, 0)), + ("subsetneqq", (0, 0)), + ("nparsl", (0, 0)), + ("raquo;", (187, 0)), + ("Uarr;", (8607, 0)), + ("homth", (0, 0)), + ("uuarr", (0, 0)), + ("Supset", (0, 0)), + ("triangleq;", (8796, 0)), + ("tscr", (0, 0)), + ("DownBr", (0, 0)), + ("LessGre", (0, 0)), + ("NotDo", (0, 0)), + ("OpenCurlyDoubleQuo", (0, 0)), + ("Fcy", (0, 0)), + ("eparsl", (0, 0)), + ("Escr;", (8496, 0)), + ("bottom;", (8869, 0)), + ("Fsc", (0, 0)), + ("curlyw", (0, 0)), + ("ShortU", (0, 0)), + ("NestedL", (0, 0)), + ("hookrigh", (0, 0)), + ("sdot;", (8901, 0)), + ("gtrdo", (0, 0)), + ("DoubleLeftTe", (0, 0)), + ("iacute;", (237, 0)), + ("leftright", (0, 0)), + ("NotPrecedesSlan", (0, 0)), + ("Omega", (0, 0)), + ("ovba", (0, 0)), + ("sstar", (0, 0)), + ("ohm;", (937, 0)), + ("Lambda", (0, 0)), + ("nleq", (0, 0)), + ("ges", (0, 0)), + ("LeftAngleBrack", (0, 0)), + ("gsim", (0, 0)), + ("NotTilde", (0, 0)), + ("nvDash;", (8877, 0)), + ("CounterClockwiseC", (0, 0)), + ("lne;", (10887, 0)), + ("NotCongruen", (0, 0)), + ("twoheadrightarro", (0, 0)), + ("re", (0, 0)), + ("curv", (0, 0)), + ("reals", (0, 0)), + ("epsi;", (949, 0)), + ("Dopf", (0, 0)), + ("mu", (0, 0)), + ("NotSquareSubse", (0, 0)), + ("boxmin", (0, 0)), + ("succeq;", (10928, 0)), + ("rcaron", (0, 0)), + ("longright", (0, 0)), + ("tdot;", (8411, 0)), + ("be", (0, 0)), + ("cupcup;", (10826, 0)), + ("pitch", (0, 0)), + ("jse", (0, 0)), + ("backep", (0, 0)), + ("yacu", (0, 0)), + ("gjcy", (0, 0)), + ("sqsubset;", (8847, 0)), + ("risingdot", (0, 0)), + ("NestedGrea", (0, 0)), + ("mnpl", (0, 0)), + ("LeftUpTeeVe", (0, 0)), + ("ands", (0, 0)), + ("topci", (0, 0)), + ("nrarrc", (0, 0)), + ("propto;", (8733, 0)), + ("curlyeqprec", (0, 0)), + ("ll;", (8810, 0)), + ("xodot", (0, 0)), + ("maltese;", (10016, 0)), + ("diamond;", (8900, 0)), + ("nRightar", (0, 0)), + ("C", (0, 0)), + ("xm", (0, 0)), + ("uuml", (252, 0)), + ("risi", (0, 0)), + ("Da", (0, 0)), + ("gnapp", (0, 0)), + ("npar", (0, 0)), + ("NotElement;", (8713, 0)), + ("IEcy;", (1045, 0)), + ("curvearr", (0, 0)), + ("FilledVeryS", (0, 0)), + ("hard", (0, 0)), + ("diam", (0, 0)), + ("Yum", (0, 0)), + ("Tcaron;", (356, 0)), + ("Igrav", (0, 0)), + ("nexis", (0, 0)), + ("NegativeMediu", (0, 0)), + ("otimes", (0, 0)), + ("wop", (0, 0)), + ("trianglel", (0, 0)), + ("bscr;", (119991, 0)), + ("oline;", (8254, 0)), + ("Coprodu", (0, 0)), + ("plusaci", (0, 0)), + ("lrar", (0, 0)), + ("Center", (0, 0)), + ("fno", (0, 0)), + ("nsh", (0, 0)), + ("Ouml;", (214, 0)), + ("nced", (0, 0)), + ("NotSuper", (0, 0)), + ("cd", (0, 0)), + ("longrightarr", (0, 0)), + ("supdsu", (0, 0)), + ("nvlt;", (60, 8402)), + ("Eacu", (0, 0)), + ("expect", (0, 0)), + ("Am", (0, 0)), + ("InvisibleTim", (0, 0)), + ("midcir", (0, 0)), + ("setminu", (0, 0)), + ("larrpl", (0, 0)), + ("larrpl;", (10553, 0)), + ("roang", (0, 0)), + ("App", (0, 0)), + ("NotGreaterTil", (0, 0)), + ("rbrks", (0, 0)), + ("VeryThinSpa", (0, 0)), + ("lthre", (0, 0)), + ("rla", (0, 0)), + ("lsaqu", (0, 0)), + ("NotGreaterSl", (0, 0)), + ("angmsdaa;", (10664, 0)), + ("NotSquar", (0, 0)), + ("LeftAr", (0, 0)), + ("us", (0, 0)), + ("ecar", (0, 0)), + ("Diffe", (0, 0)), + ("gneq;", (10888, 0)), + ("esd", (0, 0)), + ("DoubleUpDow", (0, 0)), + ("varphi;", (981, 0)), + ("ntgl", (0, 0)), + ("Imac", (0, 0)), + ("til", (0, 0)), + ("frasl;", (8260, 0)), + ("caps;", (8745, 65024)), + ("Uacu", (0, 0)), + ("models;", (8871, 0)), + ("RoundIm", (0, 0)), + ("Otil", (0, 0)), + ("Barv;", (10983, 0)), + ("lBarr;", (10510, 0)), + ("Rightar", (0, 0)), + ("clubsuit;", (9827, 0)), + ("minusd;", (8760, 0)), + ("rmousta", (0, 0)), + ("bsime;", (8909, 0)), + ("TildeTilde;", (8776, 0)), + ("acut", (0, 0)), + ("NotGreaterEqual;", (8817, 0)), + ("gcir", (0, 0)), + ("subedot;", (10947, 0)), + ("Epsi", (0, 0)), + ("rightarrowtail;", (8611, 0)), + ("quatin", (0, 0)), + ("boxDl", (0, 0)), + ("hookri", (0, 0)), + ("circledci", (0, 0)), + ("HumpDownHum", (0, 0)), + ("nvle;", (8804, 8402)), + ("longleftrighta", (0, 0)), + ("measuredangl", (0, 0)), + ("dA", (0, 0)), + ("circledS", (0, 0)), + ("iecy;", (1077, 0)), + ("qint", (0, 0)), + ("SmallCi", (0, 0)), + ("rcy;", (1088, 0)), + ("period", (0, 0)), + ("Ug", (0, 0)), + ("measur", (0, 0)), + ("umacr;", (363, 0)), + ("is", (0, 0)), + ("backsi", (0, 0)), + ("SmallC", (0, 0)), + ("auml", (228, 0)), + ("bigoplus;", (10753, 0)), + ("drcorn", (0, 0)), + ("ShortUpArrow;", (8593, 0)), + ("rppolin", (0, 0)), + ("Counte", (0, 0)), + ("DownRightTe", (0, 0)), + ("eplu", (0, 0)), + ("boxVh", (0, 0)), + ("vBar", (0, 0)), + ("perp;", (8869, 0)), + ("Lcedil", (0, 0)), + ("downharpoonri", (0, 0)), + ("rdqu", (0, 0)), + ("ContourInteg", (0, 0)), + ("ecirc", (234, 0)), + ("dotsqu", (0, 0)), + ("mstpos", (0, 0)), + ("CloseCurlyDouble", (0, 0)), + ("Delta", (0, 0)), + ("llc", (0, 0)), + ("NotSquareSubsetEqual", (0, 0)), + ("Umacr", (0, 0)), + ("LeftDownVectorB", (0, 0)), + ("Ncedil", (0, 0)), + ("trimi", (0, 0)), + ("andsl", (0, 0)), + ("rAarr;", (8667, 0)), + ("seA", (0, 0)), + ("Small", (0, 0)), + ("Vcy", (0, 0)), + ("coloneq;", (8788, 0)), + ("Verbar", (0, 0)), + ("rdca", (0, 0)), + ("SmallCircle", (0, 0)), + ("ye", (0, 0)), + ("bl", (0, 0)), + ("pho", (0, 0)), + ("amacr;", (257, 0)), + ("MinusPlus", (0, 0)), + ("lbrace", (0, 0)), + ("Sub;", (8912, 0)), + ("nlArr", (0, 0)), + ("zigr", (0, 0)), + ("Lap", (0, 0)), + ("Poinc", (0, 0)), + ("longr", (0, 0)), + ("DiacriticalDou", (0, 0)), + ("Bf", (0, 0)), + ("ltrif;", (9666, 0)), + ("varthet", (0, 0)), + ("thin", (0, 0)), + ("NotLeftTriangleBar", (0, 0)), + ("ogr", (0, 0)), + ("LessGr", (0, 0)), + ("complex", (0, 0)), + ("VerticalTilde;", (8768, 0)), + ("half;", (189, 0)), + ("NotSubsetEqual", (0, 0)), + ("frac58;", (8541, 0)), + ("napid;", (8779, 824)), + ("Gb", (0, 0)), + ("rbrksld;", (10638, 0)), + ("nL", (0, 0)), + ("rrarr", (0, 0)), + ("vBa", (0, 0)), + ("NotGreaterFu", (0, 0)), + ("DownLeftRightVect", (0, 0)), + ("circl", (0, 0)), + ("xsqc", (0, 0)), + ("harrw;", (8621, 0)), + ("PrecedesSlantEqu", (0, 0)), + ("ar", (0, 0)), + ("TildeFu", (0, 0)), + ("triangleleft;", (9667, 0)), + ("Superse", (0, 0)), + ("ltri", (0, 0)), + ("Ugrav", (0, 0)), + ("mopf;", (120158, 0)), + ("fallingdo", (0, 0)), + ("Gcir", (0, 0)), + ("zscr", (0, 0)), + ("iopf;", (120154, 0)), + ("ltrPar", (0, 0)), + ("bigtriangleup;", (9651, 0)), + ("setminus", (0, 0)), + ("yum", (0, 0)), + ("ration", (0, 0)), + ("rhar", (0, 0)), + ("Partial", (0, 0)), + ("updowna", (0, 0)), + ("UnderBracket;", (9141, 0)), + ("topb", (0, 0)), + ("Iukcy;", (1030, 0)), + ("asympe", (0, 0)), + ("notin;", (8713, 0)), + ("scsi", (0, 0)), + ("UnderParenthesis", (0, 0)), + ("cudarrr;", (10549, 0)), + ("bo", (0, 0)), + ("tc", (0, 0)), + ("urcr", (0, 0)), + ("gfr", (0, 0)), + ("NotNestedLess", (0, 0)), + ("xrA", (0, 0)), + ("wr", (0, 0)), + ("nequiv;", (8802, 0)), + ("NonBreakingSpac", (0, 0)), + ("bempty", (0, 0)), + ("ogo", (0, 0)), + ("Assig", (0, 0)), + ("Sce", (0, 0)), + ("plustw", (0, 0)), + ("lrco", (0, 0)), + ("NotLeftTr", (0, 0)), + ("tfr;", (120113, 0)), + ("subsup", (0, 0)), + ("kop", (0, 0)), + ("phon", (0, 0)), + ("doublebar", (0, 0)), + ("oror;", (10838, 0)), + ("veeba", (0, 0)), + ("Itilde", (0, 0)), + ("xlAr", (0, 0)), + ("kced", (0, 0)), + ("ShortDown", (0, 0)), + ("rd", (0, 0)), + ("NoBreak", (0, 0)), + ("NotTildeEqu", (0, 0)), + ("caron", (0, 0)), + ("expectatio", (0, 0)), + ("UnderParenthes", (0, 0)), + ("Backslas", (0, 0)), + ("Ccon", (0, 0)), + ("varepsilon", (0, 0)), + ("YUcy;", (1070, 0)), + ("urcor", (0, 0)), + ("MinusPl", (0, 0)), + ("CircleTime", (0, 0)), + ("SquareSub", (0, 0)), + ("Ucy;", (1059, 0)), + ("hopf", (0, 0)), + ("NotDouble", (0, 0)), + ("Dagger;", (8225, 0)), + ("leqq", (0, 0)), + ("Fo", (0, 0)), + ("srarr;", (8594, 0)), + ("NegativeVe", (0, 0)), + ("operp", (0, 0)), + ("RightTriangleE", (0, 0)), + ("ccaro", (0, 0)), + ("NotVerticalBa", (0, 0)), + ("profs", (0, 0)), + ("PrecedesSlantE", (0, 0)), + ("UnderParenthe", (0, 0)), + ("tstr", (0, 0)), + ("NotRightTriangleBa", (0, 0)), + ("ccupssm;", (10832, 0)), + ("vartriangleleft;", (8882, 0)), + ("eqslant", (0, 0)), + ("flat", (0, 0)), + ("eqslantless", (0, 0)), + ("nvrtrie", (0, 0)), + ("mea", (0, 0)), + ("DoubleCo", (0, 0)), + ("twoheadleftar", (0, 0)), + ("uw", (0, 0)), + ("RightDoubleBracke", (0, 0)), + ("ShortUpArrow", (0, 0)), + ("rbrack", (0, 0)), + ("lrm", (0, 0)), + ("LeftTeeV", (0, 0)), + ("GreaterGreat", (0, 0)), + ("nvi", (0, 0)), + ("RightUpVecto", (0, 0)), + ("ntrianglerighte", (0, 0)), + ("Osla", (0, 0)), + ("Rang;", (10219, 0)), + ("thicksi", (0, 0)), + ("Squ", (0, 0)), + ("nwnea", (0, 0)), + ("Sqrt;", (8730, 0)), + ("nvDash", (0, 0)), + ("Differen", (0, 0)), + ("harrci", (0, 0)), + ("oa", (0, 0)), + ("aacute;", (225, 0)), + ("rdl", (0, 0)), + ("qfr;", (120110, 0)), + ("tint;", (8749, 0)), + ("NotRightTriangleB", (0, 0)), + ("bN", (0, 0)), + ("napos;", (329, 0)), + ("lfr", (0, 0)), + ("Zcy;", (1047, 0)), + ("smallsetminus", (0, 0)), + ("supm", (0, 0)), + ("plusm", (0, 0)), + ("downharp", (0, 0)), + ("LeftDownVect", (0, 0)), + ("nap;", (8777, 0)), + ("Diacritical", (0, 0)), + ("leftrightharpoon", (0, 0)), + ("Coproduct", (0, 0)), + ("duha", (0, 0)), + ("Hump", (0, 0)), + ("isinsv;", (8947, 0)), + ("hardcy;", (1098, 0)), + ("oacut", (0, 0)), + ("blackloze", (0, 0)), + ("xwe", (0, 0)), + ("sup1;", (185, 0)), + ("DiacriticalAc", (0, 0)), + ("left", (0, 0)), + ("Oa", (0, 0)), + ("udha", (0, 0)), + ("nge", (0, 0)), + ("Coproduc", (0, 0)), + ("hyphen;", (8208, 0)), + ("RightTriangleBa", (0, 0)), + ("intlar", (0, 0)), + ("Zdot;", (379, 0)), + ("DiacriticalDoubleAcut", (0, 0)), + ("ShortR", (0, 0)), + ("bkarow", (0, 0)), + ("th", (0, 0)), + ("lar", (0, 0)), + ("cud", (0, 0)), + ("ne;", (8800, 0)), + ("RightAn", (0, 0)), + ("vD", (0, 0)), + ("downharpoonleft", (0, 0)), + ("pitchfo", (0, 0)), + ("lozenge", (0, 0)), + ("mn", (0, 0)), + ("Z", (0, 0)), + ("expectat", (0, 0)), + ("Horizon", (0, 0)), + ("Tcedil;", (354, 0)), + ("trid", (0, 0)), + ("NotLessLe", (0, 0)), + ("prim", (0, 0)), + ("ReverseEqu", (0, 0)), + ("Utilde;", (360, 0)), + ("omacr", (0, 0)), + ("mapstodow", (0, 0)), + ("cemptyv", (0, 0)), + ("UpArrow", (0, 0)), + ("qf", (0, 0)), + ("J", (0, 0)), + ("diamon", (0, 0)), + ("HorizontalLi", (0, 0)), + ("Sqrt", (0, 0)), + ("kap", (0, 0)), + ("CloseCurlyQ", (0, 0)), + ("EqualTil", (0, 0)), + ("fallingdotse", (0, 0)), + ("gE", (0, 0)), + ("sqsubset", (0, 0)), + ("FilledVerySmallSqua", (0, 0)), + ("UpperRightA", (0, 0)), + ("NotVerti", (0, 0)), + ("ntlg", (0, 0)), + ("pm", (0, 0)), + ("DiacriticalDouble", (0, 0)), + ("NotTildeFu", (0, 0)), + ("xharr;", (10231, 0)), + ("leqslant", (0, 0)), + ("DZ", (0, 0)), + ("twoheadleftarrow;", (8606, 0)), + ("Ic", (0, 0)), + ("DownR", (0, 0)), + ("realpar", (0, 0)), + ("Neste", (0, 0)), + ("nvltrie;", (8884, 8402)), + ("lcedil;", (316, 0)), + ("lur", (0, 0)), + ("NotSucceedsEqua", (0, 0)), + ("gtrle", (0, 0)), + ("qu", (0, 0)), + ("RightTriangleEqu", (0, 0)), + ("ReverseEqui", (0, 0)), + ("Gcedi", (0, 0)), + ("chi;", (967, 0)), + ("thorn", (254, 0)), + ("iinfi", (0, 0)), + ("midc", (0, 0)), + ("HilbertSpace", (0, 0)), + ("lnappro", (0, 0)), + ("cy", (0, 0)), + ("marke", (0, 0)), + ("lrtri;", (8895, 0)), + ("smashp", (0, 0)), + ("RightUpVectorBar", (0, 0)), + ("ngt", (0, 0)), + ("jcirc", (0, 0)), + ("Epsilo", (0, 0)), + ("GreaterTi", (0, 0)), + ("oacute;", (243, 0)), + ("tritime", (0, 0)), + ("iogo", (0, 0)), + ("looparrowr", (0, 0)), + ("Lac", (0, 0)), + ("vsupnE", (0, 0)), + ("cura", (0, 0)), + ("circ;", (710, 0)), + ("dzcy", (0, 0)), + ("napprox;", (8777, 0)), + ("ncongdot;", (10861, 824)), + ("DoubleLeftRightAr", (0, 0)), + ("Vertic", (0, 0)), + ("npart", (0, 0)), + ("triminus", (0, 0)), + ("egsdot;", (10904, 0)), + ("hfr", (0, 0)), + ("longleftri", (0, 0)), + ("rsquor", (0, 0)), + ("DownLeftTeeVec", (0, 0)), + ("zdot", (0, 0)), + ("SHCHcy", (0, 0)), + ("Intersec", (0, 0)), + ("An", (0, 0)), + ("ccirc;", (265, 0)), + ("swarro", (0, 0)), + ("quest", (0, 0)), + ("frac35", (0, 0)), + ("PrecedesSlantEqual", (0, 0)), + ("sbquo;", (8218, 0)), + ("imacr;", (299, 0)), + ("twoheadleftarr", (0, 0)), + ("leftthreetimes", (0, 0)), + ("sigma;", (963, 0)), + ("boxh", (0, 0)), + ("SquareSuperset;", (8848, 0)), + ("eqsl", (0, 0)), + ("circeq", (0, 0)), + ("lesseqgt", (0, 0)), + ("ufis", (0, 0)), + ("nsubseteqq", (0, 0)), + ("veebar", (0, 0)), + ("bigotimes;", (10754, 0)), + ("brvb", (0, 0)), + ("LeftTeeArrow;", (8612, 0)), + ("barw", (0, 0)), + ("rAtail", (0, 0)), + ("DownBrev", (0, 0)), + ("fo", (0, 0)), + ("Exists;", (8707, 0)), + ("equals;", (61, 0)), + ("upha", (0, 0)), + ("Proport", (0, 0)), + ("vel", (0, 0)), + ("subp", (0, 0)), + ("Gf", (0, 0)), + ("hoarr", (0, 0)), + ("thksim", (0, 0)), + ("atil", (0, 0)), + ("nleqslant", (0, 0)), + ("mscr;", (120002, 0)), + ("lsime;", (10893, 0)), + ("Hstr", (0, 0)), + ("yfr;", (120118, 0)), + ("UpArrowBa", (0, 0)), + ("filig", (0, 0)), + ("DoubleLeftRight", (0, 0)), + ("gci", (0, 0)), + ("dbkarow", (0, 0)), + ("lEg", (0, 0)), + ("bprime", (0, 0)), + ("nearrow", (0, 0)), + ("HumpEq", (0, 0)), + ("forkv;", (10969, 0)), + ("Igra", (0, 0)), + ("Bet", (0, 0)), + ("RightArrowLeft", (0, 0)), + ("RightDownTeeVector;", (10589, 0)), + ("CO", (0, 0)), + ("rarrtl", (0, 0)), + ("CapitalDi", (0, 0)), + ("TripleD", (0, 0)), + ("xcup;", (8899, 0)), + ("sci", (0, 0)), + ("Short", (0, 0)), + ("bdquo", (0, 0)), + ("zcar", (0, 0)), + ("RightCeiling;", (8969, 0)), + ("lcei", (0, 0)), + ("ijl", (0, 0)), + ("dlcorn;", (8990, 0)), + ("circlea", (0, 0)), + ("risingd", (0, 0)), + ("Cd", (0, 0)), + ("Rsc", (0, 0)), + ("NotPrecedesSlantEqu", (0, 0)), + ("thi", (0, 0)), + ("efD", (0, 0)), + ("LessEqualGr", (0, 0)), + ("Dstrok;", (272, 0)), + ("Iogo", (0, 0)), + ("Hacek", (0, 0)), + ("blacktri", (0, 0)), + ("Integral;", (8747, 0)), + ("lessgtr;", (8822, 0)), + ("notinE;", (8953, 824)), + ("xci", (0, 0)), + ("LeftT", (0, 0)), + ("esdo", (0, 0)), + ("GreaterSlant", (0, 0)), + ("NotGreaterTild", (0, 0)), + ("DoubleLeftRightArrow", (0, 0)), + ("nLeftarrow", (0, 0)), + ("supsub", (0, 0)), + ("Uti", (0, 0)), + ("Longleftarr", (0, 0)), + ("hear", (0, 0)), + ("bigw", (0, 0)), + ("Sm", (0, 0)), + ("Hscr", (0, 0)), + ("iexc", (0, 0)), + ("Tfr;", (120087, 0)), + ("rac", (0, 0)), + ("supsi", (0, 0)), + ("cirfnint;", (10768, 0)), + ("lefta", (0, 0)), + ("lla", (0, 0)), + ("qopf;", (120162, 0)), + ("les;", (10877, 0)), + ("EmptyVerySmallSqua", (0, 0)), + ("NotDoubleVerticalBar;", (8742, 0)), + ("barvee", (0, 0)), + ("ccups;", (10828, 0)), + ("PartialD", (0, 0)), + ("telrec", (0, 0)), + ("boxVh;", (9579, 0)), + ("VeryTh", (0, 0)), + ("NotVertical", (0, 0)), + ("ShortDownAr", (0, 0)), + ("supsub;", (10964, 0)), + ("blacklozeng", (0, 0)), + ("nRightarrow", (0, 0)), + ("Osc", (0, 0)), + ("rbbrk", (0, 0)), + ("iii", (0, 0)), + ("Uscr;", (119984, 0)), + ("RightVector;", (8640, 0)), + ("geqs", (0, 0)), + ("Agra", (0, 0)), + ("FilledSm", (0, 0)), + ("rArr", (0, 0)), + ("Equal;", (10869, 0)), + ("NotSupersetEq", (0, 0)), + ("capcap", (0, 0)), + ("ntild", (0, 0)), + ("rtim", (0, 0)), + ("nvda", (0, 0)), + ("NestedLess", (0, 0)), + ("lnsim;", (8934, 0)), + ("ulcro", (0, 0)), + ("oscr;", (8500, 0)), + ("tcaron", (0, 0)), + ("CloseCurlyDoubl", (0, 0)), + ("sqcu", (0, 0)), + ("olcir;", (10686, 0)), + ("And", (0, 0)), + ("or;", (8744, 0)), + ("Scir", (0, 0)), + ("Leftrightarr", (0, 0)), + ("NotLessSlantEqu", (0, 0)), + ("Ecy;", (1069, 0)), + ("rti", (0, 0)), + ("gt", (62, 0)), + ("boxHu;", (9575, 0)), + ("napp", (0, 0)), + ("ocy", (0, 0)), + ("DDot", (0, 0)), + ("ques", (0, 0)), + ("ltdot", (0, 0)), + ("EqualTild", (0, 0)), + ("nleftrightarrow", (0, 0)), + ("twohead", (0, 0)), + ("Scirc;", (348, 0)), + ("fpar", (0, 0)), + ("UpArrowDownArrow;", (8645, 0)), + ("Aog", (0, 0)), + ("point", (0, 0)), + ("leftar", (0, 0)), + ("lbbrk", (0, 0)), + ("DoubleRightArr", (0, 0)), + ("CounterClockwiseContour", (0, 0)), + ("ldrdh", (0, 0)), + ("NotEqualTil", (0, 0)), + ("Sf", (0, 0)), + ("uci", (0, 0)), + ("rsc", (0, 0)), + ("Popf", (0, 0)), + ("NotSubsetEqual;", (8840, 0)), + ("swnwa", (0, 0)), + ("fop", (0, 0)), + ("ThickSpa", (0, 0)), + ("luruhar;", (10598, 0)), + ("nsim", (0, 0)), + ("po", (0, 0)), + ("Bumpeq;", (8782, 0)), + ("vare", (0, 0)), + ("gtre", (0, 0)), + ("downhar", (0, 0)), + ("Oopf", (0, 0)), + ("blacktriangled", (0, 0)), + ("UpTeeArrow", (0, 0)), + ("cuwe", (0, 0)), + ("oror", (0, 0)), + ("Exponentia", (0, 0)), + ("zacute", (0, 0)), + ("RightDo", (0, 0)), + ("gtreqless", (0, 0)), + ("Dif", (0, 0)), + ("Qo", (0, 0)), + ("vc", (0, 0)), + ("trp", (0, 0)), + ("nsqsube;", (8930, 0)), + ("downdownarrows;", (8650, 0)), + ("rt", (0, 0)), + ("CircleMin", (0, 0)), + ("Invi", (0, 0)), + ("so", (0, 0)), + ("rightl", (0, 0)), + ("boxHD", (0, 0)), + ("Upsilon;", (933, 0)), + ("omega", (0, 0)), + ("beth", (0, 0)), + ("mcomma;", (10793, 0)), + ("lac", (0, 0)), + ("rArr;", (8658, 0)), + ("alph", (0, 0)), + ("cupdot", (0, 0)), + ("bloc", (0, 0)), + ("mc", (0, 0)), + ("Lsc", (0, 0)), + ("ce", (0, 0)), + ("LessEqualGreate", (0, 0)), + ("imagpa", (0, 0)), + ("dotminus", (0, 0)), + ("tria", (0, 0)), + ("LeftCeiling;", (8968, 0)), + ("ccu", (0, 0)), + ("shortmid;", (8739, 0)), + ("mark", (0, 0)), + ("trianglelefte", (0, 0)), + ("qs", (0, 0)), + ("trianglelef", (0, 0)), + ("mal", (0, 0)), + ("Righta", (0, 0)), + ("checkmark;", (10003, 0)), + ("xsc", (0, 0)), + ("ksc", (0, 0)), + ("leftharp", (0, 0)), + ("ReverseEleme", (0, 0)), + ("fil", (0, 0)), + ("incare", (0, 0)), + ("angst;", (197, 0)), + ("NotGreaterGreate", (0, 0)), + ("varph", (0, 0)), + ("GreaterFullEq", (0, 0)), + ("NotSubsetE", (0, 0)), + ("tild", (0, 0)), + ("ClockwiseContourInte", (0, 0)), + ("LowerRigh", (0, 0)), + ("Greater", (0, 0)), + ("dfr", (0, 0)), + ("subE;", (10949, 0)), + ("rx", (0, 0)), + ("RightDoubleB", (0, 0)), + ("Alpha", (0, 0)), + ("blk12;", (9618, 0)), + ("DotEqual;", (8784, 0)), + ("LeftUp", (0, 0)), + ("NotPrecedesEqua", (0, 0)), + ("Nu", (0, 0)), + ("UnderPa", (0, 0)), + ("vzigza", (0, 0)), + ("nexists;", (8708, 0)), + ("leftarr", (0, 0)), + ("lesg", (0, 0)), + ("DoubleD", (0, 0)), + ("beta", (0, 0)), + ("LeftDownVectorBar;", (10585, 0)), + ("va", (0, 0)), + ("Longrightar", (0, 0)), + ("cuve", (0, 0)), + ("bot", (0, 0)), + ("bottom", (0, 0)), + ("Fou", (0, 0)), + ("blacksquare", (0, 0)), + ("SucceedsT", (0, 0)), + ("Nced", (0, 0)), + ("uscr;", (120010, 0)), + ("ddarr;", (8650, 0)), + ("gtreqless;", (8923, 0)), + ("congdot;", (10861, 0)), + ("deg;", (176, 0)), + ("ffil", (0, 0)), + ("gcy;", (1075, 0)), + ("xl", (0, 0)), + ("lan", (0, 0)), + ("le", (0, 0)), + ("NotTildeEq", (0, 0)), + ("ium", (0, 0)), + ("utrif;", (9652, 0)), + ("gj", (0, 0)), + ("CenterD", (0, 0)), + ("precneqq;", (10933, 0)), + ("Imagin", (0, 0)), + ("mult", (0, 0)), + ("rightth", (0, 0)), + ("NotPrecedes", (0, 0)), + ("boxur", (0, 0)), + ("Uparrow", (0, 0)), + ("pfr", (0, 0)), + ("ubrc", (0, 0)), + ("ang", (0, 0)), + ("NotEqua", (0, 0)), + ("UpDownArr", (0, 0)), + ("TildeFullEq", (0, 0)), + ("Hcirc", (0, 0)), + ("CloseCurlyDoubleQuote;", (8221, 0)), + ("Poincar", (0, 0)), + ("smallse", (0, 0)), + ("simp", (0, 0)), + ("leqsla", (0, 0)), + ("Rrig", (0, 0)), + ("uo", (0, 0)), + ("east", (0, 0)), + ("IOcy;", (1025, 0)), + ("LeftTeeAr", (0, 0)), + ("rarrhk", (0, 0)), + ("UpperLef", (0, 0)), + ("mum", (0, 0)), + ("gtque", (0, 0)), + ("DownLeftTeeVecto", (0, 0)), + ("Supset;", (8913, 0)), + ("NotHumpEqua", (0, 0)), + ("rightrighta", (0, 0)), + ("abreve", (0, 0)), + ("Lapla", (0, 0)), + ("bigsta", (0, 0)), + ("ell", (0, 0)), + ("RightCeilin", (0, 0)), + ("Longleftrightarr", (0, 0)), + ("rightsquigarr", (0, 0)), + ("iquest", (191, 0)), + ("UpT", (0, 0)), + ("supsup", (0, 0)), + ("ZeroW", (0, 0)), + ("shcy", (0, 0)), + ("mda", (0, 0)), + ("SucceedsSlantEqua", (0, 0)), + ("ncy;", (1085, 0)), + ("scs", (0, 0)), + ("SquareInters", (0, 0)), + ("rharul", (0, 0)), + ("Verti", (0, 0)), + ("updown", (0, 0)), + ("lstrok;", (322, 0)), + ("vartheta", (0, 0)), + ("nls", (0, 0)), + ("setmn", (0, 0)), + ("supE", (0, 0)), + ("bigop", (0, 0)), + ("DoubleLongLeftRightArrow;", (10234, 0)), + ("Vdash", (0, 0)), + ("dtrif", (0, 0)), + ("lozf;", (10731, 0)), + ("odash;", (8861, 0)), + ("larrtl;", (8610, 0)), + ("ClockwiseCont", (0, 0)), + ("Assi", (0, 0)), + ("udbl", (0, 0)), + ("Imagina", (0, 0)), + ("nleftrig", (0, 0)), + ("acE;", (8766, 819)), + ("gneqq;", (8809, 0)), + ("and;", (8743, 0)), + ("downharpoonright;", (8642, 0)), + ("diamondsuit", (0, 0)), + ("bigoplus", (0, 0)), + ("oint;", (8750, 0)), + ("cirfn", (0, 0)), + ("nleftrightarro", (0, 0)), + ("vellip;", (8942, 0)), + ("LessFullEq", (0, 0)), + ("blacktriangler", (0, 0)), + ("DiacriticalA", (0, 0)), + ("VDa", (0, 0)), + ("leftharpoonup;", (8636, 0)), + ("Na", (0, 0)), + ("VerticalLin", (0, 0)), + ("iscr;", (119998, 0)), + ("ndas", (0, 0)), + ("lnsi", (0, 0)), + ("langl", (0, 0)), + ("sext;", (10038, 0)), + ("DownRightVectorBar;", (10583, 0)), + ("ldrd", (0, 0)), + ("Zcaro", (0, 0)), + ("Cedilla;", (184, 0)), + ("NotGreaterE", (0, 0)), + ("Zacute", (0, 0)), + ("telr", (0, 0)), + ("xhAr", (0, 0)), + ("NotTildeFul", (0, 0)), + ("ContourI", (0, 0)), + ("varkappa", (0, 0)), + ("uArr;", (8657, 0)), + ("OpenCurlyDoubleQ", (0, 0)), + ("triangledown;", (9663, 0)), + ("ucy;", (1091, 0)), + ("scy;", (1089, 0)), + ("NotLessLess", (0, 0)), + ("tst", (0, 0)), + ("eDo", (0, 0)), + ("Ov", (0, 0)), + ("twixt", (0, 0)), + ("Poincareplane", (0, 0)), + ("frac7", (0, 0)), + ("xutri", (0, 0)), + ("boxh;", (9472, 0)), + ("lessapprox", (0, 0)), + ("eqslantgtr;", (10902, 0)), + ("ovb", (0, 0)), + ("intp", (0, 0)), + ("fc", (0, 0)), + ("topfork;", (10970, 0)), + ("nLeftrightarrow", (0, 0)), + ("hfr;", (120101, 0)), + ("lfloo", (0, 0)), + ("nsq", (0, 0)), + ("arin", (0, 0)), + ("plusc", (0, 0)), + ("nvH", (0, 0)), + ("preca", (0, 0)), + ("wedge", (0, 0)), + ("LeftDownTeeVector", (0, 0)), + ("GreaterGreate", (0, 0)), + ("quaternions", (0, 0)), + ("multim", (0, 0)), + ("lesse", (0, 0)), + ("r", (0, 0)), + ("thicka", (0, 0)), + ("LongLeftR", (0, 0)), + ("NotH", (0, 0)), + ("qscr", (0, 0)), + ("NotNestedL", (0, 0)), + ("Vv", (0, 0)), + ("dwangle", (0, 0)), + ("supmu", (0, 0)), + ("NotNestedLes", (0, 0)), + ("Ubrcy", (0, 0)), + ("percn", (0, 0)), + ("Uopf;", (120140, 0)), + ("cuwed", (0, 0)), + ("submult;", (10945, 0)), + ("nleftrightarr", (0, 0)), + ("vsubnE;", (10955, 65024)), + ("nlt", (0, 0)), + ("NegativeThinSpace;", (8203, 0)), + ("hk", (0, 0)), + ("DoubleDownA", (0, 0)), + ("Gd", (0, 0)), + ("blac", (0, 0)), + ("ng", (0, 0)), + ("LeftRightVecto", (0, 0)), + ("gamma;", (947, 0)), + ("bern", (0, 0)), + ("zcaron", (0, 0)), + ("gtrsi", (0, 0)), + ("Differ", (0, 0)), + ("swnw", (0, 0)), + ("divideon", (0, 0)), + ("SucceedsSlantEq", (0, 0)), + ("leftarrowt", (0, 0)), + ("Ver", (0, 0)), + ("Vee;", (8897, 0)), + ("Edot", (0, 0)), + ("ioc", (0, 0)), + ("nvgt", (0, 0)), + ("small", (0, 0)), + ("Melli", (0, 0)), + ("timesbar", (0, 0)), + ("curvearro", (0, 0)), + ("OpenCurlyQuote", (0, 0)), + ("jscr;", (119999, 0)), + ("equivDD;", (10872, 0)), + ("sbqu", (0, 0)), + ("longleftrightar", (0, 0)), + ("vark", (0, 0)), + ("vnsu", (0, 0)), + ("tprim", (0, 0)), + ("LessTi", (0, 0)), + ("Vfr", (0, 0)), + ("lrcorner;", (8991, 0)), + ("Scedil", (0, 0)), + ("hookrightar", (0, 0)), + ("circledcirc;", (8858, 0)), + ("hstrok", (0, 0)), + ("gtcc", (0, 0)), + ("blacksqu", (0, 0)), + ("FilledSmallSqu", (0, 0)), + ("pertenk", (0, 0)), + ("nsmi", (0, 0)), + ("omega;", (969, 0)), + ("Product;", (8719, 0)), + ("Omac", (0, 0)), + ("LeftDownTe", (0, 0)), + ("EqualTi", (0, 0)), + ("ohm", (0, 0)), + ("midast", (0, 0)), + ("curlywedge;", (8911, 0)), + ("complement;", (8705, 0)), + ("rtimes", (0, 0)), + ("Lcy", (0, 0)), + ("nldr", (0, 0)), + ("bigtriangledown;", (9661, 0)), + ("RightTriangleEqual", (0, 0)), + ("nedo", (0, 0)), + ("otimesas", (0, 0)), + ("Gfr;", (120074, 0)), + ("db", (0, 0)), + ("Odb", (0, 0)), + ("Copro", (0, 0)), + ("Cfr", (0, 0)), + ("leftrightsqui", (0, 0)), + ("ys", (0, 0)), + ("betw", (0, 0)), + ("DiacriticalGrave;", (96, 0)), + ("LeftRightVect", (0, 0)), + ("St", (0, 0)), + ("TildeFullEqu", (0, 0)), + ("rightharpoonup", (0, 0)), + ("Ifr", (0, 0)), + ("zhcy", (0, 0)), + ("rangle", (0, 0)), + ("Zsc", (0, 0)), + ("pluse;", (10866, 0)), + ("Subs", (0, 0)), + ("LeftUpDownVecto", (0, 0)), + ("CircleDot", (0, 0)), + ("Yc", (0, 0)), + ("backepsilon", (0, 0)), + ("vz", (0, 0)), + ("ReverseEquilib", (0, 0)), + ("CapitalDiff", (0, 0)), + ("varrho;", (1009, 0)), + ("lurdsha", (0, 0)), + ("gnap;", (10890, 0)), + ("if", (0, 0)), + ("rarrlp", (0, 0)), + ("gac", (0, 0)), + ("xodo", (0, 0)), + ("righth", (0, 0)), + ("NotSquareSupersetEqual;", (8931, 0)), + ("RightDownTeeVecto", (0, 0)), + ("Ove", (0, 0)), + ("dHar", (0, 0)), + ("New", (0, 0)), + ("Open", (0, 0)), + ("precnsim;", (8936, 0)), + ("CounterClockwiseContourIntegra", (0, 0)), + ("rightleftharpoo", (0, 0)), + ("Odbl", (0, 0)), + ("gtlPa", (0, 0)), + ("backcon", (0, 0)), + ("sqsup;", (8848, 0)), + ("mopf", (0, 0)), + ("kscr;", (120000, 0)), + ("nharr;", (8622, 0)), + ("Ima", (0, 0)), + ("TildeTilde", (0, 0)), + ("Conint", (0, 0)), + ("DownArrowUpArro", (0, 0)), + ("circlear", (0, 0)), + ("UpDownArrow", (0, 0)), + ("because", (0, 0)), + ("udarr;", (8645, 0)), + ("tcy;", (1090, 0)), + ("Fs", (0, 0)), + ("boxuL;", (9563, 0)), + ("Ls", (0, 0)), + ("af", (0, 0)), + ("Ko", (0, 0)), + ("jscr", (0, 0)), + ("Dopf;", (120123, 0)), + ("cscr", (0, 0)), + ("ldca", (0, 0)), + ("Poincareplan", (0, 0)), + ("igrav", (0, 0)), + ("nrightarro", (0, 0)), + ("sho", (0, 0)), + ("kappa", (0, 0)), + ("bemptyv;", (10672, 0)), + ("sigmaf;", (962, 0)), + ("era", (0, 0)), + ("pitchfor", (0, 0)), + ("Ubrcy;", (1038, 0)), + ("expectation", (0, 0)), + ("Arin", (0, 0)), + ("mac", (0, 0)), + ("Longleftright", (0, 0)), + ("lurdshar", (0, 0)), + ("cedil;", (184, 0)), + ("lsh;", (8624, 0)), + ("nrArr", (0, 0)), + ("rightlefth", (0, 0)), + ("supdot", (0, 0)), + ("NotGreaterLess;", (8825, 0)), + ("NegativeMedi", (0, 0)), + ("LeftAngleBrac", (0, 0)), + ("Ncedi", (0, 0)), + ("amac", (0, 0)), + ("diamondsui", (0, 0)), + ("Emacr;", (274, 0)), + ("NegativeThic", (0, 0)), + ("ggg", (0, 0)), + ("imacr", (0, 0)), + ("lesges", (0, 0)), + ("Agrave", (192, 0)), + ("Vop", (0, 0)), + ("forkv", (0, 0)), + ("uharl;", (8639, 0)), + ("rightarrowtail", (0, 0)), + ("hamilt;", (8459, 0)), + ("rmou", (0, 0)), + ("leqslan", (0, 0)), + ("rds", (0, 0)), + ("ccir", (0, 0)), + ("cwint", (0, 0)), + ("shortp", (0, 0)), + ("sung", (0, 0)), + ("TRAD", (0, 0)), + ("NotSqua", (0, 0)), + ("DownLef", (0, 0)), + ("aog", (0, 0)), + ("VeryThinSp", (0, 0)), + ("ShortLeftAr", (0, 0)), + ("divid", (0, 0)), + ("integ", (0, 0)), + ("UpperLeftArro", (0, 0)), + ("frac45;", (8536, 0)), + ("UpperRightArrow;", (8599, 0)), + ("hksea", (0, 0)), + ("notinva", (0, 0)), + ("NotEqu", (0, 0)), + ("fnof;", (402, 0)), + ("blk34;", (9619, 0)), + ("infint", (0, 0)), + ("nltri", (0, 0)), + ("RightAngleBra", (0, 0)), + ("HilbertSpace;", (8459, 0)), + ("Upsi", (0, 0)), + ("rightharpoon", (0, 0)), + ("curl", (0, 0)), + ("DownTeeArro", (0, 0)), + ("rho;", (961, 0)), + ("suphsol", (0, 0)), + ("alp", (0, 0)), + ("nleqslan", (0, 0)), + ("ring", (0, 0)), + ("bumpeq", (0, 0)), + ("Vs", (0, 0)), + ("LeftTrian", (0, 0)), + ("curren;", (164, 0)), + ("rarrpl", (0, 0)), + ("longma", (0, 0)), + ("DJcy", (0, 0)), + ("Ncaron;", (327, 0)), + ("Zopf", (0, 0)), + ("UnderBrace;", (9183, 0)), + ("Poincare", (0, 0)), + ("gsim;", (8819, 0)), + ("ENG", (0, 0)), + ("uuml;", (252, 0)), + ("NotHumpDo", (0, 0)), + ("NotLeftTriangleEqual;", (8940, 0)), + ("phone;", (9742, 0)), + ("Breve;", (728, 0)), + ("leqslant;", (10877, 0)), + ("LeftTriang", (0, 0)), + ("leftrigh", (0, 0)), + ("Rou", (0, 0)), + ("el", (0, 0)), + ("NotLeftTriangleEqual", (0, 0)), + ("et", (0, 0)), + ("Leftrigh", (0, 0)), + ("igr", (0, 0)), + ("eqslantgt", (0, 0)), + ("bigoti", (0, 0)), + ("tcedi", (0, 0)), + ("ReverseEquilibrium;", (8651, 0)), + ("minus", (0, 0)), + ("profalar", (0, 0)), + ("F", (0, 0)), + ("rsaq", (0, 0)), + ("ngeq;", (8817, 0)), + ("nwAr", (0, 0)), + ("nsmid;", (8740, 0)), + ("esc", (0, 0)), + ("angmsdag;", (10670, 0)), + ("s", (0, 0)), + ("ds", (0, 0)), + ("rmoustache", (0, 0)), + ("LongLeftAr", (0, 0)), + ("zopf;", (120171, 0)), + ("RightDoubleBrac", (0, 0)), + ("ddot", (0, 0)), + ("cupbr", (0, 0)), + ("DoubleLongLeftRig", (0, 0)), + ("NotGreaterEqu", (0, 0)), + ("ms", (0, 0)), + ("NotSupe", (0, 0)), + ("ForAll;", (8704, 0)), + ("Gci", (0, 0)), + ("Filled", (0, 0)), + ("fili", (0, 0)), + ("ofcir", (0, 0)), + ("DownArrowBar", (0, 0)), + ("ShortUp", (0, 0)), + ("Lleftarrow", (0, 0)), + ("lHar;", (10594, 0)), + ("upuparrows", (0, 0)), + ("LeftRig", (0, 0)), + ("conin", (0, 0)), + ("nume", (0, 0)), + ("rsquo;", (8217, 0)), + ("ucirc;", (251, 0)), + ("urcorn", (0, 0)), + ("Ran", (0, 0)), + ("nequi", (0, 0)), + ("radic;", (8730, 0)), + ("DiacriticalGr", (0, 0)), + ("tshcy;", (1115, 0)), + ("ber", (0, 0)), + ("Xopf", (0, 0)), + ("Horizont", (0, 0)), + ("coni", (0, 0)), + ("smte;", (10924, 0)), + ("DiacriticalDot;", (729, 0)), + ("rarrtl;", (8611, 0)), + ("scaron;", (353, 0)), + ("pit", (0, 0)), + ("DifferentialD", (0, 0)), + ("RightFlo", (0, 0)), + ("In", (0, 0)), + ("GreaterT", (0, 0)), + ("vrtri", (0, 0)), + ("swarrow;", (8601, 0)), + ("subplus;", (10943, 0)), + ("rotime", (0, 0)), + ("downdownarro", (0, 0)), + ("dcy", (0, 0)), + ("plusac", (0, 0)), + ("UpArrowDownArro", (0, 0)), + ("propt", (0, 0)), + ("kappa;", (954, 0)), + ("shor", (0, 0)), + ("NotTildeTilde", (0, 0)), + ("kgre", (0, 0)), + ("lbrks", (0, 0)), + ("LeftDoubleBracket;", (10214, 0)), + ("dlc", (0, 0)), + ("boxvl;", (9508, 0)), + ("starf;", (9733, 0)), + ("Tab;", (9, 0)), + ("efDo", (0, 0)), + ("nmid;", (8740, 0)), + ("cacu", (0, 0)), + ("CloseCurlyDo", (0, 0)), + ("ltque", (0, 0)), + ("Cs", (0, 0)), + ("NotEq", (0, 0)), + ("Epsil", (0, 0)), + ("nsqs", (0, 0)), + ("Abreve", (0, 0)), + ("ldrusha", (0, 0)), + ("oline", (0, 0)), + ("SquareSubsetEq", (0, 0)), + ("apos;", (39, 0)), + ("longm", (0, 0)), + ("notinvc;", (8950, 0)), + ("NotRightTriangleEq", (0, 0)), + ("vartriangleleft", (0, 0)), + ("leqs", (0, 0)), + ("Upp", (0, 0)), + ("tim", (0, 0)), + ("prns", (0, 0)), + ("NestedGreat", (0, 0)), + ("Lmi", (0, 0)), + ("OpenCurl", (0, 0)), + ("UnderParenthesi", (0, 0)), + ("bi", (0, 0)), + ("gtrapp", (0, 0)), + ("Cdot", (0, 0)), + ("gEl;", (10892, 0)), + ("Upa", (0, 0)), + ("dash", (0, 0)), + ("DoubleLongLeftArrow", (0, 0)), + ("rppolint;", (10770, 0)), + ("blacktr", (0, 0)), + ("bcon", (0, 0)), + ("sun", (0, 0)), + ("RightUpTee", (0, 0)), + ("KJcy", (0, 0)), + ("hybull;", (8259, 0)), + ("simdo", (0, 0)), + ("bigsqcup", (0, 0)), + ("leftharpoondown", (0, 0)), + ("NotSq", (0, 0)), + ("longleftarrow", (0, 0)), + ("supseteqq;", (10950, 0)), + ("NotNestedGreat", (0, 0)), + ("nsub;", (8836, 0)), + ("dstrok;", (273, 0)), + ("mh", (0, 0)), + ("eDot", (0, 0)), + ("Jopf", (0, 0)), + ("jci", (0, 0)), + ("nspar", (0, 0)), + ("notnivb", (0, 0)), + ("subrarr", (0, 0)), + ("lsaq", (0, 0)), + ("rfloor", (0, 0)), + ("ntria", (0, 0)), + ("Cdo", (0, 0)), + ("not", (172, 0)), + ("Omicron", (0, 0)), + ("Ugrave", (217, 0)), + ("NotSquareSupers", (0, 0)), + ("top;", (8868, 0)), + ("Rrigh", (0, 0)), + ("DoubleConto", (0, 0)), + ("lcy", (0, 0)), + ("SquareSubsetE", (0, 0)), + ("scirc;", (349, 0)), + ("Differenti", (0, 0)), + ("beta;", (946, 0)), + ("NotHumpDow", (0, 0)), + ("yopf;", (120170, 0)), + ("RightUp", (0, 0)), + ("urcrop", (0, 0)), + ("lozenge;", (9674, 0)), + ("interc", (0, 0)), + ("fflig;", (64256, 0)), + ("trie;", (8796, 0)), + ("lhard;", (8637, 0)), + ("imped", (0, 0)), + ("prime;", (8242, 0)), + ("Uacut", (0, 0)), + ("NotE", (0, 0)), + ("Hum", (0, 0)), + ("NegativeT", (0, 0)), + ("boxUr;", (9561, 0)), + ("Impl", (0, 0)), + ("gd", (0, 0)), + ("nappro", (0, 0)), + ("Nsc", (0, 0)), + ("Subset;", (8912, 0)), + ("nleftarro", (0, 0)), + ("leftleftar", (0, 0)), + ("Ccar", (0, 0)), + ("Laplace", (0, 0)), + ("DoubleUpAr", (0, 0)), + ("lmid", (0, 0)), + ("Barv", (0, 0)), + ("THORN", (222, 0)), + ("infintie;", (10717, 0)), + ("mlc", (0, 0)), + ("Abr", (0, 0)), + ("Lef", (0, 0)), + ("downharpoonrigh", (0, 0)), + ("bigvee", (0, 0)), + ("fjlig;", (102, 106)), + ("Iscr", (0, 0)), + ("NotLeft", (0, 0)), + ("GreaterFullEqual", (0, 0)), + ("YI", (0, 0)), + ("NotPrecedesSlantEqual", (0, 0)), + ("seswar", (0, 0)), + ("Eps", (0, 0)), + ("FilledV", (0, 0)), + ("Integr", (0, 0)), + ("zeetr", (0, 0)), + ("subsim", (0, 0)), + ("ntriangleright", (0, 0)), + ("doteqdo", (0, 0)), + ("RightVectorBa", (0, 0)), + ("jmath", (0, 0)), + ("an", (0, 0)), + ("NotSquareSubset", (0, 0)), + ("nhpar;", (10994, 0)), + ("nLeftarr", (0, 0)), + ("vareps", (0, 0)), + ("frasl", (0, 0)), + ("CircleP", (0, 0)), + ("Empt", (0, 0)), + ("LeftAngleBracket", (0, 0)), + ("ec", (0, 0)), + ("perc", (0, 0)), + ("cent", (162, 0)), + ("rbrksld", (0, 0)), + ("Uarr", (0, 0)), + ("Integ", (0, 0)), + ("Ffr", (0, 0)), + ("Dow", (0, 0)), + ("Ncy;", (1053, 0)), + ("oac", (0, 0)), + ("Jci", (0, 0)), + ("z", (0, 0)), + ("intlarhk", (0, 0)), + ("psc", (0, 0)), + ("Sca", (0, 0)), + ("THOR", (0, 0)), + ("ogon;", (731, 0)), + ("EmptySma", (0, 0)), + ("ratail;", (10522, 0)), + ("roplu", (0, 0)), + ("loplus", (0, 0)), + ("subseteq;", (8838, 0)), + ("bsolb", (0, 0)), + ("subsete", (0, 0)), + ("notnivb;", (8958, 0)), + ("lopl", (0, 0)), + ("Inv", (0, 0)), + ("gop", (0, 0)), + ("NotC", (0, 0)), + ("Es", (0, 0)), + ("Over", (0, 0)), + ("Downarrow;", (8659, 0)), + ("bigtriangle", (0, 0)), + ("varpropto", (0, 0)), + ("nltrie;", (8940, 0)), + ("vellip", (0, 0)), + ("supsetneq;", (8843, 0)), + ("LJcy", (0, 0)), + ("homtht;", (8763, 0)), + ("Equilibr", (0, 0)), + ("NotNestedGreaterGrea", (0, 0)), + ("en", (0, 0)), + ("LeftFloo", (0, 0)), + ("cross;", (10007, 0)), + ("Vertica", (0, 0)), + ("biguplus;", (10756, 0)), + ("plu", (0, 0)), + ("RightUpTeeVe", (0, 0)), + ("rbb", (0, 0)), + ("nLeftr", (0, 0)), + ("Ele", (0, 0)), + ("gtreqqle", (0, 0)), + ("straightphi", (0, 0)), + ("longleftarro", (0, 0)), + ("lrcorne", (0, 0)), + ("ropar", (0, 0)), + ("kcedi", (0, 0)), + ("Wedg", (0, 0)), + ("hardcy", (0, 0)), + ("Rright", (0, 0)), + ("maps", (0, 0)), + ("nLl", (0, 0)), + ("realine;", (8475, 0)), + ("dcar", (0, 0)), + ("ddagger;", (8225, 0)), + ("lhblk", (0, 0)), + ("LeftTeeVec", (0, 0)), + ("Qopf", (0, 0)), + ("Mell", (0, 0)), + ("lr", (0, 0)), + ("twixt;", (8812, 0)), + ("lbrace;", (123, 0)), + ("csube", (0, 0)), + ("oacu", (0, 0)), + ("rarrpl;", (10565, 0)), + ("Aop", (0, 0)), + ("frow", (0, 0)), + ("simlE", (0, 0)), + ("DownRightVe", (0, 0)), + ("ClockwiseContourIntegr", (0, 0)), + ("LeftArrowRightA", (0, 0)), + ("supsim;", (10952, 0)), + ("boxHD;", (9574, 0)), + ("DownLeftTeeV", (0, 0)), + ("Proportional;", (8733, 0)), + ("CloseCurlyQuot", (0, 0)), + ("iuk", (0, 0)), + ("isindo", (0, 0)), + ("boxplus;", (8862, 0)), + ("Dou", (0, 0)), + ("diams;", (9830, 0)), + ("swa", (0, 0)), + ("compfn;", (8728, 0)), + ("eogo", (0, 0)), + ("LessEqu", (0, 0)), + ("UpArrowDown", (0, 0)), + ("rm", (0, 0)), + ("lnap;", (10889, 0)), + ("SOFTcy", (0, 0)), + ("curvearrowright", (0, 0)), + ("nld", (0, 0)), + ("dhar", (0, 0)), + ("GreaterFullEqua", (0, 0)), + ("long", (0, 0)), + ("integer", (0, 0)), + ("succneqq", (0, 0)), + ("SOFTcy;", (1068, 0)), + ("fallingdot", (0, 0)), + ("Such", (0, 0)), + ("eca", (0, 0)), + ("Produ", (0, 0)), + ("wr;", (8768, 0)), + ("SHCHcy;", (1065, 0)), + ("subsim;", (10951, 0)), + ("tris", (0, 0)), + ("UpTee", (0, 0)), + ("DownRightTeeVect", (0, 0)), + ("No", (0, 0)), + ("compl", (0, 0)), + ("NotDoubleVertic", (0, 0)), + ("nvge;", (8805, 8402)), + ("psi;", (968, 0)), + ("cci", (0, 0)), + ("x", (0, 0)), + ("rtrie", (0, 0)), + ("Udb", (0, 0)), + ("ZeroWidthSpace;", (8203, 0)), + ("nRight", (0, 0)), + ("hookrig", (0, 0)), + ("esim;", (8770, 0)), + ("Ugra", (0, 0)), + ("target", (0, 0)), + ("Gs", (0, 0)), + ("emsp;", (8195, 0)), + ("llarr;", (8647, 0)), + ("che", (0, 0)), + ("Implie", (0, 0)), + ("NotLessLes", (0, 0)), + ("RightUpDownVecto", (0, 0)), + ("nwarh", (0, 0)), + ("vs", (0, 0)), + ("lap", (0, 0)), + ("awint", (0, 0)), + ("omacr;", (333, 0)), + ("si", (0, 0)), + ("jfr", (0, 0)), + ("leftrightsquigarrow;", (8621, 0)), + ("RightDownTeeVec", (0, 0)), + ("sung;", (9834, 0)), + ("mstpo", (0, 0)), + ("dlcr", (0, 0)), + ("LowerRightAr", (0, 0)), + ("bb", (0, 0)), + ("ham", (0, 0)), + ("smas", (0, 0)), + ("nwA", (0, 0)), + ("cemp", (0, 0)), + ("LongLeftArrow", (0, 0)), + ("lesseqgtr", (0, 0)), + ("imof", (0, 0)), + ("between;", (8812, 0)), + ("NotPrecedesEq", (0, 0)), + ("nrA", (0, 0)), + ("UpperRig", (0, 0)), + ("CircleMinus", (0, 0)), + ("boxUl;", (9564, 0)), + ("mapst", (0, 0)), + ("KHc", (0, 0)), + ("SquareSupersetEqu", (0, 0)), + ("precnapprox", (0, 0)), + ("Eacute;", (201, 0)), + ("zacute;", (378, 0)), + ("Longrighta", (0, 0)), + ("nsccue;", (8929, 0)), + ("caro", (0, 0)), + ("NotGreaterTilde", (0, 0)), + ("jser", (0, 0)), + ("beps", (0, 0)), + ("Negati", (0, 0)), + ("ShortRightArrow;", (8594, 0)), + ("nLeftar", (0, 0)), + ("GreaterE", (0, 0)), + ("leftrig", (0, 0)), + ("LessSlantEq", (0, 0)), + ("ldrus", (0, 0)), + ("chcy", (0, 0)), + ("xdt", (0, 0)), + ("Gdot", (0, 0)), + ("blackloz", (0, 0)), + ("DoubleLeftRi", (0, 0)), + ("Sup;", (8913, 0)), + ("NotSu", (0, 0)), + ("Zeta", (0, 0)), + ("dcaron;", (271, 0)), + ("udb", (0, 0)), + ("leftleftarrow", (0, 0)), + ("Copf", (0, 0)), + ("NotSucceed", (0, 0)), + ("DotDot", (0, 0)), + ("NotVerticalB", (0, 0)), + ("Vvdash;", (8874, 0)), + ("trianglerighteq;", (8885, 0)), + ("szli", (0, 0)), + ("ntriangleright;", (8939, 0)), + ("short", (0, 0)), + ("mop", (0, 0)), + ("leftrightarrows;", (8646, 0)), + ("ufi", (0, 0)), + ("ReverseUpEquilibr", (0, 0)), + ("Gamma", (0, 0)), + ("NotLeftT", (0, 0)), + ("flat;", (9837, 0)), + ("Pre", (0, 0)), + ("looparrowright", (0, 0)), + ("glj", (0, 0)), + ("boxdL;", (9557, 0)), + ("ThickSp", (0, 0)), + ("shortparallel;", (8741, 0)), + ("dtdot", (0, 0)), + ("sfrow", (0, 0)), + ("UpperRightArr", (0, 0)), + ("suphsub", (0, 0)), + ("Gcy", (0, 0)), + ("otilde", (245, 0)), + ("ldrushar;", (10571, 0)), + ("nsmid", (0, 0)), + ("HumpEqual;", (8783, 0)), + ("THO", (0, 0)), + ("ReverseUpEquilibrium", (0, 0)), + ("nVD", (0, 0)), + ("CircleT", (0, 0)), + ("Tcaro", (0, 0)), + ("VerticalBar;", (8739, 0)), + ("LeftTriangle;", (8882, 0)), + ("divideont", (0, 0)), + ("Updown", (0, 0)), + ("Rcar", (0, 0)), + ("Dop", (0, 0)), + ("cues", (0, 0)), + ("odas", (0, 0)), + ("Rul", (0, 0)), + ("UnderParenthesis;", (9181, 0)), + ("checkm", (0, 0)), + ("OpenCurlyQuo", (0, 0)), + ("RoundImpl", (0, 0)), + ("Bar", (0, 0)), + ("OpenCurlyDoubleQuote", (0, 0)), + ("Cscr;", (119966, 0)), + ("sqsub;", (8847, 0)), + ("hsla", (0, 0)), + ("orderof;", (8500, 0)), + ("mfr", (0, 0)), + ("ldca;", (10550, 0)), + ("Jcir", (0, 0)), + ("yop", (0, 0)), + ("DoubleContourI", (0, 0)), + ("Uacute", (218, 0)), + ("ll", (0, 0)), + ("DoubleV", (0, 0)), + ("diams", (0, 0)), + ("vsu", (0, 0)), + ("csc", (0, 0)), + ("backco", (0, 0)), + ("orarr;", (8635, 0)), + ("dig", (0, 0)), + ("hksearow;", (10533, 0)), + ("nvlArr", (0, 0)), + ("NotNestedGreate", (0, 0)), + ("demptyv", (0, 0)), + ("Vvdas", (0, 0)), + ("boxUr", (0, 0)), + ("Th", (0, 0)), + ("circlearrowrigh", (0, 0)), + ("Hor", (0, 0)), + ("CirclePlu", (0, 0)), + ("jopf", (0, 0)), + ("DDotr", (0, 0)), + ("rAa", (0, 0)), + ("circled", (0, 0)), + ("pointin", (0, 0)), + ("varsubsetn", (0, 0)), + ("lfish", (0, 0)), + ("DownRightV", (0, 0)), + ("varsupsetneqq;", (10956, 65024)), + ("drcorn;", (8991, 0)), + ("integers;", (8484, 0)), + ("NotSquareSubsetE", (0, 0)), + ("UpArrow;", (8593, 0)), + ("lver", (0, 0)), + ("iiin", (0, 0)), + ("NotGreaterGr", (0, 0)), + ("gnap", (0, 0)), + ("measuredang", (0, 0)), + ("bott", (0, 0)), + ("aacu", (0, 0)), + ("xnis;", (8955, 0)), + ("planck", (0, 0)), + ("Uogon", (0, 0)), + ("Xi", (0, 0)), + ("dlco", (0, 0)), + ("Longleftrightar", (0, 0)), + ("Equilibri", (0, 0)), + ("Iog", (0, 0)), + ("cce", (0, 0)), + ("smt", (0, 0)), + ("DownRightTeeVector", (0, 0)), + ("zwnj", (0, 0)), + ("iacut", (0, 0)), + ("Longr", (0, 0)), + ("DownLeftRightVecto", (0, 0)), + ("Bcy", (0, 0)), + ("wedge;", (8743, 0)), + ("wci", (0, 0)), + ("dzig", (0, 0)), + ("xvee", (0, 0)), + ("UnderBra", (0, 0)), + ("ccirc", (0, 0)), + ("Elemen", (0, 0)), + ("ltd", (0, 0)), + ("lesssi", (0, 0)), + ("ngE;", (8807, 824)), + ("lbrksl", (0, 0)), + ("CounterClockwis", (0, 0)), + ("dotm", (0, 0)), + ("NegativeThickSpace;", (8203, 0)), + ("Bernoullis", (0, 0)), + ("CounterClock", (0, 0)), + ("CounterCl", (0, 0)), + ("Und", (0, 0)), + ("eu", (0, 0)), + ("wed", (0, 0)), + ("bsc", (0, 0)), + ("Uarroc", (0, 0)), + ("dwan", (0, 0)), + ("hooklef", (0, 0)), + ("InvisibleTi", (0, 0)), + ("kcy;", (1082, 0)), + ("Star", (0, 0)), + ("kappav", (0, 0)), + ("eth;", (240, 0)), + ("DiacriticalAcute;", (180, 0)), + ("acirc", (226, 0)), + ("HARDcy", (0, 0)), + ("NotPrecedesE", (0, 0)), + ("bowt", (0, 0)), + ("abr", (0, 0)), + ("loop", (0, 0)), + ("upharpoonle", (0, 0)), + ("bigsqcu", (0, 0)), + ("pi", (0, 0)), + ("rn", (0, 0)), + ("boxvr;", (9500, 0)), + ("angms", (0, 0)), + ("blacktria", (0, 0)), + ("LongRi", (0, 0)), + ("LeftF", (0, 0)), + ("Ch", (0, 0)), + ("UpDo", (0, 0)), + ("Aacute", (193, 0)), + ("eqslantle", (0, 0)), + ("dlcrop", (0, 0)), + ("emptyse", (0, 0)), + ("al", (0, 0)), + ("EmptyVerySmall", (0, 0)), + ("DownLeftRightV", (0, 0)), + ("sa", (0, 0)), + ("ver", (0, 0)), + ("preccurlyeq;", (8828, 0)), + ("Congrue", (0, 0)), + ("Hat;", (94, 0)), + ("nesim;", (8770, 824)), + ("coloneq", (0, 0)), + ("Alp", (0, 0)), + ("boxuL", (0, 0)), + ("smep", (0, 0)), + ("LowerLeftArr", (0, 0)), + ("nges;", (10878, 824)), + ("primes", (0, 0)), + ("hookleftar", (0, 0)), + ("ClockwiseContourIntegral;", (8754, 0)), + ("roplus;", (10798, 0)), + ("ntriangle", (0, 0)), + ("xwedge", (0, 0)), + ("rights", (0, 0)), + ("lmousta", (0, 0)), + ("Auml", (196, 0)), + ("RightDoubleBr", (0, 0)), + ("circledda", (0, 0)), + ("Cacu", (0, 0)), + ("uacu", (0, 0)), + ("precappro", (0, 0)), + ("targ", (0, 0)), + ("sqcup;", (8852, 0)), + ("Aacut", (0, 0)), + ("vzigzag", (0, 0)), + ("strai", (0, 0)), + ("LeftTriangleB", (0, 0)), + ("NotLessGreate", (0, 0)), + ("Po", (0, 0)), + ("cirfnin", (0, 0)), + ("nshor", (0, 0)), + ("bp", (0, 0)), + ("ograve;", (242, 0)), + ("ugrav", (0, 0)), + ("hkswar", (0, 0)), + ("tf", (0, 0)), + ("dstrok", (0, 0)), + ("rarrf", (0, 0)), + ("oelig", (0, 0)), + ("Dstrok", (0, 0)), + ("gam", (0, 0)), + ("sqsubse", (0, 0)), + ("Jsc", (0, 0)), + ("Supers", (0, 0)), + ("kappav;", (1008, 0)), + ("curar", (0, 0)), + ("ino", (0, 0)), + ("angrtvb", (0, 0)), + ("os", (0, 0)), + ("lbb", (0, 0)), + ("frac16", (0, 0)), + ("gtdot;", (8919, 0)), + ("Kopf;", (120130, 0)), + ("prurel;", (8880, 0)), + ("THORN;", (222, 0)), + ("TildeTi", (0, 0)), + ("lBar", (0, 0)), + ("blacktriangleleft", (0, 0)), + ("dlcrop;", (8973, 0)), + ("CounterClockwise", (0, 0)), + ("isinv", (0, 0)), + ("Proportion", (0, 0)), + ("DownRightVectorBa", (0, 0)), + ("mp;", (8723, 0)), + ("varn", (0, 0)), + ("LessSlantEqua", (0, 0)), + ("mco", (0, 0)), + ("Jse", (0, 0)), + ("rthre", (0, 0)), + ("Udbla", (0, 0)), + ("NegativeThickSp", (0, 0)), + ("LongLeftRigh", (0, 0)), + ("Theta;", (920, 0)), + ("wscr", (0, 0)), + ("SquareSuper", (0, 0)), + ("nap", (0, 0)), + ("gtqu", (0, 0)), + ("doublebarwe", (0, 0)), + ("ssetm", (0, 0)), + ("longrighta", (0, 0)), + ("PrecedesT", (0, 0)), + ("lop", (0, 0)), + ("Itilde;", (296, 0)), + ("sup2", (178, 0)), + ("RuleD", (0, 0)), + ("Fouriertrf", (0, 0)), + ("flli", (0, 0)), + ("multima", (0, 0)), + ("Delta;", (916, 0)), + ("DoubleLon", (0, 0)), + ("rBarr", (0, 0)), + ("smal", (0, 0)), + ("DownLeftVect", (0, 0)), + ("Rfr;", (8476, 0)), + ("LeftU", (0, 0)), + ("helli", (0, 0)), + ("Gammad;", (988, 0)), + ("righthar", (0, 0)), + ("nsce", (0, 0)), + ("spar", (0, 0)), + ("nGt;", (8811, 8402)), + ("ud", (0, 0)), + ("varpi", (0, 0)), + ("Og", (0, 0)), + ("Leftarr", (0, 0)), + ("Mediu", (0, 0)), + ("plusmn;", (177, 0)), + ("RightTriangle", (0, 0)), + ("ncon", (0, 0)), + ("Nca", (0, 0)), + ("napE", (0, 0)), + ("succneqq;", (10934, 0)), + ("Ubrc", (0, 0)), + ("divide;", (247, 0)), + ("kg", (0, 0)), + ("topcir;", (10993, 0)), + ("LeftDownTee", (0, 0)), + ("NegativeVeryTh", (0, 0)), + ("fema", (0, 0)), + ("frac15", (0, 0)), + ("scn", (0, 0)), + ("RightTeeVe", (0, 0)), + ("blackl", (0, 0)), + ("Shor", (0, 0)), + ("DoubleLeftArrow;", (8656, 0)), + ("Rr", (0, 0)), + ("ngeqq", (0, 0)), + ("Uarrocir;", (10569, 0)), + ("NotRev", (0, 0)), + ("NotDoubleVerti", (0, 0)), + ("Lcar", (0, 0)), + ("LeftTeeArr", (0, 0)), + ("supsu", (0, 0)), + ("PrecedesTi", (0, 0)), + ("oci", (0, 0)), + ("angm", (0, 0)), + ("fsc", (0, 0)), + ("complem", (0, 0)), + ("straightphi;", (981, 0)), + ("sqsupe;", (8850, 0)), + ("LongRightArrow;", (10230, 0)), + ("dbla", (0, 0)), + ("Psi;", (936, 0)), + ("drbk", (0, 0)), + ("ring;", (730, 0)), + ("leftleftarrows;", (8647, 0)), + ("ntrianglerighteq;", (8941, 0)), + ("updownarro", (0, 0)), + ("hsl", (0, 0)), + ("ClockwiseCo", (0, 0)), + ("imath", (0, 0)), + ("LeftTeeA", (0, 0)), + ("hstro", (0, 0)), + ("NotHum", (0, 0)), + ("Re;", (8476, 0)), + ("ycir", (0, 0)), + ("subsu", (0, 0)), + ("wre", (0, 0)), + ("cwconint", (0, 0)), + ("NotSucceedsTild", (0, 0)), + ("ntrian", (0, 0)), + ("lHar", (0, 0)), + ("Prime", (0, 0)), + ("SmallCircl", (0, 0)), + ("Backsl", (0, 0)), + ("euml;", (235, 0)), + ("ntl", (0, 0)), + ("Fop", (0, 0)), + ("lcy;", (1083, 0)), + ("doublebarw", (0, 0)), + ("Oac", (0, 0)), + ("zdot;", (380, 0)), + ("ReverseUpEqu", (0, 0)), + ("ucir", (0, 0)), + ("Interse", (0, 0)), + ("Otilde;", (213, 0)), + ("rflo", (0, 0)), + ("LeftVectorBar", (0, 0)), + ("gtrsim", (0, 0)), + ("subn", (0, 0)), + ("spar;", (8741, 0)), + ("Tc", (0, 0)), + ("UpArr", (0, 0)), + ("Ccir", (0, 0)), + ("RightAngleBracket", (0, 0)), + ("udarr", (0, 0)), + ("uwan", (0, 0)), + ("club", (0, 0)), + ("lopf;", (120157, 0)), + ("xharr", (0, 0)), + ("xma", (0, 0)), + ("ltci", (0, 0)), + ("nw", (0, 0)), + ("FilledVerySm", (0, 0)), + ("hs", (0, 0)), + ("UpperLeftArrow", (0, 0)), + ("NotSuperset", (0, 0)), + ("SHCHc", (0, 0)), + ("Rscr", (0, 0)), + ("FilledVerySma", (0, 0)), + ("trimin", (0, 0)), + ("uring;", (367, 0)), + ("lAtai", (0, 0)), + ("Equilib", (0, 0)), + ("varpropt", (0, 0)), + ("inod", (0, 0)), + ("Longrightarrow;", (10233, 0)), + ("Yf", (0, 0)), + ("Bo", (0, 0)), + ("Round", (0, 0)), + ("capb", (0, 0)), + ("ecir", (0, 0)), + ("NotHumpDownHump", (0, 0)), + ("curarrm", (0, 0)), + ("Aac", (0, 0)), + ("lthree;", (8907, 0)), + ("olcir", (0, 0)), + ("Intersection;", (8898, 0)), + ], +}; diff --git a/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/output b/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/output new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/root-output b/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/root-output new file mode 100644 index 0000000..fc96522 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/stderr b/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/markup5ever-f4ab27bb4a83fcb5/build-script-build b/src-tauri/tms_service/target/owl/debug/build/markup5ever-f4ab27bb4a83fcb5/build-script-build new file mode 100755 index 0000000..f6ef02d Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/markup5ever-f4ab27bb4a83fcb5/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/markup5ever-f4ab27bb4a83fcb5/build_script_build-f4ab27bb4a83fcb5 b/src-tauri/tms_service/target/owl/debug/build/markup5ever-f4ab27bb4a83fcb5/build_script_build-f4ab27bb4a83fcb5 new file mode 100755 index 0000000..f6ef02d Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/markup5ever-f4ab27bb4a83fcb5/build_script_build-f4ab27bb4a83fcb5 differ diff --git a/src-tauri/tms_service/target/owl/debug/build/markup5ever-f4ab27bb4a83fcb5/build_script_build-f4ab27bb4a83fcb5.d b/src-tauri/tms_service/target/owl/debug/build/markup5ever-f4ab27bb4a83fcb5/build_script_build-f4ab27bb4a83fcb5.d new file mode 100644 index 0000000..0620552 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/markup5ever-f4ab27bb4a83fcb5/build_script_build-f4ab27bb4a83fcb5.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/markup5ever-f4ab27bb4a83fcb5/build_script_build-f4ab27bb4a83fcb5: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/build.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/entities.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/markup5ever-f4ab27bb4a83fcb5/build_script_build-f4ab27bb4a83fcb5.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/build.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/entities.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/build.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/entities.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/native-tls-baaa5add28f621bf/build-script-build b/src-tauri/tms_service/target/owl/debug/build/native-tls-baaa5add28f621bf/build-script-build new file mode 100755 index 0000000..81578ce Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/native-tls-baaa5add28f621bf/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/native-tls-baaa5add28f621bf/build_script_build-baaa5add28f621bf b/src-tauri/tms_service/target/owl/debug/build/native-tls-baaa5add28f621bf/build_script_build-baaa5add28f621bf new file mode 100755 index 0000000..81578ce Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/native-tls-baaa5add28f621bf/build_script_build-baaa5add28f621bf differ diff --git a/src-tauri/tms_service/target/owl/debug/build/native-tls-baaa5add28f621bf/build_script_build-baaa5add28f621bf.d b/src-tauri/tms_service/target/owl/debug/build/native-tls-baaa5add28f621bf/build_script_build-baaa5add28f621bf.d new file mode 100644 index 0000000..037340c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/native-tls-baaa5add28f621bf/build_script_build-baaa5add28f621bf.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/native-tls-baaa5add28f621bf/build_script_build-baaa5add28f621bf: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.18/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/native-tls-baaa5add28f621bf/build_script_build-baaa5add28f621bf.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.18/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.18/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/native-tls-c5cbe88a7e59497f/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/native-tls-c5cbe88a7e59497f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/native-tls-c5cbe88a7e59497f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/native-tls-c5cbe88a7e59497f/output b/src-tauri/tms_service/target/owl/debug/build/native-tls-c5cbe88a7e59497f/output new file mode 100644 index 0000000..79d755c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/native-tls-c5cbe88a7e59497f/output @@ -0,0 +1 @@ +cargo::rustc-check-cfg=cfg(have_min_max_version) diff --git a/src-tauri/tms_service/target/owl/debug/build/native-tls-c5cbe88a7e59497f/root-output b/src-tauri/tms_service/target/owl/debug/build/native-tls-c5cbe88a7e59497f/root-output new file mode 100644 index 0000000..4f762b8 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/native-tls-c5cbe88a7e59497f/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/native-tls-c5cbe88a7e59497f/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/native-tls-c5cbe88a7e59497f/stderr b/src-tauri/tms_service/target/owl/debug/build/native-tls-c5cbe88a7e59497f/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-bc347394e967b28d/build-script-build b/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-bc347394e967b28d/build-script-build new file mode 100755 index 0000000..563d7d6 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-bc347394e967b28d/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-bc347394e967b28d/build_script_build-bc347394e967b28d b/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-bc347394e967b28d/build_script_build-bc347394e967b28d new file mode 100755 index 0000000..563d7d6 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-bc347394e967b28d/build_script_build-bc347394e967b28d differ diff --git a/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-bc347394e967b28d/build_script_build-bc347394e967b28d.d b/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-bc347394e967b28d/build_script_build-bc347394e967b28d.d new file mode 100644 index 0000000..b212255 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-bc347394e967b28d/build_script_build-bc347394e967b28d.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-bc347394e967b28d/build_script_build-bc347394e967b28d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-bc347394e967b28d/build_script_build-bc347394e967b28d.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-d98f93d13955bb2e/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-d98f93d13955bb2e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-d98f93d13955bb2e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-d98f93d13955bb2e/output b/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-d98f93d13955bb2e/output new file mode 100644 index 0000000..e4a87f2 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-d98f93d13955bb2e/output @@ -0,0 +1,2 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(tsan_enabled) diff --git a/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-d98f93d13955bb2e/root-output b/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-d98f93d13955bb2e/root-output new file mode 100644 index 0000000..e9e4a21 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-d98f93d13955bb2e/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-d98f93d13955bb2e/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-d98f93d13955bb2e/stderr b/src-tauri/tms_service/target/owl/debug/build/parking_lot_core-d98f93d13955bb2e/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/proc-macro2-56b97d3ca67ea318/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/proc-macro2-56b97d3ca67ea318/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/proc-macro2-56b97d3ca67ea318/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/proc-macro2-56b97d3ca67ea318/output b/src-tauri/tms_service/target/owl/debug/build/proc-macro2-56b97d3ca67ea318/output new file mode 100644 index 0000000..c17ff92 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/proc-macro2-56b97d3ca67ea318/output @@ -0,0 +1,19 @@ +cargo:rustc-check-cfg=cfg(fuzzing) +cargo:rustc-check-cfg=cfg(no_is_available) +cargo:rustc-check-cfg=cfg(no_literal_byte_character) +cargo:rustc-check-cfg=cfg(no_literal_c_string) +cargo:rustc-check-cfg=cfg(no_source_text) +cargo:rustc-check-cfg=cfg(proc_macro_span) +cargo:rustc-check-cfg=cfg(proc_macro_span_file) +cargo:rustc-check-cfg=cfg(proc_macro_span_location) +cargo:rustc-check-cfg=cfg(procmacro2_backtrace) +cargo:rustc-check-cfg=cfg(procmacro2_build_probe) +cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) +cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) +cargo:rustc-check-cfg=cfg(randomize_layout) +cargo:rustc-check-cfg=cfg(span_locations) +cargo:rustc-check-cfg=cfg(super_unstable) +cargo:rustc-check-cfg=cfg(wrap_proc_macro) +cargo:rerun-if-changed=src/probe/proc_macro_span.rs +cargo:rerun-if-changed=src/probe/proc_macro_span.rs +cargo:rustc-cfg=wrap_proc_macro diff --git a/src-tauri/tms_service/target/owl/debug/build/proc-macro2-56b97d3ca67ea318/root-output b/src-tauri/tms_service/target/owl/debug/build/proc-macro2-56b97d3ca67ea318/root-output new file mode 100644 index 0000000..8c0ebc8 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/proc-macro2-56b97d3ca67ea318/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/proc-macro2-56b97d3ca67ea318/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/proc-macro2-56b97d3ca67ea318/stderr b/src-tauri/tms_service/target/owl/debug/build/proc-macro2-56b97d3ca67ea318/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/proc-macro2-f28970d9177e04fe/build-script-build b/src-tauri/tms_service/target/owl/debug/build/proc-macro2-f28970d9177e04fe/build-script-build new file mode 100755 index 0000000..51532e4 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/proc-macro2-f28970d9177e04fe/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/proc-macro2-f28970d9177e04fe/build_script_build-f28970d9177e04fe b/src-tauri/tms_service/target/owl/debug/build/proc-macro2-f28970d9177e04fe/build_script_build-f28970d9177e04fe new file mode 100755 index 0000000..51532e4 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/proc-macro2-f28970d9177e04fe/build_script_build-f28970d9177e04fe differ diff --git a/src-tauri/tms_service/target/owl/debug/build/proc-macro2-f28970d9177e04fe/build_script_build-f28970d9177e04fe.d b/src-tauri/tms_service/target/owl/debug/build/proc-macro2-f28970d9177e04fe/build_script_build-f28970d9177e04fe.d new file mode 100644 index 0000000..d078260 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/proc-macro2-f28970d9177e04fe/build_script_build-f28970d9177e04fe.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/proc-macro2-f28970d9177e04fe/build_script_build-f28970d9177e04fe: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/proc-macro2-f28970d9177e04fe/build_script_build-f28970d9177e04fe.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/quote-3927105fa2133ed9/build-script-build b/src-tauri/tms_service/target/owl/debug/build/quote-3927105fa2133ed9/build-script-build new file mode 100755 index 0000000..c108049 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/quote-3927105fa2133ed9/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/quote-3927105fa2133ed9/build_script_build-3927105fa2133ed9 b/src-tauri/tms_service/target/owl/debug/build/quote-3927105fa2133ed9/build_script_build-3927105fa2133ed9 new file mode 100755 index 0000000..c108049 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/quote-3927105fa2133ed9/build_script_build-3927105fa2133ed9 differ diff --git a/src-tauri/tms_service/target/owl/debug/build/quote-3927105fa2133ed9/build_script_build-3927105fa2133ed9.d b/src-tauri/tms_service/target/owl/debug/build/quote-3927105fa2133ed9/build_script_build-3927105fa2133ed9.d new file mode 100644 index 0000000..a4f3469 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/quote-3927105fa2133ed9/build_script_build-3927105fa2133ed9.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/quote-3927105fa2133ed9/build_script_build-3927105fa2133ed9: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/quote-3927105fa2133ed9/build_script_build-3927105fa2133ed9.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/quote-991ed0d757635f6d/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/quote-991ed0d757635f6d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/quote-991ed0d757635f6d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/quote-991ed0d757635f6d/output b/src-tauri/tms_service/target/owl/debug/build/quote-991ed0d757635f6d/output new file mode 100644 index 0000000..6d81eca --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/quote-991ed0d757635f6d/output @@ -0,0 +1,2 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) diff --git a/src-tauri/tms_service/target/owl/debug/build/quote-991ed0d757635f6d/root-output b/src-tauri/tms_service/target/owl/debug/build/quote-991ed0d757635f6d/root-output new file mode 100644 index 0000000..765ba1f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/quote-991ed0d757635f6d/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/quote-991ed0d757635f6d/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/quote-991ed0d757635f6d/stderr b/src-tauri/tms_service/target/owl/debug/build/quote-991ed0d757635f6d/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/rustix-a1a15ac22aba0ae5/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/rustix-a1a15ac22aba0ae5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/rustix-a1a15ac22aba0ae5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/rustix-a1a15ac22aba0ae5/out/rustix_test_can_compile b/src-tauri/tms_service/target/owl/debug/build/rustix-a1a15ac22aba0ae5/out/rustix_test_can_compile new file mode 100644 index 0000000..47209dc Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/rustix-a1a15ac22aba0ae5/out/rustix_test_can_compile differ diff --git a/src-tauri/tms_service/target/owl/debug/build/rustix-a1a15ac22aba0ae5/output b/src-tauri/tms_service/target/owl/debug/build/rustix-a1a15ac22aba0ae5/output new file mode 100644 index 0000000..78d0872 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/rustix-a1a15ac22aba0ae5/output @@ -0,0 +1,12 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-cfg=static_assertions +cargo:rustc-cfg=lower_upper_exp_for_non_zero +cargo:rustc-cfg=rustc_diagnostics +cargo:rustc-cfg=libc +cargo:rustc-cfg=apple +cargo:rustc-cfg=bsd +cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_EXPERIMENTAL_ASM +cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_LIBC +cargo:rerun-if-env-changed=CARGO_FEATURE_USE_LIBC +cargo:rerun-if-env-changed=CARGO_FEATURE_RUSTC_DEP_OF_STD +cargo:rerun-if-env-changed=CARGO_CFG_MIRI diff --git a/src-tauri/tms_service/target/owl/debug/build/rustix-a1a15ac22aba0ae5/root-output b/src-tauri/tms_service/target/owl/debug/build/rustix-a1a15ac22aba0ae5/root-output new file mode 100644 index 0000000..454bbf2 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/rustix-a1a15ac22aba0ae5/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/rustix-a1a15ac22aba0ae5/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/rustix-a1a15ac22aba0ae5/stderr b/src-tauri/tms_service/target/owl/debug/build/rustix-a1a15ac22aba0ae5/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/rustix-a3aa635e15144d4d/build-script-build b/src-tauri/tms_service/target/owl/debug/build/rustix-a3aa635e15144d4d/build-script-build new file mode 100755 index 0000000..97b0282 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/rustix-a3aa635e15144d4d/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/rustix-a3aa635e15144d4d/build_script_build-a3aa635e15144d4d b/src-tauri/tms_service/target/owl/debug/build/rustix-a3aa635e15144d4d/build_script_build-a3aa635e15144d4d new file mode 100755 index 0000000..97b0282 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/rustix-a3aa635e15144d4d/build_script_build-a3aa635e15144d4d differ diff --git a/src-tauri/tms_service/target/owl/debug/build/rustix-a3aa635e15144d4d/build_script_build-a3aa635e15144d4d.d b/src-tauri/tms_service/target/owl/debug/build/rustix-a3aa635e15144d4d/build_script_build-a3aa635e15144d4d.d new file mode 100644 index 0000000..41ee346 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/rustix-a3aa635e15144d4d/build_script_build-a3aa635e15144d4d.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/rustix-a3aa635e15144d4d/build_script_build-a3aa635e15144d4d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/rustix-a3aa635e15144d4d/build_script_build-a3aa635e15144d4d.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/selectors-5eab97f267ab567b/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/selectors-5eab97f267ab567b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/selectors-5eab97f267ab567b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/selectors-5eab97f267ab567b/out/ascii_case_insensitive_html_attributes.rs b/src-tauri/tms_service/target/owl/debug/build/selectors-5eab97f267ab567b/out/ascii_case_insensitive_html_attributes.rs new file mode 100644 index 0000000..0fa77f2 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/selectors-5eab97f267ab567b/out/ascii_case_insensitive_html_attributes.rs @@ -0,0 +1,63 @@ +{ static SET: ::phf::Set<&'static str> = ::phf::Set { map: ::phf::Map { + key: 10121458955350035957, + disps: &[ + (0, 2), + (8, 17), + (1, 5), + (0, 0), + (0, 20), + (0, 3), + (15, 2), + (17, 19), + (8, 9), + (0, 15), + ], + entries: &[ + ("dir", ()), + ("http-equiv", ()), + ("rel", ()), + ("enctype", ()), + ("align", ()), + ("accept", ()), + ("nohref", ()), + ("lang", ()), + ("bgcolor", ()), + ("direction", ()), + ("valign", ()), + ("checked", ()), + ("frame", ()), + ("link", ()), + ("accept-charset", ()), + ("hreflang", ()), + ("text", ()), + ("valuetype", ()), + ("language", ()), + ("nowrap", ()), + ("vlink", ()), + ("disabled", ()), + ("noshade", ()), + ("codetype", ()), + ("defer", ()), + ("noresize", ()), + ("target", ()), + ("scrolling", ()), + ("rules", ()), + ("scope", ()), + ("rev", ()), + ("media", ()), + ("method", ()), + ("charset", ()), + ("alink", ()), + ("selected", ()), + ("multiple", ()), + ("color", ()), + ("shape", ()), + ("type", ()), + ("clear", ()), + ("compact", ()), + ("face", ()), + ("declare", ()), + ("axis", ()), + ("readonly", ()), + ], +} }; &SET } \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/selectors-5eab97f267ab567b/output b/src-tauri/tms_service/target/owl/debug/build/selectors-5eab97f267ab567b/output new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/selectors-5eab97f267ab567b/root-output b/src-tauri/tms_service/target/owl/debug/build/selectors-5eab97f267ab567b/root-output new file mode 100644 index 0000000..acfd356 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/selectors-5eab97f267ab567b/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/selectors-5eab97f267ab567b/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/selectors-5eab97f267ab567b/stderr b/src-tauri/tms_service/target/owl/debug/build/selectors-5eab97f267ab567b/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/selectors-9d4294a412797c05/build-script-build b/src-tauri/tms_service/target/owl/debug/build/selectors-9d4294a412797c05/build-script-build new file mode 100755 index 0000000..9380864 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/selectors-9d4294a412797c05/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/selectors-9d4294a412797c05/build_script_build-9d4294a412797c05 b/src-tauri/tms_service/target/owl/debug/build/selectors-9d4294a412797c05/build_script_build-9d4294a412797c05 new file mode 100755 index 0000000..9380864 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/selectors-9d4294a412797c05/build_script_build-9d4294a412797c05 differ diff --git a/src-tauri/tms_service/target/owl/debug/build/selectors-9d4294a412797c05/build_script_build-9d4294a412797c05.d b/src-tauri/tms_service/target/owl/debug/build/selectors-9d4294a412797c05/build_script_build-9d4294a412797c05.d new file mode 100644 index 0000000..1cee25b --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/selectors-9d4294a412797c05/build_script_build-9d4294a412797c05.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/selectors-9d4294a412797c05/build_script_build-9d4294a412797c05: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/selectors-9d4294a412797c05/build_script_build-9d4294a412797c05.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/serde-0bbedde18dd46c3e/build-script-build b/src-tauri/tms_service/target/owl/debug/build/serde-0bbedde18dd46c3e/build-script-build new file mode 100755 index 0000000..ec43aa0 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/serde-0bbedde18dd46c3e/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/serde-0bbedde18dd46c3e/build_script_build-0bbedde18dd46c3e b/src-tauri/tms_service/target/owl/debug/build/serde-0bbedde18dd46c3e/build_script_build-0bbedde18dd46c3e new file mode 100755 index 0000000..ec43aa0 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/serde-0bbedde18dd46c3e/build_script_build-0bbedde18dd46c3e differ diff --git a/src-tauri/tms_service/target/owl/debug/build/serde-0bbedde18dd46c3e/build_script_build-0bbedde18dd46c3e.d b/src-tauri/tms_service/target/owl/debug/build/serde-0bbedde18dd46c3e/build_script_build-0bbedde18dd46c3e.d new file mode 100644 index 0000000..088c7d1 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/serde-0bbedde18dd46c3e/build_script_build-0bbedde18dd46c3e.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/serde-0bbedde18dd46c3e/build_script_build-0bbedde18dd46c3e: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/serde-0bbedde18dd46c3e/build_script_build-0bbedde18dd46c3e.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/serde-a42d2041820f825d/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/serde-a42d2041820f825d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/serde-a42d2041820f825d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/serde-a42d2041820f825d/out/private.rs b/src-tauri/tms_service/target/owl/debug/build/serde-a42d2041820f825d/out/private.rs new file mode 100644 index 0000000..ed2927e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/serde-a42d2041820f825d/out/private.rs @@ -0,0 +1,6 @@ +#[doc(hidden)] +pub mod __private228 { + #[doc(hidden)] + pub use crate::private::*; +} +use serde_core::__private228 as serde_core_private; diff --git a/src-tauri/tms_service/target/owl/debug/build/serde-a42d2041820f825d/output b/src-tauri/tms_service/target/owl/debug/build/serde-a42d2041820f825d/output new file mode 100644 index 0000000..854cb53 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/serde-a42d2041820f825d/output @@ -0,0 +1,13 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-cfg=if_docsrs_then_no_serde_core +cargo:rustc-check-cfg=cfg(feature, values("result")) +cargo:rustc-check-cfg=cfg(if_docsrs_then_no_serde_core) +cargo:rustc-check-cfg=cfg(no_core_cstr) +cargo:rustc-check-cfg=cfg(no_core_error) +cargo:rustc-check-cfg=cfg(no_core_net) +cargo:rustc-check-cfg=cfg(no_core_num_saturating) +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) +cargo:rustc-check-cfg=cfg(no_serde_derive) +cargo:rustc-check-cfg=cfg(no_std_atomic) +cargo:rustc-check-cfg=cfg(no_std_atomic64) +cargo:rustc-check-cfg=cfg(no_target_has_atomic) diff --git a/src-tauri/tms_service/target/owl/debug/build/serde-a42d2041820f825d/root-output b/src-tauri/tms_service/target/owl/debug/build/serde-a42d2041820f825d/root-output new file mode 100644 index 0000000..f951665 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/serde-a42d2041820f825d/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/serde-a42d2041820f825d/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/serde-a42d2041820f825d/stderr b/src-tauri/tms_service/target/owl/debug/build/serde-a42d2041820f825d/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/serde_core-02c6f34449303cd1/build-script-build b/src-tauri/tms_service/target/owl/debug/build/serde_core-02c6f34449303cd1/build-script-build new file mode 100755 index 0000000..b24ff11 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/serde_core-02c6f34449303cd1/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/serde_core-02c6f34449303cd1/build_script_build-02c6f34449303cd1 b/src-tauri/tms_service/target/owl/debug/build/serde_core-02c6f34449303cd1/build_script_build-02c6f34449303cd1 new file mode 100755 index 0000000..b24ff11 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/serde_core-02c6f34449303cd1/build_script_build-02c6f34449303cd1 differ diff --git a/src-tauri/tms_service/target/owl/debug/build/serde_core-02c6f34449303cd1/build_script_build-02c6f34449303cd1.d b/src-tauri/tms_service/target/owl/debug/build/serde_core-02c6f34449303cd1/build_script_build-02c6f34449303cd1.d new file mode 100644 index 0000000..5a3f0df --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/serde_core-02c6f34449303cd1/build_script_build-02c6f34449303cd1.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/serde_core-02c6f34449303cd1/build_script_build-02c6f34449303cd1: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/serde_core-02c6f34449303cd1/build_script_build-02c6f34449303cd1.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/serde_core-bf2ebacef49fbf2e/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/serde_core-bf2ebacef49fbf2e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/serde_core-bf2ebacef49fbf2e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/serde_core-bf2ebacef49fbf2e/out/private.rs b/src-tauri/tms_service/target/owl/debug/build/serde_core-bf2ebacef49fbf2e/out/private.rs new file mode 100644 index 0000000..08f232b --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/serde_core-bf2ebacef49fbf2e/out/private.rs @@ -0,0 +1,5 @@ +#[doc(hidden)] +pub mod __private228 { + #[doc(hidden)] + pub use crate::private::*; +} diff --git a/src-tauri/tms_service/target/owl/debug/build/serde_core-bf2ebacef49fbf2e/output b/src-tauri/tms_service/target/owl/debug/build/serde_core-bf2ebacef49fbf2e/output new file mode 100644 index 0000000..98a6653 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/serde_core-bf2ebacef49fbf2e/output @@ -0,0 +1,11 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(if_docsrs_then_no_serde_core) +cargo:rustc-check-cfg=cfg(no_core_cstr) +cargo:rustc-check-cfg=cfg(no_core_error) +cargo:rustc-check-cfg=cfg(no_core_net) +cargo:rustc-check-cfg=cfg(no_core_num_saturating) +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) +cargo:rustc-check-cfg=cfg(no_serde_derive) +cargo:rustc-check-cfg=cfg(no_std_atomic) +cargo:rustc-check-cfg=cfg(no_std_atomic64) +cargo:rustc-check-cfg=cfg(no_target_has_atomic) diff --git a/src-tauri/tms_service/target/owl/debug/build/serde_core-bf2ebacef49fbf2e/root-output b/src-tauri/tms_service/target/owl/debug/build/serde_core-bf2ebacef49fbf2e/root-output new file mode 100644 index 0000000..f71f98f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/serde_core-bf2ebacef49fbf2e/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/serde_core-bf2ebacef49fbf2e/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/serde_core-bf2ebacef49fbf2e/stderr b/src-tauri/tms_service/target/owl/debug/build/serde_core-bf2ebacef49fbf2e/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/serde_json-303d64a5f023c5ab/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/serde_json-303d64a5f023c5ab/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/serde_json-303d64a5f023c5ab/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/serde_json-303d64a5f023c5ab/output b/src-tauri/tms_service/target/owl/debug/build/serde_json-303d64a5f023c5ab/output new file mode 100644 index 0000000..3201077 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/serde_json-303d64a5f023c5ab/output @@ -0,0 +1,3 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(fast_arithmetic, values("32", "64")) +cargo:rustc-cfg=fast_arithmetic="64" diff --git a/src-tauri/tms_service/target/owl/debug/build/serde_json-303d64a5f023c5ab/root-output b/src-tauri/tms_service/target/owl/debug/build/serde_json-303d64a5f023c5ab/root-output new file mode 100644 index 0000000..ed93c14 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/serde_json-303d64a5f023c5ab/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/serde_json-303d64a5f023c5ab/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/serde_json-303d64a5f023c5ab/stderr b/src-tauri/tms_service/target/owl/debug/build/serde_json-303d64a5f023c5ab/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/serde_json-ada7ef9db8800ce4/build-script-build b/src-tauri/tms_service/target/owl/debug/build/serde_json-ada7ef9db8800ce4/build-script-build new file mode 100755 index 0000000..32bb99d Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/serde_json-ada7ef9db8800ce4/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/serde_json-ada7ef9db8800ce4/build_script_build-ada7ef9db8800ce4 b/src-tauri/tms_service/target/owl/debug/build/serde_json-ada7ef9db8800ce4/build_script_build-ada7ef9db8800ce4 new file mode 100755 index 0000000..32bb99d Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/serde_json-ada7ef9db8800ce4/build_script_build-ada7ef9db8800ce4 differ diff --git a/src-tauri/tms_service/target/owl/debug/build/serde_json-ada7ef9db8800ce4/build_script_build-ada7ef9db8800ce4.d b/src-tauri/tms_service/target/owl/debug/build/serde_json-ada7ef9db8800ce4/build_script_build-ada7ef9db8800ce4.d new file mode 100644 index 0000000..256eac2 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/serde_json-ada7ef9db8800ce4/build_script_build-ada7ef9db8800ce4.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/serde_json-ada7ef9db8800ce4/build_script_build-ada7ef9db8800ce4: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/serde_json-ada7ef9db8800ce4/build_script_build-ada7ef9db8800ce4.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-3601a182f2822148/build-script-build b/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-3601a182f2822148/build-script-build new file mode 100755 index 0000000..43a6530 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-3601a182f2822148/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-3601a182f2822148/build_script_build-3601a182f2822148 b/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-3601a182f2822148/build_script_build-3601a182f2822148 new file mode 100755 index 0000000..43a6530 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-3601a182f2822148/build_script_build-3601a182f2822148 differ diff --git a/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-3601a182f2822148/build_script_build-3601a182f2822148.d b/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-3601a182f2822148/build_script_build-3601a182f2822148.d new file mode 100644 index 0000000..39b5583 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-3601a182f2822148/build_script_build-3601a182f2822148.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-3601a182f2822148/build_script_build-3601a182f2822148: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-3601a182f2822148/build_script_build-3601a182f2822148.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-9fb37f9fa01fc53f/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-9fb37f9fa01fc53f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-9fb37f9fa01fc53f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-9fb37f9fa01fc53f/output b/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-9fb37f9fa01fc53f/output new file mode 100644 index 0000000..3ae7162 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-9fb37f9fa01fc53f/output @@ -0,0 +1 @@ +cargo:rustc-link-lib=framework=SystemConfiguration diff --git a/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-9fb37f9fa01fc53f/root-output b/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-9fb37f9fa01fc53f/root-output new file mode 100644 index 0000000..e9d640d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-9fb37f9fa01fc53f/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-9fb37f9fa01fc53f/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-9fb37f9fa01fc53f/stderr b/src-tauri/tms_service/target/owl/debug/build/system-configuration-sys-9fb37f9fa01fc53f/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/thiserror-1c93938e89dffc58/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/thiserror-1c93938e89dffc58/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/thiserror-1c93938e89dffc58/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/thiserror-1c93938e89dffc58/output b/src-tauri/tms_service/target/owl/debug/build/thiserror-1c93938e89dffc58/output new file mode 100644 index 0000000..d96267a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/thiserror-1c93938e89dffc58/output @@ -0,0 +1,5 @@ +cargo:rerun-if-changed=build/probe.rs +cargo:rustc-check-cfg=cfg(error_generic_member_access) +cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) +cargo:rustc-cfg=error_generic_member_access +cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP diff --git a/src-tauri/tms_service/target/owl/debug/build/thiserror-1c93938e89dffc58/root-output b/src-tauri/tms_service/target/owl/debug/build/thiserror-1c93938e89dffc58/root-output new file mode 100644 index 0000000..a54f6fd --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/thiserror-1c93938e89dffc58/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/thiserror-1c93938e89dffc58/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/thiserror-1c93938e89dffc58/stderr b/src-tauri/tms_service/target/owl/debug/build/thiserror-1c93938e89dffc58/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/thiserror-6457224d9763f31b/build-script-build b/src-tauri/tms_service/target/owl/debug/build/thiserror-6457224d9763f31b/build-script-build new file mode 100755 index 0000000..5c5786b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/thiserror-6457224d9763f31b/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/thiserror-6457224d9763f31b/build_script_build-6457224d9763f31b b/src-tauri/tms_service/target/owl/debug/build/thiserror-6457224d9763f31b/build_script_build-6457224d9763f31b new file mode 100755 index 0000000..5c5786b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/thiserror-6457224d9763f31b/build_script_build-6457224d9763f31b differ diff --git a/src-tauri/tms_service/target/owl/debug/build/thiserror-6457224d9763f31b/build_script_build-6457224d9763f31b.d b/src-tauri/tms_service/target/owl/debug/build/thiserror-6457224d9763f31b/build_script_build-6457224d9763f31b.d new file mode 100644 index 0000000..8afe54e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/thiserror-6457224d9763f31b/build_script_build-6457224d9763f31b.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/thiserror-6457224d9763f31b/build_script_build-6457224d9763f31b: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/thiserror-6457224d9763f31b/build_script_build-6457224d9763f31b.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/zerocopy-0ff320101b2a37df/build-script-build b/src-tauri/tms_service/target/owl/debug/build/zerocopy-0ff320101b2a37df/build-script-build new file mode 100755 index 0000000..e45dba4 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/zerocopy-0ff320101b2a37df/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/zerocopy-0ff320101b2a37df/build_script_build-0ff320101b2a37df b/src-tauri/tms_service/target/owl/debug/build/zerocopy-0ff320101b2a37df/build_script_build-0ff320101b2a37df new file mode 100755 index 0000000..e45dba4 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/zerocopy-0ff320101b2a37df/build_script_build-0ff320101b2a37df differ diff --git a/src-tauri/tms_service/target/owl/debug/build/zerocopy-0ff320101b2a37df/build_script_build-0ff320101b2a37df.d b/src-tauri/tms_service/target/owl/debug/build/zerocopy-0ff320101b2a37df/build_script_build-0ff320101b2a37df.d new file mode 100644 index 0000000..fc87bb3 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/zerocopy-0ff320101b2a37df/build_script_build-0ff320101b2a37df.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/zerocopy-0ff320101b2a37df/build_script_build-0ff320101b2a37df: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/zerocopy-0ff320101b2a37df/build_script_build-0ff320101b2a37df.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/zerocopy-8d9851e62f5db96f/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/zerocopy-8d9851e62f5db96f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/zerocopy-8d9851e62f5db96f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/zerocopy-8d9851e62f5db96f/output b/src-tauri/tms_service/target/owl/debug/build/zerocopy-8d9851e62f5db96f/output new file mode 100644 index 0000000..5ad5524 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/zerocopy-8d9851e62f5db96f/output @@ -0,0 +1,22 @@ +cargo:rerun-if-changed=build.rs +cargo:rerun-if-changed=Cargo.toml +cargo:rustc-check-cfg=cfg(no_zerocopy_simd_x86_avx12_1_89_0) +cargo:rustc-check-cfg=cfg(rust, values("1.89.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_core_error_1_81_0) +cargo:rustc-check-cfg=cfg(rust, values("1.81.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_diagnostic_on_unimplemented_1_78_0) +cargo:rustc-check-cfg=cfg(rust, values("1.78.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_generic_bounds_in_const_fn_1_61_0) +cargo:rustc-check-cfg=cfg(rust, values("1.61.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_target_has_atomics_1_60_0) +cargo:rustc-check-cfg=cfg(rust, values("1.60.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_aarch64_simd_1_59_0) +cargo:rustc-check-cfg=cfg(rust, values("1.59.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_panic_in_const_and_vec_try_reserve_1_57_0) +cargo:rustc-check-cfg=cfg(rust, values("1.57.0")) +cargo:rustc-check-cfg=cfg(doc_cfg) +cargo:rustc-check-cfg=cfg(kani) +cargo:rustc-check-cfg=cfg(__ZEROCOPY_INTERNAL_USE_ONLY_NIGHTLY_FEATURES_IN_TESTS) +cargo:rustc-check-cfg=cfg(__ZEROCOPY_INTERNAL_USE_ONLY_DEV_MODE) +cargo:rustc-check-cfg=cfg(coverage_nightly) +cargo:rustc-cfg=no_zerocopy_simd_x86_avx12_1_89_0 diff --git a/src-tauri/tms_service/target/owl/debug/build/zerocopy-8d9851e62f5db96f/root-output b/src-tauri/tms_service/target/owl/debug/build/zerocopy-8d9851e62f5db96f/root-output new file mode 100644 index 0000000..9648510 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/zerocopy-8d9851e62f5db96f/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/zerocopy-8d9851e62f5db96f/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/zerocopy-8d9851e62f5db96f/stderr b/src-tauri/tms_service/target/owl/debug/build/zerocopy-8d9851e62f5db96f/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/build/zmij-90d1754cc6a681e8/build-script-build b/src-tauri/tms_service/target/owl/debug/build/zmij-90d1754cc6a681e8/build-script-build new file mode 100755 index 0000000..19bf18f Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/zmij-90d1754cc6a681e8/build-script-build differ diff --git a/src-tauri/tms_service/target/owl/debug/build/zmij-90d1754cc6a681e8/build_script_build-90d1754cc6a681e8 b/src-tauri/tms_service/target/owl/debug/build/zmij-90d1754cc6a681e8/build_script_build-90d1754cc6a681e8 new file mode 100755 index 0000000..19bf18f Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/build/zmij-90d1754cc6a681e8/build_script_build-90d1754cc6a681e8 differ diff --git a/src-tauri/tms_service/target/owl/debug/build/zmij-90d1754cc6a681e8/build_script_build-90d1754cc6a681e8.d b/src-tauri/tms_service/target/owl/debug/build/zmij-90d1754cc6a681e8/build_script_build-90d1754cc6a681e8.d new file mode 100644 index 0000000..137eb50 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/zmij-90d1754cc6a681e8/build_script_build-90d1754cc6a681e8.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/zmij-90d1754cc6a681e8/build_script_build-90d1754cc6a681e8: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/build.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/zmij-90d1754cc6a681e8/build_script_build-90d1754cc6a681e8.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/build.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/build.rs: diff --git a/src-tauri/tms_service/target/owl/debug/build/zmij-f3baa1218556c29f/invoked.timestamp b/src-tauri/tms_service/target/owl/debug/build/zmij-f3baa1218556c29f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/zmij-f3baa1218556c29f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/zmij-f3baa1218556c29f/output b/src-tauri/tms_service/target/owl/debug/build/zmij-f3baa1218556c29f/output new file mode 100644 index 0000000..c399faa --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/zmij-f3baa1218556c29f/output @@ -0,0 +1,4 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(exhaustive) +cargo:rustc-check-cfg=cfg(zmij_no_select_unpredictable) +cargo:rustc-cfg=zmij_no_select_unpredictable diff --git a/src-tauri/tms_service/target/owl/debug/build/zmij-f3baa1218556c29f/root-output b/src-tauri/tms_service/target/owl/debug/build/zmij-f3baa1218556c29f/root-output new file mode 100644 index 0000000..6dfa43f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/build/zmij-f3baa1218556c29f/root-output @@ -0,0 +1 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/zmij-f3baa1218556c29f/out \ No newline at end of file diff --git a/src-tauri/tms_service/target/owl/debug/build/zmij-f3baa1218556c29f/stderr b/src-tauri/tms_service/target/owl/debug/build/zmij-f3baa1218556c29f/stderr new file mode 100644 index 0000000..e69de29 diff --git a/src-tauri/tms_service/target/owl/debug/deps/ahash-1ca5fee30a3aaf49.d b/src-tauri/tms_service/target/owl/debug/deps/ahash-1ca5fee30a3aaf49.d new file mode 100644 index 0000000..2f67681 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/ahash-1ca5fee30a3aaf49.d @@ -0,0 +1,12 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libahash-1ca5fee30a3aaf49.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/convert.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/fallback_hash.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/operations.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/random_state.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/specialize.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/hash_map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/hash_set.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/ahash-1ca5fee30a3aaf49.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/convert.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/fallback_hash.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/operations.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/random_state.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/specialize.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/hash_map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/hash_set.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/convert.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/fallback_hash.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/operations.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/random_state.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/specialize.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/hash_map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/hash_set.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/aho_corasick-3e57f30a0d50a0f8.d b/src-tauri/tms_service/target/owl/debug/deps/aho_corasick-3e57f30a0d50a0f8.d new file mode 100644 index 0000000..880dabb --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/aho_corasick-3e57f30a0d50a0f8.d @@ -0,0 +1,33 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libaho_corasick-3e57f30a0d50a0f8.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/ahocorasick.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/automaton.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/dfa.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/contiguous.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/noncontiguous.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/api.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/pattern.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/rabinkarp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/generic.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/vector.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/alphabet.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/buffer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/byte_frequencies.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/debug.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/int.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/prefilter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/primitives.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/remapper.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/search.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/special.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/aho_corasick-3e57f30a0d50a0f8.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/ahocorasick.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/automaton.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/dfa.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/contiguous.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/noncontiguous.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/api.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/pattern.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/rabinkarp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/generic.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/vector.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/alphabet.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/buffer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/byte_frequencies.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/debug.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/int.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/prefilter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/primitives.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/remapper.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/search.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/special.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/ahocorasick.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/automaton.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/dfa.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/contiguous.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/noncontiguous.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/api.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/ext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/pattern.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/rabinkarp.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/builder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/generic.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/vector.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/alphabet.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/buffer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/byte_frequencies.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/debug.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/int.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/prefilter.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/primitives.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/remapper.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/search.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/special.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/anyhow-104f74026926a041.d b/src-tauri/tms_service/target/owl/debug/deps/anyhow-104f74026926a041.d new file mode 100644 index 0000000..076dcda --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/anyhow-104f74026926a041.d @@ -0,0 +1,16 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libanyhow-104f74026926a041.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/backtrace.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/chain.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/context.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/ensure.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/fmt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/kind.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/nightly.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/ptr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/wrapper.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/anyhow-104f74026926a041.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/backtrace.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/chain.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/context.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/ensure.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/fmt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/kind.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/nightly.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/ptr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/wrapper.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/backtrace.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/chain.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/context.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/ensure.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/fmt.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/kind.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/nightly.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/ptr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.102/src/wrapper.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/atomic_waker-385aa95a16935540.d b/src-tauri/tms_service/target/owl/debug/deps/atomic_waker-385aa95a16935540.d new file mode 100644 index 0000000..523eca0 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/atomic_waker-385aa95a16935540.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libatomic_waker-385aa95a16935540.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/atomic_waker-385aa95a16935540.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/base64-7abcc3da73f67c2e.d b/src-tauri/tms_service/target/owl/debug/deps/base64-7abcc3da73f67c2e.d new file mode 100644 index 0000000..2562c69 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/base64-7abcc3da73f67c2e.d @@ -0,0 +1,20 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libbase64-7abcc3da73f67c2e.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/chunked_encoder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/display.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/read/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/read/decoder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/encoder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/encoder_string_writer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/decode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/decode_suffix.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/alphabet.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/encode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/decode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/prelude.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/base64-7abcc3da73f67c2e.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/chunked_encoder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/display.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/read/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/read/decoder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/encoder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/encoder_string_writer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/decode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/decode_suffix.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/alphabet.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/encode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/decode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/prelude.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/chunked_encoder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/display.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/read/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/read/decoder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/encoder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/encoder_string_writer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/decode.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/decode_suffix.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/alphabet.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/encode.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/decode.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/prelude.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/bitflags-79977254c71d3e88.d b/src-tauri/tms_service/target/owl/debug/deps/bitflags-79977254c71d3e88.d new file mode 100644 index 0000000..86fc95f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/bitflags-79977254c71d3e88.d @@ -0,0 +1,11 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libbitflags-79977254c71d3e88.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/traits.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/public.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/internal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/external.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/bitflags-79977254c71d3e88.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/traits.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/public.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/internal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/external.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/iter.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/parser.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/traits.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/public.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/internal.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/external.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/byteorder-4b4e71c2bcc1ba60.d b/src-tauri/tms_service/target/owl/debug/deps/byteorder-4b4e71c2bcc1ba60.d new file mode 100644 index 0000000..0de2be4 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/byteorder-4b4e71c2bcc1ba60.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libbyteorder-4b4e71c2bcc1ba60.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/io.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/byteorder-4b4e71c2bcc1ba60.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/io.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/io.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/bytes-753fc20686ca74e2.d b/src-tauri/tms_service/target/owl/debug/deps/bytes-753fc20686ca74e2.d new file mode 100644 index 0000000..c61eec5 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/bytes-753fc20686ca74e2.d @@ -0,0 +1,22 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libbytes-753fc20686ca74e2.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/buf_impl.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/buf_mut.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/chain.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/limit.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/reader.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/take.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/uninit_slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/vec_deque.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/writer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/bytes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/bytes_mut.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/debug.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/hex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/loom.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/bytes-753fc20686ca74e2.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/buf_impl.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/buf_mut.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/chain.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/limit.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/reader.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/take.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/uninit_slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/vec_deque.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/writer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/bytes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/bytes_mut.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/debug.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/hex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/loom.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/buf_impl.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/buf_mut.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/chain.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/iter.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/limit.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/reader.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/take.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/uninit_slice.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/vec_deque.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/writer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/bytes.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/bytes_mut.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/debug.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/hex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/loom.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/cfg_if-2e62c210e224bb15.d b/src-tauri/tms_service/target/owl/debug/deps/cfg_if-2e62c210e224bb15.d new file mode 100644 index 0000000..24ccb65 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/cfg_if-2e62c210e224bb15.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libcfg_if-2e62c210e224bb15.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/cfg_if-2e62c210e224bb15.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/cfg_if-c95dc1cd1ff1d759.d b/src-tauri/tms_service/target/owl/debug/deps/cfg_if-c95dc1cd1ff1d759.d new file mode 100644 index 0000000..32bb314 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/cfg_if-c95dc1cd1ff1d759.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libcfg_if-c95dc1cd1ff1d759.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libcfg_if-c95dc1cd1ff1d759.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/cfg_if-c95dc1cd1ff1d759.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/core_foundation-5daafef57b60e425.d b/src-tauri/tms_service/target/owl/debug/deps/core_foundation-5daafef57b60e425.d new file mode 100644 index 0000000..160c6db --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/core_foundation-5daafef57b60e425.d @@ -0,0 +1,25 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libcore_foundation-5daafef57b60e425.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/array.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/attributed_string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/base.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/boolean.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/bundle.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/characterset.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/date.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/dictionary.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/filedescriptor.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/mach_port.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/number.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/propertylist.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/runloop.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/timezone.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/url.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/uuid.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/core_foundation-5daafef57b60e425.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/array.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/attributed_string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/base.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/boolean.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/bundle.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/characterset.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/date.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/dictionary.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/filedescriptor.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/mach_port.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/number.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/propertylist.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/runloop.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/timezone.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/url.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/uuid.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/array.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/attributed_string.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/base.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/boolean.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/bundle.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/characterset.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/data.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/date.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/dictionary.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/filedescriptor.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/mach_port.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/number.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/propertylist.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/runloop.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/set.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/string.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/timezone.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/url.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/uuid.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/core_foundation-99406745fc458f43.d b/src-tauri/tms_service/target/owl/debug/deps/core_foundation-99406745fc458f43.d new file mode 100644 index 0000000..fad0f75 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/core_foundation-99406745fc458f43.d @@ -0,0 +1,25 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libcore_foundation-99406745fc458f43.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/array.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/attributed_string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/base.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/boolean.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/bundle.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/characterset.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/date.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/dictionary.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/filedescriptor.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/mach_port.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/number.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/propertylist.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/runloop.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/timezone.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/url.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/uuid.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/core_foundation-99406745fc458f43.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/array.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/attributed_string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/base.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/boolean.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/bundle.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/characterset.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/date.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/dictionary.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/filedescriptor.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/mach_port.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/number.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/propertylist.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/runloop.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/timezone.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/url.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/uuid.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/array.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/attributed_string.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/base.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/boolean.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/bundle.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/characterset.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/data.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/date.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/dictionary.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/filedescriptor.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/mach_port.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/number.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/propertylist.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/runloop.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/set.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/string.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/timezone.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/url.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.10.1/src/uuid.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/core_foundation_sys-e4f1665cbb631a20.d b/src-tauri/tms_service/target/owl/debug/deps/core_foundation_sys-e4f1665cbb631a20.d new file mode 100644 index 0000000..709c35e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/core_foundation_sys-e4f1665cbb631a20.d @@ -0,0 +1,44 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libcore_foundation_sys-e4f1665cbb631a20.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/array.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/attributed_string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/bag.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/base.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/binary_heap.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/bit_vector.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/bundle.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/calendar.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/characterset.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/date.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/date_formatter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/dictionary.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/file_security.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/filedescriptor.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/locale.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/mach_port.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/messageport.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/notification_center.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/number.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/number_formatter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/plugin.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/preferences.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/propertylist.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/runloop.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/socket.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/string_tokenizer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/timezone.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/tree.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/url.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/url_enumerator.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/user_notification.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/uuid.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/xml_node.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/xml_parser.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/core_foundation_sys-e4f1665cbb631a20.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/array.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/attributed_string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/bag.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/base.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/binary_heap.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/bit_vector.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/bundle.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/calendar.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/characterset.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/date.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/date_formatter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/dictionary.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/file_security.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/filedescriptor.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/locale.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/mach_port.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/messageport.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/notification_center.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/number.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/number_formatter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/plugin.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/preferences.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/propertylist.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/runloop.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/socket.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/string_tokenizer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/timezone.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/tree.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/url.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/url_enumerator.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/user_notification.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/uuid.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/xml_node.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/xml_parser.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/array.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/attributed_string.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/bag.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/base.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/binary_heap.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/bit_vector.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/bundle.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/calendar.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/characterset.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/data.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/date.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/date_formatter.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/dictionary.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/file_security.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/filedescriptor.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/locale.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/mach_port.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/messageport.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/notification_center.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/number.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/number_formatter.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/plugin.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/preferences.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/propertylist.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/runloop.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/set.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/socket.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/stream.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/string.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/string_tokenizer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/timezone.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/tree.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/url.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/url_enumerator.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/user_notification.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/uuid.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/xml_node.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/xml_parser.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/cssparser-13b2bdcf91cb99c1.d b/src-tauri/tms_service/target/owl/debug/deps/cssparser-13b2bdcf91cb99c1.d new file mode 100644 index 0000000..634f58b --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/cssparser-13b2bdcf91cb99c1.d @@ -0,0 +1,15 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libcssparser-13b2bdcf91cb99c1.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/rules_and_declarations.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/tokenizer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/color.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/cow_rc_str.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/from_bytes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/nth.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/serializer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/unicode_range.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/cssparser-13b2bdcf91cb99c1.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/rules_and_declarations.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/tokenizer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/color.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/cow_rc_str.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/from_bytes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/nth.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/serializer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/unicode_range.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/rules_and_declarations.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/tokenizer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/color.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/cow_rc_str.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/from_bytes.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/nth.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/parser.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/serializer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.31.2/src/unicode_range.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/cssparser_macros-f44134ad1f28bef5.d b/src-tauri/tms_service/target/owl/debug/deps/cssparser_macros-f44134ad1f28bef5.d new file mode 100644 index 0000000..c5ca69e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/cssparser_macros-f44134ad1f28bef5.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libcssparser_macros-f44134ad1f28bef5.dylib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-macros-0.6.1/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/cssparser_macros-f44134ad1f28bef5.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-macros-0.6.1/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-macros-0.6.1/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/debug_unreachable-de20d0d9fb09bc9f.d b/src-tauri/tms_service/target/owl/debug/deps/debug_unreachable-de20d0d9fb09bc9f.d new file mode 100644 index 0000000..761c248 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/debug_unreachable-de20d0d9fb09bc9f.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libdebug_unreachable-de20d0d9fb09bc9f.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/new_debug_unreachable-1.0.6/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/debug_unreachable-de20d0d9fb09bc9f.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/new_debug_unreachable-1.0.6/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/new_debug_unreachable-1.0.6/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/derive_more-c78cbfc27dbaef26.d b/src-tauri/tms_service/target/owl/debug/deps/derive_more-c78cbfc27dbaef26.d new file mode 100644 index 0000000..094165e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/derive_more-c78cbfc27dbaef26.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libderive_more-c78cbfc27dbaef26.dylib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/syn_compat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/add_assign_like.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/add_helpers.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/add_like.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/derive_more-c78cbfc27dbaef26.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/syn_compat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/add_assign_like.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/add_helpers.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/add_like.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/syn_compat.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/utils.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/add_assign_like.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/add_helpers.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/add_like.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/displaydoc-a612d43852baa8e5.d b/src-tauri/tms_service/target/owl/debug/deps/displaydoc-a612d43852baa8e5.d new file mode 100644 index 0000000..536f445 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/displaydoc-a612d43852baa8e5.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libdisplaydoc-a612d43852baa8e5.dylib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/attr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/expand.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/fmt.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/displaydoc-a612d43852baa8e5.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/attr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/expand.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/fmt.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/attr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/expand.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/fmt.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/dtoa-406b6cb38c3d02d8.d b/src-tauri/tms_service/target/owl/debug/deps/dtoa-406b6cb38c3d02d8.d new file mode 100644 index 0000000..b1d7fb6 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/dtoa-406b6cb38c3d02d8.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libdtoa-406b6cb38c3d02d8.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-1.0.11/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-1.0.11/src/diyfp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-1.0.11/src/dtoa.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/dtoa-406b6cb38c3d02d8.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-1.0.11/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-1.0.11/src/diyfp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-1.0.11/src/dtoa.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-1.0.11/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-1.0.11/src/diyfp.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-1.0.11/src/dtoa.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/dtoa_short-6de159c9c8744846.d b/src-tauri/tms_service/target/owl/debug/deps/dtoa_short-6de159c9c8744846.d new file mode 100644 index 0000000..4f4293c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/dtoa_short-6de159c9c8744846.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libdtoa_short-6de159c9c8744846.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-short-0.3.5/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/dtoa_short-6de159c9c8744846.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-short-0.3.5/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtoa-short-0.3.5/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/ego_tree-809c8514ee657827.d b/src-tauri/tms_service/target/owl/debug/deps/ego_tree-809c8514ee657827.d new file mode 100644 index 0000000..9133f5d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/ego_tree-809c8514ee657827.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libego_tree-809c8514ee657827.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ego-tree-0.6.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ego-tree-0.6.3/src/iter.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/ego_tree-809c8514ee657827.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ego-tree-0.6.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ego-tree-0.6.3/src/iter.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ego-tree-0.6.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ego-tree-0.6.3/src/iter.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/encoding_rs-7d46cbb1301f817e.d b/src-tauri/tms_service/target/owl/debug/deps/encoding_rs-7d46cbb1301f817e.d new file mode 100644 index 0000000..4d7722f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/encoding_rs-7d46cbb1301f817e.d @@ -0,0 +1,23 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libencoding_rs-7d46cbb1301f817e.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/big5.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/euc_jp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/euc_kr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/gb18030.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/gb18030_2022.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/iso_2022_jp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/replacement.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/shift_jis.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/single_byte.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/utf_16.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/utf_8.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/x_user_defined.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/ascii.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/handles.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/variant.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/mem.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/encoding_rs-7d46cbb1301f817e.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/big5.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/euc_jp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/euc_kr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/gb18030.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/gb18030_2022.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/iso_2022_jp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/replacement.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/shift_jis.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/single_byte.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/utf_16.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/utf_8.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/x_user_defined.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/ascii.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/handles.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/variant.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/mem.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/big5.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/euc_jp.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/euc_kr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/gb18030.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/gb18030_2022.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/iso_2022_jp.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/replacement.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/shift_jis.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/single_byte.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/utf_16.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/utf_8.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/x_user_defined.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/ascii.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/data.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/handles.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/variant.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/mem.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/equivalent-8c7877b395c811e7.d b/src-tauri/tms_service/target/owl/debug/deps/equivalent-8c7877b395c811e7.d new file mode 100644 index 0000000..9869e80 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/equivalent-8c7877b395c811e7.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libequivalent-8c7877b395c811e7.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/equivalent-8c7877b395c811e7.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/errno-0868ecd75facc30b.d b/src-tauri/tms_service/target/owl/debug/deps/errno-0868ecd75facc30b.d new file mode 100644 index 0000000..b146548 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/errno-0868ecd75facc30b.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/liberrno-0868ecd75facc30b.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.14/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.14/src/unix.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/errno-0868ecd75facc30b.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.14/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.14/src/unix.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.14/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.14/src/unix.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/fastrand-1f5b5e3c4d7189e6.d b/src-tauri/tms_service/target/owl/debug/deps/fastrand-1f5b5e3c4d7189e6.d new file mode 100644 index 0000000..6d7f2fc --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/fastrand-1f5b5e3c4d7189e6.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libfastrand-1f5b5e3c4d7189e6.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/src/global_rng.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/fastrand-1f5b5e3c4d7189e6.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/src/global_rng.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/src/global_rng.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/fnv-cac04d70d816a166.d b/src-tauri/tms_service/target/owl/debug/deps/fnv-cac04d70d816a166.d new file mode 100644 index 0000000..2d791c4 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/fnv-cac04d70d816a166.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libfnv-cac04d70d816a166.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/fnv-cac04d70d816a166.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/form_urlencoded-f4cec7ff2ed7fa87.d b/src-tauri/tms_service/target/owl/debug/deps/form_urlencoded-f4cec7ff2ed7fa87.d new file mode 100644 index 0000000..3e6f95c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/form_urlencoded-f4cec7ff2ed7fa87.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libform_urlencoded-f4cec7ff2ed7fa87.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.2/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/form_urlencoded-f4cec7ff2ed7fa87.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.2/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.2/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/futf-3d480dde70c9eb27.d b/src-tauri/tms_service/target/owl/debug/deps/futf-3d480dde70c9eb27.d new file mode 100644 index 0000000..fea012c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/futf-3d480dde70c9eb27.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libfutf-3d480dde70c9eb27.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futf-0.1.5/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/futf-3d480dde70c9eb27.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futf-0.1.5/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futf-0.1.5/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/futures_channel-42b8cf3f351ac3e9.d b/src-tauri/tms_service/target/owl/debug/deps/futures_channel-42b8cf3f351ac3e9.d new file mode 100644 index 0000000..03a75be --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/futures_channel-42b8cf3f351ac3e9.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libfutures_channel-42b8cf3f351ac3e9.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/lock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/mpsc/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/mpsc/queue.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/oneshot.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/futures_channel-42b8cf3f351ac3e9.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/lock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/mpsc/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/mpsc/queue.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/oneshot.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/lock.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/mpsc/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/mpsc/queue.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/oneshot.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/futures_core-6ba184d1b6917bc7.d b/src-tauri/tms_service/target/owl/debug/deps/futures_core-6ba184d1b6917bc7.d new file mode 100644 index 0000000..6475c51 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/futures_core-6ba184d1b6917bc7.d @@ -0,0 +1,11 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libfutures_core-6ba184d1b6917bc7.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/future.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/poll.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/__internal/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/__internal/atomic_waker.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/futures_core-6ba184d1b6917bc7.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/future.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/poll.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/__internal/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/__internal/atomic_waker.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/future.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/stream.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/poll.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/__internal/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/__internal/atomic_waker.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/futures_sink-45af2ac4486dcddc.d b/src-tauri/tms_service/target/owl/debug/deps/futures_sink-45af2ac4486dcddc.d new file mode 100644 index 0000000..a235a3e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/futures_sink-45af2ac4486dcddc.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libfutures_sink-45af2ac4486dcddc.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.32/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/futures_sink-45af2ac4486dcddc.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.32/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.32/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/futures_task-2042ebbb5636ef78.d b/src-tauri/tms_service/target/owl/debug/deps/futures_task-2042ebbb5636ef78.d new file mode 100644 index 0000000..fac2ed8 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/futures_task-2042ebbb5636ef78.d @@ -0,0 +1,11 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libfutures_task-2042ebbb5636ef78.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/spawn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/arc_wake.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/waker.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/waker_ref.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/future_obj.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/noop_waker.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/futures_task-2042ebbb5636ef78.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/spawn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/arc_wake.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/waker.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/waker_ref.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/future_obj.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/noop_waker.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/spawn.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/arc_wake.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/waker.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/waker_ref.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/future_obj.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/noop_waker.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/futures_util-21df2272dea5d737.d b/src-tauri/tms_service/target/owl/debug/deps/futures_util-21df2272dea5d737.d new file mode 100644 index 0000000..f6815cd --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/futures_util-21df2272dea5d737.d @@ -0,0 +1,119 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libfutures_util-21df2272dea5d737.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/flatten.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/fuse.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/into_future.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/try_flatten.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/try_flatten_err.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/lazy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/pending.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/maybe_done.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_maybe_done.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/option.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/poll_fn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/poll_immediate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/ready.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/always_ready.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/join.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/join_all.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/select.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/select_all.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_join.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_join_all.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_select.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/select_ok.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/either.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/abortable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/chain.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/collect.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/unzip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/concat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/count.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/cycle.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/enumerate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/filter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/filter_map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/flatten.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/fold.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/any.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/all.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/for_each.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/fuse.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/into_future.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/next.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/select_next_some.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/peek.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/skip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/skip_while.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/take.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/take_while.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/take_until.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/then.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/zip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/chunks.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/ready_chunks.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/scan.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/buffer_unordered.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/buffered.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/flatten_unordered.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/for_each_concurrent.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/and_then.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/into_stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/or_else.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_next.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_for_each.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_filter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_filter_map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_flatten.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_flatten_unordered.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_collect.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_concat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_chunks.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_ready_chunks.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_fold.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_unfold.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_skip_while.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_take_while.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_buffer_unordered.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_buffered.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_for_each_concurrent.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_all.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_any.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/repeat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/repeat_with.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/empty.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/once.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/pending.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/poll_fn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/poll_immediate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/select.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/select_with_strategy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/unfold.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_ordered.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/abort.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/task.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/ready_to_run_queue.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/select_all.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/abortable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/task/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/task/spawn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/never.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/lock/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/abortable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/fns.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/unfold_state.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/futures_util-21df2272dea5d737.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/flatten.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/fuse.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/into_future.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/try_flatten.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/try_flatten_err.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/lazy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/pending.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/maybe_done.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_maybe_done.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/option.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/poll_fn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/poll_immediate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/ready.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/always_ready.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/join.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/join_all.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/select.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/select_all.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_join.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_join_all.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_select.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/select_ok.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/either.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/abortable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/chain.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/collect.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/unzip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/concat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/count.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/cycle.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/enumerate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/filter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/filter_map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/flatten.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/fold.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/any.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/all.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/for_each.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/fuse.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/into_future.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/next.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/select_next_some.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/peek.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/skip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/skip_while.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/take.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/take_while.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/take_until.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/then.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/zip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/chunks.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/ready_chunks.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/scan.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/buffer_unordered.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/buffered.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/flatten_unordered.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/for_each_concurrent.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/and_then.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/into_stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/or_else.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_next.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_for_each.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_filter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_filter_map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_flatten.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_flatten_unordered.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_collect.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_concat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_chunks.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_ready_chunks.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_fold.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_unfold.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_skip_while.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_take_while.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_buffer_unordered.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_buffered.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_for_each_concurrent.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_all.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_any.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/repeat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/repeat_with.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/empty.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/once.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/pending.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/poll_fn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/poll_immediate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/select.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/select_with_strategy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/unfold.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_ordered.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/abort.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/task.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/ready_to_run_queue.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/select_all.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/abortable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/task/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/task/spawn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/never.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/lock/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/abortable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/fns.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/unfold_state.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/flatten.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/fuse.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/into_future.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/try_flatten.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/try_flatten_err.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/lazy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/pending.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/maybe_done.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_maybe_done.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/option.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/poll_fn.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/poll_immediate.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/ready.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/always_ready.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/join.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/join_all.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/select.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/select_all.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_join.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_join_all.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_select.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/select_ok.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/either.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/abortable.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/chain.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/collect.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/unzip.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/concat.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/count.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/cycle.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/enumerate.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/filter.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/filter_map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/flatten.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/fold.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/any.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/all.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/for_each.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/fuse.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/into_future.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/next.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/select_next_some.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/peek.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/skip.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/skip_while.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/take.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/take_while.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/take_until.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/then.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/zip.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/chunks.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/ready_chunks.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/scan.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/buffer_unordered.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/buffered.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/flatten_unordered.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/for_each_concurrent.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/and_then.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/into_stream.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/or_else.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_next.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_for_each.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_filter.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_filter_map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_flatten.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_flatten_unordered.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_collect.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_concat.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_chunks.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_ready_chunks.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_fold.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_unfold.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_skip_while.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_take_while.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_buffer_unordered.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_buffered.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_for_each_concurrent.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_all.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_any.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/iter.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/repeat.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/repeat_with.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/empty.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/once.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/pending.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/poll_fn.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/poll_immediate.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/select.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/select_with_strategy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/unfold.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_ordered.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/abort.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/iter.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/task.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/ready_to_run_queue.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/select_all.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/abortable.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/task/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/task/spawn.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/never.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/lock/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/abortable.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/fns.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/unfold_state.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/fxhash-655a24a699d73c8e.d b/src-tauri/tms_service/target/owl/debug/deps/fxhash-655a24a699d73c8e.d new file mode 100644 index 0000000..5482460 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/fxhash-655a24a699d73c8e.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libfxhash-655a24a699d73c8e.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fxhash-0.2.1/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/fxhash-655a24a699d73c8e.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fxhash-0.2.1/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fxhash-0.2.1/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/getopts-9a8144cdacd76599.d b/src-tauri/tms_service/target/owl/debug/deps/getopts-9a8144cdacd76599.d new file mode 100644 index 0000000..0a5327e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/getopts-9a8144cdacd76599.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libgetopts-9a8144cdacd76599.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getopts-0.2.24/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/getopts-9a8144cdacd76599.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getopts-0.2.24/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getopts-0.2.24/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/getrandom-b0a0a65c90c4bca7.d b/src-tauri/tms_service/target/owl/debug/deps/getrandom-b0a0a65c90c4bca7.d new file mode 100644 index 0000000..7ec7951 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/getrandom-b0a0a65c90c4bca7.d @@ -0,0 +1,12 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libgetrandom-b0a0a65c90c4bca7.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/error_impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/util_libc.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/getentropy.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libgetrandom-b0a0a65c90c4bca7.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/error_impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/util_libc.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/getentropy.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/getrandom-b0a0a65c90c4bca7.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/error_impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/util_libc.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/getentropy.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/util.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/error_impls.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/util_libc.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/getentropy.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/getrandom-c9aef3663a0c6675.d b/src-tauri/tms_service/target/owl/debug/deps/getrandom-c9aef3663a0c6675.d new file mode 100644 index 0000000..cf9ce68 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/getrandom-c9aef3663a0c6675.d @@ -0,0 +1,11 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libgetrandom-c9aef3663a0c6675.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/src/backends.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/src/../README.md /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/src/backends/getentropy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/src/backends/../utils/get_errno.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/getrandom-c9aef3663a0c6675.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/src/backends.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/src/../README.md /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/src/backends/getentropy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/src/backends/../utils/get_errno.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/src/backends.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/src/util.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/src/../README.md: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/src/backends/getentropy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.1/src/backends/../utils/get_errno.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/getrandom-d485936f40be71ee.d b/src-tauri/tms_service/target/owl/debug/deps/getrandom-d485936f40be71ee.d new file mode 100644 index 0000000..8845ee4 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/getrandom-d485936f40be71ee.d @@ -0,0 +1,11 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libgetrandom-d485936f40be71ee.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/../README.md /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends/getentropy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends/../util_libc.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/getrandom-d485936f40be71ee.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/../README.md /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends/getentropy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends/../util_libc.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/util.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/../README.md: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends/getentropy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends/../util_libc.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/h2-ed15e53bc017b2b4.d b/src-tauri/tms_service/target/owl/debug/deps/h2-ed15e53bc017b2b4.d new file mode 100644 index 0000000..8af6e04 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/h2-ed15e53bc017b2b4.d @@ -0,0 +1,52 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libh2-ed15e53bc017b2b4.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/codec/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/codec/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/codec/framed_read.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/codec/framed_write.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/hpack/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/hpack/decoder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/hpack/encoder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/hpack/header.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/hpack/huffman/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/hpack/huffman/table.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/hpack/table.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/connection.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/go_away.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/peer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/ping_pong.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/settings.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/buffer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/counts.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/flow_control.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/prioritize.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/recv.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/send.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/state.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/store.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/streams.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/go_away.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/head.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/headers.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/ping.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/priority.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/reason.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/reset.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/settings.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/stream_id.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/window_update.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/client.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/server.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/share.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/h2-ed15e53bc017b2b4.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/codec/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/codec/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/codec/framed_read.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/codec/framed_write.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/hpack/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/hpack/decoder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/hpack/encoder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/hpack/header.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/hpack/huffman/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/hpack/huffman/table.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/hpack/table.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/connection.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/go_away.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/peer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/ping_pong.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/settings.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/buffer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/counts.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/flow_control.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/prioritize.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/recv.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/send.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/state.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/store.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/streams.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/go_away.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/head.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/headers.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/ping.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/priority.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/reason.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/reset.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/settings.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/stream_id.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/window_update.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/client.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/server.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/share.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/codec/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/codec/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/codec/framed_read.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/codec/framed_write.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/hpack/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/hpack/decoder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/hpack/encoder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/hpack/header.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/hpack/huffman/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/hpack/huffman/table.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/hpack/table.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/connection.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/go_away.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/peer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/ping_pong.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/settings.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/buffer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/counts.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/flow_control.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/prioritize.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/recv.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/send.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/state.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/store.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/stream.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/proto/streams/streams.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/data.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/go_away.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/head.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/headers.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/ping.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/priority.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/reason.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/reset.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/settings.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/stream_id.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/util.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/frame/window_update.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/client.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/ext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/server.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.13/src/share.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/hashbrown-ce379e75cd4d39f2.d b/src-tauri/tms_service/target/owl/debug/deps/hashbrown-ce379e75cd4d39f2.d new file mode 100644 index 0000000..c4ca7b2 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/hashbrown-ce379e75cd4d39f2.d @@ -0,0 +1,20 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libhashbrown-ce379e75cd4d39f2.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/bitmask.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/tag.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/hasher.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/alloc.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/external_trait_impls/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/scopeguard.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/table.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/neon.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/hashbrown-ce379e75cd4d39f2.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/bitmask.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/tag.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/hasher.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/alloc.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/external_trait_impls/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/scopeguard.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/table.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/neon.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/bitmask.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/tag.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/hasher.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/alloc.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/util.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/external_trait_impls/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/scopeguard.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/set.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/table.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/neon.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/html5ever-3203f08401979c29.d b/src-tauri/tms_service/target/owl/debug/deps/html5ever-3203f08401979c29.d new file mode 100644 index 0000000..9112fdc --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/html5ever-3203f08401979c29.d @@ -0,0 +1,20 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libhtml5ever-3203f08401979c29.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/util/str.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/driver.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/serialize/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/char_ref/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/interface.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/states.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/tag_sets.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/types.rs /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/html5ever-f2ef4faa050d52c7/out/rules.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/html5ever-3203f08401979c29.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/util/str.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/driver.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/serialize/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/char_ref/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/interface.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/states.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/tag_sets.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/types.rs /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/html5ever-f2ef4faa050d52c7/out/rules.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/util/str.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/driver.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/serialize/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/char_ref/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/interface.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tokenizer/states.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/tag_sets.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/data.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html5ever-0.27.0/src/tree_builder/types.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/html5ever-f2ef4faa050d52c7/out/rules.rs: + +# env-dep:OUT_DIR=/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/html5ever-f2ef4faa050d52c7/out diff --git a/src-tauri/tms_service/target/owl/debug/deps/html_scraper-b4225ed1189a3c12.d b/src-tauri/tms_service/target/owl/debug/deps/html_scraper-b4225ed1189a3c12.d new file mode 100644 index 0000000..9bc250f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/html_scraper-b4225ed1189a3c12.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libhtml_scraper-b4225ed1189a3c12.rmeta: /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/html_scraper-b4225ed1189a3c12.d: /Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/html_scraper/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/http-84cfa03a8e2d379e.d b/src-tauri/tms_service/target/owl/debug/deps/http-84cfa03a8e2d379e.d new file mode 100644 index 0000000..59fede9 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/http-84cfa03a8e2d379e.d @@ -0,0 +1,24 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libhttp-84cfa03a8e2d379e.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/convert.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/header/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/header/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/header/name.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/header/value.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/method.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/request.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/response.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/status.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/uri/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/uri/authority.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/uri/builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/uri/path.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/uri/port.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/uri/scheme.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/version.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/byte_str.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/extensions.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/http-84cfa03a8e2d379e.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/convert.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/header/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/header/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/header/name.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/header/value.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/method.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/request.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/response.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/status.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/uri/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/uri/authority.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/uri/builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/uri/path.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/uri/port.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/uri/scheme.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/version.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/byte_str.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/extensions.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/convert.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/header/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/header/map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/header/name.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/header/value.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/method.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/request.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/response.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/status.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/uri/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/uri/authority.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/uri/builder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/uri/path.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/uri/port.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/uri/scheme.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/version.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/byte_str.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.4.0/src/extensions.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/http_body-e29dae78b6ccaa97.d b/src-tauri/tms_service/target/owl/debug/deps/http_body-e29dae78b6ccaa97.d new file mode 100644 index 0000000..ccf61f1 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/http_body-e29dae78b6ccaa97.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libhttp_body-e29dae78b6ccaa97.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/src/frame.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/src/size_hint.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/http_body-e29dae78b6ccaa97.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/src/frame.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/src/size_hint.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/src/frame.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/src/size_hint.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/http_body_util-2ee8b882934db7fa.d b/src-tauri/tms_service/target/owl/debug/deps/http_body_util-2ee8b882934db7fa.d new file mode 100644 index 0000000..93f3290 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/http_body_util-2ee8b882934db7fa.d @@ -0,0 +1,19 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libhttp_body_util-2ee8b882934db7fa.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/collected.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/combinators/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/combinators/box_body.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/combinators/collect.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/combinators/frame.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/combinators/map_err.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/combinators/map_frame.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/combinators/with_trailers.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/either.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/empty.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/full.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/limited.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/util.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/http_body_util-2ee8b882934db7fa.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/collected.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/combinators/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/combinators/box_body.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/combinators/collect.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/combinators/frame.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/combinators/map_err.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/combinators/map_frame.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/combinators/with_trailers.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/either.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/empty.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/full.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/limited.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/util.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/collected.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/combinators/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/combinators/box_body.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/combinators/collect.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/combinators/frame.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/combinators/map_err.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/combinators/map_frame.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/combinators/with_trailers.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/either.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/empty.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/full.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/limited.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/stream.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/util.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/httparse-7c561d7147d4eef2.d b/src-tauri/tms_service/target/owl/debug/deps/httparse-7c561d7147d4eef2.d new file mode 100644 index 0000000..ee32e27 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/httparse-7c561d7147d4eef2.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libhttparse-7c561d7147d4eef2.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/swar.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/neon.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/httparse-7c561d7147d4eef2.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/swar.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/neon.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/iter.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/swar.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/neon.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/hyper-d3cc9636f1286ef9.d b/src-tauri/tms_service/target/owl/debug/deps/hyper-d3cc9636f1286ef9.d new file mode 100644 index 0000000..29f5b34 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/hyper-d3cc9636f1286ef9.d @@ -0,0 +1,51 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libhyper-d3cc9636f1286ef9.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/cfg.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/trace.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/body/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/body/incoming.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/body/length.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/buf.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/either.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/future.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/io/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/io/compat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/io/rewind.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/task.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/time.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/watch.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/ext/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/ext/h1_reason_phrase.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/ext/informational.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/rt/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/rt/bounds.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/rt/io.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/rt/timer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/service/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/service/http.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/service/service.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/service/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/upgrade.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/headers.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h2/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h2/ping.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h2/upgrade.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h1/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h1/conn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h1/decode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h1/dispatch.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h1/encode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h1/io.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h1/role.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h2/client.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/client/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/client/conn/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/client/conn/http1.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/client/conn/http2.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/client/dispatch.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/hyper-d3cc9636f1286ef9.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/cfg.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/trace.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/body/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/body/incoming.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/body/length.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/buf.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/either.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/future.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/io/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/io/compat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/io/rewind.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/task.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/time.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/watch.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/ext/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/ext/h1_reason_phrase.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/ext/informational.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/rt/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/rt/bounds.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/rt/io.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/rt/timer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/service/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/service/http.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/service/service.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/service/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/upgrade.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/headers.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h2/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h2/ping.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h2/upgrade.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h1/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h1/conn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h1/decode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h1/dispatch.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h1/encode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h1/io.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h1/role.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h2/client.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/client/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/client/conn/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/client/conn/http1.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/client/conn/http2.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/client/dispatch.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/cfg.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/trace.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/body/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/body/incoming.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/body/length.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/buf.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/either.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/future.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/io/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/io/compat.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/io/rewind.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/task.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/time.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/common/watch.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/ext/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/ext/h1_reason_phrase.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/ext/informational.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/rt/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/rt/bounds.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/rt/io.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/rt/timer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/service/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/service/http.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/service/service.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/service/util.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/upgrade.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/headers.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h2/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h2/ping.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h2/upgrade.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h1/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h1/conn.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h1/decode.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h1/dispatch.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h1/encode.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h1/io.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h1/role.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/proto/h2/client.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/client/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/client/conn/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/client/conn/http1.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/client/conn/http2.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.1/src/client/dispatch.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/hyper_tls-1715619fdd5e28b7.d b/src-tauri/tms_service/target/owl/debug/deps/hyper_tls-1715619fdd5e28b7.d new file mode 100644 index 0000000..df63a11 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/hyper_tls-1715619fdd5e28b7.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libhyper_tls-1715619fdd5e28b7.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/src/client.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/src/stream.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/hyper_tls-1715619fdd5e28b7.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/src/client.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/src/stream.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/src/client.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/src/stream.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/hyper_util-27bb15f3b2b6299f.d b/src-tauri/tms_service/target/owl/debug/deps/hyper_util-27bb15f3b2b6299f.d new file mode 100644 index 0000000..49c0807 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/hyper_util-27bb15f3b2b6299f.d @@ -0,0 +1,37 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libhyper_util-27bb15f3b2b6299f.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/client.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/dns.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/http.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/socks/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/socks/v5/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/socks/v5/errors.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/socks/v5/messages.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/socks/v4/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/socks/v4/errors.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/socks/v4/messages.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/tunnel.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/capture.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/pool.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/proxy/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/proxy/matcher.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/exec.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/lazy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/sync.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/timer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/io.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/tokio.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/tokio/with_hyper_io.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/tokio/with_tokio_io.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/service/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/service/oneshot.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/error.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/hyper_util-27bb15f3b2b6299f.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/client.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/dns.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/http.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/socks/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/socks/v5/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/socks/v5/errors.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/socks/v5/messages.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/socks/v4/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/socks/v4/errors.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/socks/v4/messages.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/tunnel.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/capture.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/pool.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/proxy/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/proxy/matcher.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/exec.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/lazy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/sync.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/timer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/io.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/tokio.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/tokio/with_hyper_io.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/tokio/with_tokio_io.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/service/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/service/oneshot.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/error.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/client.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/dns.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/http.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/socks/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/socks/v5/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/socks/v5/errors.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/socks/v5/messages.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/socks/v4/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/socks/v4/errors.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/socks/v4/messages.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/proxy/tunnel.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/connect/capture.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/legacy/pool.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/proxy/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/client/proxy/matcher.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/exec.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/lazy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/sync.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/timer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/io.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/tokio.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/tokio/with_hyper_io.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/tokio/with_tokio_io.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/service/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/service/oneshot.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/error.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/icu_collections-69708450be497605.d b/src-tauri/tms_service/target/owl/debug/deps/icu_collections-69708450be497605.d new file mode 100644 index 0000000..ecf7d69 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/icu_collections-69708450be497605.d @@ -0,0 +1,17 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libicu_collections-69708450be497605.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/char16trie/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/char16trie/trie.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointinvlist/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointinvlist/cpinvlist.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointinvlist/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointinvliststringlist/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointtrie/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointtrie/cptrie.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointtrie/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointtrie/impl_const.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointtrie/planes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/iterator_utils.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/icu_collections-69708450be497605.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/char16trie/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/char16trie/trie.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointinvlist/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointinvlist/cpinvlist.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointinvlist/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointinvliststringlist/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointtrie/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointtrie/cptrie.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointtrie/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointtrie/impl_const.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointtrie/planes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/iterator_utils.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/char16trie/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/char16trie/trie.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointinvlist/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointinvlist/cpinvlist.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointinvlist/utils.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointinvliststringlist/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointtrie/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointtrie/cptrie.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointtrie/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointtrie/impl_const.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/codepointtrie/planes.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/iterator_utils.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/icu_locale_core-8eb1e9ef0ba9f436.d b/src-tauri/tms_service/target/owl/debug/deps/icu_locale_core-8eb1e9ef0ba9f436.d new file mode 100644 index 0000000..1ae3e8d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/icu_locale_core-8eb1e9ef0ba9f436.d @@ -0,0 +1,64 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libicu_locale_core-8eb1e9ef0ba9f436.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/helpers.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/langid.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/locale.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/parser/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/parser/errors.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/parser/langid.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/parser/locale.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/shortvec/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/shortvec/litemap.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/other/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/private/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/private/other.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/transform/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/transform/fields.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/transform/key.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/transform/value.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/unicode/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/unicode/attribute.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/unicode/attributes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/unicode/key.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/unicode/keywords.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/unicode/subdivision.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/unicode/value.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/subtags/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/subtags/language.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/subtags/region.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/subtags/script.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/subtags/variant.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/subtags/variants.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/errors.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/calendar.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/collation.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/currency.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/currency_format.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/emoji.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/first_day.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/hour_cycle.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/line_break.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/line_break_word.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/measurement_system.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/measurement_unit_override.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/numbering_system.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/region_override.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/regional_subdivision.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/sentence_supression.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/timezone.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/variant.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/macros/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/macros/enum_keyword.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/macros/struct_keyword.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/locale.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/zerovec.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/icu_locale_core-8eb1e9ef0ba9f436.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/helpers.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/langid.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/locale.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/parser/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/parser/errors.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/parser/langid.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/parser/locale.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/shortvec/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/shortvec/litemap.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/other/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/private/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/private/other.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/transform/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/transform/fields.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/transform/key.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/transform/value.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/unicode/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/unicode/attribute.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/unicode/attributes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/unicode/key.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/unicode/keywords.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/unicode/subdivision.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/unicode/value.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/subtags/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/subtags/language.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/subtags/region.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/subtags/script.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/subtags/variant.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/subtags/variants.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/errors.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/calendar.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/collation.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/currency.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/currency_format.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/emoji.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/first_day.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/hour_cycle.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/line_break.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/line_break_word.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/measurement_system.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/measurement_unit_override.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/numbering_system.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/region_override.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/regional_subdivision.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/sentence_supression.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/timezone.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/variant.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/macros/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/macros/enum_keyword.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/macros/struct_keyword.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/locale.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/zerovec.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/helpers.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/data.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/langid.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/locale.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/parser/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/parser/errors.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/parser/langid.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/parser/locale.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/shortvec/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/shortvec/litemap.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/other/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/private/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/private/other.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/transform/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/transform/fields.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/transform/key.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/transform/value.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/unicode/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/unicode/attribute.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/unicode/attributes.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/unicode/key.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/unicode/keywords.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/unicode/subdivision.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/extensions/unicode/value.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/subtags/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/subtags/language.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/subtags/region.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/subtags/script.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/subtags/variant.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/subtags/variants.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/errors.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/calendar.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/collation.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/currency.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/currency_format.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/emoji.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/first_day.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/hour_cycle.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/line_break.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/line_break_word.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/measurement_system.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/measurement_unit_override.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/numbering_system.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/region_override.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/regional_subdivision.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/sentence_supression.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/timezone.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/keywords/variant.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/macros/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/macros/enum_keyword.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/extensions/unicode/macros/struct_keyword.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/preferences/locale.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/zerovec.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/icu_normalizer-cfc2a9aa2d96aeda.d b/src-tauri/tms_service/target/owl/debug/deps/icu_normalizer-cfc2a9aa2d96aeda.d new file mode 100644 index 0000000..bb7022b --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/icu_normalizer-cfc2a9aa2d96aeda.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libicu_normalizer-cfc2a9aa2d96aeda.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.1.1/src/properties.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.1.1/src/provider.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.1.1/src/uts46.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/icu_normalizer-cfc2a9aa2d96aeda.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.1.1/src/properties.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.1.1/src/provider.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.1.1/src/uts46.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.1.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.1.1/src/properties.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.1.1/src/provider.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.1.1/src/uts46.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/icu_normalizer_data-792d8ca86354cd8b.d b/src-tauri/tms_service/target/owl/debug/deps/icu_normalizer_data-792d8ca86354cd8b.d new file mode 100644 index 0000000..4bda00e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/icu_normalizer_data-792d8ca86354cd8b.d @@ -0,0 +1,13 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libicu_normalizer_data-792d8ca86354cd8b.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/normalizer_nfd_tables_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/normalizer_nfd_supplement_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/normalizer_nfkd_data_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/normalizer_nfkd_tables_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/normalizer_nfc_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/normalizer_nfd_data_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/normalizer_uts46_data_v1.rs.data + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/icu_normalizer_data-792d8ca86354cd8b.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/normalizer_nfd_tables_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/normalizer_nfd_supplement_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/normalizer_nfkd_data_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/normalizer_nfkd_tables_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/normalizer_nfc_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/normalizer_nfd_data_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/normalizer_uts46_data_v1.rs.data + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/normalizer_nfd_tables_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/normalizer_nfd_supplement_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/normalizer_nfkd_data_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/normalizer_nfkd_tables_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/normalizer_nfc_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/normalizer_nfd_data_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/../data/normalizer_uts46_data_v1.rs.data: diff --git a/src-tauri/tms_service/target/owl/debug/deps/icu_properties-31fec4cc4c700256.d b/src-tauri/tms_service/target/owl/debug/deps/icu_properties-31fec4cc4c700256.d new file mode 100644 index 0000000..79ff3ce --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/icu_properties-31fec4cc4c700256.d @@ -0,0 +1,16 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libicu_properties-31fec4cc4c700256.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/code_point_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/code_point_map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/emoji.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/names.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/runtime.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/props.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/provider.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/provider/names.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/script.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/bidi.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/trievalue.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/icu_properties-31fec4cc4c700256.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/code_point_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/code_point_map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/emoji.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/names.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/runtime.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/props.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/provider.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/provider/names.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/script.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/bidi.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/trievalue.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/code_point_set.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/code_point_map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/emoji.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/names.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/runtime.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/props.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/provider.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/provider/names.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/script.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/bidi.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/trievalue.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/icu_properties_data-2b84c2e6a3ebdd72.d b/src-tauri/tms_service/target/owl/debug/deps/icu_properties_data-2b84c2e6a3ebdd72.d new file mode 100644 index 0000000..2933a99 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/icu_properties_data-2b84c2e6a3ebdd72.d @@ -0,0 +1,135 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libicu_properties_data-2b84c2e6a3ebdd72.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_indic_syllabic_category_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_pattern_syntax_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_changes_when_lowercased_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_ids_trinary_operator_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_regional_indicator_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_changes_when_uppercased_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_changes_when_casemapped_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_script_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_indic_syllabic_category_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_ids_binary_operator_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_radical_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_extender_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_indic_syllabic_category_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_emoji_component_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_id_compat_math_continue_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_dash_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_general_category_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_grapheme_cluster_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_emoji_presentation_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_case_sensitive_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_bidi_class_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_nfd_inert_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_graph_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_bidi_control_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_hangul_syllable_type_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_word_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_line_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_white_space_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_unified_ideograph_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_noncharacter_code_point_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_grapheme_cluster_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_indic_syllabic_category_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_east_asian_width_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_script_with_extensions_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_hangul_syllable_type_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_emoji_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_line_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_bidi_class_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_bidi_mirrored_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_grapheme_link_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_script_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_east_asian_width_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_sentence_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_alnum_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_general_category_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_vertical_orientation_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_changes_when_casefolded_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_hangul_syllable_type_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_sentence_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_quotation_mark_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_deprecated_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_xid_start_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_segment_starter_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_hyphen_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_variation_selector_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_word_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_east_asian_width_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_sentence_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_modifier_combining_mark_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_indic_conjunct_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_bidi_class_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_prepended_concatenation_mark_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_joining_type_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_print_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_canonical_combining_class_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_terminal_punctuation_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_vertical_orientation_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_cased_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_nfkc_inert_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_id_continue_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_basic_emoji_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_id_start_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_uppercase_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_script_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_hangul_syllable_type_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_xdigit_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_full_composition_exclusion_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_vertical_orientation_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_changes_when_nfkc_casefolded_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_hex_digit_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_joining_type_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_xid_continue_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_soft_dotted_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_ideographic_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_canonical_combining_class_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_word_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_changes_when_titlecased_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_bidi_class_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_sentence_terminal_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_indic_conjunct_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_general_category_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_ascii_hex_digit_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_line_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_east_asian_width_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_grapheme_cluster_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_indic_conjunct_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_general_category_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_logical_order_exception_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_case_ignorable_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_diacritic_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_grapheme_extend_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_bidi_mirroring_glyph_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_general_category_mask_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_nfc_inert_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_indic_conjunct_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_script_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_lowercase_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_joining_type_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_emoji_modifier_base_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_sentence_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_grapheme_base_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_canonical_combining_class_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_emoji_modifier_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_join_control_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_joining_type_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_line_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_ids_unary_operator_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_word_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_math_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_pattern_white_space_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_nfkd_inert_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_id_compat_math_start_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_alphabetic_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_grapheme_cluster_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_blank_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_default_ignorable_code_point_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_extended_pictographic_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_vertical_orientation_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_canonical_combining_class_v1.rs.data + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/icu_properties_data-2b84c2e6a3ebdd72.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_indic_syllabic_category_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_pattern_syntax_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_changes_when_lowercased_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_ids_trinary_operator_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_regional_indicator_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_changes_when_uppercased_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_changes_when_casemapped_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_script_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_indic_syllabic_category_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_ids_binary_operator_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_radical_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_extender_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_indic_syllabic_category_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_emoji_component_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_id_compat_math_continue_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_dash_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_general_category_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_grapheme_cluster_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_emoji_presentation_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_case_sensitive_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_bidi_class_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_nfd_inert_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_graph_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_bidi_control_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_hangul_syllable_type_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_word_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_line_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_white_space_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_unified_ideograph_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_noncharacter_code_point_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_grapheme_cluster_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_indic_syllabic_category_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_east_asian_width_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_script_with_extensions_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_hangul_syllable_type_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_emoji_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_line_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_bidi_class_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_bidi_mirrored_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_grapheme_link_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_script_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_east_asian_width_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_sentence_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_alnum_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_general_category_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_vertical_orientation_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_changes_when_casefolded_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_hangul_syllable_type_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_sentence_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_quotation_mark_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_deprecated_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_xid_start_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_segment_starter_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_hyphen_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_variation_selector_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_word_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_east_asian_width_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_sentence_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_modifier_combining_mark_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_indic_conjunct_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_bidi_class_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_prepended_concatenation_mark_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_joining_type_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_print_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_canonical_combining_class_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_terminal_punctuation_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_vertical_orientation_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_cased_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_nfkc_inert_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_id_continue_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_basic_emoji_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_id_start_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_uppercase_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_script_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_hangul_syllable_type_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_xdigit_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_full_composition_exclusion_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_vertical_orientation_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_changes_when_nfkc_casefolded_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_hex_digit_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_joining_type_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_xid_continue_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_soft_dotted_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_ideographic_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_canonical_combining_class_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_word_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_changes_when_titlecased_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_bidi_class_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_sentence_terminal_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_indic_conjunct_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_general_category_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_ascii_hex_digit_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_line_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_east_asian_width_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_grapheme_cluster_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_indic_conjunct_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_general_category_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_logical_order_exception_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_case_ignorable_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_diacritic_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_grapheme_extend_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_bidi_mirroring_glyph_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_general_category_mask_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_nfc_inert_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_indic_conjunct_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_script_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_lowercase_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_joining_type_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_emoji_modifier_base_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_sentence_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_grapheme_base_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_canonical_combining_class_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_emoji_modifier_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_join_control_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_joining_type_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_line_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_ids_unary_operator_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_word_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_math_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_pattern_white_space_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_nfkd_inert_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_id_compat_math_start_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_alphabetic_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_grapheme_cluster_break_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_blank_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_default_ignorable_code_point_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_extended_pictographic_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_vertical_orientation_v1.rs.data /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_canonical_combining_class_v1.rs.data + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_indic_syllabic_category_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_pattern_syntax_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_changes_when_lowercased_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_ids_trinary_operator_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_regional_indicator_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_changes_when_uppercased_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_changes_when_casemapped_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_script_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_indic_syllabic_category_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_ids_binary_operator_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_radical_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_extender_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_indic_syllabic_category_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_emoji_component_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_id_compat_math_continue_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_dash_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_general_category_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_grapheme_cluster_break_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_emoji_presentation_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_case_sensitive_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_bidi_class_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_nfd_inert_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_graph_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_bidi_control_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_hangul_syllable_type_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_word_break_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_line_break_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_white_space_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_unified_ideograph_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_noncharacter_code_point_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_grapheme_cluster_break_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_indic_syllabic_category_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_east_asian_width_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_script_with_extensions_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_hangul_syllable_type_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_emoji_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_line_break_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_bidi_class_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_bidi_mirrored_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_grapheme_link_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_script_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_east_asian_width_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_sentence_break_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_alnum_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_general_category_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_vertical_orientation_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_changes_when_casefolded_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_hangul_syllable_type_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_sentence_break_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_quotation_mark_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_deprecated_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_xid_start_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_segment_starter_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_hyphen_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_variation_selector_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_word_break_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_east_asian_width_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_sentence_break_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_modifier_combining_mark_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_indic_conjunct_break_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_bidi_class_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_prepended_concatenation_mark_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_joining_type_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_print_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_canonical_combining_class_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_terminal_punctuation_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_vertical_orientation_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_cased_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_nfkc_inert_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_id_continue_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_basic_emoji_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_id_start_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_uppercase_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_script_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_hangul_syllable_type_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_xdigit_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_full_composition_exclusion_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_vertical_orientation_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_changes_when_nfkc_casefolded_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_hex_digit_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_joining_type_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_xid_continue_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_soft_dotted_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_ideographic_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_canonical_combining_class_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_word_break_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_changes_when_titlecased_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_bidi_class_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_sentence_terminal_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_indic_conjunct_break_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_general_category_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_ascii_hex_digit_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_line_break_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_east_asian_width_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_grapheme_cluster_break_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_indic_conjunct_break_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_general_category_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_logical_order_exception_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_case_ignorable_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_diacritic_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_grapheme_extend_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_bidi_mirroring_glyph_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_general_category_mask_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_nfc_inert_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_indic_conjunct_break_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_script_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_lowercase_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_joining_type_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_emoji_modifier_base_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_sentence_break_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_grapheme_base_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_long_canonical_combining_class_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_emoji_modifier_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_join_control_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_joining_type_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_short_line_break_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_ids_unary_operator_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_word_break_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_math_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_pattern_white_space_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_nfkd_inert_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_id_compat_math_start_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_alphabetic_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_enum_grapheme_cluster_break_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_blank_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_default_ignorable_code_point_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_binary_extended_pictographic_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_vertical_orientation_v1.rs.data: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/../data/property_name_parse_canonical_combining_class_v1.rs.data: diff --git a/src-tauri/tms_service/target/owl/debug/deps/icu_provider-83d11719cf981b96.d b/src-tauri/tms_service/target/owl/debug/deps/icu_provider-83d11719cf981b96.d new file mode 100644 index 0000000..cca19b4 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/icu_provider-83d11719cf981b96.d @@ -0,0 +1,17 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libicu_provider-83d11719cf981b96.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/baked.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/baked/zerotrie.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/buf.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/constructors.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/dynutil.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/data_provider.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/request.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/response.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/marker.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/varule_traits.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/fallback.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/icu_provider-83d11719cf981b96.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/baked.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/baked/zerotrie.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/buf.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/constructors.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/dynutil.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/data_provider.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/request.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/response.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/marker.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/varule_traits.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/fallback.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/baked.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/baked/zerotrie.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/buf.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/constructors.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/dynutil.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/data_provider.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/request.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/response.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/marker.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/varule_traits.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/fallback.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/idna-3d2e662b022b3a75.d b/src-tauri/tms_service/target/owl/debug/deps/idna-3d2e662b022b3a75.d new file mode 100644 index 0000000..d75e8a8 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/idna-3d2e662b022b3a75.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libidna-3d2e662b022b3a75.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/deprecated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/punycode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/uts46.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/idna-3d2e662b022b3a75.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/deprecated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/punycode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/uts46.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/deprecated.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/punycode.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/uts46.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/idna_adapter-5d4613f05c9c3e16.d b/src-tauri/tms_service/target/owl/debug/deps/idna_adapter-5d4613f05c9c3e16.d new file mode 100644 index 0000000..aaf59ac --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/idna_adapter-5d4613f05c9c3e16.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libidna_adapter-5d4613f05c9c3e16.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.1/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/idna_adapter-5d4613f05c9c3e16.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.1/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.1/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/indexmap-1653418857da0d7c.d b/src-tauri/tms_service/target/owl/debug/deps/indexmap-1653418857da0d7c.d new file mode 100644 index 0000000..240c681 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/indexmap-1653418857da0d7c.d @@ -0,0 +1,21 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libindexmap-1653418857da0d7c.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/arbitrary.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/entry.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/extract.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/entry.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/mutable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/raw_entry_v1.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/mutable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/slice.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/indexmap-1653418857da0d7c.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/arbitrary.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/entry.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/extract.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/entry.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/mutable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/raw_entry_v1.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/mutable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/slice.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/arbitrary.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/entry.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/extract.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/util.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/entry.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/iter.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/mutable.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/slice.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/raw_entry_v1.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/iter.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/mutable.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/slice.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/ipnet-846995f364125de3.d b/src-tauri/tms_service/target/owl/debug/deps/ipnet-846995f364125de3.d new file mode 100644 index 0000000..03ec700 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/ipnet-846995f364125de3.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libipnet-846995f364125de3.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/src/ipext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/src/ipnet.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/src/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/src/mask.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/ipnet-846995f364125de3.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/src/ipext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/src/ipnet.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/src/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/src/mask.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/src/ipext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/src/ipnet.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/src/parser.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/src/mask.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/iri_string-57a60e3ff0c3e1ce.d b/src-tauri/tms_service/target/owl/debug/deps/iri_string-57a60e3ff0c3e1ce.d new file mode 100644 index 0000000..18b8801 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/iri_string-57a60e3ff0c3e1ce.d @@ -0,0 +1,53 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libiri_string-57a60e3ff0c3e1ce.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/build.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/components.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/components/authority.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/convert.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/format.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/mask_password.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/normalize.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/normalize/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/normalize/path.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/normalize/pct_case.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/char.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/str.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/str/maybe_pct_encoded.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/trusted.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/trusted/authority.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/validate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/validate/authority.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/validate/path.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/percent_encode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/raw.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/resolve.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/spec.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/spec/internal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/components.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/context.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/expand.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/parser/char.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/parser/validate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/simple_context.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/string/owned.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/absolute.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/fragment.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/normal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/query.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/reference.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/relative.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/iri.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/uri.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/validate.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/iri_string-57a60e3ff0c3e1ce.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/build.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/components.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/components/authority.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/convert.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/format.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/mask_password.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/normalize.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/normalize/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/normalize/path.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/normalize/pct_case.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/char.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/str.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/str/maybe_pct_encoded.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/trusted.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/trusted/authority.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/validate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/validate/authority.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/validate/path.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/percent_encode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/raw.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/resolve.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/spec.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/spec/internal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/components.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/context.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/expand.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/parser/char.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/parser/validate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/simple_context.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/string/owned.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/absolute.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/fragment.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/normal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/query.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/reference.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/relative.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/iri.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/uri.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/validate.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/build.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/components.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/components/authority.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/convert.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/format.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/mask_password.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/normalize.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/normalize/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/normalize/path.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/normalize/pct_case.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/char.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/str.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/str/maybe_pct_encoded.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/trusted.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/trusted/authority.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/validate.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/validate/authority.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/parser/validate/path.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/percent_encode.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/raw.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/resolve.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/spec.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/spec/internal.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/components.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/context.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/expand.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/parser.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/parser/char.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/parser/validate.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/simple_context.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/string.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/template/string/owned.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/absolute.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/fragment.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/normal.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/query.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/reference.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/generic/relative.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/iri.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/types/uri.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.10/src/validate.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/itoa-17d034c4879a625d.d b/src-tauri/tms_service/target/owl/debug/deps/itoa-17d034c4879a625d.d new file mode 100644 index 0000000..513feeb --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/itoa-17d034c4879a625d.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libitoa-17d034c4879a625d.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.17/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.17/src/u128_ext.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/itoa-17d034c4879a625d.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.17/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.17/src/u128_ext.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.17/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.17/src/u128_ext.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/libahash-1ca5fee30a3aaf49.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libahash-1ca5fee30a3aaf49.rmeta new file mode 100644 index 0000000..25a92b9 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libahash-1ca5fee30a3aaf49.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libaho_corasick-3e57f30a0d50a0f8.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libaho_corasick-3e57f30a0d50a0f8.rmeta new file mode 100644 index 0000000..0ec1a8f Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libaho_corasick-3e57f30a0d50a0f8.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libanyhow-104f74026926a041.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libanyhow-104f74026926a041.rmeta new file mode 100644 index 0000000..2da8569 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libanyhow-104f74026926a041.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libatomic_waker-385aa95a16935540.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libatomic_waker-385aa95a16935540.rmeta new file mode 100644 index 0000000..5b593f4 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libatomic_waker-385aa95a16935540.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libbase64-7abcc3da73f67c2e.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libbase64-7abcc3da73f67c2e.rmeta new file mode 100644 index 0000000..ff7a3f7 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libbase64-7abcc3da73f67c2e.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libbitflags-79977254c71d3e88.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libbitflags-79977254c71d3e88.rmeta new file mode 100644 index 0000000..cc5a5e2 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libbitflags-79977254c71d3e88.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libbyteorder-4b4e71c2bcc1ba60.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libbyteorder-4b4e71c2bcc1ba60.rmeta new file mode 100644 index 0000000..5569eee Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libbyteorder-4b4e71c2bcc1ba60.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libbytes-753fc20686ca74e2.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libbytes-753fc20686ca74e2.rmeta new file mode 100644 index 0000000..a302178 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libbytes-753fc20686ca74e2.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libc-1b76c6780cc870c3.d b/src-tauri/tms_service/target/owl/debug/deps/libc-1b76c6780cc870c3.d new file mode 100644 index 0000000..e3cb42d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/libc-1b76c6780cc870c3.d @@ -0,0 +1,45 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/liblibc-1b76c6780cc870c3.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/bsd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/posix/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/posix/pthread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/posix/unistd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libc/signal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libc/unistd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/introspection.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/pthread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/pthread_impl.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/pthread_spis.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/qos.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/sched.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/spawn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/stack_np.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/sys/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/sys/_pthread/_pthread_types.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/sys/qos.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/arm/_mcontext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mach/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mach/arm/_structs.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mach/machine/_structs.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/machine/_mcontext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/sys/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/sys/signal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/sys/_types/_ucontext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/primitives.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/types.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/liblibc-1b76c6780cc870c3.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/bsd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/posix/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/posix/pthread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/posix/unistd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libc/signal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libc/unistd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/introspection.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/pthread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/pthread_impl.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/pthread_spis.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/qos.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/sched.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/spawn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/stack_np.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/sys/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/sys/_pthread/_pthread_types.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/sys/qos.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/arm/_mcontext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mach/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mach/arm/_structs.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mach/machine/_structs.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/machine/_mcontext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/sys/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/sys/signal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/sys/_types/_ucontext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/primitives.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/types.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libc-1b76c6780cc870c3.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/bsd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/posix/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/posix/pthread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/posix/unistd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libc/signal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libc/unistd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/introspection.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/pthread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/pthread_impl.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/pthread_spis.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/qos.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/sched.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/spawn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/stack_np.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/sys/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/sys/_pthread/_pthread_types.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/sys/qos.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/arm/_mcontext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mach/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mach/arm/_structs.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mach/machine/_structs.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/machine/_mcontext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/sys/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/sys/signal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/sys/_types/_ucontext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/primitives.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/types.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/bsd.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/posix/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/posix/pthread.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/posix/unistd.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libc/signal.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libc/unistd.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/introspection.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/pthread.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/pthread_impl.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/pthread_spis.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/qos.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/sched.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/spawn.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/stack_np.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/sys/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/sys/_pthread/_pthread_types.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/sys/qos.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/arm/_mcontext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mach/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mach/arm/_structs.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mach/machine/_structs.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/machine/_mcontext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/sys/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/sys/signal.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/sys/_types/_ucontext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/primitives.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/apple/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/apple/b64/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/apple/b64/aarch64/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/types.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/libc-a48f6672a612f883.d b/src-tauri/tms_service/target/owl/debug/deps/libc-a48f6672a612f883.d new file mode 100644 index 0000000..312bbbd --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/libc-a48f6672a612f883.d @@ -0,0 +1,43 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/liblibc-a48f6672a612f883.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/bsd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/posix/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/posix/pthread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/posix/unistd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libc/signal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libc/unistd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/introspection.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/pthread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/pthread_impl.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/pthread_spis.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/qos.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/sched.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/spawn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/stack_np.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/sys/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/sys/_pthread/_pthread_types.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/sys/qos.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/arm/_mcontext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mach/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mach/arm/_structs.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mach/machine/_structs.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/machine/_mcontext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/sys/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/sys/signal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/sys/_types/_ucontext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/primitives.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/types.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libc-a48f6672a612f883.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/bsd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/posix/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/posix/pthread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/posix/unistd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libc/signal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libc/unistd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/introspection.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/pthread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/pthread_impl.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/pthread_spis.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/qos.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/sched.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/spawn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/stack_np.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/sys/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/sys/_pthread/_pthread_types.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/sys/qos.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/arm/_mcontext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mach/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mach/arm/_structs.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mach/machine/_structs.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/machine/_mcontext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/sys/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/sys/signal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/sys/_types/_ucontext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/primitives.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/apple/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/apple/b64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/apple/b64/aarch64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/types.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/bsd.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/posix/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/posix/pthread.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/common/posix/unistd.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libc/signal.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libc/unistd.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/introspection.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/pthread.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/pthread_impl.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/pthread_spis.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/qos.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/sched.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/spawn.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/pthread_/stack_np.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/sys/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/sys/_pthread/_pthread_types.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/libpthread/sys/qos.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/arm/_mcontext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mach/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mach/arm/_structs.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/mach/machine/_structs.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/machine/_mcontext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/sys/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/sys/signal.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/new/apple/xnu/sys/_types/_ucontext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/primitives.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/apple/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/apple/b64/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/unix/bsd/apple/b64/aarch64/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.182/src/types.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/libcfg_if-2e62c210e224bb15.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libcfg_if-2e62c210e224bb15.rmeta new file mode 100644 index 0000000..2ad43a8 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libcfg_if-2e62c210e224bb15.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libcfg_if-c95dc1cd1ff1d759.rlib b/src-tauri/tms_service/target/owl/debug/deps/libcfg_if-c95dc1cd1ff1d759.rlib new file mode 100644 index 0000000..ecf6f27 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libcfg_if-c95dc1cd1ff1d759.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libcfg_if-c95dc1cd1ff1d759.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libcfg_if-c95dc1cd1ff1d759.rmeta new file mode 100644 index 0000000..50ba35b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libcfg_if-c95dc1cd1ff1d759.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libcore_foundation-5daafef57b60e425.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libcore_foundation-5daafef57b60e425.rmeta new file mode 100644 index 0000000..1cca6fc Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libcore_foundation-5daafef57b60e425.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libcore_foundation-99406745fc458f43.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libcore_foundation-99406745fc458f43.rmeta new file mode 100644 index 0000000..749a25c Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libcore_foundation-99406745fc458f43.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libcore_foundation_sys-e4f1665cbb631a20.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libcore_foundation_sys-e4f1665cbb631a20.rmeta new file mode 100644 index 0000000..f8f23e5 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libcore_foundation_sys-e4f1665cbb631a20.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libcssparser-13b2bdcf91cb99c1.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libcssparser-13b2bdcf91cb99c1.rmeta new file mode 100644 index 0000000..4de6fff Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libcssparser-13b2bdcf91cb99c1.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libcssparser_macros-f44134ad1f28bef5.dylib b/src-tauri/tms_service/target/owl/debug/deps/libcssparser_macros-f44134ad1f28bef5.dylib new file mode 100755 index 0000000..6e23ec3 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libcssparser_macros-f44134ad1f28bef5.dylib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libdebug_unreachable-de20d0d9fb09bc9f.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libdebug_unreachable-de20d0d9fb09bc9f.rmeta new file mode 100644 index 0000000..bca8bc4 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libdebug_unreachable-de20d0d9fb09bc9f.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libderive_more-c78cbfc27dbaef26.dylib b/src-tauri/tms_service/target/owl/debug/deps/libderive_more-c78cbfc27dbaef26.dylib new file mode 100755 index 0000000..6c61fc7 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libderive_more-c78cbfc27dbaef26.dylib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libdisplaydoc-a612d43852baa8e5.dylib b/src-tauri/tms_service/target/owl/debug/deps/libdisplaydoc-a612d43852baa8e5.dylib new file mode 100755 index 0000000..ff15aa6 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libdisplaydoc-a612d43852baa8e5.dylib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libdtoa-406b6cb38c3d02d8.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libdtoa-406b6cb38c3d02d8.rmeta new file mode 100644 index 0000000..aab2b0c Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libdtoa-406b6cb38c3d02d8.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libdtoa_short-6de159c9c8744846.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libdtoa_short-6de159c9c8744846.rmeta new file mode 100644 index 0000000..c34b353 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libdtoa_short-6de159c9c8744846.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libego_tree-809c8514ee657827.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libego_tree-809c8514ee657827.rmeta new file mode 100644 index 0000000..44abf0f Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libego_tree-809c8514ee657827.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libencoding_rs-7d46cbb1301f817e.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libencoding_rs-7d46cbb1301f817e.rmeta new file mode 100644 index 0000000..5fc97d4 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libencoding_rs-7d46cbb1301f817e.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libequivalent-8c7877b395c811e7.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libequivalent-8c7877b395c811e7.rmeta new file mode 100644 index 0000000..6f25ada Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libequivalent-8c7877b395c811e7.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/liberrno-0868ecd75facc30b.rmeta b/src-tauri/tms_service/target/owl/debug/deps/liberrno-0868ecd75facc30b.rmeta new file mode 100644 index 0000000..4027cfb Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/liberrno-0868ecd75facc30b.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libfastrand-1f5b5e3c4d7189e6.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libfastrand-1f5b5e3c4d7189e6.rmeta new file mode 100644 index 0000000..1960620 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libfastrand-1f5b5e3c4d7189e6.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libfnv-cac04d70d816a166.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libfnv-cac04d70d816a166.rmeta new file mode 100644 index 0000000..721f316 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libfnv-cac04d70d816a166.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libform_urlencoded-f4cec7ff2ed7fa87.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libform_urlencoded-f4cec7ff2ed7fa87.rmeta new file mode 100644 index 0000000..e933dd2 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libform_urlencoded-f4cec7ff2ed7fa87.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libfutf-3d480dde70c9eb27.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libfutf-3d480dde70c9eb27.rmeta new file mode 100644 index 0000000..3c5667d Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libfutf-3d480dde70c9eb27.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libfutures_channel-42b8cf3f351ac3e9.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libfutures_channel-42b8cf3f351ac3e9.rmeta new file mode 100644 index 0000000..83952a4 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libfutures_channel-42b8cf3f351ac3e9.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libfutures_core-6ba184d1b6917bc7.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libfutures_core-6ba184d1b6917bc7.rmeta new file mode 100644 index 0000000..91f15f2 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libfutures_core-6ba184d1b6917bc7.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libfutures_sink-45af2ac4486dcddc.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libfutures_sink-45af2ac4486dcddc.rmeta new file mode 100644 index 0000000..dfea8e3 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libfutures_sink-45af2ac4486dcddc.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libfutures_task-2042ebbb5636ef78.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libfutures_task-2042ebbb5636ef78.rmeta new file mode 100644 index 0000000..3c14cf8 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libfutures_task-2042ebbb5636ef78.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libfutures_util-21df2272dea5d737.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libfutures_util-21df2272dea5d737.rmeta new file mode 100644 index 0000000..c5cf6d3 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libfutures_util-21df2272dea5d737.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libfxhash-655a24a699d73c8e.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libfxhash-655a24a699d73c8e.rmeta new file mode 100644 index 0000000..1b39cc2 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libfxhash-655a24a699d73c8e.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libgetopts-9a8144cdacd76599.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libgetopts-9a8144cdacd76599.rmeta new file mode 100644 index 0000000..0e057c3 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libgetopts-9a8144cdacd76599.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libgetrandom-b0a0a65c90c4bca7.rlib b/src-tauri/tms_service/target/owl/debug/deps/libgetrandom-b0a0a65c90c4bca7.rlib new file mode 100644 index 0000000..3ba88e3 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libgetrandom-b0a0a65c90c4bca7.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libgetrandom-b0a0a65c90c4bca7.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libgetrandom-b0a0a65c90c4bca7.rmeta new file mode 100644 index 0000000..cd5453e Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libgetrandom-b0a0a65c90c4bca7.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libgetrandom-c9aef3663a0c6675.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libgetrandom-c9aef3663a0c6675.rmeta new file mode 100644 index 0000000..dfd5fa8 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libgetrandom-c9aef3663a0c6675.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libgetrandom-d485936f40be71ee.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libgetrandom-d485936f40be71ee.rmeta new file mode 100644 index 0000000..d4566c5 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libgetrandom-d485936f40be71ee.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libh2-ed15e53bc017b2b4.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libh2-ed15e53bc017b2b4.rmeta new file mode 100644 index 0000000..5840303 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libh2-ed15e53bc017b2b4.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libhashbrown-ce379e75cd4d39f2.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libhashbrown-ce379e75cd4d39f2.rmeta new file mode 100644 index 0000000..d004329 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libhashbrown-ce379e75cd4d39f2.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libhtml5ever-3203f08401979c29.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libhtml5ever-3203f08401979c29.rmeta new file mode 100644 index 0000000..6fd3b4a Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libhtml5ever-3203f08401979c29.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libhtml_scraper-b4225ed1189a3c12.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libhtml_scraper-b4225ed1189a3c12.rmeta new file mode 100644 index 0000000..ae78924 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libhtml_scraper-b4225ed1189a3c12.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libhttp-84cfa03a8e2d379e.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libhttp-84cfa03a8e2d379e.rmeta new file mode 100644 index 0000000..748af70 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libhttp-84cfa03a8e2d379e.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libhttp_body-e29dae78b6ccaa97.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libhttp_body-e29dae78b6ccaa97.rmeta new file mode 100644 index 0000000..4c90e40 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libhttp_body-e29dae78b6ccaa97.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libhttp_body_util-2ee8b882934db7fa.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libhttp_body_util-2ee8b882934db7fa.rmeta new file mode 100644 index 0000000..732f5d9 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libhttp_body_util-2ee8b882934db7fa.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libhttparse-7c561d7147d4eef2.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libhttparse-7c561d7147d4eef2.rmeta new file mode 100644 index 0000000..aa23fdf Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libhttparse-7c561d7147d4eef2.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libhyper-d3cc9636f1286ef9.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libhyper-d3cc9636f1286ef9.rmeta new file mode 100644 index 0000000..5059968 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libhyper-d3cc9636f1286ef9.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libhyper_tls-1715619fdd5e28b7.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libhyper_tls-1715619fdd5e28b7.rmeta new file mode 100644 index 0000000..ae0b2b1 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libhyper_tls-1715619fdd5e28b7.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libhyper_util-27bb15f3b2b6299f.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libhyper_util-27bb15f3b2b6299f.rmeta new file mode 100644 index 0000000..e7ac20e Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libhyper_util-27bb15f3b2b6299f.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libicu_collections-69708450be497605.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libicu_collections-69708450be497605.rmeta new file mode 100644 index 0000000..b3ed78a Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libicu_collections-69708450be497605.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libicu_locale_core-8eb1e9ef0ba9f436.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libicu_locale_core-8eb1e9ef0ba9f436.rmeta new file mode 100644 index 0000000..0a81ebc Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libicu_locale_core-8eb1e9ef0ba9f436.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libicu_normalizer-cfc2a9aa2d96aeda.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libicu_normalizer-cfc2a9aa2d96aeda.rmeta new file mode 100644 index 0000000..36a4305 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libicu_normalizer-cfc2a9aa2d96aeda.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libicu_normalizer_data-792d8ca86354cd8b.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libicu_normalizer_data-792d8ca86354cd8b.rmeta new file mode 100644 index 0000000..a9ab9c3 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libicu_normalizer_data-792d8ca86354cd8b.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libicu_properties-31fec4cc4c700256.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libicu_properties-31fec4cc4c700256.rmeta new file mode 100644 index 0000000..51d6694 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libicu_properties-31fec4cc4c700256.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libicu_properties_data-2b84c2e6a3ebdd72.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libicu_properties_data-2b84c2e6a3ebdd72.rmeta new file mode 100644 index 0000000..9fd51e6 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libicu_properties_data-2b84c2e6a3ebdd72.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libicu_provider-83d11719cf981b96.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libicu_provider-83d11719cf981b96.rmeta new file mode 100644 index 0000000..ba651b7 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libicu_provider-83d11719cf981b96.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libidna-3d2e662b022b3a75.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libidna-3d2e662b022b3a75.rmeta new file mode 100644 index 0000000..5ff13c8 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libidna-3d2e662b022b3a75.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libidna_adapter-5d4613f05c9c3e16.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libidna_adapter-5d4613f05c9c3e16.rmeta new file mode 100644 index 0000000..d717085 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libidna_adapter-5d4613f05c9c3e16.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libindexmap-1653418857da0d7c.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libindexmap-1653418857da0d7c.rmeta new file mode 100644 index 0000000..665b7b5 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libindexmap-1653418857da0d7c.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libipnet-846995f364125de3.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libipnet-846995f364125de3.rmeta new file mode 100644 index 0000000..dfaa93b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libipnet-846995f364125de3.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libiri_string-57a60e3ff0c3e1ce.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libiri_string-57a60e3ff0c3e1ce.rmeta new file mode 100644 index 0000000..232f09d Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libiri_string-57a60e3ff0c3e1ce.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libitoa-17d034c4879a625d.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libitoa-17d034c4879a625d.rmeta new file mode 100644 index 0000000..b4d7af4 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libitoa-17d034c4879a625d.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/liblibc-1b76c6780cc870c3.rlib b/src-tauri/tms_service/target/owl/debug/deps/liblibc-1b76c6780cc870c3.rlib new file mode 100644 index 0000000..927182d Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/liblibc-1b76c6780cc870c3.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/liblibc-1b76c6780cc870c3.rmeta b/src-tauri/tms_service/target/owl/debug/deps/liblibc-1b76c6780cc870c3.rmeta new file mode 100644 index 0000000..6a2938b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/liblibc-1b76c6780cc870c3.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/liblibc-a48f6672a612f883.rmeta b/src-tauri/tms_service/target/owl/debug/deps/liblibc-a48f6672a612f883.rmeta new file mode 100644 index 0000000..34c47c7 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/liblibc-a48f6672a612f883.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/liblitemap-517a131136202ae6.rmeta b/src-tauri/tms_service/target/owl/debug/deps/liblitemap-517a131136202ae6.rmeta new file mode 100644 index 0000000..8239d3b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/liblitemap-517a131136202ae6.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/liblock_api-c41db7abd93774ff.rmeta b/src-tauri/tms_service/target/owl/debug/deps/liblock_api-c41db7abd93774ff.rmeta new file mode 100644 index 0000000..63a1efc Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/liblock_api-c41db7abd93774ff.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/liblog-7b87799170767125.rmeta b/src-tauri/tms_service/target/owl/debug/deps/liblog-7b87799170767125.rmeta new file mode 100644 index 0000000..2b2a73f Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/liblog-7b87799170767125.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libmac-8bcbbf2eea6c88e0.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libmac-8bcbbf2eea6c88e0.rmeta new file mode 100644 index 0000000..e662b64 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libmac-8bcbbf2eea6c88e0.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libmarkup5ever-c18c3c633226999e.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libmarkup5ever-c18c3c633226999e.rmeta new file mode 100644 index 0000000..0643b3b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libmarkup5ever-c18c3c633226999e.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libmemchr-2d24d0bb92e43ade.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libmemchr-2d24d0bb92e43ade.rmeta new file mode 100644 index 0000000..df6d36b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libmemchr-2d24d0bb92e43ade.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libmime-6cb8d6c929e91b9a.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libmime-6cb8d6c929e91b9a.rmeta new file mode 100644 index 0000000..cef0b0e Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libmime-6cb8d6c929e91b9a.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libmio-46b41530ef20a618.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libmio-46b41530ef20a618.rmeta new file mode 100644 index 0000000..b708aee Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libmio-46b41530ef20a618.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libnative_tls-2850d7a33d8eef3a.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libnative_tls-2850d7a33d8eef3a.rmeta new file mode 100644 index 0000000..fe08193 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libnative_tls-2850d7a33d8eef3a.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libonce_cell-4c5c529dad6841fd.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libonce_cell-4c5c529dad6841fd.rmeta new file mode 100644 index 0000000..24299f9 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libonce_cell-4c5c529dad6841fd.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libparking_lot-e5a4693dad116906.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libparking_lot-e5a4693dad116906.rmeta new file mode 100644 index 0000000..dd124c6 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libparking_lot-e5a4693dad116906.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libparking_lot_core-14f276a156fe5f64.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libparking_lot_core-14f276a156fe5f64.rmeta new file mode 100644 index 0000000..3f2f53a Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libparking_lot_core-14f276a156fe5f64.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libpercent_encoding-b65fc5a43e05656a.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libpercent_encoding-b65fc5a43e05656a.rmeta new file mode 100644 index 0000000..8be69a1 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libpercent_encoding-b65fc5a43e05656a.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libphf-238aac8c7b9a320e.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libphf-238aac8c7b9a320e.rmeta new file mode 100644 index 0000000..5bf1e3e Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libphf-238aac8c7b9a320e.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libphf-a5e281d909db600d.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libphf-a5e281d909db600d.rmeta new file mode 100644 index 0000000..7088c74 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libphf-a5e281d909db600d.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libphf_codegen-46f97fb85db18d14.rlib b/src-tauri/tms_service/target/owl/debug/deps/libphf_codegen-46f97fb85db18d14.rlib new file mode 100644 index 0000000..c957122 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libphf_codegen-46f97fb85db18d14.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libphf_codegen-46f97fb85db18d14.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libphf_codegen-46f97fb85db18d14.rmeta new file mode 100644 index 0000000..43b2579 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libphf_codegen-46f97fb85db18d14.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libphf_codegen-744d5939194bb193.rlib b/src-tauri/tms_service/target/owl/debug/deps/libphf_codegen-744d5939194bb193.rlib new file mode 100644 index 0000000..a922c6e Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libphf_codegen-744d5939194bb193.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libphf_codegen-744d5939194bb193.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libphf_codegen-744d5939194bb193.rmeta new file mode 100644 index 0000000..c1397a1 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libphf_codegen-744d5939194bb193.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libphf_generator-84046bf9ebb00ed7.rlib b/src-tauri/tms_service/target/owl/debug/deps/libphf_generator-84046bf9ebb00ed7.rlib new file mode 100644 index 0000000..8d532dc Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libphf_generator-84046bf9ebb00ed7.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libphf_generator-84046bf9ebb00ed7.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libphf_generator-84046bf9ebb00ed7.rmeta new file mode 100644 index 0000000..60333a6 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libphf_generator-84046bf9ebb00ed7.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libphf_generator-ca66433ef357a1d7.rlib b/src-tauri/tms_service/target/owl/debug/deps/libphf_generator-ca66433ef357a1d7.rlib new file mode 100644 index 0000000..d1c062a Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libphf_generator-ca66433ef357a1d7.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libphf_generator-ca66433ef357a1d7.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libphf_generator-ca66433ef357a1d7.rmeta new file mode 100644 index 0000000..c0b851e Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libphf_generator-ca66433ef357a1d7.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libphf_macros-2959eca873977a97.dylib b/src-tauri/tms_service/target/owl/debug/deps/libphf_macros-2959eca873977a97.dylib new file mode 100755 index 0000000..43b9050 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libphf_macros-2959eca873977a97.dylib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-72272db6351fa71b.rlib b/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-72272db6351fa71b.rlib new file mode 100644 index 0000000..27dbfa7 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-72272db6351fa71b.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-72272db6351fa71b.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-72272db6351fa71b.rmeta new file mode 100644 index 0000000..7674811 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-72272db6351fa71b.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-cdf7b96f714c2ffe.rlib b/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-cdf7b96f714c2ffe.rlib new file mode 100644 index 0000000..d5dcb80 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-cdf7b96f714c2ffe.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-cdf7b96f714c2ffe.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-cdf7b96f714c2ffe.rmeta new file mode 100644 index 0000000..395cd39 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-cdf7b96f714c2ffe.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-d820095d9f30a958.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-d820095d9f30a958.rmeta new file mode 100644 index 0000000..e3bad53 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-d820095d9f30a958.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-e86ba43a3113a033.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-e86ba43a3113a033.rmeta new file mode 100644 index 0000000..64a02a7 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-e86ba43a3113a033.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libpin_project_lite-fdb6f2f737f0a416.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libpin_project_lite-fdb6f2f737f0a416.rmeta new file mode 100644 index 0000000..45061c5 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libpin_project_lite-fdb6f2f737f0a416.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libpin_utils-b7fd3d9367579158.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libpin_utils-b7fd3d9367579158.rmeta new file mode 100644 index 0000000..4b6edb5 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libpin_utils-b7fd3d9367579158.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libpotential_utf-55b7962b8a2ea7d6.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libpotential_utf-55b7962b8a2ea7d6.rmeta new file mode 100644 index 0000000..0bc1a3e Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libpotential_utf-55b7962b8a2ea7d6.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libppv_lite86-05224697cc478126.rlib b/src-tauri/tms_service/target/owl/debug/deps/libppv_lite86-05224697cc478126.rlib new file mode 100644 index 0000000..ea95bcf Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libppv_lite86-05224697cc478126.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libppv_lite86-05224697cc478126.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libppv_lite86-05224697cc478126.rmeta new file mode 100644 index 0000000..da51dae Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libppv_lite86-05224697cc478126.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libprecomputed_hash-8ff83f9112c5d0ff.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libprecomputed_hash-8ff83f9112c5d0ff.rmeta new file mode 100644 index 0000000..7d1e925 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libprecomputed_hash-8ff83f9112c5d0ff.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libproc_macro2-c68f226c30305477.rlib b/src-tauri/tms_service/target/owl/debug/deps/libproc_macro2-c68f226c30305477.rlib new file mode 100644 index 0000000..2b73cb0 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libproc_macro2-c68f226c30305477.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libproc_macro2-c68f226c30305477.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libproc_macro2-c68f226c30305477.rmeta new file mode 100644 index 0000000..9150397 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libproc_macro2-c68f226c30305477.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libquote-320b6bd63425449d.rlib b/src-tauri/tms_service/target/owl/debug/deps/libquote-320b6bd63425449d.rlib new file mode 100644 index 0000000..acc982d Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libquote-320b6bd63425449d.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libquote-320b6bd63425449d.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libquote-320b6bd63425449d.rmeta new file mode 100644 index 0000000..184d7a9 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libquote-320b6bd63425449d.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/librand-bbca310661266201.rlib b/src-tauri/tms_service/target/owl/debug/deps/librand-bbca310661266201.rlib new file mode 100644 index 0000000..37a233f Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/librand-bbca310661266201.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/librand-bbca310661266201.rmeta b/src-tauri/tms_service/target/owl/debug/deps/librand-bbca310661266201.rmeta new file mode 100644 index 0000000..e8ffad4 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/librand-bbca310661266201.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/librand_chacha-31ec861a020a01e9.rlib b/src-tauri/tms_service/target/owl/debug/deps/librand_chacha-31ec861a020a01e9.rlib new file mode 100644 index 0000000..ad1cbca Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/librand_chacha-31ec861a020a01e9.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/librand_chacha-31ec861a020a01e9.rmeta b/src-tauri/tms_service/target/owl/debug/deps/librand_chacha-31ec861a020a01e9.rmeta new file mode 100644 index 0000000..83ca2e7 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/librand_chacha-31ec861a020a01e9.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/librand_core-d91b9ad9e43e8e8a.rlib b/src-tauri/tms_service/target/owl/debug/deps/librand_core-d91b9ad9e43e8e8a.rlib new file mode 100644 index 0000000..0933e11 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/librand_core-d91b9ad9e43e8e8a.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/librand_core-d91b9ad9e43e8e8a.rmeta b/src-tauri/tms_service/target/owl/debug/deps/librand_core-d91b9ad9e43e8e8a.rmeta new file mode 100644 index 0000000..1e564a3 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/librand_core-d91b9ad9e43e8e8a.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libregex-7948c90605c550d5.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libregex-7948c90605c550d5.rmeta new file mode 100644 index 0000000..dc06cd5 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libregex-7948c90605c550d5.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libregex_automata-7a08b7f502c7937e.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libregex_automata-7a08b7f502c7937e.rmeta new file mode 100644 index 0000000..ef87f43 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libregex_automata-7a08b7f502c7937e.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libregex_syntax-0b33485b2d934ee7.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libregex_syntax-0b33485b2d934ee7.rmeta new file mode 100644 index 0000000..34c2351 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libregex_syntax-0b33485b2d934ee7.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libreqwest-e3265ed90e9fba04.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libreqwest-e3265ed90e9fba04.rmeta new file mode 100644 index 0000000..5a154bf Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libreqwest-e3265ed90e9fba04.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/librustix-5126330b377e73ba.rmeta b/src-tauri/tms_service/target/owl/debug/deps/librustix-5126330b377e73ba.rmeta new file mode 100644 index 0000000..d554db1 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/librustix-5126330b377e73ba.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/librustls_pki_types-dd4dd9abcfd7f488.rmeta b/src-tauri/tms_service/target/owl/debug/deps/librustls_pki_types-dd4dd9abcfd7f488.rmeta new file mode 100644 index 0000000..edfa694 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/librustls_pki_types-dd4dd9abcfd7f488.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libryu-6fbd47e41f3a3ca2.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libryu-6fbd47e41f3a3ca2.rmeta new file mode 100644 index 0000000..dc0cb88 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libryu-6fbd47e41f3a3ca2.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libscopeguard-c08493d5b2a6fcb7.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libscopeguard-c08493d5b2a6fcb7.rmeta new file mode 100644 index 0000000..0e7e1f6 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libscopeguard-c08493d5b2a6fcb7.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libscraper-5b1a306f108dc975.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libscraper-5b1a306f108dc975.rmeta new file mode 100644 index 0000000..96cf335 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libscraper-5b1a306f108dc975.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libsecurity_framework-fc1afd27b787b4d4.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libsecurity_framework-fc1afd27b787b4d4.rmeta new file mode 100644 index 0000000..42ec20d Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libsecurity_framework-fc1afd27b787b4d4.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libsecurity_framework_sys-3735606d09f09fa0.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libsecurity_framework_sys-3735606d09f09fa0.rmeta new file mode 100644 index 0000000..13c9b11 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libsecurity_framework_sys-3735606d09f09fa0.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libselectors-643d1d3996810645.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libselectors-643d1d3996810645.rmeta new file mode 100644 index 0000000..6f220d4 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libselectors-643d1d3996810645.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libserde-364c5a38eb656508.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libserde-364c5a38eb656508.rmeta new file mode 100644 index 0000000..d0de1f2 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libserde-364c5a38eb656508.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libserde_core-ac9f929e4e902d24.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libserde_core-ac9f929e4e902d24.rmeta new file mode 100644 index 0000000..381c5dd Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libserde_core-ac9f929e4e902d24.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libserde_derive-1fbad4c3b8df2638.dylib b/src-tauri/tms_service/target/owl/debug/deps/libserde_derive-1fbad4c3b8df2638.dylib new file mode 100755 index 0000000..c056a64 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libserde_derive-1fbad4c3b8df2638.dylib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libserde_json-9d8dbe36d7a1d64c.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libserde_json-9d8dbe36d7a1d64c.rmeta new file mode 100644 index 0000000..517ab9a Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libserde_json-9d8dbe36d7a1d64c.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libserde_urlencoded-45d4f0973fae8729.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libserde_urlencoded-45d4f0973fae8729.rmeta new file mode 100644 index 0000000..e933b07 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libserde_urlencoded-45d4f0973fae8729.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libservo_arc-7a74396eafcd2c81.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libservo_arc-7a74396eafcd2c81.rmeta new file mode 100644 index 0000000..0841f1a Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libservo_arc-7a74396eafcd2c81.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libsignal_hook_registry-08ef1889931339d8.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libsignal_hook_registry-08ef1889931339d8.rmeta new file mode 100644 index 0000000..d56f0d7 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libsignal_hook_registry-08ef1889931339d8.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-3fafa0cf348dee4c.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-3fafa0cf348dee4c.rmeta new file mode 100644 index 0000000..5fde099 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-3fafa0cf348dee4c.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-e9d3e929006ac3ab.rlib b/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-e9d3e929006ac3ab.rlib new file mode 100644 index 0000000..24d9220 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-e9d3e929006ac3ab.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-e9d3e929006ac3ab.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-e9d3e929006ac3ab.rmeta new file mode 100644 index 0000000..76e95cd Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-e9d3e929006ac3ab.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-efe855fcb6cfbccd.rlib b/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-efe855fcb6cfbccd.rlib new file mode 100644 index 0000000..6a841a3 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-efe855fcb6cfbccd.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-efe855fcb6cfbccd.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-efe855fcb6cfbccd.rmeta new file mode 100644 index 0000000..859a48c Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-efe855fcb6cfbccd.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-fb228e665810d0be.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-fb228e665810d0be.rmeta new file mode 100644 index 0000000..3829419 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-fb228e665810d0be.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libslab-f4ffe8281bf66e19.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libslab-f4ffe8281bf66e19.rmeta new file mode 100644 index 0000000..59dbe50 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libslab-f4ffe8281bf66e19.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libsmallvec-281c3c7607d183db.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libsmallvec-281c3c7607d183db.rmeta new file mode 100644 index 0000000..7b804d0 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libsmallvec-281c3c7607d183db.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libsocket2-ee336cb6d6fa0fbc.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libsocket2-ee336cb6d6fa0fbc.rmeta new file mode 100644 index 0000000..30eed07 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libsocket2-ee336cb6d6fa0fbc.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libstable_deref_trait-08da8da309d755be.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libstable_deref_trait-08da8da309d755be.rmeta new file mode 100644 index 0000000..9747c9e Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libstable_deref_trait-08da8da309d755be.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libstring_cache-27f9f262bec26a3e.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libstring_cache-27f9f262bec26a3e.rmeta new file mode 100644 index 0000000..8082cac Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libstring_cache-27f9f262bec26a3e.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libstring_cache_codegen-6210dda31e8b801c.rlib b/src-tauri/tms_service/target/owl/debug/deps/libstring_cache_codegen-6210dda31e8b801c.rlib new file mode 100644 index 0000000..8bf6735 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libstring_cache_codegen-6210dda31e8b801c.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libstring_cache_codegen-6210dda31e8b801c.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libstring_cache_codegen-6210dda31e8b801c.rmeta new file mode 100644 index 0000000..b8b9505 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libstring_cache_codegen-6210dda31e8b801c.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libsyn-98ebbc84c0eda716.rlib b/src-tauri/tms_service/target/owl/debug/deps/libsyn-98ebbc84c0eda716.rlib new file mode 100644 index 0000000..6afd2d5 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libsyn-98ebbc84c0eda716.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libsyn-98ebbc84c0eda716.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libsyn-98ebbc84c0eda716.rmeta new file mode 100644 index 0000000..734d519 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libsyn-98ebbc84c0eda716.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libsync_wrapper-44e20235d97e5720.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libsync_wrapper-44e20235d97e5720.rmeta new file mode 100644 index 0000000..2698461 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libsync_wrapper-44e20235d97e5720.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libsynstructure-a800b782c6c0869f.rlib b/src-tauri/tms_service/target/owl/debug/deps/libsynstructure-a800b782c6c0869f.rlib new file mode 100644 index 0000000..98272b4 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libsynstructure-a800b782c6c0869f.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libsynstructure-a800b782c6c0869f.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libsynstructure-a800b782c6c0869f.rmeta new file mode 100644 index 0000000..fbc7f23 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libsynstructure-a800b782c6c0869f.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libsystem_configuration-e68e3063c397917f.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libsystem_configuration-e68e3063c397917f.rmeta new file mode 100644 index 0000000..2d04f23 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libsystem_configuration-e68e3063c397917f.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libsystem_configuration_sys-8be43dd656017233.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libsystem_configuration_sys-8be43dd656017233.rmeta new file mode 100644 index 0000000..57a39ae Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libsystem_configuration_sys-8be43dd656017233.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libtempfile-7f57f09d263301b0.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libtempfile-7f57f09d263301b0.rmeta new file mode 100644 index 0000000..3c2af69 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libtempfile-7f57f09d263301b0.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libtendril-117c4ad9dedd98e9.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libtendril-117c4ad9dedd98e9.rmeta new file mode 100644 index 0000000..1d7ebe0 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libtendril-117c4ad9dedd98e9.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libthiserror-ac29da89a1c81bcc.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libthiserror-ac29da89a1c81bcc.rmeta new file mode 100644 index 0000000..8107c60 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libthiserror-ac29da89a1c81bcc.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libthiserror_impl-292fb996ca998392.dylib b/src-tauri/tms_service/target/owl/debug/deps/libthiserror_impl-292fb996ca998392.dylib new file mode 100755 index 0000000..509644f Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libthiserror_impl-292fb996ca998392.dylib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libtinystr-6694724cea174978.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libtinystr-6694724cea174978.rmeta new file mode 100644 index 0000000..2be2538 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libtinystr-6694724cea174978.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libtokio-fff6f3f58a5b4540.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libtokio-fff6f3f58a5b4540.rmeta new file mode 100644 index 0000000..c8ec918 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libtokio-fff6f3f58a5b4540.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libtokio_macros-b6d97045e13c780c.dylib b/src-tauri/tms_service/target/owl/debug/deps/libtokio_macros-b6d97045e13c780c.dylib new file mode 100755 index 0000000..a0d4aca Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libtokio_macros-b6d97045e13c780c.dylib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libtokio_native_tls-7619acb6411a2d68.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libtokio_native_tls-7619acb6411a2d68.rmeta new file mode 100644 index 0000000..f195f25 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libtokio_native_tls-7619acb6411a2d68.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libtokio_util-fb46d5c1d77f649e.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libtokio_util-fb46d5c1d77f649e.rmeta new file mode 100644 index 0000000..11d70ca Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libtokio_util-fb46d5c1d77f649e.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libtower-676e451bb846ad84.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libtower-676e451bb846ad84.rmeta new file mode 100644 index 0000000..7d7ef63 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libtower-676e451bb846ad84.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libtower_http-41e21fc05391790d.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libtower_http-41e21fc05391790d.rmeta new file mode 100644 index 0000000..b113238 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libtower_http-41e21fc05391790d.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libtower_layer-5a81c3a04b92d57f.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libtower_layer-5a81c3a04b92d57f.rmeta new file mode 100644 index 0000000..111f5a9 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libtower_layer-5a81c3a04b92d57f.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libtower_service-9021ba2ba3f0e06f.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libtower_service-9021ba2ba3f0e06f.rmeta new file mode 100644 index 0000000..06dcfc2 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libtower_service-9021ba2ba3f0e06f.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libtracing-9aa3269cd13cd9f0.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libtracing-9aa3269cd13cd9f0.rmeta new file mode 100644 index 0000000..b84b0ef Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libtracing-9aa3269cd13cd9f0.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libtracing_core-c2ab9b8bdd438390.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libtracing_core-c2ab9b8bdd438390.rmeta new file mode 100644 index 0000000..70a1453 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libtracing_core-c2ab9b8bdd438390.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libtry_lock-a2a06b9b35604e8a.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libtry_lock-a2a06b9b35604e8a.rmeta new file mode 100644 index 0000000..3191f2c Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libtry_lock-a2a06b9b35604e8a.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libunicode_ident-8a67dab9f43bf5df.rlib b/src-tauri/tms_service/target/owl/debug/deps/libunicode_ident-8a67dab9f43bf5df.rlib new file mode 100644 index 0000000..24a44dd Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libunicode_ident-8a67dab9f43bf5df.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libunicode_ident-8a67dab9f43bf5df.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libunicode_ident-8a67dab9f43bf5df.rmeta new file mode 100644 index 0000000..6b25108 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libunicode_ident-8a67dab9f43bf5df.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libunicode_width-fd37909f2193dde8.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libunicode_width-fd37909f2193dde8.rmeta new file mode 100644 index 0000000..ae9e347 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libunicode_width-fd37909f2193dde8.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/liburl-f0c7f6ce86afb42f.rmeta b/src-tauri/tms_service/target/owl/debug/deps/liburl-f0c7f6ce86afb42f.rmeta new file mode 100644 index 0000000..7564bb9 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/liburl-f0c7f6ce86afb42f.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libutf8-cdf51886c64f6cca.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libutf8-cdf51886c64f6cca.rmeta new file mode 100644 index 0000000..b5da7de Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libutf8-cdf51886c64f6cca.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libutf8_iter-7750c395fdb65df4.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libutf8_iter-7750c395fdb65df4.rmeta new file mode 100644 index 0000000..77f284b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libutf8_iter-7750c395fdb65df4.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libversion_check-bc29451f0514ce26.rlib b/src-tauri/tms_service/target/owl/debug/deps/libversion_check-bc29451f0514ce26.rlib new file mode 100644 index 0000000..20569ef Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libversion_check-bc29451f0514ce26.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libversion_check-bc29451f0514ce26.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libversion_check-bc29451f0514ce26.rmeta new file mode 100644 index 0000000..4d295cf Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libversion_check-bc29451f0514ce26.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libwant-25f50719849623b0.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libwant-25f50719849623b0.rmeta new file mode 100644 index 0000000..6d4ebd5 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libwant-25f50719849623b0.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libwriteable-64853572c4d86438.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libwriteable-64853572c4d86438.rmeta new file mode 100644 index 0000000..e6e457d Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libwriteable-64853572c4d86438.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libyoke-64f980dec814a796.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libyoke-64f980dec814a796.rmeta new file mode 100644 index 0000000..079e428 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libyoke-64f980dec814a796.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libyoke_derive-a2f4c46c6e252925.dylib b/src-tauri/tms_service/target/owl/debug/deps/libyoke_derive-a2f4c46c6e252925.dylib new file mode 100755 index 0000000..5894514 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libyoke_derive-a2f4c46c6e252925.dylib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libzerocopy-10e9814f62257e85.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libzerocopy-10e9814f62257e85.rmeta new file mode 100644 index 0000000..e8b7f0c Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libzerocopy-10e9814f62257e85.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libzerocopy-c0d0d66e4e0904c3.rlib b/src-tauri/tms_service/target/owl/debug/deps/libzerocopy-c0d0d66e4e0904c3.rlib new file mode 100644 index 0000000..f9a737b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libzerocopy-c0d0d66e4e0904c3.rlib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libzerocopy-c0d0d66e4e0904c3.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libzerocopy-c0d0d66e4e0904c3.rmeta new file mode 100644 index 0000000..28a6cee Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libzerocopy-c0d0d66e4e0904c3.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libzerofrom-53b3ae622c431f99.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libzerofrom-53b3ae622c431f99.rmeta new file mode 100644 index 0000000..c77ff4b Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libzerofrom-53b3ae622c431f99.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libzerofrom_derive-b42effaf579a01eb.dylib b/src-tauri/tms_service/target/owl/debug/deps/libzerofrom_derive-b42effaf579a01eb.dylib new file mode 100755 index 0000000..3b26a85 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libzerofrom_derive-b42effaf579a01eb.dylib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libzeroize-53e75a144d6ea640.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libzeroize-53e75a144d6ea640.rmeta new file mode 100644 index 0000000..ee1ae08 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libzeroize-53e75a144d6ea640.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libzerotrie-b753cbae97418930.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libzerotrie-b753cbae97418930.rmeta new file mode 100644 index 0000000..1ed08b7 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libzerotrie-b753cbae97418930.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libzerovec-5d034e4235b791c5.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libzerovec-5d034e4235b791c5.rmeta new file mode 100644 index 0000000..8b27412 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libzerovec-5d034e4235b791c5.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libzerovec_derive-e07f15046c7ba40b.dylib b/src-tauri/tms_service/target/owl/debug/deps/libzerovec_derive-e07f15046c7ba40b.dylib new file mode 100755 index 0000000..dc5a6c0 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libzerovec_derive-e07f15046c7ba40b.dylib differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/libzmij-b120b987ec57043f.rmeta b/src-tauri/tms_service/target/owl/debug/deps/libzmij-b120b987ec57043f.rmeta new file mode 100644 index 0000000..055fa96 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/deps/libzmij-b120b987ec57043f.rmeta differ diff --git a/src-tauri/tms_service/target/owl/debug/deps/litemap-517a131136202ae6.d b/src-tauri/tms_service/target/owl/debug/deps/litemap-517a131136202ae6.d new file mode 100644 index 0000000..209cb8e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/litemap-517a131136202ae6.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/liblitemap-517a131136202ae6.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.1/src/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.1/src/store/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.1/src/store/slice_impl.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/litemap-517a131136202ae6.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.1/src/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.1/src/store/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.1/src/store/slice_impl.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.1/src/map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.1/src/store/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.1/src/store/slice_impl.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/lock_api-c41db7abd93774ff.d b/src-tauri/tms_service/target/owl/debug/deps/lock_api-c41db7abd93774ff.d new file mode 100644 index 0000000..31d5b56 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/lock_api-c41db7abd93774ff.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/liblock_api-c41db7abd93774ff.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/remutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/rwlock.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/lock_api-c41db7abd93774ff.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/remutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/rwlock.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/remutex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/rwlock.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/log-7b87799170767125.d b/src-tauri/tms_service/target/owl/debug/deps/log-7b87799170767125.d new file mode 100644 index 0000000..2796202 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/log-7b87799170767125.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/liblog-7b87799170767125.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/log-7b87799170767125.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/mac-8bcbbf2eea6c88e0.d b/src-tauri/tms_service/target/owl/debug/deps/mac-8bcbbf2eea6c88e0.d new file mode 100644 index 0000000..775ed1d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/mac-8bcbbf2eea6c88e0.d @@ -0,0 +1,12 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libmac-8bcbbf2eea6c88e0.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/test.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/mem.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/format.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/syntax_ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/matches.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/inspect.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/cfg.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/mac-8bcbbf2eea6c88e0.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/test.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/mem.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/format.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/syntax_ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/matches.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/inspect.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/cfg.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/test.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/mem.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/format.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/syntax_ext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/matches.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/inspect.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mac-0.1.1/src/cfg.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/markup5ever-c18c3c633226999e.d b/src-tauri/tms_service/target/owl/debug/deps/markup5ever-c18c3c633226999e.d new file mode 100644 index 0000000..318b4d2 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/markup5ever-c18c3c633226999e.d @@ -0,0 +1,15 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libmarkup5ever-c18c3c633226999e.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/data/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/interface/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/interface/tree_builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/serialize.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/util/buffer_queue.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/util/smallcharset.rs /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/out/generated.rs /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/out/named_entities.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/markup5ever-c18c3c633226999e.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/data/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/interface/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/interface/tree_builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/serialize.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/util/buffer_queue.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/util/smallcharset.rs /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/out/generated.rs /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/out/named_entities.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/data/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/interface/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/interface/tree_builder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/serialize.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/util/buffer_queue.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/markup5ever-0.12.1/util/smallcharset.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/out/generated.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/out/named_entities.rs: + +# env-dep:OUT_DIR=/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/markup5ever-d58ef83ba55c1305/out diff --git a/src-tauri/tms_service/target/owl/debug/deps/memchr-2d24d0bb92e43ade.d b/src-tauri/tms_service/target/owl/debug/deps/memchr-2d24d0bb92e43ade.d new file mode 100644 index 0000000..ec01e66 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/memchr-2d24d0bb92e43ade.d @@ -0,0 +1,28 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libmemchr-2d24d0bb92e43ade.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/packedpair/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/packedpair/default_rank.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/rabinkarp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/shiftor.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/twoway.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/packedpair.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/aarch64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/aarch64/neon/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/aarch64/neon/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/aarch64/neon/packedpair.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/aarch64/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/cow.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memmem/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memmem/searcher.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/vector.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/memchr-2d24d0bb92e43ade.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/packedpair/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/packedpair/default_rank.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/rabinkarp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/shiftor.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/twoway.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/packedpair.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/aarch64/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/aarch64/neon/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/aarch64/neon/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/aarch64/neon/packedpair.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/aarch64/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/cow.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memmem/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memmem/searcher.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/vector.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/memchr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/packedpair/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/packedpair/default_rank.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/rabinkarp.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/shiftor.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/twoway.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/memchr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/packedpair.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/aarch64/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/aarch64/neon/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/aarch64/neon/memchr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/aarch64/neon/packedpair.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/aarch64/memchr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/cow.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/ext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memchr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memmem/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memmem/searcher.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/vector.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/mime-6cb8d6c929e91b9a.d b/src-tauri/tms_service/target/owl/debug/deps/mime-6cb8d6c929e91b9a.d new file mode 100644 index 0000000..80aaf9b --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/mime-6cb8d6c929e91b9a.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libmime-6cb8d6c929e91b9a.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/parse.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/mime-6cb8d6c929e91b9a.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/parse.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/parse.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/mio-46b41530ef20a618.d b/src-tauri/tms_service/target/owl/debug/deps/mio-46b41530ef20a618.d new file mode 100644 index 0000000..558def1 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/mio-46b41530ef20a618.d @@ -0,0 +1,38 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libmio-46b41530ef20a618.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/interest.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/poll.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/token.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/waker.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/event/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/event/event.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/event/events.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/event/source.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/selector/kqueue.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/waker/kqueue.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/sourcefd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/pipe.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/selector/stateless_io_source.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/net.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/tcp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/udp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/uds/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/uds/datagram.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/uds/listener.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/uds/stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/io_source.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/tcp/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/tcp/listener.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/tcp/stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/udp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/uds/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/uds/datagram.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/uds/listener.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/uds/stream.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/mio-46b41530ef20a618.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/interest.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/poll.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/token.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/waker.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/event/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/event/event.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/event/events.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/event/source.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/selector/kqueue.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/waker/kqueue.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/sourcefd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/pipe.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/selector/stateless_io_source.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/net.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/tcp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/udp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/uds/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/uds/datagram.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/uds/listener.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/uds/stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/io_source.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/tcp/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/tcp/listener.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/tcp/stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/udp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/uds/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/uds/datagram.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/uds/listener.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/uds/stream.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/interest.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/poll.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/token.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/waker.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/event/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/event/event.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/event/events.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/event/source.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/selector/kqueue.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/waker/kqueue.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/sourcefd.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/pipe.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/selector/stateless_io_source.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/net.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/tcp.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/udp.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/uds/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/uds/datagram.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/uds/listener.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/sys/unix/uds/stream.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/io_source.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/tcp/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/tcp/listener.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/tcp/stream.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/udp.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/uds/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/uds/datagram.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/uds/listener.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.1/src/net/uds/stream.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/native_tls-2850d7a33d8eef3a.d b/src-tauri/tms_service/target/owl/debug/deps/native_tls-2850d7a33d8eef3a.d new file mode 100644 index 0000000..066aaf2 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/native_tls-2850d7a33d8eef3a.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libnative_tls-2850d7a33d8eef3a.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.18/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.18/src/imp/security_framework.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/native_tls-2850d7a33d8eef3a.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.18/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.18/src/imp/security_framework.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.18/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.18/src/imp/security_framework.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/once_cell-4c5c529dad6841fd.d b/src-tauri/tms_service/target/owl/debug/deps/once_cell-4c5c529dad6841fd.d new file mode 100644 index 0000000..4772150 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/once_cell-4c5c529dad6841fd.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libonce_cell-4c5c529dad6841fd.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/imp_std.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/race.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/once_cell-4c5c529dad6841fd.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/imp_std.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/race.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/imp_std.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/race.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/parking_lot-e5a4693dad116906.d b/src-tauri/tms_service/target/owl/debug/deps/parking_lot-e5a4693dad116906.d new file mode 100644 index 0000000..d329b71 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/parking_lot-e5a4693dad116906.d @@ -0,0 +1,17 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libparking_lot-e5a4693dad116906.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/elision.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/fair_mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/once.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_fair_mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_rwlock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/remutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/rwlock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/deadlock.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/parking_lot-e5a4693dad116906.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/elision.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/fair_mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/once.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_fair_mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_rwlock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/remutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/rwlock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/deadlock.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/elision.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/fair_mutex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/mutex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/once.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_fair_mutex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_mutex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_rwlock.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/remutex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/rwlock.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/util.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/deadlock.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/parking_lot_core-14f276a156fe5f64.d b/src-tauri/tms_service/target/owl/debug/deps/parking_lot_core-14f276a156fe5f64.d new file mode 100644 index 0000000..6ed7e17 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/parking_lot_core-14f276a156fe5f64.d @@ -0,0 +1,11 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libparking_lot_core-14f276a156fe5f64.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/spinwait.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/word_lock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/unix.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/parking_lot_core-14f276a156fe5f64.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/spinwait.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/word_lock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/unix.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/spinwait.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/util.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/word_lock.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/unix.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/percent_encoding-b65fc5a43e05656a.d b/src-tauri/tms_service/target/owl/debug/deps/percent_encoding-b65fc5a43e05656a.d new file mode 100644 index 0000000..9801a8f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/percent_encoding-b65fc5a43e05656a.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libpercent_encoding-b65fc5a43e05656a.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/ascii_set.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/percent_encoding-b65fc5a43e05656a.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/ascii_set.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/ascii_set.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/phf-238aac8c7b9a320e.d b/src-tauri/tms_service/target/owl/debug/deps/phf-238aac8c7b9a320e.d new file mode 100644 index 0000000..d059b5a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/phf-238aac8c7b9a320e.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libphf-238aac8c7b9a320e.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/ordered_map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/ordered_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/set.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/phf-238aac8c7b9a320e.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/ordered_map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/ordered_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/set.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/ordered_map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/ordered_set.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.11.3/src/set.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/phf-a5e281d909db600d.d b/src-tauri/tms_service/target/owl/debug/deps/phf-a5e281d909db600d.d new file mode 100644 index 0000000..b5d4f50 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/phf-a5e281d909db600d.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libphf-a5e281d909db600d.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/ordered_map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/ordered_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/set.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/phf-a5e281d909db600d.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/ordered_map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/ordered_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/set.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/ordered_map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/ordered_set.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.10.1/src/set.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/phf_codegen-46f97fb85db18d14.d b/src-tauri/tms_service/target/owl/debug/deps/phf_codegen-46f97fb85db18d14.d new file mode 100644 index 0000000..2630617 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/phf_codegen-46f97fb85db18d14.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libphf_codegen-46f97fb85db18d14.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_codegen-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libphf_codegen-46f97fb85db18d14.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_codegen-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/phf_codegen-46f97fb85db18d14.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_codegen-0.10.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_codegen-0.10.0/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/phf_codegen-744d5939194bb193.d b/src-tauri/tms_service/target/owl/debug/deps/phf_codegen-744d5939194bb193.d new file mode 100644 index 0000000..644b486 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/phf_codegen-744d5939194bb193.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libphf_codegen-744d5939194bb193.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_codegen-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libphf_codegen-744d5939194bb193.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_codegen-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/phf_codegen-744d5939194bb193.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_codegen-0.11.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_codegen-0.11.3/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/phf_generator-84046bf9ebb00ed7.d b/src-tauri/tms_service/target/owl/debug/deps/phf_generator-84046bf9ebb00ed7.d new file mode 100644 index 0000000..da9bb05 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/phf_generator-84046bf9ebb00ed7.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libphf_generator-84046bf9ebb00ed7.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_generator-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libphf_generator-84046bf9ebb00ed7.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_generator-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/phf_generator-84046bf9ebb00ed7.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_generator-0.10.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_generator-0.10.0/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/phf_generator-ca66433ef357a1d7.d b/src-tauri/tms_service/target/owl/debug/deps/phf_generator-ca66433ef357a1d7.d new file mode 100644 index 0000000..e96f3a9 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/phf_generator-ca66433ef357a1d7.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libphf_generator-ca66433ef357a1d7.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_generator-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libphf_generator-ca66433ef357a1d7.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_generator-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/phf_generator-ca66433ef357a1d7.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_generator-0.11.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_generator-0.11.3/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/phf_macros-2959eca873977a97.d b/src-tauri/tms_service/target/owl/debug/deps/phf_macros-2959eca873977a97.d new file mode 100644 index 0000000..2dae84c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/phf_macros-2959eca873977a97.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libphf_macros-2959eca873977a97.dylib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_macros-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/phf_macros-2959eca873977a97.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_macros-0.11.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_macros-0.11.3/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/phf_shared-72272db6351fa71b.d b/src-tauri/tms_service/target/owl/debug/deps/phf_shared-72272db6351fa71b.d new file mode 100644 index 0000000..c2652d9 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/phf_shared-72272db6351fa71b.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-72272db6351fa71b.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-72272db6351fa71b.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/phf_shared-72272db6351fa71b.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.11.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.11.3/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/phf_shared-cdf7b96f714c2ffe.d b/src-tauri/tms_service/target/owl/debug/deps/phf_shared-cdf7b96f714c2ffe.d new file mode 100644 index 0000000..ba50945 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/phf_shared-cdf7b96f714c2ffe.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-cdf7b96f714c2ffe.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-cdf7b96f714c2ffe.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/phf_shared-cdf7b96f714c2ffe.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.10.0/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/phf_shared-d820095d9f30a958.d b/src-tauri/tms_service/target/owl/debug/deps/phf_shared-d820095d9f30a958.d new file mode 100644 index 0000000..6a7550f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/phf_shared-d820095d9f30a958.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-d820095d9f30a958.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/phf_shared-d820095d9f30a958.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.10.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.10.0/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/phf_shared-e86ba43a3113a033.d b/src-tauri/tms_service/target/owl/debug/deps/phf_shared-e86ba43a3113a033.d new file mode 100644 index 0000000..d5b70ef --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/phf_shared-e86ba43a3113a033.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libphf_shared-e86ba43a3113a033.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.11.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/phf_shared-e86ba43a3113a033.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.11.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.11.3/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/pin_project_lite-fdb6f2f737f0a416.d b/src-tauri/tms_service/target/owl/debug/deps/pin_project_lite-fdb6f2f737f0a416.d new file mode 100644 index 0000000..8974d55 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/pin_project_lite-fdb6f2f737f0a416.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libpin_project_lite-fdb6f2f737f0a416.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/pin_project_lite-fdb6f2f737f0a416.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/pin_utils-b7fd3d9367579158.d b/src-tauri/tms_service/target/owl/debug/deps/pin_utils-b7fd3d9367579158.d new file mode 100644 index 0000000..330f2e8 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/pin_utils-b7fd3d9367579158.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libpin_utils-b7fd3d9367579158.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/src/stack_pin.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/src/projection.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/pin_utils-b7fd3d9367579158.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/src/stack_pin.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/src/projection.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/src/stack_pin.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/src/projection.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/potential_utf-55b7962b8a2ea7d6.d b/src-tauri/tms_service/target/owl/debug/deps/potential_utf-55b7962b8a2ea7d6.d new file mode 100644 index 0000000..f16ded7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/potential_utf-55b7962b8a2ea7d6.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libpotential_utf-55b7962b8a2ea7d6.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.4/src/uchar.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.4/src/ustr.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/potential_utf-55b7962b8a2ea7d6.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.4/src/uchar.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.4/src/ustr.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.4/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.4/src/uchar.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.4/src/ustr.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/ppv_lite86-05224697cc478126.d b/src-tauri/tms_service/target/owl/debug/deps/ppv_lite86-05224697cc478126.d new file mode 100644 index 0000000..15154b7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/ppv_lite86-05224697cc478126.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libppv_lite86-05224697cc478126.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/soft.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/types.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/generic.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libppv_lite86-05224697cc478126.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/soft.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/types.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/generic.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/ppv_lite86-05224697cc478126.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/soft.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/types.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/generic.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/soft.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/types.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/generic.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/precomputed_hash-8ff83f9112c5d0ff.d b/src-tauri/tms_service/target/owl/debug/deps/precomputed_hash-8ff83f9112c5d0ff.d new file mode 100644 index 0000000..4b03ab8 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/precomputed_hash-8ff83f9112c5d0ff.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libprecomputed_hash-8ff83f9112c5d0ff.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/precomputed-hash-0.1.1/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/precomputed_hash-8ff83f9112c5d0ff.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/precomputed-hash-0.1.1/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/precomputed-hash-0.1.1/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/proc_macro2-c68f226c30305477.d b/src-tauri/tms_service/target/owl/debug/deps/proc_macro2-c68f226c30305477.d new file mode 100644 index 0000000..42bdccb --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/proc_macro2-c68f226c30305477.d @@ -0,0 +1,15 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libproc_macro2-c68f226c30305477.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/parse.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/rcvec.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/detection.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/fallback.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/extra.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/wrapper.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libproc_macro2-c68f226c30305477.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/parse.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/rcvec.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/detection.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/fallback.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/extra.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/wrapper.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/proc_macro2-c68f226c30305477.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/parse.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/rcvec.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/detection.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/fallback.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/extra.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/wrapper.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/parse.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/rcvec.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/detection.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/fallback.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/extra.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/wrapper.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/quote-320b6bd63425449d.d b/src-tauri/tms_service/target/owl/debug/deps/quote-320b6bd63425449d.d new file mode 100644 index 0000000..8ae81ce --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/quote-320b6bd63425449d.d @@ -0,0 +1,13 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libquote-320b6bd63425449d.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/format.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/ident_fragment.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/to_tokens.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/runtime.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/spanned.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libquote-320b6bd63425449d.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/format.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/ident_fragment.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/to_tokens.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/runtime.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/spanned.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/quote-320b6bd63425449d.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/format.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/ident_fragment.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/to_tokens.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/runtime.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/spanned.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/ext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/format.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/ident_fragment.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/to_tokens.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/runtime.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.44/src/spanned.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/rand-bbca310661266201.d b/src-tauri/tms_service/target/owl/debug/deps/rand-bbca310661266201.d new file mode 100644 index 0000000..fe45e01 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/rand-bbca310661266201.d @@ -0,0 +1,31 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/librand-bbca310661266201.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/bernoulli.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/distribution.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/float.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/integer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/other.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted_index.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/prelude.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rng.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/read.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/reseeding.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/xoshiro256plusplus.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/small.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/std.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/thread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/index.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/librand-bbca310661266201.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/bernoulli.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/distribution.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/float.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/integer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/other.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted_index.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/prelude.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rng.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/read.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/reseeding.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/xoshiro256plusplus.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/small.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/std.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/thread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/index.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/rand-bbca310661266201.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/bernoulli.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/distribution.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/float.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/integer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/other.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted_index.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/prelude.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rng.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/read.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/reseeding.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/xoshiro256plusplus.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/small.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/std.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/thread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/index.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/bernoulli.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/distribution.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/float.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/integer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/other.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/slice.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/utils.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted_index.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/prelude.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rng.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/read.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/reseeding.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mock.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/xoshiro256plusplus.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/small.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/std.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/thread.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/index.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/rand_chacha-31ec861a020a01e9.d b/src-tauri/tms_service/target/owl/debug/deps/rand_chacha-31ec861a020a01e9.d new file mode 100644 index 0000000..8751785 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/rand_chacha-31ec861a020a01e9.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/librand_chacha-31ec861a020a01e9.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/chacha.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/guts.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/librand_chacha-31ec861a020a01e9.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/chacha.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/guts.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/rand_chacha-31ec861a020a01e9.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/chacha.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/guts.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/chacha.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/guts.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/rand_core-d91b9ad9e43e8e8a.d b/src-tauri/tms_service/target/owl/debug/deps/rand_core-d91b9ad9e43e8e8a.d new file mode 100644 index 0000000..a0274e7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/rand_core-d91b9ad9e43e8e8a.d @@ -0,0 +1,12 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/librand_core-d91b9ad9e43e8e8a.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/block.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/le.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/os.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/librand_core-d91b9ad9e43e8e8a.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/block.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/le.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/os.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/rand_core-d91b9ad9e43e8e8a.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/block.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/le.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/os.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/block.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/impls.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/le.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/os.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/regex-7948c90605c550d5.d b/src-tauri/tms_service/target/owl/debug/deps/regex-7948c90605c550d5.d new file mode 100644 index 0000000..157981f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/regex-7948c90605c550d5.d @@ -0,0 +1,15 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libregex-7948c90605c550d5.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/builders.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/bytes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/find_byte.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/bytes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/bytes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/string.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/regex-7948c90605c550d5.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/builders.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/bytes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/find_byte.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/bytes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/bytes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/string.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/builders.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/bytes.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/find_byte.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/bytes.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/string.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/bytes.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/string.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/regex_automata-7a08b7f502c7937e.d b/src-tauri/tms_service/target/owl/debug/deps/regex_automata-7a08b7f502c7937e.d new file mode 100644 index 0000000..ef6cd28 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/regex_automata-7a08b7f502c7937e.d @@ -0,0 +1,63 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libregex_automata-7a08b7f502c7937e.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/dfa/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/dfa/onepass.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/dfa/remapper.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/dfa.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/id.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/regex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/search.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/limited.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/literal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/regex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/reverse_inner.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/stopat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/strategy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/wrappers.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/backtrack.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/compiler.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/literal_trie.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/nfa.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/pikevm.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/range_trie.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/alphabet.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/captures.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/escape.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/interpolate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/lazy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/look.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/pool.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/aho_corasick.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/byteset.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/memmem.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/teddy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/primitives.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/start.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/syntax.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/wire.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/determinize/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/determinize/state.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/empty.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/int.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/search.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/sparse_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/unicode_data/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/utf8.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/regex_automata-7a08b7f502c7937e.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/dfa/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/dfa/onepass.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/dfa/remapper.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/dfa.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/id.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/regex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/search.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/limited.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/literal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/regex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/reverse_inner.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/stopat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/strategy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/wrappers.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/backtrack.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/compiler.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/literal_trie.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/nfa.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/pikevm.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/range_trie.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/alphabet.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/captures.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/escape.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/interpolate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/lazy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/look.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/pool.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/aho_corasick.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/byteset.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/memmem.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/teddy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/primitives.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/start.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/syntax.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/wire.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/determinize/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/determinize/state.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/empty.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/int.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/search.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/sparse_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/unicode_data/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/utf8.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/dfa/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/dfa/onepass.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/dfa/remapper.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/dfa.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/id.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/regex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/search.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/limited.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/literal.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/regex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/reverse_inner.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/stopat.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/strategy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/wrappers.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/backtrack.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/builder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/compiler.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/literal_trie.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/nfa.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/pikevm.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/range_trie.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/alphabet.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/captures.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/escape.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/interpolate.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/iter.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/lazy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/look.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/pool.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/aho_corasick.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/byteset.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/memchr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/memmem.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/teddy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/primitives.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/start.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/syntax.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/wire.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/determinize/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/determinize/state.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/empty.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/int.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/memchr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/search.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/sparse_set.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/unicode_data/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/utf8.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/regex_syntax-0b33485b2d934ee7.d b/src-tauri/tms_service/target/owl/debug/deps/regex_syntax-0b33485b2d934ee7.d new file mode 100644 index 0000000..a544329 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/regex_syntax-0b33485b2d934ee7.d @@ -0,0 +1,35 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libregex_syntax-0b33485b2d934ee7.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/ast/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/ast/parse.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/ast/print.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/ast/visitor.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/debug.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/either.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/hir/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/hir/interval.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/hir/literal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/hir/print.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/hir/translate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/hir/visitor.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/rank.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/age.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/case_folding_simple.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/general_category.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/grapheme_cluster_break.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/perl_word.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/property_bool.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/property_names.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/property_values.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/script.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/script_extension.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/sentence_break.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/word_break.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/utf8.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/regex_syntax-0b33485b2d934ee7.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/ast/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/ast/parse.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/ast/print.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/ast/visitor.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/debug.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/either.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/hir/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/hir/interval.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/hir/literal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/hir/print.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/hir/translate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/hir/visitor.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/rank.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/age.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/case_folding_simple.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/general_category.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/grapheme_cluster_break.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/perl_word.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/property_bool.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/property_names.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/property_values.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/script.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/script_extension.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/sentence_break.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/word_break.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/utf8.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/ast/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/ast/parse.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/ast/print.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/ast/visitor.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/debug.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/either.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/hir/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/hir/interval.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/hir/literal.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/hir/print.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/hir/translate.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/hir/visitor.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/parser.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/rank.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/age.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/case_folding_simple.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/general_category.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/grapheme_cluster_break.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/perl_word.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/property_bool.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/property_names.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/property_values.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/script.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/script_extension.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/sentence_break.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/unicode_tables/word_break.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.9/src/utf8.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/reqwest-e3265ed90e9fba04.d b/src-tauri/tms_service/target/owl/debug/deps/reqwest-e3265ed90e9fba04.d new file mode 100644 index 0000000..8b7eef8 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/reqwest-e3265ed90e9fba04.d @@ -0,0 +1,25 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libreqwest-e3265ed90e9fba04.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/into_url.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/response.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/config.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/async_impl/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/async_impl/body.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/async_impl/client.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/async_impl/h3_client/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/async_impl/request.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/async_impl/response.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/async_impl/upgrade.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/connect.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/dns/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/dns/gai.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/dns/resolve.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/proxy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/redirect.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/retry.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/tls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/util.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/reqwest-e3265ed90e9fba04.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/into_url.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/response.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/config.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/async_impl/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/async_impl/body.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/async_impl/client.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/async_impl/h3_client/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/async_impl/request.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/async_impl/response.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/async_impl/upgrade.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/connect.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/dns/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/dns/gai.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/dns/resolve.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/proxy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/redirect.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/retry.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/tls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/util.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/into_url.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/response.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/config.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/async_impl/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/async_impl/body.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/async_impl/client.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/async_impl/h3_client/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/async_impl/request.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/async_impl/response.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/async_impl/upgrade.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/connect.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/dns/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/dns/gai.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/dns/resolve.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/proxy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/redirect.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/retry.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/tls.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.28/src/util.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/rustix-5126330b377e73ba.d b/src-tauri/tms_service/target/owl/debug/deps/rustix-5126330b377e73ba.d new file mode 100644 index 0000000..d4d69c2 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/rustix-5126330b377e73ba.d @@ -0,0 +1,57 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/librustix-5126330b377e73ba.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/buffer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/cstr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/maybe_polyfill/std/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/bitcast.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/weak.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/conv.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/c.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/fs/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/fs/dir.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/fs/makedev.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/fs/syscalls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/fs/types.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/io/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/io/errno.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/io/types.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/io/syscalls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/ugid/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/ugid/syscalls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ffi.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/abs.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/at.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/constants.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/dir.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fcntl.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fcntl_apple.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fcopyfile.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/getpath.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/id.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/makedev.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/seek_from.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/special.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/sync.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/xattr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/close.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/dup.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/errno.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/fcntl.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/ioctl.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/read_write.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ioctl/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ioctl/patterns.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ioctl/bsd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/path/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/path/arg.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/path/dec_int.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/timespec.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ugid.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/rustix-5126330b377e73ba.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/buffer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/cstr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/maybe_polyfill/std/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/bitcast.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/weak.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/conv.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/c.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/fs/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/fs/dir.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/fs/makedev.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/fs/syscalls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/fs/types.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/io/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/io/errno.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/io/types.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/io/syscalls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/ugid/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/ugid/syscalls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ffi.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/abs.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/at.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/constants.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/dir.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fcntl.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fcntl_apple.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fcopyfile.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/getpath.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/id.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/makedev.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/seek_from.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/special.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/sync.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/xattr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/close.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/dup.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/errno.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/fcntl.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/ioctl.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/read_write.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ioctl/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ioctl/patterns.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ioctl/bsd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/path/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/path/arg.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/path/dec_int.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/timespec.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ugid.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/buffer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/cstr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/utils.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/maybe_polyfill/std/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/bitcast.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/weak.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/conv.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/c.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/fs/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/fs/dir.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/fs/makedev.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/fs/syscalls.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/fs/types.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/io/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/io/errno.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/io/types.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/io/syscalls.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/ugid/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/libc/ugid/syscalls.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ffi.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/abs.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/at.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/constants.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/dir.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fcntl.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fcntl_apple.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fcopyfile.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fd.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/getpath.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/id.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/makedev.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/seek_from.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/special.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/sync.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/xattr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/close.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/dup.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/errno.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/fcntl.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/ioctl.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/read_write.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ioctl/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ioctl/patterns.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ioctl/bsd.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/path/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/path/arg.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/path/dec_int.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/timespec.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ugid.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/rustls_pki_types-dd4dd9abcfd7f488.d b/src-tauri/tms_service/target/owl/debug/deps/rustls_pki_types-dd4dd9abcfd7f488.d new file mode 100644 index 0000000..04ddfc6 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/rustls_pki_types-dd4dd9abcfd7f488.d @@ -0,0 +1,28 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/librustls_pki_types-dd4dd9abcfd7f488.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/alg_id.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/base64.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/server_name.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/pem.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ml-dsa-44.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ml-dsa-65.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ml-dsa-87.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ecdsa-p256k1.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ecdsa-p256.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ecdsa-p384.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ecdsa-p521.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ecdsa-sha256.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ecdsa-sha384.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ecdsa-sha512.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-rsa-encryption.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-rsa-pkcs1-sha256.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-rsa-pkcs1-sha384.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-rsa-pkcs1-sha512.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-rsa-pss-sha256.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-rsa-pss-sha384.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-rsa-pss-sha512.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ed25519.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ed448.der + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/rustls_pki_types-dd4dd9abcfd7f488.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/alg_id.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/base64.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/server_name.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/pem.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ml-dsa-44.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ml-dsa-65.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ml-dsa-87.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ecdsa-p256k1.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ecdsa-p256.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ecdsa-p384.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ecdsa-p521.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ecdsa-sha256.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ecdsa-sha384.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ecdsa-sha512.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-rsa-encryption.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-rsa-pkcs1-sha256.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-rsa-pkcs1-sha384.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-rsa-pkcs1-sha512.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-rsa-pss-sha256.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-rsa-pss-sha384.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-rsa-pss-sha512.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ed25519.der /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ed448.der + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/alg_id.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/base64.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/server_name.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/pem.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ml-dsa-44.der: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ml-dsa-65.der: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ml-dsa-87.der: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ecdsa-p256k1.der: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ecdsa-p256.der: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ecdsa-p384.der: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ecdsa-p521.der: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ecdsa-sha256.der: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ecdsa-sha384.der: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ecdsa-sha512.der: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-rsa-encryption.der: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-rsa-pkcs1-sha256.der: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-rsa-pkcs1-sha384.der: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-rsa-pkcs1-sha512.der: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-rsa-pss-sha256.der: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-rsa-pss-sha384.der: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-rsa-pss-sha512.der: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ed25519.der: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.14.0/src/data/alg-ed448.der: diff --git a/src-tauri/tms_service/target/owl/debug/deps/ryu-6fbd47e41f3a3ca2.d b/src-tauri/tms_service/target/owl/debug/deps/ryu-6fbd47e41f3a3ca2.d new file mode 100644 index 0000000..31553ca --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/ryu-6fbd47e41f3a3ca2.d @@ -0,0 +1,16 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libryu-6fbd47e41f3a3ca2.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/buffer/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/common.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s_full_table.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s_intrinsics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/digit_table.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/f2s.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/f2s_intrinsics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/exponent.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/mantissa.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/ryu-6fbd47e41f3a3ca2.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/buffer/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/common.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s_full_table.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s_intrinsics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/digit_table.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/f2s.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/f2s_intrinsics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/exponent.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/mantissa.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/buffer/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/common.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s_full_table.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s_intrinsics.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/digit_table.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/f2s.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/f2s_intrinsics.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/exponent.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/mantissa.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/scopeguard-c08493d5b2a6fcb7.d b/src-tauri/tms_service/target/owl/debug/deps/scopeguard-c08493d5b2a6fcb7.d new file mode 100644 index 0000000..aebdaed --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/scopeguard-c08493d5b2a6fcb7.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libscopeguard-c08493d5b2a6fcb7.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/scopeguard-c08493d5b2a6fcb7.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/scraper-5b1a306f108dc975.d b/src-tauri/tms_service/target/owl/debug/deps/scraper-5b1a306f108dc975.d new file mode 100644 index 0000000..e20c1ef --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/scraper-5b1a306f108dc975.d @@ -0,0 +1,17 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libscraper-5b1a306f108dc975.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/element_ref/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/element_ref/element.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/element_ref/serializable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/error/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/html/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/html/serializable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/html/tree_sink.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/node.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/node/serializable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/selectable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/selector.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/scraper-5b1a306f108dc975.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/element_ref/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/element_ref/element.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/element_ref/serializable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/error/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/html/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/html/serializable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/html/tree_sink.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/node.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/node/serializable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/selectable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/selector.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/element_ref/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/element_ref/element.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/element_ref/serializable.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/error/utils.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/html/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/html/serializable.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/html/tree_sink.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/node.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/node/serializable.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/selectable.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scraper-0.19.1/src/selector.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/security_framework-fc1afd27b787b4d4.d b/src-tauri/tms_service/target/owl/debug/deps/security_framework-fc1afd27b787b4d4.d new file mode 100644 index 0000000..af4f088 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/security_framework-fc1afd27b787b4d4.d @@ -0,0 +1,39 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libsecurity_framework-fc1afd27b787b4d4.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/access_control.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/authorization.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/base.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/certificate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/cipher_suite.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/cms.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/identity.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/import_export.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/item.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/key.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/access.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/certificate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/certificate_oids.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/code_signing.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/digest_transform.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/encrypt_transform.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/identity.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/import_export.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/item.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/key.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/keychain.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/keychain_item.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/passwords.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/secure_transport.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/transform.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/passwords.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/passwords_options.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/policy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/random.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/secure_transport.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/trust.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/trust_settings.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/security_framework-fc1afd27b787b4d4.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/access_control.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/authorization.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/base.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/certificate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/cipher_suite.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/cms.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/identity.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/import_export.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/item.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/key.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/access.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/certificate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/certificate_oids.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/code_signing.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/digest_transform.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/encrypt_transform.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/identity.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/import_export.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/item.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/key.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/keychain.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/keychain_item.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/passwords.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/secure_transport.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/transform.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/passwords.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/passwords_options.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/policy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/random.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/secure_transport.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/trust.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/trust_settings.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/access_control.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/authorization.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/base.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/certificate.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/cipher_suite.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/cms.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/identity.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/import_export.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/item.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/key.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/access.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/certificate.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/certificate_oids.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/code_signing.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/digest_transform.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/encrypt_transform.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/identity.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/import_export.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/item.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/key.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/keychain.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/keychain_item.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/passwords.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/secure_transport.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/os/macos/transform.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/passwords.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/passwords_options.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/policy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/random.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/secure_transport.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/trust.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-3.7.0/src/trust_settings.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/security_framework_sys-3735606d09f09fa0.d b/src-tauri/tms_service/target/owl/debug/deps/security_framework_sys-3735606d09f09fa0.d new file mode 100644 index 0000000..60e97f4 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/security_framework_sys-3735606d09f09fa0.d @@ -0,0 +1,28 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libsecurity_framework_sys-3735606d09f09fa0.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/access.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/access_control.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/authorization.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/base.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/certificate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/certificate_oids.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/cipher_suite.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/cms.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/code_signing.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/digest_transform.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/encrypt_transform.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/identity.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/import_export.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/item.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/key.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/keychain.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/keychain_item.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/policy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/random.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/secure_transport.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/transform.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/trust.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/trust_settings.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/security_framework_sys-3735606d09f09fa0.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/access.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/access_control.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/authorization.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/base.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/certificate.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/certificate_oids.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/cipher_suite.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/cms.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/code_signing.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/digest_transform.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/encrypt_transform.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/identity.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/import_export.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/item.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/key.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/keychain.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/keychain_item.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/policy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/random.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/secure_transport.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/transform.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/trust.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/trust_settings.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/access.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/access_control.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/authorization.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/base.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/certificate.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/certificate_oids.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/cipher_suite.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/cms.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/code_signing.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/digest_transform.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/encrypt_transform.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/identity.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/import_export.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/item.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/key.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/keychain.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/keychain_item.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/policy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/random.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/secure_transport.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/transform.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/trust.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.17.0/src/trust_settings.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/selectors-643d1d3996810645.d b/src-tauri/tms_service/target/owl/debug/deps/selectors-643d1d3996810645.d new file mode 100644 index 0000000..e567350 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/selectors-643d1d3996810645.d @@ -0,0 +1,18 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libselectors-643d1d3996810645.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/attr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/bloom.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/context.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/matching.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/nth_index_cache.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/sink.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/tree.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/visitor.rs /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/selectors-5eab97f267ab567b/out/ascii_case_insensitive_html_attributes.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/selectors-643d1d3996810645.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/attr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/bloom.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/context.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/matching.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/nth_index_cache.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/sink.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/tree.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/visitor.rs /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/selectors-5eab97f267ab567b/out/ascii_case_insensitive_html_attributes.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/attr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/bloom.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/builder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/context.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/matching.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/nth_index_cache.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/parser.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/sink.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/tree.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.25.0/visitor.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/selectors-5eab97f267ab567b/out/ascii_case_insensitive_html_attributes.rs: + +# env-dep:OUT_DIR=/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/selectors-5eab97f267ab567b/out diff --git a/src-tauri/tms_service/target/owl/debug/deps/serde-364c5a38eb656508.d b/src-tauri/tms_service/target/owl/debug/deps/serde-364c5a38eb656508.d new file mode 100644 index 0000000..fd2a297 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/serde-364c5a38eb656508.d @@ -0,0 +1,12 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libserde-364c5a38eb656508.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/integer128.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/de.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/ser.rs /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/serde-a42d2041820f825d/out/private.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/serde-364c5a38eb656508.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/integer128.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/de.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/ser.rs /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/serde-a42d2041820f825d/out/private.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/integer128.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/de.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/ser.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/serde-a42d2041820f825d/out/private.rs: + +# env-dep:OUT_DIR=/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/serde-a42d2041820f825d/out diff --git a/src-tauri/tms_service/target/owl/debug/deps/serde_core-ac9f929e4e902d24.d b/src-tauri/tms_service/target/owl/debug/deps/serde_core-ac9f929e4e902d24.d new file mode 100644 index 0000000..eb4a916 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/serde_core-ac9f929e4e902d24.d @@ -0,0 +1,25 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libserde_core-ac9f929e4e902d24.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/crate_root.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/value.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/ignored_any.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/fmt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impossible.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/format.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/content.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/seed.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/doc.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/size_hint.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/string.rs /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/serde_core-bf2ebacef49fbf2e/out/private.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/serde_core-ac9f929e4e902d24.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/crate_root.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/value.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/ignored_any.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/fmt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impossible.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/format.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/content.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/seed.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/doc.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/size_hint.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/string.rs /Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/serde_core-bf2ebacef49fbf2e/out/private.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/crate_root.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/value.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/ignored_any.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/impls.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/fmt.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impls.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impossible.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/format.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/content.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/seed.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/doc.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/size_hint.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/string.rs: +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/serde_core-bf2ebacef49fbf2e/out/private.rs: + +# env-dep:OUT_DIR=/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/build/serde_core-bf2ebacef49fbf2e/out diff --git a/src-tauri/tms_service/target/owl/debug/deps/serde_derive-1fbad4c3b8df2638.d b/src-tauri/tms_service/target/owl/debug/deps/serde_derive-1fbad4c3b8df2638.d new file mode 100644 index 0000000..550d99d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/serde_derive-1fbad4c3b8df2638.d @@ -0,0 +1,34 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libserde_derive-1fbad4c3b8df2638.dylib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/ast.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/attr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/name.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/case.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/check.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/ctxt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/receiver.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/respan.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/symbol.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/bound.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/fragment.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_adjacently.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_externally.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_internally.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_untagged.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/identifier.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/struct_.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/tuple.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/unit.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/deprecated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/dummy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/pretend.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/ser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/this.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/serde_derive-1fbad4c3b8df2638.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/ast.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/attr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/name.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/case.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/check.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/ctxt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/receiver.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/respan.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/symbol.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/bound.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/fragment.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_adjacently.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_externally.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_internally.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_untagged.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/identifier.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/struct_.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/tuple.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/unit.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/deprecated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/dummy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/pretend.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/ser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/this.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/ast.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/attr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/name.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/case.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/check.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/ctxt.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/receiver.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/respan.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/symbol.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/bound.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/fragment.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_adjacently.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_externally.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_internally.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_untagged.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/identifier.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/struct_.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/tuple.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/unit.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/deprecated.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/dummy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/pretend.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/ser.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/this.rs: + +# env-dep:CARGO_PKG_VERSION_PATCH=228 diff --git a/src-tauri/tms_service/target/owl/debug/deps/serde_json-9d8dbe36d7a1d64c.d b/src-tauri/tms_service/target/owl/debug/deps/serde_json-9d8dbe36d7a1d64c.d new file mode 100644 index 0000000..ddb5078 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/serde_json-9d8dbe36d7a1d64c.d @@ -0,0 +1,20 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libserde_json-9d8dbe36d7a1d64c.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/de.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/ser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/de.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/from.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/index.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/partial_eq.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/ser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/io/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/number.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/read.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/serde_json-9d8dbe36d7a1d64c.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/de.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/map.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/ser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/de.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/from.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/index.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/partial_eq.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/ser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/io/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/iter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/number.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/read.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/de.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/map.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/ser.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/de.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/from.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/index.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/partial_eq.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/ser.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/io/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/iter.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/number.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/read.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/serde_urlencoded-45d4f0973fae8729.d b/src-tauri/tms_service/target/owl/debug/deps/serde_urlencoded-45d4f0973fae8729.d new file mode 100644 index 0000000..d5a8fe7 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/serde_urlencoded-45d4f0973fae8729.d @@ -0,0 +1,11 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libserde_urlencoded-45d4f0973fae8729.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/de.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/key.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/pair.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/part.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/value.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/serde_urlencoded-45d4f0973fae8729.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/de.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/key.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/pair.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/part.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/value.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/de.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/key.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/pair.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/part.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/value.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/servo_arc-7a74396eafcd2c81.d b/src-tauri/tms_service/target/owl/debug/deps/servo_arc-7a74396eafcd2c81.d new file mode 100644 index 0000000..112c750 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/servo_arc-7a74396eafcd2c81.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libservo_arc-7a74396eafcd2c81.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/servo_arc-0.3.0/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/servo_arc-7a74396eafcd2c81.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/servo_arc-0.3.0/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/servo_arc-0.3.0/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/signal_hook_registry-08ef1889931339d8.d b/src-tauri/tms_service/target/owl/debug/deps/signal_hook_registry-08ef1889931339d8.d new file mode 100644 index 0000000..014b685 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/signal_hook_registry-08ef1889931339d8.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libsignal_hook_registry-08ef1889931339d8.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/half_lock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/vec_map.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/signal_hook_registry-08ef1889931339d8.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/half_lock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/vec_map.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/half_lock.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/vec_map.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/siphasher-3fafa0cf348dee4c.d b/src-tauri/tms_service/target/owl/debug/deps/siphasher-3fafa0cf348dee4c.d new file mode 100644 index 0000000..f6433bf --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/siphasher-3fafa0cf348dee4c.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-3fafa0cf348dee4c.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip128.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/siphasher-3fafa0cf348dee4c.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip128.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip128.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/siphasher-e9d3e929006ac3ab.d b/src-tauri/tms_service/target/owl/debug/deps/siphasher-e9d3e929006ac3ab.d new file mode 100644 index 0000000..f8af209 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/siphasher-e9d3e929006ac3ab.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-e9d3e929006ac3ab.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip128.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-e9d3e929006ac3ab.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip128.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/siphasher-e9d3e929006ac3ab.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip128.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-0.3.11/src/sip128.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/siphasher-efe855fcb6cfbccd.d b/src-tauri/tms_service/target/owl/debug/deps/siphasher-efe855fcb6cfbccd.d new file mode 100644 index 0000000..bafd6cc --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/siphasher-efe855fcb6cfbccd.d @@ -0,0 +1,11 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-efe855fcb6cfbccd.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/common.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/sip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/sip128.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/../README.md + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-efe855fcb6cfbccd.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/common.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/sip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/sip128.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/../README.md + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/siphasher-efe855fcb6cfbccd.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/common.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/sip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/sip128.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/../README.md + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/common.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/sip.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/sip128.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/../README.md: diff --git a/src-tauri/tms_service/target/owl/debug/deps/siphasher-fb228e665810d0be.d b/src-tauri/tms_service/target/owl/debug/deps/siphasher-fb228e665810d0be.d new file mode 100644 index 0000000..f5e407a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/siphasher-fb228e665810d0be.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libsiphasher-fb228e665810d0be.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/common.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/sip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/sip128.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/../README.md + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/siphasher-fb228e665810d0be.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/common.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/sip.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/sip128.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/../README.md + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/common.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/sip.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/sip128.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.2/src/../README.md: diff --git a/src-tauri/tms_service/target/owl/debug/deps/slab-f4ffe8281bf66e19.d b/src-tauri/tms_service/target/owl/debug/deps/slab-f4ffe8281bf66e19.d new file mode 100644 index 0000000..bafe017 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/slab-f4ffe8281bf66e19.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libslab-f4ffe8281bf66e19.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/builder.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/slab-f4ffe8281bf66e19.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/builder.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/builder.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/smallvec-281c3c7607d183db.d b/src-tauri/tms_service/target/owl/debug/deps/smallvec-281c3c7607d183db.d new file mode 100644 index 0000000..e91a840 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/smallvec-281c3c7607d183db.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libsmallvec-281c3c7607d183db.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/smallvec-281c3c7607d183db.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/socket2-ee336cb6d6fa0fbc.d b/src-tauri/tms_service/target/owl/debug/deps/socket2-ee336cb6d6fa0fbc.d new file mode 100644 index 0000000..87ac9b5 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/socket2-ee336cb6d6fa0fbc.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libsocket2-ee336cb6d6fa0fbc.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.2/src/sockaddr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.2/src/socket.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.2/src/sockref.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.2/src/sys/unix.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/socket2-ee336cb6d6fa0fbc.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.2/src/sockaddr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.2/src/socket.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.2/src/sockref.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.2/src/sys/unix.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.2/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.2/src/sockaddr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.2/src/socket.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.2/src/sockref.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.2/src/sys/unix.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/stable_deref_trait-08da8da309d755be.d b/src-tauri/tms_service/target/owl/debug/deps/stable_deref_trait-08da8da309d755be.d new file mode 100644 index 0000000..04d534b --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/stable_deref_trait-08da8da309d755be.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libstable_deref_trait-08da8da309d755be.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.1/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/stable_deref_trait-08da8da309d755be.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.1/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.1/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/string_cache-27f9f262bec26a3e.d b/src-tauri/tms_service/target/owl/debug/deps/string_cache-27f9f262bec26a3e.d new file mode 100644 index 0000000..95aaf87 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/string_cache-27f9f262bec26a3e.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libstring_cache-27f9f262bec26a3e.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/atom.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/dynamic_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/static_sets.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/trivial_impls.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/string_cache-27f9f262bec26a3e.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/atom.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/dynamic_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/static_sets.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/trivial_impls.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/atom.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/dynamic_set.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/static_sets.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache-0.8.9/src/trivial_impls.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/string_cache_codegen-6210dda31e8b801c.d b/src-tauri/tms_service/target/owl/debug/deps/string_cache_codegen-6210dda31e8b801c.d new file mode 100644 index 0000000..447b05f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/string_cache_codegen-6210dda31e8b801c.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libstring_cache_codegen-6210dda31e8b801c.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache_codegen-0.5.4/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libstring_cache_codegen-6210dda31e8b801c.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache_codegen-0.5.4/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/string_cache_codegen-6210dda31e8b801c.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache_codegen-0.5.4/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/string_cache_codegen-0.5.4/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/syn-98ebbc84c0eda716.d b/src-tauri/tms_service/target/owl/debug/deps/syn-98ebbc84c0eda716.d new file mode 100644 index 0000000..cf1a8b1 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/syn-98ebbc84c0eda716.d @@ -0,0 +1,59 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libsyn-98ebbc84c0eda716.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/file.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/item.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/pat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/stmt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/tt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/whitespace.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/fold.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/visit.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/debug.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/eq.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/hash.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libsyn-98ebbc84c0eda716.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/file.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/item.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/pat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/stmt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/tt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/whitespace.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/fold.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/visit.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/debug.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/eq.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/hash.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/syn-98ebbc84c0eda716.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/file.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/item.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/pat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/stmt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/tt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/whitespace.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/fold.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/visit.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/debug.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/eq.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/hash.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/file.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/item.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/pat.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/stmt.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/tt.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/whitespace.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/fold.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/visit.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/debug.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/eq.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/hash.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/sync_wrapper-44e20235d97e5720.d b/src-tauri/tms_service/target/owl/debug/deps/sync_wrapper-44e20235d97e5720.d new file mode 100644 index 0000000..550c60e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/sync_wrapper-44e20235d97e5720.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libsync_wrapper-44e20235d97e5720.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sync_wrapper-1.0.2/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/sync_wrapper-44e20235d97e5720.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sync_wrapper-1.0.2/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sync_wrapper-1.0.2/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/synstructure-a800b782c6c0869f.d b/src-tauri/tms_service/target/owl/debug/deps/synstructure-a800b782c6c0869f.d new file mode 100644 index 0000000..6e0dd2d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/synstructure-a800b782c6c0869f.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libsynstructure-a800b782c6c0869f.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/macros.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libsynstructure-a800b782c6c0869f.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/macros.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/synstructure-a800b782c6c0869f.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/macros.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/macros.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/system_configuration-e68e3063c397917f.d b/src-tauri/tms_service/target/owl/debug/deps/system_configuration-e68e3063c397917f.d new file mode 100644 index 0000000..2717f04 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/system_configuration-e68e3063c397917f.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libsystem_configuration-e68e3063c397917f.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.7.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.7.0/src/dynamic_store.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.7.0/src/network_configuration.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.7.0/src/network_reachability.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.7.0/src/preferences.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/system_configuration-e68e3063c397917f.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.7.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.7.0/src/dynamic_store.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.7.0/src/network_configuration.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.7.0/src/network_reachability.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.7.0/src/preferences.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.7.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.7.0/src/dynamic_store.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.7.0/src/network_configuration.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.7.0/src/network_reachability.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.7.0/src/preferences.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/system_configuration_sys-8be43dd656017233.d b/src-tauri/tms_service/target/owl/debug/deps/system_configuration_sys-8be43dd656017233.d new file mode 100644 index 0000000..49b6e2e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/system_configuration_sys-8be43dd656017233.d @@ -0,0 +1,11 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libsystem_configuration_sys-8be43dd656017233.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/dynamic_store.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/dynamic_store_copy_specific.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/network_configuration.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/network_reachability.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/preferences.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/schema_definitions.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/system_configuration_sys-8be43dd656017233.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/dynamic_store.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/dynamic_store_copy_specific.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/network_configuration.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/network_reachability.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/preferences.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/schema_definitions.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/dynamic_store.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/dynamic_store_copy_specific.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/network_configuration.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/network_reachability.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/preferences.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/schema_definitions.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/tempfile-7f57f09d263301b0.d b/src-tauri/tms_service/target/owl/debug/deps/tempfile-7f57f09d263301b0.d new file mode 100644 index 0000000..ed2c5c9 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/tempfile-7f57f09d263301b0.d @@ -0,0 +1,15 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libtempfile-7f57f09d263301b0.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/dir/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/dir/imp/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/dir/imp/unix.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/file/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/file/imp/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/file/imp/unix.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/spooled.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/env.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/tempfile-7f57f09d263301b0.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/dir/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/dir/imp/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/dir/imp/unix.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/file/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/file/imp/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/file/imp/unix.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/spooled.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/env.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/dir/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/dir/imp/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/dir/imp/unix.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/file/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/file/imp/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/file/imp/unix.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/spooled.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/util.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.26.0/src/env.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/tendril-117c4ad9dedd98e9.d b/src-tauri/tms_service/target/owl/debug/deps/tendril-117c4ad9dedd98e9.d new file mode 100644 index 0000000..1712e4c --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/tendril-117c4ad9dedd98e9.d @@ -0,0 +1,11 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libtendril-117c4ad9dedd98e9.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/fmt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/buf32.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/tendril.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/utf8_decode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/util.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/tendril-117c4ad9dedd98e9.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/fmt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/buf32.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/tendril.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/utf8_decode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/util.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/fmt.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/stream.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/buf32.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/tendril.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/utf8_decode.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tendril-0.4.3/src/util.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/thiserror-ac29da89a1c81bcc.d b/src-tauri/tms_service/target/owl/debug/deps/thiserror-ac29da89a1c81bcc.d new file mode 100644 index 0000000..4130361 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/thiserror-ac29da89a1c81bcc.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libthiserror-ac29da89a1c81bcc.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/provide.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/thiserror-ac29da89a1c81bcc.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/provide.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/provide.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/thiserror_impl-292fb996ca998392.d b/src-tauri/tms_service/target/owl/debug/deps/thiserror_impl-292fb996ca998392.d new file mode 100644 index 0000000..0b3fb77 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/thiserror_impl-292fb996ca998392.d @@ -0,0 +1,14 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libthiserror_impl-292fb996ca998392.dylib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/thiserror_impl-292fb996ca998392.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/tinystr-6694724cea174978.d b/src-tauri/tms_service/target/owl/debug/deps/tinystr-6694724cea174978.d new file mode 100644 index 0000000..84db342 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/tinystr-6694724cea174978.d @@ -0,0 +1,12 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libtinystr-6694724cea174978.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/ascii.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/asciibyte.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/int_ops.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/unvalidated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/ule.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/tinystr-6694724cea174978.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/ascii.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/asciibyte.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/int_ops.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/unvalidated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/ule.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/ascii.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/asciibyte.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/int_ops.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/unvalidated.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/ule.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/tms_service-350c08684f3b9dcb.d b/src-tauri/tms_service/target/owl/debug/deps/tms_service-350c08684f3b9dcb.d new file mode 100644 index 0000000..5f1e758 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/tms_service-350c08684f3b9dcb.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libtms_service-350c08684f3b9dcb.rmeta: src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/tms_service-350c08684f3b9dcb.d: src/lib.rs + +src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/tms_service-6a45200a24436e01.d b/src-tauri/tms_service/target/owl/debug/deps/tms_service-6a45200a24436e01.d new file mode 100644 index 0000000..392e0c2 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/tms_service-6a45200a24436e01.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libtms_service-6a45200a24436e01.rmeta: src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/tms_service-6a45200a24436e01.d: src/lib.rs + +src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/tokio-fff6f3f58a5b4540.d b/src-tauri/tms_service/target/owl/debug/deps/tokio-fff6f3f58a5b4540.d new file mode 100644 index 0000000..5fd0abc --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/tokio-fff6f3f58a5b4540.d @@ -0,0 +1,286 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libtokio-fff6f3f58a5b4540.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/cfg.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/loom.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/pin.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/thread_local.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/addr_of.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/support.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/future/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/future/maybe_done.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/async_buf_read.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/async_read.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/async_seek.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/async_write.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/read_buf.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/addr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/atomic_u16.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/atomic_u32.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/atomic_u64.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/atomic_usize.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/barrier.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/parking_lot.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/rwlock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/unsafe_cell.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/blocking.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/as_ref.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/atomic_cell.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/blocking_check.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/metric_atomics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/wake_list.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/linked_list.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/rand.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/trace.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/typeid.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/markers.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/cacheline.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/select.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/join.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/try_join.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/canonicalize.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/create_dir.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/create_dir_all.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/dir_builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/file.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/hard_link.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/metadata.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/open_options.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/read.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/read_dir.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/read_link.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/read_to_string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/remove_dir.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/remove_dir_all.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/remove_file.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/rename.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/set_permissions.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/symlink_metadata.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/write.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/copy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/try_exists.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/symlink.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/future/try_join.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/future/block_on.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/blocking.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/interest.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/ready.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/poll_evented.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/async_fd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/stdio_common.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/stderr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/stdin.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/stdout.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/split.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/join.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/seek.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/async_buf_read_ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/async_read_ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/async_seek_ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/async_write_ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/buf_reader.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/buf_stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/buf_writer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/chain.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/copy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/copy_bidirectional.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/copy_buf.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/empty.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/flush.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/lines.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/mem.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read_buf.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read_exact.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read_int.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read_line.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/fill_buf.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read_to_end.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/vec_with_initialized.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read_to_string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read_until.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/repeat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/shutdown.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/sink.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/split.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/take.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/write.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/write_vectored.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/write_all.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/write_buf.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/write_all_buf.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/write_int.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/lookup_host.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/tcp/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/tcp/listener.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/tcp/split.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/tcp/split_owned.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/tcp/stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/tcp/socket.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/udp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/datagram/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/datagram/socket.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/listener.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/socket.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/split.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/split_owned.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/socketaddr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/ucred.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/pipe.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/atomic_u64_native.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/process/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/process/unix/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/process/unix/orphan.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/process/unix/reap.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/process/kill.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/context.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/park.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/driver.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/context/blocking.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/context/current.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/context/runtime.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/context/scoped.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/context/runtime_mt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/current_thread/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/defer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/inject.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/inject/pop.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/inject/shared.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/inject/synced.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/inject/metrics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/inject/rt_multi_thread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/block_in_place.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/lock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/counters.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/handle.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/handle/metrics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/overflow.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/idle.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/stats.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/park.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/queue.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/worker.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/worker/metrics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/trace_mock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/io/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/io/driver.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/io/registration.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/io/registration_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/io/scheduled_io.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/io/metrics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/io/driver/signal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/process.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/time/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/time/entry.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/time/handle.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/time/source.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/time/wheel/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/time/wheel/level.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/signal/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/core.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/harness.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/id.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/abort.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/join.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/list.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/raw.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/state.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/waker.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/config.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/blocking/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/blocking/pool.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/blocking/schedule.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/blocking/shutdown.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/blocking/task.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task_hooks.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/handle.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/runtime.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/id.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/thread_id.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/metrics/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/metrics/runtime.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/metrics/batch.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/metrics/worker.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/metrics/mock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/signal/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/signal/ctrl_c.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/signal/registry.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/signal/unix.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/signal/windows.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/signal/reusable_box.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/barrier.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/broadcast.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mpsc/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mpsc/block.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mpsc/bounded.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mpsc/chan.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mpsc/list.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mpsc/unbounded.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mpsc/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/notify.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/oneshot.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/batch_semaphore.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/semaphore.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/rwlock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/rwlock/owned_read_guard.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/rwlock/owned_write_guard.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/rwlock/owned_write_guard_mapped.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/rwlock/read_guard.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/rwlock/write_guard.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/rwlock/write_guard_mapped.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/task/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/task/atomic_waker.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/once_cell.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/set_once.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/watch.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/blocking.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/spawn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/yield_now.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/coop/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/local.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/task_local.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/join_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/coop/consume_budget.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/coop/unconstrained.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/time/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/time/clock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/time/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/time/instant.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/time/interval.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/time/sleep.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/time/timeout.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/bit.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/sharded_list.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/rand/rt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/idle_notified_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/wake.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/sync_wrapper.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/rc_cell.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/try_lock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/ptr_expose.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/tokio-fff6f3f58a5b4540.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/cfg.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/loom.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/pin.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/thread_local.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/addr_of.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/support.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/future/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/future/maybe_done.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/async_buf_read.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/async_read.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/async_seek.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/async_write.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/read_buf.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/addr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/atomic_u16.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/atomic_u32.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/atomic_u64.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/atomic_usize.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/barrier.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/parking_lot.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/rwlock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/unsafe_cell.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/blocking.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/as_ref.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/atomic_cell.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/blocking_check.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/metric_atomics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/wake_list.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/linked_list.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/rand.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/trace.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/typeid.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/memchr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/markers.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/cacheline.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/select.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/join.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/try_join.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/canonicalize.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/create_dir.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/create_dir_all.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/dir_builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/file.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/hard_link.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/metadata.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/open_options.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/read.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/read_dir.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/read_link.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/read_to_string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/remove_dir.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/remove_dir_all.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/remove_file.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/rename.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/set_permissions.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/symlink_metadata.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/write.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/copy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/try_exists.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/symlink.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/future/try_join.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/future/block_on.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/blocking.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/interest.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/ready.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/poll_evented.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/async_fd.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/stdio_common.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/stderr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/stdin.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/stdout.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/split.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/join.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/seek.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/async_buf_read_ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/async_read_ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/async_seek_ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/async_write_ext.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/buf_reader.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/buf_stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/buf_writer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/chain.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/copy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/copy_bidirectional.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/copy_buf.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/empty.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/flush.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/lines.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/mem.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read_buf.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read_exact.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read_int.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read_line.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/fill_buf.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read_to_end.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/vec_with_initialized.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read_to_string.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read_until.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/repeat.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/shutdown.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/sink.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/split.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/take.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/write.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/write_vectored.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/write_all.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/write_buf.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/write_all_buf.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/write_int.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/lookup_host.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/tcp/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/tcp/listener.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/tcp/split.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/tcp/split_owned.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/tcp/stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/tcp/socket.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/udp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/datagram/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/datagram/socket.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/listener.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/socket.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/split.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/split_owned.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/socketaddr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/ucred.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/pipe.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/atomic_u64_native.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/process/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/process/unix/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/process/unix/orphan.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/process/unix/reap.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/process/kill.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/context.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/park.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/driver.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/context/blocking.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/context/current.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/context/runtime.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/context/scoped.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/context/runtime_mt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/current_thread/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/defer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/inject.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/inject/pop.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/inject/shared.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/inject/synced.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/inject/metrics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/inject/rt_multi_thread.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/block_in_place.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/lock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/counters.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/handle.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/handle/metrics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/overflow.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/idle.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/stats.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/park.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/queue.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/worker.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/worker/metrics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/trace_mock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/io/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/io/driver.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/io/registration.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/io/registration_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/io/scheduled_io.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/io/metrics.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/io/driver/signal.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/process.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/time/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/time/entry.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/time/handle.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/time/source.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/time/wheel/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/time/wheel/level.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/signal/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/core.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/harness.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/id.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/abort.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/join.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/list.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/raw.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/state.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/waker.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/config.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/blocking/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/blocking/pool.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/blocking/schedule.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/blocking/shutdown.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/blocking/task.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task_hooks.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/handle.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/runtime.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/id.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/thread_id.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/metrics/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/metrics/runtime.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/metrics/batch.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/metrics/worker.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/metrics/mock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/signal/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/signal/ctrl_c.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/signal/registry.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/signal/unix.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/signal/windows.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/signal/reusable_box.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/barrier.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/broadcast.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mpsc/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mpsc/block.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mpsc/bounded.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mpsc/chan.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mpsc/list.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mpsc/unbounded.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mpsc/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mutex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/notify.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/oneshot.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/batch_semaphore.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/semaphore.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/rwlock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/rwlock/owned_read_guard.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/rwlock/owned_write_guard.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/rwlock/owned_write_guard_mapped.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/rwlock/read_guard.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/rwlock/write_guard.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/rwlock/write_guard_mapped.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/task/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/task/atomic_waker.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/once_cell.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/set_once.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/watch.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/blocking.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/spawn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/yield_now.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/coop/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/local.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/task_local.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/join_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/coop/consume_budget.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/coop/unconstrained.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/time/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/time/clock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/time/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/time/instant.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/time/interval.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/time/sleep.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/time/timeout.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/bit.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/sharded_list.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/rand/rt.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/idle_notified_set.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/wake.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/sync_wrapper.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/rc_cell.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/try_lock.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/ptr_expose.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/cfg.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/loom.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/pin.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/thread_local.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/addr_of.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/support.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/future/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/future/maybe_done.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/async_buf_read.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/async_read.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/async_seek.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/async_write.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/read_buf.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/addr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/atomic_u16.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/atomic_u32.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/atomic_u64.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/atomic_usize.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/barrier.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/mutex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/parking_lot.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/rwlock.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/unsafe_cell.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/blocking.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/as_ref.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/atomic_cell.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/blocking_check.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/metric_atomics.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/wake_list.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/linked_list.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/rand.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/trace.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/typeid.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/memchr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/markers.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/cacheline.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/select.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/join.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/macros/try_join.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/canonicalize.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/create_dir.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/create_dir_all.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/dir_builder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/file.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/hard_link.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/metadata.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/open_options.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/read.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/read_dir.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/read_link.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/read_to_string.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/remove_dir.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/remove_dir_all.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/remove_file.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/rename.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/set_permissions.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/symlink_metadata.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/write.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/copy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/try_exists.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/fs/symlink.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/future/try_join.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/future/block_on.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/blocking.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/interest.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/ready.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/poll_evented.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/async_fd.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/stdio_common.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/stderr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/stdin.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/stdout.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/split.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/join.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/seek.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/async_buf_read_ext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/async_read_ext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/async_seek_ext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/async_write_ext.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/buf_reader.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/buf_stream.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/buf_writer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/chain.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/copy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/copy_bidirectional.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/copy_buf.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/empty.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/flush.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/lines.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/mem.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read_buf.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read_exact.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read_int.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read_line.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/fill_buf.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read_to_end.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/vec_with_initialized.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read_to_string.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/read_until.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/repeat.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/shutdown.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/sink.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/split.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/take.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/write.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/write_vectored.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/write_all.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/write_buf.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/write_all_buf.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/io/util/write_int.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/lookup_host.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/tcp/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/tcp/listener.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/tcp/split.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/tcp/split_owned.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/tcp/stream.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/tcp/socket.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/udp.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/datagram/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/datagram/socket.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/listener.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/socket.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/split.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/split_owned.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/socketaddr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/stream.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/ucred.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/net/unix/pipe.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/loom/std/atomic_u64_native.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/process/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/process/unix/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/process/unix/orphan.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/process/unix/reap.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/process/kill.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/context.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/park.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/driver.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/util/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/context/blocking.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/context/current.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/context/runtime.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/context/scoped.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/context/runtime_mt.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/current_thread/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/defer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/inject.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/inject/pop.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/inject/shared.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/inject/synced.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/inject/metrics.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/inject/rt_multi_thread.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/block_in_place.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/lock.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/counters.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/handle.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/handle/metrics.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/overflow.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/idle.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/stats.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/park.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/queue.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/worker.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/worker/metrics.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/scheduler/multi_thread/trace_mock.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/io/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/io/driver.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/io/registration.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/io/registration_set.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/io/scheduled_io.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/io/metrics.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/io/driver/signal.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/process.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/time/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/time/entry.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/time/handle.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/time/source.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/time/wheel/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/time/wheel/level.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/signal/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/core.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/harness.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/id.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/abort.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/join.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/list.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/raw.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/state.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task/waker.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/config.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/blocking/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/blocking/pool.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/blocking/schedule.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/blocking/shutdown.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/blocking/task.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/builder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/task_hooks.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/handle.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/runtime.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/id.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/thread_id.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/metrics/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/metrics/runtime.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/metrics/batch.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/metrics/worker.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/runtime/metrics/mock.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/signal/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/signal/ctrl_c.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/signal/registry.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/signal/unix.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/signal/windows.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/signal/reusable_box.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/barrier.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/broadcast.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mpsc/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mpsc/block.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mpsc/bounded.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mpsc/chan.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mpsc/list.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mpsc/unbounded.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mpsc/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/mutex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/notify.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/oneshot.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/batch_semaphore.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/semaphore.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/rwlock.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/rwlock/owned_read_guard.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/rwlock/owned_write_guard.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/rwlock/owned_write_guard_mapped.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/rwlock/read_guard.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/rwlock/write_guard.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/rwlock/write_guard_mapped.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/task/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/task/atomic_waker.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/once_cell.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/set_once.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/sync/watch.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/blocking.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/spawn.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/yield_now.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/coop/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/local.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/task_local.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/join_set.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/coop/consume_budget.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/task/coop/unconstrained.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/time/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/time/clock.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/time/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/time/instant.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/time/interval.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/time/sleep.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/time/timeout.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/bit.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/sharded_list.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/rand/rt.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/idle_notified_set.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/wake.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/sync_wrapper.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/rc_cell.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/try_lock.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/util/ptr_expose.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/tokio_macros-b6d97045e13c780c.d b/src-tauri/tms_service/target/owl/debug/deps/tokio_macros-b6d97045e13c780c.d new file mode 100644 index 0000000..e6aabc4 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/tokio_macros-b6d97045e13c780c.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libtokio_macros-b6d97045e13c780c.dylib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.6.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.6.0/src/entry.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.6.0/src/select.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/tokio_macros-b6d97045e13c780c.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.6.0/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.6.0/src/entry.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.6.0/src/select.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.6.0/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.6.0/src/entry.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.6.0/src/select.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/tokio_native_tls-7619acb6411a2d68.d b/src-tauri/tms_service/target/owl/debug/deps/tokio_native_tls-7619acb6411a2d68.d new file mode 100644 index 0000000..2e0ea31 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/tokio_native_tls-7619acb6411a2d68.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libtokio_native_tls-7619acb6411a2d68.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/tokio_native_tls-7619acb6411a2d68.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/tokio_util-fb46d5c1d77f649e.d b/src-tauri/tms_service/target/owl/debug/deps/tokio_util-fb46d5c1d77f649e.d new file mode 100644 index 0000000..8fbdcdf --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/tokio_util-fb46d5c1d77f649e.d @@ -0,0 +1,41 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libtokio_util-fb46d5c1d77f649e.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/cfg.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/loom.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token/guard.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token/guard_ref.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token/tree_node.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/mpsc.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/poll_semaphore.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/reusable_box.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/either.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/util/maybe_dangling.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/util/poll_buf.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/future.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/future/with_cancellation_token.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/tracing.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/bytes_codec.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/decoder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/encoder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed_impl.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed_read.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed_write.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/length_delimited.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/lines_codec.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/any_delimiter_codec.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/copy_to_bytes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/inspect.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/read_buf.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/reader_stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/simplex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/sink_writer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/stream_reader.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/tokio_util-fb46d5c1d77f649e.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/cfg.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/loom.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token/guard.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token/guard_ref.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token/tree_node.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/mpsc.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/poll_semaphore.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/reusable_box.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/either.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/util/maybe_dangling.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/util/poll_buf.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/future.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/future/with_cancellation_token.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/tracing.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/bytes_codec.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/decoder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/encoder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed_impl.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed_read.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed_write.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/length_delimited.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/lines_codec.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/any_delimiter_codec.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/copy_to_bytes.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/inspect.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/read_buf.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/reader_stream.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/simplex.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/sink_writer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/stream_reader.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/cfg.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/loom.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token/guard.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token/guard_ref.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token/tree_node.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/mpsc.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/poll_semaphore.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/reusable_box.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/either.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/util/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/util/maybe_dangling.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/util/poll_buf.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/future.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/future/with_cancellation_token.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/tracing.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/bytes_codec.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/decoder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/encoder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed_impl.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed_read.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed_write.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/length_delimited.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/lines_codec.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/any_delimiter_codec.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/copy_to_bytes.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/inspect.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/read_buf.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/reader_stream.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/simplex.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/sink_writer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/stream_reader.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/tower-676e451bb846ad84.d b/src-tauri/tms_service/target/owl/debug/deps/tower-676e451bb846ad84.d new file mode 100644 index 0000000..2d1bc22 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/tower-676e451bb846ad84.d @@ -0,0 +1,48 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libtower-676e451bb846ad84.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/retry/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/retry/backoff.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/retry/budget/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/retry/budget/tps_budget.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/retry/future.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/retry/layer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/retry/policy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/timeout/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/timeout/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/timeout/future.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/timeout/layer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/and_then.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/layer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/layer_clone.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/layer_clone_sync.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/sync.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/unsync.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed_clone.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed_clone_sync.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/common.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/ordered.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/unordered.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/either.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/future_service.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_err.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_request.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_response.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_result.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_future.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/oneshot.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/optional/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/optional/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/optional/future.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/ready.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/service_fn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/then.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/rng.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/builder/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/layer.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/tower-676e451bb846ad84.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/retry/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/retry/backoff.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/retry/budget/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/retry/budget/tps_budget.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/retry/future.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/retry/layer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/retry/policy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/timeout/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/timeout/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/timeout/future.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/timeout/layer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/and_then.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/layer.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/layer_clone.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/layer_clone_sync.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/sync.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/unsync.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed_clone.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed_clone_sync.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/common.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/ordered.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/unordered.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/either.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/future_service.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_err.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_request.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_response.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_result.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_future.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/oneshot.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/optional/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/optional/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/optional/future.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/ready.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/service_fn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/then.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/rng.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/builder/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/layer.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/retry/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/retry/backoff.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/retry/budget/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/retry/budget/tps_budget.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/retry/future.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/retry/layer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/retry/policy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/timeout/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/timeout/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/timeout/future.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/timeout/layer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/and_then.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/layer.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/layer_clone.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/layer_clone_sync.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/sync.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/unsync.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed_clone.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed_clone_sync.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/common.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/ordered.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/unordered.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/either.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/future_service.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_err.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_request.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_response.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_result.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_future.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/oneshot.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/optional/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/optional/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/optional/future.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/ready.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/service_fn.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/then.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/rng.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/builder/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/layer.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/tower_http-41e21fc05391790d.d b/src-tauri/tms_service/target/owl/debug/deps/tower_http-41e21fc05391790d.d new file mode 100644 index 0000000..8a04246 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/tower_http-41e21fc05391790d.d @@ -0,0 +1,20 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libtower_http-41e21fc05391790d.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/and.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/clone_body_fn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/filter_credentials.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/limited.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/or.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/redirect_fn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/same_origin.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/classify/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/classify/grpc_errors_as_failures.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/classify/map_failure_class.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/classify/status_in_range_is_error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/services/mod.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/tower_http-41e21fc05391790d.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/and.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/clone_body_fn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/filter_credentials.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/limited.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/or.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/redirect_fn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/same_origin.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/classify/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/classify/grpc_errors_as_failures.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/classify/map_failure_class.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/classify/status_in_range_is_error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/services/mod.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/and.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/clone_body_fn.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/filter_credentials.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/limited.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/or.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/redirect_fn.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/follow_redirect/policy/same_origin.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/classify/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/classify/grpc_errors_as_failures.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/classify/map_failure_class.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/classify/status_in_range_is_error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.8/src/services/mod.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/tower_layer-5a81c3a04b92d57f.d b/src-tauri/tms_service/target/owl/debug/deps/tower_layer-5a81c3a04b92d57f.d new file mode 100644 index 0000000..bae7e4a --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/tower_layer-5a81c3a04b92d57f.d @@ -0,0 +1,9 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libtower_layer-5a81c3a04b92d57f.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/identity.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/layer_fn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/stack.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/tuple.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/tower_layer-5a81c3a04b92d57f.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/identity.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/layer_fn.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/stack.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/tuple.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/identity.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/layer_fn.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/stack.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/tuple.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/tower_service-9021ba2ba3f0e06f.d b/src-tauri/tms_service/target/owl/debug/deps/tower_service-9021ba2ba3f0e06f.d new file mode 100644 index 0000000..04ab5eb --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/tower_service-9021ba2ba3f0e06f.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libtower_service-9021ba2ba3f0e06f.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-service-0.3.3/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/tower_service-9021ba2ba3f0e06f.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-service-0.3.3/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-service-0.3.3/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/tracing-9aa3269cd13cd9f0.d b/src-tauri/tms_service/target/owl/debug/deps/tracing-9aa3269cd13cd9f0.d new file mode 100644 index 0000000..304aea8 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/tracing-9aa3269cd13cd9f0.d @@ -0,0 +1,12 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libtracing-9aa3269cd13cd9f0.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/dispatcher.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/field.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/instrument.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/level_filters.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/span.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/subscriber.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/tracing-9aa3269cd13cd9f0.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/dispatcher.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/field.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/instrument.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/level_filters.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/span.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/subscriber.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/dispatcher.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/field.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/instrument.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/level_filters.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/span.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/subscriber.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/tracing_core-c2ab9b8bdd438390.d b/src-tauri/tms_service/target/owl/debug/deps/tracing_core-c2ab9b8bdd438390.d new file mode 100644 index 0000000..767b436 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/tracing_core-c2ab9b8bdd438390.d @@ -0,0 +1,14 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libtracing_core-c2ab9b8bdd438390.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lazy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/callsite.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/dispatcher.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/event.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/field.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/metadata.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/parent.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/span.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/subscriber.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/tracing_core-c2ab9b8bdd438390.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lazy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/callsite.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/dispatcher.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/event.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/field.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/metadata.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/parent.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/span.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/subscriber.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lazy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/callsite.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/dispatcher.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/event.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/field.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/metadata.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/parent.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/span.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/subscriber.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/try_lock-a2a06b9b35604e8a.d b/src-tauri/tms_service/target/owl/debug/deps/try_lock-a2a06b9b35604e8a.d new file mode 100644 index 0000000..efc6384 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/try_lock-a2a06b9b35604e8a.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libtry_lock-a2a06b9b35604e8a.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/try-lock-0.2.5/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/try_lock-a2a06b9b35604e8a.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/try-lock-0.2.5/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/try-lock-0.2.5/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/unicode_ident-8a67dab9f43bf5df.d b/src-tauri/tms_service/target/owl/debug/deps/unicode_ident-8a67dab9f43bf5df.d new file mode 100644 index 0000000..df46ede --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/unicode_ident-8a67dab9f43bf5df.d @@ -0,0 +1,8 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libunicode_ident-8a67dab9f43bf5df.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libunicode_ident-8a67dab9f43bf5df.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/unicode_ident-8a67dab9f43bf5df.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/unicode_width-fd37909f2193dde8.d b/src-tauri/tms_service/target/owl/debug/deps/unicode_width-fd37909f2193dde8.d new file mode 100644 index 0000000..134a3c2 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/unicode_width-fd37909f2193dde8.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libunicode_width-fd37909f2193dde8.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.2/src/tables.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/unicode_width-fd37909f2193dde8.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.2/src/tables.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.2/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.2/src/tables.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/url-f0c7f6ce86afb42f.d b/src-tauri/tms_service/target/owl/debug/deps/url-f0c7f6ce86afb42f.d new file mode 100644 index 0000000..25b0f5d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/url-f0c7f6ce86afb42f.d @@ -0,0 +1,11 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/liburl-f0c7f6ce86afb42f.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/host.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/origin.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/path_segments.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/slicing.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/quirks.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/url-f0c7f6ce86afb42f.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/host.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/origin.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/parser.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/path_segments.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/slicing.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/quirks.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/host.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/origin.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/parser.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/path_segments.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/slicing.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/quirks.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/utf8-cdf51886c64f6cca.d b/src-tauri/tms_service/target/owl/debug/deps/utf8-cdf51886c64f6cca.d new file mode 100644 index 0000000..45a96bf --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/utf8-cdf51886c64f6cca.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libutf8-cdf51886c64f6cca.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/lossy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/read.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/utf8-cdf51886c64f6cca.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/lossy.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/read.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/lossy.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/read.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/utf8_iter-7750c395fdb65df4.d b/src-tauri/tms_service/target/owl/debug/deps/utf8_iter-7750c395fdb65df4.d new file mode 100644 index 0000000..fcd2e55 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/utf8_iter-7750c395fdb65df4.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libutf8_iter-7750c395fdb65df4.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/indices.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/report.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/utf8_iter-7750c395fdb65df4.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/indices.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/report.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/indices.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/report.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/version_check-bc29451f0514ce26.d b/src-tauri/tms_service/target/owl/debug/deps/version_check-bc29451f0514ce26.d new file mode 100644 index 0000000..e634320 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/version_check-bc29451f0514ce26.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libversion_check-bc29451f0514ce26.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libversion_check-bc29451f0514ce26.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/version_check-bc29451f0514ce26.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/want-25f50719849623b0.d b/src-tauri/tms_service/target/owl/debug/deps/want-25f50719849623b0.d new file mode 100644 index 0000000..f7a1033 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/want-25f50719849623b0.d @@ -0,0 +1,5 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libwant-25f50719849623b0.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/want-0.3.1/src/lib.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/want-25f50719849623b0.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/want-0.3.1/src/lib.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/want-0.3.1/src/lib.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/writeable-64853572c4d86438.d b/src-tauri/tms_service/target/owl/debug/deps/writeable-64853572c4d86438.d new file mode 100644 index 0000000..09e31a6 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/writeable-64853572c4d86438.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libwriteable-64853572c4d86438.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/src/cmp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/src/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/src/ops.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/src/parts_write_adapter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/src/try_writeable.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/writeable-64853572c4d86438.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/src/cmp.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/src/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/src/ops.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/src/parts_write_adapter.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/src/try_writeable.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/src/cmp.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/src/impls.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/src/ops.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/src/parts_write_adapter.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/src/try_writeable.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/yoke-64f980dec814a796.d b/src-tauri/tms_service/target/owl/debug/deps/yoke-64f980dec814a796.d new file mode 100644 index 0000000..de74e38 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/yoke-64f980dec814a796.d @@ -0,0 +1,13 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libyoke-64f980dec814a796.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/cartable_ptr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/either.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/kinda_sorta_dangling.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/macro_impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/yoke.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/yokeable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/zero_from.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/yoke-64f980dec814a796.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/cartable_ptr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/either.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/kinda_sorta_dangling.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/macro_impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/yoke.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/yokeable.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/zero_from.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/cartable_ptr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/either.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/kinda_sorta_dangling.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/macro_impls.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/utils.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/yoke.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/yokeable.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/zero_from.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/yoke_derive-a2f4c46c6e252925.d b/src-tauri/tms_service/target/owl/debug/deps/yoke_derive-a2f4c46c6e252925.d new file mode 100644 index 0000000..16e4869 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/yoke_derive-a2f4c46c6e252925.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libyoke_derive-a2f4c46c6e252925.dylib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.1/src/visitor.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/yoke_derive-a2f4c46c6e252925.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.1/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.1/src/visitor.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.1/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.1/src/visitor.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/zerocopy-10e9814f62257e85.d b/src-tauri/tms_service/target/owl/debug/deps/zerocopy-10e9814f62257e85.d new file mode 100644 index 0000000..da020d3 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/zerocopy-10e9814f62257e85.d @@ -0,0 +1,25 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libzerocopy-10e9814f62257e85.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/util/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/util/macro_util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/byte_slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/byteorder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/deprecated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/layout.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/inner.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/invariant.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/ptr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/transmute.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/ref.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/split_at.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/wrappers.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/zerocopy-10e9814f62257e85.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/util/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/util/macro_util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/byte_slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/byteorder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/deprecated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/layout.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/inner.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/invariant.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/ptr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/transmute.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/ref.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/split_at.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/wrappers.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/util/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/util/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/util/macro_util.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/byte_slice.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/byteorder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/deprecated.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/impls.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/layout.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/inner.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/invariant.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/ptr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/transmute.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/ref.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/split_at.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/wrappers.rs: + +# env-dep:CARGO_PKG_VERSION=0.8.39 diff --git a/src-tauri/tms_service/target/owl/debug/deps/zerocopy-c0d0d66e4e0904c3.d b/src-tauri/tms_service/target/owl/debug/deps/zerocopy-c0d0d66e4e0904c3.d new file mode 100644 index 0000000..227ed6e --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/zerocopy-c0d0d66e4e0904c3.d @@ -0,0 +1,27 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libzerocopy-c0d0d66e4e0904c3.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/util/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/util/macro_util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/byte_slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/byteorder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/deprecated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/layout.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/inner.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/invariant.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/ptr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/transmute.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/ref.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/split_at.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/wrappers.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libzerocopy-c0d0d66e4e0904c3.rlib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/util/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/util/macro_util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/byte_slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/byteorder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/deprecated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/layout.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/inner.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/invariant.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/ptr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/transmute.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/ref.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/split_at.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/wrappers.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/zerocopy-c0d0d66e4e0904c3.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/util/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/util/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/util/macro_util.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/byte_slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/byteorder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/deprecated.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/layout.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/inner.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/invariant.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/ptr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/transmute.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/ref.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/split_at.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/wrappers.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/util/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/util/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/util/macro_util.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/byte_slice.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/byteorder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/deprecated.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/impls.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/layout.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/inner.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/invariant.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/ptr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/pointer/transmute.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/ref.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/split_at.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.39/src/wrappers.rs: + +# env-dep:CARGO_PKG_VERSION=0.8.39 diff --git a/src-tauri/tms_service/target/owl/debug/deps/zerofrom-53b3ae622c431f99.d b/src-tauri/tms_service/target/owl/debug/deps/zerofrom-53b3ae622c431f99.d new file mode 100644 index 0000000..df1b776 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/zerofrom-53b3ae622c431f99.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libzerofrom-53b3ae622c431f99.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.6/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.6/src/macro_impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.6/src/zero_from.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/zerofrom-53b3ae622c431f99.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.6/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.6/src/macro_impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.6/src/zero_from.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.6/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.6/src/macro_impls.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.6/src/zero_from.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/zerofrom_derive-b42effaf579a01eb.d b/src-tauri/tms_service/target/owl/debug/deps/zerofrom_derive-b42effaf579a01eb.d new file mode 100644 index 0000000..36ba52d --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/zerofrom_derive-b42effaf579a01eb.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libzerofrom_derive-b42effaf579a01eb.dylib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/src/visitor.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/zerofrom_derive-b42effaf579a01eb.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/src/visitor.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/src/visitor.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/zeroize-53e75a144d6ea640.d b/src-tauri/tms_service/target/owl/debug/deps/zeroize-53e75a144d6ea640.d new file mode 100644 index 0000000..a6d41ed --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/zeroize-53e75a144d6ea640.d @@ -0,0 +1,6 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libzeroize-53e75a144d6ea640.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.2/src/aarch64.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/zeroize-53e75a144d6ea640.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.2/src/aarch64.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.2/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.2/src/aarch64.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/zerotrie-b753cbae97418930.d b/src-tauri/tms_service/target/owl/debug/deps/zerotrie-b753cbae97418930.d new file mode 100644 index 0000000..3ddae34 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/zerotrie-b753cbae97418930.d @@ -0,0 +1,19 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libzerotrie-b753cbae97418930.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/builder/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/builder/branch_meta.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/builder/bytestr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/builder/konst/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/builder/konst/builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/builder/konst/store.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/byte_phf/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/cursor.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/helpers.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/options.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/reader.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/varint.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/zerotrie.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/zerotrie-b753cbae97418930.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/builder/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/builder/branch_meta.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/builder/bytestr.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/builder/konst/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/builder/konst/builder.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/builder/konst/store.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/byte_phf/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/cursor.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/helpers.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/options.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/reader.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/varint.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/zerotrie.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/builder/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/builder/branch_meta.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/builder/bytestr.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/builder/konst/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/builder/konst/builder.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/builder/konst/store.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/byte_phf/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/cursor.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/helpers.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/options.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/reader.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/varint.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/zerotrie.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/zerovec-5d034e4235b791c5.d b/src-tauri/tms_service/target/owl/debug/deps/zerovec-5d034e4235b791c5.d new file mode 100644 index 0000000..543da17 --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/zerovec-5d034e4235b791c5.d @@ -0,0 +1,28 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libzerovec-5d034e4235b791c5.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/cow.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/varzerovec/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/varzerovec/components.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/varzerovec/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/varzerovec/lengthless.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/varzerovec/slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/varzerovec/vec.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/zerovec/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/zerovec/slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/chars.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/encode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/multi.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/niche.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/option.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/plain.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/slices.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/tuple.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/tuplevar.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/vartuple.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/yoke_impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/zerofrom_impls.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/zerovec-5d034e4235b791c5.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/cow.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/varzerovec/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/varzerovec/components.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/varzerovec/error.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/varzerovec/lengthless.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/varzerovec/slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/varzerovec/vec.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/zerovec/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/zerovec/slice.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/mod.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/chars.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/encode.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/macros.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/multi.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/niche.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/option.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/plain.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/slices.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/tuple.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/tuplevar.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/vartuple.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/yoke_impls.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/zerofrom_impls.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/cow.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/varzerovec/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/varzerovec/components.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/varzerovec/error.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/varzerovec/lengthless.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/varzerovec/slice.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/varzerovec/vec.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/zerovec/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/zerovec/slice.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/mod.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/chars.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/encode.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/macros.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/multi.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/niche.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/option.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/plain.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/slices.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/tuple.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/tuplevar.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/ule/vartuple.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/yoke_impls.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/zerofrom_impls.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/zerovec_derive-e07f15046c7ba40b.d b/src-tauri/tms_service/target/owl/debug/deps/zerovec_derive-e07f15046c7ba40b.d new file mode 100644 index 0000000..04f2cbe --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/zerovec_derive-e07f15046c7ba40b.d @@ -0,0 +1,10 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libzerovec_derive-e07f15046c7ba40b.dylib: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/src/make_ule.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/src/make_varule.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/src/ule.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/src/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/src/varule.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/zerovec_derive-e07f15046c7ba40b.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/src/make_ule.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/src/make_varule.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/src/ule.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/src/utils.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/src/varule.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/src/make_ule.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/src/make_varule.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/src/ule.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/src/utils.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/src/varule.rs: diff --git a/src-tauri/tms_service/target/owl/debug/deps/zmij-b120b987ec57043f.d b/src-tauri/tms_service/target/owl/debug/deps/zmij-b120b987ec57043f.d new file mode 100644 index 0000000..9d05a0f --- /dev/null +++ b/src-tauri/tms_service/target/owl/debug/deps/zmij-b120b987ec57043f.d @@ -0,0 +1,7 @@ +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/libzmij-b120b987ec57043f.rmeta: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/hint.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/traits.rs + +/Users/hokori/code/rust/tms_tools/src-tauri/tms_service/target/owl/debug/deps/zmij-b120b987ec57043f.d: /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/lib.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/hint.rs /Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/traits.rs + +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/lib.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/hint.rs: +/Users/hokori/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/traits.rs: diff --git a/src-tauri/tms_service/target/owl/debug/incremental/html_scraper-1hjijg523lme9/s-hg3cevgq3q-1e013t9-7x9mx9wmudhrywuz6rt6ufjk9/dep-graph.bin b/src-tauri/tms_service/target/owl/debug/incremental/html_scraper-1hjijg523lme9/s-hg3cevgq3q-1e013t9-7x9mx9wmudhrywuz6rt6ufjk9/dep-graph.bin new file mode 100644 index 0000000..f3ef0da Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/incremental/html_scraper-1hjijg523lme9/s-hg3cevgq3q-1e013t9-7x9mx9wmudhrywuz6rt6ufjk9/dep-graph.bin differ diff --git a/src-tauri/tms_service/target/owl/debug/incremental/html_scraper-1hjijg523lme9/s-hg3cevgq3q-1e013t9-7x9mx9wmudhrywuz6rt6ufjk9/query-cache.bin b/src-tauri/tms_service/target/owl/debug/incremental/html_scraper-1hjijg523lme9/s-hg3cevgq3q-1e013t9-7x9mx9wmudhrywuz6rt6ufjk9/query-cache.bin new file mode 100644 index 0000000..c01e384 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/incremental/html_scraper-1hjijg523lme9/s-hg3cevgq3q-1e013t9-7x9mx9wmudhrywuz6rt6ufjk9/query-cache.bin differ diff --git a/src-tauri/tms_service/target/owl/debug/incremental/html_scraper-1hjijg523lme9/s-hg3cevgq3q-1e013t9-7x9mx9wmudhrywuz6rt6ufjk9/work-products.bin b/src-tauri/tms_service/target/owl/debug/incremental/html_scraper-1hjijg523lme9/s-hg3cevgq3q-1e013t9-7x9mx9wmudhrywuz6rt6ufjk9/work-products.bin new file mode 100644 index 0000000..ac2b114 Binary files /dev/null and b/src-tauri/tms_service/target/owl/debug/incremental/html_scraper-1hjijg523lme9/s-hg3cevgq3q-1e013t9-7x9mx9wmudhrywuz6rt6ufjk9/work-products.bin differ diff --git a/src-tauri/tms_service/target/owl/debug/incremental/html_scraper-1hjijg523lme9/s-hg3cevgq3q-1e013t9.lock b/src-tauri/tms_service/target/owl/debug/incremental/html_scraper-1hjijg523lme9/s-hg3cevgq3q-1e013t9.lock new file mode 100755 index 0000000..e69de29 diff --git a/src/App.vue b/src/App.vue new file mode 100644 index 0000000..6d242a3 --- /dev/null +++ b/src/App.vue @@ -0,0 +1,14 @@ + + + diff --git a/src/components/Login.vue b/src/components/Login.vue new file mode 100644 index 0000000..e928b0c --- /dev/null +++ b/src/components/Login.vue @@ -0,0 +1,123 @@ + + + + + \ No newline at end of file diff --git a/src/main.js b/src/main.js new file mode 100644 index 0000000..5ed1ea6 --- /dev/null +++ b/src/main.js @@ -0,0 +1,14 @@ +import { createApp } from "vue"; +import App from "./App.vue"; +import router from './router'; +import ElementPlus from 'element-plus' +import 'element-plus/dist/index.css' +import zhCn from 'element-plus/es/locale/lang/zh-cn' + +const app = createApp(App) + +app.use(router) +app.use(ElementPlus, { + locale: zhCn, +}) +app.mount("#app"); diff --git a/src/router/index.js b/src/router/index.js new file mode 100644 index 0000000..1361126 --- /dev/null +++ b/src/router/index.js @@ -0,0 +1,27 @@ +import { createRouter, createWebHistory } from 'vue-router'; +import Login from '../components/Login.vue'; +import WorkOrder from '../service/workorder.vue'; + +const routes = [ + { + path: '/', + redirect: '/login', + }, + { + path: '/login', + name: 'Login', + component: Login, + }, + { + path: '/workorder', + name: 'WorkOrder', + component: WorkOrder, + }, +]; + +const router = createRouter({ + history: createWebHistory(), + routes, +}); + +export default router; \ No newline at end of file diff --git a/src/service/workorder.vue b/src/service/workorder.vue new file mode 100644 index 0000000..f971aea --- /dev/null +++ b/src/service/workorder.vue @@ -0,0 +1,464 @@ + + + + + \ No newline at end of file diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..2386d1d --- /dev/null +++ b/vite.config.js @@ -0,0 +1,31 @@ +import { defineConfig } from "vite"; +import vue from "@vitejs/plugin-vue"; + +const host = process.env.TAURI_DEV_HOST; + +// https://vitejs.dev/config/ +export default defineConfig(async () => ({ + plugins: [vue()], + + // Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build` + // + // 1. prevent vite from obscuring rust errors + clearScreen: false, + // 2. tauri expects a fixed port, fail if that port is not available + server: { + port: 1420, + strictPort: true, + host: host || false, + hmr: host + ? { + protocol: "ws", + host, + port: 1421, + } + : undefined, + watch: { + // 3. tell vite to ignore watching `src-tauri` + ignored: ["**/src-tauri/**"], + }, + }, +}));